h1, h2, h3, h4 {
	margin: 0;
	line-height: 1.3;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
	color: black;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	width: 100%;
	font-family: var(--font-family);
}
#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 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
p {
    margin: 0 0 15px;
}
:root {
	--main-color: #00d1f8;
	--second-color: #0c255e;
	--light-color: #eeeeee;
	--border-color: #cccccc;
	--border-radius: 30px;
	--form-height: 50px;
	--font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
}
a, :visited {
    color: black;
    text-decoration: none;
	-webkit-transition: .15s all;
	-o-transition: .15s all;
	transition: .15s all;
}
iframe {
    border: 0;
    max-width: 100%;
}
@media (max-width: 767px) {
    #primary {
        padding-bottom: 40px;
    }
}



/* Layout */
.right-sidebar #content-wrap, 
.left-sidebar #content-wrap {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}
@media (max-width: 960px) {
    .has-sidebar #primary, .has-sidebar #sidebar {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    #primary {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    #sidebar {
        margin-top: 40px;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}


/* Header */
#site-header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
}
#site-header-inner {
    position: relative;
}
.master-header-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid #fff;
}
#site-logo {
	width: 190px;
}
#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;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    margin: 0;
    padding: 0;
}
#site-navigation-wrap .master-main-menu > .menu-item {
    margin: 0 15px;
    position: relative;
}
#site-navigation-wrap .master-main-menu > .menu-item > a {
	color: black;
	white-space: nowrap;
	height: 50px;
    line-height: 50px;
    display: block;
    position: relative;
    font-weight: 500;
}
#site-navigation-wrap .master-main-menu > .menu-item > a:hover, #site-navigation-wrap .master-main-menu > .current-menu-item > a {
	color: var(--second-color);
	font-weight: 800;
}
#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: var(--main-color);
}
#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 var(--main-color);
    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: white;
}
#site-navigation-wrap .sub-menu a:hover {
	background: #1c66c8;
}
#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;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a {
    padding-right: 30px;
    position: relative;
}
.header-callout-button {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 960px) {
    #site-navigation-wrap, .header-button {
        display: none;
    }
    .header-callout-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 40px;
    }
}
@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: calc(100% + 80px);
    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;
    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: 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-image: url(/uploads/2025/04/cover.jpg);
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 60%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
#page-header:before {
    content: '';
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 81%) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-header-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--second-color);
    margin-bottom: 10px;
}
.breadcrumbs {
    display: table;
    margin: 20px auto 0;
    background: rgb(255 255 255 / 90%);
    padding: 9px 15px;
    border-radius: 5px;
    font-weight: 600;
}
.breadcrumbs__separator {
    margin: 0 7px;
}
@media (max-width: 999px) {
    #page-header {
        height: 450px;
    }
}
@media (max-width: 767px) {
    #page-header {
        height: 350px;
        margin-bottom: 0;
    }
    .page-header-title {
        font-size: 44px;
    }
}
@media (max-width: 500px) {
    #page-header {
        margin-bottom: -60px;
    }
    .page-header-title {
        font-size: 28px;
    }
    .breadcrumbs {
        font-size: 13px;
        line-height: 1.3;
    }
}



/* Index */
.master-posts {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.master-post {
    width: 33.3%;
    padding: 0 15px 30px;
}
.master-post-thumbnail img {
    background: var(--light-color);
}
.master-post-thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
}
.master-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s all;
}
.master-post-thumbnail a:hover .master-post-overlay {
    opacity: .3;
}
.master-post-details {
    padding: 15px 0;
}
.master-post-title {
    margin-bottom: 15px;
}
.master-post-title a {
    font-size: 19px;
    line-height: 1.4;
    display: block;
}
.master-post-date {
    margin-bottom: 10px;
}
.master-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    word-break: break-words;
}
.master-post-button a {
    display: table;
}
@media (max-width: 500px) {
    .master-post {
        width: 100%;
    }
}
@media (min-width: 501px) and (max-width: 999px) {
    .master-post {
        width: 50%;
    }
}


/* 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);
    line-height: var(--form-height);
    background: var(--main-color);
    color: white;
    font-size: 24px;
    text-align: center;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}
#site-scroll-top:hover {
    background: var(--second-color);
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
@media (max-width: 767px) {
    #site-scroll-top {
        right: 20px;
        bottom: 20px;
    }
}


/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
}
.social-network-item {
    padding: 0 9px;
}
.social-network-item a {
    font-size: 19px;
}
.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: 19px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    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);
}



/* Social share */
.master-social-share-area {
    gap: 10px;
    font-weight: 600;
}
.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;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.master-social-share-area.share-with-label ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    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: 50px;
    height: 50px;
    line-height: 50px;
    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: 960px) {
    .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;
    }
}
@media (max-width: 767px) {
    .master-social-share-area:not(.share-with-label) a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}



/* Post navigation */
#post-navigation-wrap {
    background: var(--light-color);
    padding: 20px 0;
}
.post-navigation {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    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;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        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: 960px) {
    .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: 60px;
    display: flex;
    align-items: center;
    background: #eee;
    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: black;
    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 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: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--main-color);
    color: white;
}


/* Single post */
.single-post-title {
    margin-bottom: 30px;
}
.single-post-title h1 {
    font-size: 44px;
    color: var(--second-color);
}
.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 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.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: 10px;
}
.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%;
}
@media (max-width: 767px) {
    .single-post-title h1 {
        font-size: 26px;
    }
}



/* Designed List */
.designed-list ul {
    list-style: none;
    margin-left: 20px;
}
.designed-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 7px;
    line-height: 1.3;
}
.designed-list ul li:before {
    content: '\f00c';
    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;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
}
.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}
.youtube-image-area {
    position: relative;
}
.youtube-image {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 56.26%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
}
.youtube-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.youtube-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    cursor: pointer;
}
.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -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;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.youtube-image-area:hover .youtube-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.youtube-image-area:hover .youtube-play-icon {
    opacity: 1;
}
.play-video:before {
    content: '\f04b';
    font-family: FontAwesome;
    color: white;
    font-size: 18px;
}
.youtube-iframe {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    z-index: 2;
}
.youtube-video iframe {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.youtube-video h3 {
    margin: 0;
    font-size: 15px;
}
.youtube-heading a {
    display: block;
    margin-top: 10px;
    line-height: 1.35;
    color: black;
    font-weight: 600;
    font-family: Arial,Helvetica,sans-serif;
}
.youtube-video img, .youtube-video span{
    position:absolute;
    width:100%;top:0;
    bottom:0;margin:auto
}
.youtube-video span {
    height:1.5em;
    text-align:center;
    font:48px/1.5 sans-serif;
    color:white;
    text-shadow:0 0 0.5em black;
}
.youtube-videos .next-videos {
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}
@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}
@media (min-width: 501px) and (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}
@media (min-width: 851px) and (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}
@media (max-width: 960px) {
	.youtube-icon, .youtube-play-icon {
		opacity: 1;
	}
	.play-video:before {
	    font-size: 22px;
	}
}


/* Instagram */
.instagram-images {
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	    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;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    overflow: hidden;
    background-color: var(--light-color);
}
.instagram-image-link:hover .instagram-image-details {
	opacity: 1;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	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);
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	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%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    font-weight: 600;
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	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;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    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;
    -webkit-user-select: none;        
    -moz-user-select: none;
    -ms-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%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -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;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    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 */
.master-accordion-title {
	color: black;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 15px 15px 30px;
    cursor: pointer;
    border-bottom: 1px solid var(--light-color);
    position: relative;
    line-height: 1.4;
    -webkit-user-select: none;        
    -moz-user-select: none;
    -ms-user-select: none;
}
.master-accordion-title:before {
    content: "\f067";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 15px;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 17px;
    color: var(--main-color);
}
.master-accordion-title.active:before {
    content: "\f068";
}
.master-accordion-content {
    color: black;
    margin-top: 15px;
    display: none;
}


/* Default input */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    font-family: var(--font-family);
    width: 100%;
    border: 1px solid var(--border-color);
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: black;
    font-size: 15px;
    background: white;
}
textarea {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 15px;
    resize: vertical;
    min-height: 90px;
}
input[type=radio] {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 0;
    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] {
    -webkit-box-shadow: none;
            box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 2px;
    left: 0;
    margin: 0;
    cursor: pointer;
}
input[type=checkbox]:checked {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}
input[type=checkbox]:checked:before {
    content: '\f00c';
    font-family: FontAwesome;
    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;
}


/* Form */
.grecaptcha-badge {
    display: none;
}
.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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: 5px;
    font-weight: 600;
    line-height: 1.3;
}
.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}
.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.fsf-button {
    border: 1px solid #ddd;
    background: #eee;
    padding: 5px 15px;
    line-height: 1.3;
    margin-right: 10px;
}
.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;
}
.faf-item i {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    line-height: 80px;
    text-align: center;
    font-size: 22px;
    background: #f5f5f5;
    cursor: pointer;
}
.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;
}
.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: 450px;
	background: #eee;
	position: relative;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes wd-rotate {
    100% {
		-webkit-transform: rotate(360deg);
		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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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;
    -webkit-transition: opacity 0s ease;
	opacity: 1;
    -webkit-animation: loading 450ms infinite linear;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
    -webkit-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% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loading {
    100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


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



/* Swiper js */
.master-slider {
    height: 0;
    overflow: hidden;
}
.master-slider.swiper-container-initialized {
    height: auto;
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-slide img {
    background: var(--light-color);
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}
/* Preloader */
:root {
    /*
    --swiper-preloader-color: var(--swiper-theme-color);
    */
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}
/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube {
    overflow: visible;
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}
.swiper-container-flip {
    overflow: visible;
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* Hide admin bar */
.hide-admin-bar, .show-admin-bar {
    position: fixed;
    top: 32px;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}
.show-admin-bar {
    top: 0;
}


/* Pagination */
.pagination {
    margin: 30px 0 0;
    list-style: none;
}
.page-item {
    display: inline-block;
}
.page-item a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--light-color);
    margin-right: 5px;
    color: black;
}
.page-item.active a, .page-item a:hover {
    background: var(--main-color);
    color: white;
}


/* Fancybox */
body.compensate-for-scrollbar {
    overflow: unset!important;
}


/* 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}
.mobile-sticky-phone {
    -webkit-box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
            box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
    background: #7d8cff;
}
.mobile-sticky-whatsapp {
    -webkit-box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
            box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
    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;
    border-radius: var(--border-radius);
}
.callout-description {
    margin-bottom: 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 icon box */
.master-icon-box-area {
    margin-bottom: 15px;
}
.master-icon-box {
    display: flex;
    flex-wrap: wrap;
}
.master-icon {
    width: 50px;
}
.master-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.master-icon-details {
    width: calc(100% - 50px);
    padding-left: 15px;
}


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    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;
    transition: .15s all;
}
.simple-button {
    height: 35px;
    cursor: pointer;
    padding: 0 15px;
    font-size: 17px;
    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;
    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: 1px solid var(--second-color);
}
.outline-button {
    background: #fff;
    color: black;
    border: 1px solid #ebebeb;
}
.outline-button:hover {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.colored-button {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.colored-button:hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
.wide-button {
    width: 100%;
}
.icon-right-button:after {
    content: "\e912";
    font-family: Feather;
    margin-left: 10px;
    margin-right: -10px;
    font-size: 14px;
}
.icon-left-button:before {
    content: "\e912";
    font-family: Feather;
    margin-left: -10px;
    margin-right: 10px;
    font-size: 14px;
}



/* 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 */
#site-header.fixed-site-header {
    position: fixed;
    background: #fff;
    width: 100%;
    top: -1px;
    left: 0;
    z-index: 1000;
    animation-name: sticky;
    animation-duration: .5s;
    box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}
.active-admin-bar #site-header.fixed-site-header {
    margin-top: 35px;
}
.fixed-site-header .master-header-area {
    padding: 10px 0;
}
.fixed-site-header #site-logo img {
    height: 50px;
    object-fit: contain;
}
@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 */
.master-heading-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px -30px;
}
.master-heading-block {
    padding: 0 15px 30px;
}
.mhb-first {
    width: 66.6%;
}
.mhb-second {
    width: 33.3%;
}
.master-heading-area {
    margin-bottom: 40px;
}
.master-heading-blocks .master-heading-area {
    margin-bottom: 0;
}
.master-sub-heading {
    color: var(--main-color);
    position: relative;
    padding-left: 60px;
    margin-bottom: 10px;
    font-family: 'Kaushan Script';
    font-size: 28px;
}
.master-sub-heading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 1px;
    width: 45px;
    background: var(--main-color);
}
.master-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--second-color);
}
.master-description {
    margin-top: 15px;
    width: 600px;
    max-width: 100%;
    color: #7c7c7c;
    font-size: 17px;
}
.master-center-heading {
    text-align: center;
}
.master-center-heading .master-description {
    margin: 5px auto 0;
}
.master-light-heading .master-heading {
    color: white;
}
.home .master-heading {
    width: 600px;
    max-width: 100%;
}
@media (max-width: 767px) {
    .master-heading-block {
        width: 100%;
    }
    .master-heading {
        font-size: 26px;
    }
}



/* 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 {
    background: white;
    color: black;
    padding: 3px 15px;
    border-radius: 5px;
    margin-right: 15px;
    box-shadow: 0 0 10px rgb(0 0 0 / 28%);
    visibility: hidden;
    transition: .3s all;
}
.whatsapp-icon-box:hover .whatsapp-toolbar-text {
    visibility: visible;
}
.whatsapp-toolbar-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #21ad21;
    border-radius: 50%;
    font-size: 32px;
}



/* Contact toolbar */
.contact-toolbar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000;
}
.contact-toolbar-contents {
    background: white;
    min-width: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px;
    position: relative;
    box-shadow: 0 0 10px rgb(101 101 101 / 21%);
}
.contact-toolbar-contents:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    top: 100%;
    right: 25px;
}
.cs-content a {
    border-radius: 5px;
    padding: 3px 10px;
    display: block;
    color: black;
}
.cs-content a:hover {
    background: #f5f5f5;
}
.cs-content i {
    margin-right: 10px;
}
.contact-toolbar-icons {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    border: 10px solid var(--main-color);
    font-size: 20px;
    background: white;
    cursor: pointer;
    margin-left: auto;
}
.ct-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* 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;
}


/* Skills bar */
.cool-skills-bar .cool-bar {
    height: 5px;
    background: #eee;
    border-radius: 0;
    margin-bottom: 15px;
    position: relative;
    transition: all 2s linear;
}
.cool-skills-bar .cool-bar-inner {
    width: 0;
    height: 5px;
    line-height: 5px;
    background: #db3a34;
    border-radius: 0;
    position: relative;
    overflow: visible!important;
}
.cool-skills-bar .cool-bar-percent {
    position: absolute;
    right: -25px;
    top: -22px;
    font-size: 12px;
    color: white;
    background-color: black;
    width: 50px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
}
.cool-skills-bar .cool-bar-percent:before {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}



/* Custom scroll */
.custom-scroll::-webkit-scrollbar  {
    width: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* 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 {
    margin-top: 20px;
}
.tabs-heading {
    list-style: none;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}
.tabs-heading li {
    text-align: center;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    line-height: 1.2;
    color: #888;
}
.tabs-heading .active-tab {
    color: black;
}
.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;
}



/* Footer */
#footer {
    background-image: url(/uploads/2025/04/footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0a2363;
    color: white;
    padding: 60px 0 30px;
}
#footer a {
    color: white;
}
#footer a:hover {
    color: var(--main-color);
}
.footer-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -40px;
    padding: 15px 0 65px;
}
.footer-block {
    width: 25%;
    padding: 0 25px 40px;
}
.footer-heading {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
}
.footer-links ul {
    margin: 0;
    list-style: none;
}
.footer-links ul li:not(:last-child) {
    margin-bottom: 14px;
}
.footer-contact-item {
    position: relative;
    margin-bottom: 10px;
    padding-left: 45px;
}
.footer-contact-item i {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}
.footer-social {
    margin-top: 25px;
}
.footer-links li a {
    line-height: 1.4;
    display: table;
}
@media (min-width: 1100px) {
    .footer-social {
        display: none;
    }
}
@media (max-width: 1100px) {
    .footer-social-block {
        display: none;
    }
    .footer-block {
        width: 33.3%;
    }
}
@media (max-width: 767px) {
    .footer-block {
        width: 100%;
    }
}



/* Footer bottom */
#footer-bottom {
    padding: 25px 40px;
    background: #0c255e;
}
.mfb-blocks {
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
@media (max-width: 767px) {
    .mfb-block {
        width: 100%;
        text-align: center;
    }
    .mfb-second {
        margin-top: 15px;
    }
}
@media (max-width: 500px) {
    #footer-bottom {
        margin: 0 -30px -30px;
    }
}



/* Footer top */
#footer-top {
    background: #1a367a;
    border: 1px solid #ffffff1a;
    padding: 45px;
}
.footer-top-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px -30px;
}
.footer-top-block {
    width: 50%;
    padding: 0 15px 30px;
}
.footer-logo {
    width: 200px;
    margin-bottom: 15px;
}
.footer-callout-heading {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}
.footer-callout-input input {
    border-radius: 30px;
    padding: 0 20px;
    width: 300px;
    max-width: 100%;
}
.footer-top-block form {
    display: flex;
    gap: 15px;
}
.footer-desc {
    width: 400px;
    max-width: 100%;
}
.footer-logo img {
    filter: invert(1) brightness(100);
}
@media (max-width: 1100px) {
    .footer-callout-input input {
        width: 200px;
    }
}
@media (max-width: 860px) {
    .footer-top-block {
        width: 100%;
    }
}
@media (max-width: 1000px) {
    #footer-top {
        background: #1a367a;
        border: 0;
        padding: 45px 30px;
        margin: -60px -30px 0;
    }
}



/* Contact */
.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px 30px;
}
.contact-block {
    width: 50%;
    padding: 0 25px 50px;
}
.contact-icon-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.contact-icon-box:not(:last-child) {
    margin-bottom: 15px;
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    padding: 17px;
}
.contact-icon-details {
    width: calc(100% - 75px);
}
.contact-icon-title {
    color: var(--second-color);
    font-size: 14px;
    line-height: 1.3;
}
.contact-icon-value {
    font-weight: 800;
    font-size: 17px;
}
.contact-form-area {
    padding: 50px;
    background: #e0f9ff;
}
.contact-block input, .contact-block textarea {
    border: 0;
}
@media (max-width: 767px) {
    .contact-block {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .contact-area .container {
        width: 100%;
        max-width: 100%;
    }
    .contact-1 {
        width: 90%;
        margin: 0 auto;
    }
    .contact-form-area {
        padding: 50px 0;
    }
    #contact {
        width: 90%;
        margin: 0 auto;
    }
} 



/* About */
.about-area {
    padding-bottom: 60px;
}
.about-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -25px -50px;
}
.about-block {
    width: 50%;
    padding: 0 25px 50px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px -30px;
}
.about-image {
    width: 50%;
    padding: 0 15px 30px;
}
.about-image img {
    aspect-ratio: 1;
    object-fit: cover;
}
.about-image:nth-child(odd) {
    transform: translateY(-45px);
}
.about-image:nth-child(even) {
    transform: translateY(45px);
}
@media (max-width: 1000px) {
    .about-blocks {
        margin-bottom: 30px;
    }
    .about-block {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .about-area {
        padding-bottom: 20px;
    }
}



/* Solutions */
.solutions-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.s-block-1 {
    width: calc(100% - 350px);
}
.s-block-2 {
    width: 300px;
    background: var(--second-color);
    color: white;
    padding: 50px 40px 40px;
    position: relative;
}
.solution-quote {
    position: absolute;
    top: -45px;
    left: 30px;
    width: 80px;
    opacity: .5;
}
.solutions {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.solution {
    width: 33.3%;
    padding: 0 15px 30px;
}
.solution-image {
    width: 100px;
    height: 100px;
    background: var(--main-color);
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 25px;
}
.solution-image img {
    filter: invert(1);
}
.solution-title {
    font-weight: 800;
    color: var(--second-color);
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}
@media (max-width: 1150px) {
    .s-block-1, .s-block-2 {
        width: 100%;
    }
    .s-block-1 {
        padding-bottom: 70px;
    }
}
@media (max-width: 800px) {
    .solution {
        width: 50%;
    }
}
@media (max-width: 450px) {
    .solution {
        width: 100%;
    }
}



/* Engs */
.engs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.eng-item {
    width: 25%;
    padding: 0 15px 30px;
    display: flex;
}
.eng-item a {
    width: 100%;
    border: 1px solid #ddd;
    display: block;
    transition: .15s all;
}
.eng-item a:hover {
    background: var(--main-color);
}
.eng-thumbnail {
    overflow: hidden;
}
.eng-thumbnail img {
    transition: .45s all;
}
.eng-details {
    padding: 15px;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    transition: .15s all;
}
.eng-item a:hover .eng-details {
    color: white;
}
.eng-item a:hover img {
    transform: scale(1.1);
}
.eng-title {
    line-height: 1.3;
}
@media (max-width: 999px) {
    .eng-item {
        width: 33.3%;
    }
}
@media (max-width: 700px) {
    .eng-item {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .eng-item {
        width: 100%;
    }
}



/* Slider */
.slider-area {
    background-image: url(/uploads/2025/04/slide-bg.jpg);
    padding: 160px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slider-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.slider-block-1 {
    width: 50%;
}
.slider-block-2 {
    width: 40%;
}
.slider-title {
    font-weight: 800;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--second-color);
}
.slider-image-block {
    border: 2px solid var(--main-color);
    position: relative;
    display: table;
    margin: 60px auto -140px;
}
.slider-image-block video {
    display: block;
    width: 100%;
}
.slider-image-heading {
    background: var(--main-color);
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.slider-image-heading span {
    white-space: nowrap;
    transform: rotate(90deg);
    display: block;
    font-family: 'Kaushan Script';
    font-size: 22px;
}
.slider-image img {
    aspect-ratio: 16 / 7;
    object-fit: cover;
    background: var(--main-color);
}
.slider-desc {
    margin-top: 30px;
    font-size: 18px;
    color: #015192;
}
.slider-circle-area {
    position: relative;
    margin-bottom: 45px;
}
.slider-circle-area svg {
    animation: rotateCircle 10s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}
.slider-circle-area svg text {
    font-size: 20px;
    font-weight: 400;
    fill: black;
    letter-spacing: .6px;
}
.slider-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 959px) {
    .slider-block-1, .slider-block-2 {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .slider-area {
        padding-top: 120px;
    }
    .slider-title {
        font-size: 30px;
    }
    .slider-block-1 {
        margin-bottom: 40px;
    }
}




/* Stats */
.stats-area {
    background-image: url(/uploads/2025/04/about-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: white;
    padding: 180px 0 60px;
}
.stats-heading-area .master-heading {
    width: 600px;
    max-width: 100%;
}
.stats-blocks {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ffffff1f;
}
.stats-blocks {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ffffff1f;
}
.stat-block {
    width: 33.3%;
    padding: 40px;
}
.master-milestone-number {
    font-weight: 800;
    font-size: 54px;
    line-height: 1.3;
}
.master-milestone-title {
    color: #ced3e0;
    font-size: 18px;
}



/* Engs */
.home-engs-area {
    padding: 80px 0;
}
.home-engs {
    position: relative;
}
.home-engs:before {
    content: '';
    left: 27.5px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--main-color);
    position: absolute;
}
.home-eng-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    padding-left: 100px;
}
.home-eng-item:last-child {
    margin-bottom: 0;
}
.home-eng-thumbnail, .home-eng-details {
    width: 50%;
}
.home-eng-thumbnail img {
    background: #ececff;
}
.home-eng-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px dashed var(--main-color);
    border-right: 1px dashed var(--main-color);
    border-bottom: 1px dashed var(--main-color);
    padding: 50px;
}
.home-eng-title a {
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
}
.home-eng-desc {
    margin: 25px 0;
    color: #70767a;
    line-height: 1.8;
}
.home-eng-number {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 800;
    font-size: 22px;
}
.home-eng-number:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed var(--main-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
}



/* Features */
.features-area {
    background: #eafcfe;
    padding: 80px 0;
}
.features-main-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.feature-main-block {
    width: 30%;
    padding: 0 15px 30px;
}
.feature-ads-block {
    width: 40%;
    padding: 0 15px 30px;
}
.feature-block {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    height: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-block:last-child {
    margin-bottom: 0;
}
.feature-heading {
    font-weight: 800;
    margin: 20px 0 15px;
    line-height: 1.3;
    font-size: 20px;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--main-color);
    border-radius: 50%;
    padding: 20px;
}
.feature-desc {
    color: #70767a;
}
.feature-ads {
    background-image: url(/uploads/2025/04/features.jpg);
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #012d90;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feature-ads-headings {
    padding: 45px;
}
.feature-ads-heading {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.feature-icon img {
    filter: invert(1);
}



/* Animated button */
.animated-button {
    overflow: hidden;
}
.animated-button:after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    text-align: center;
    width: 100%;
    color: white;
    transition: .3s all;
}
.animated-button:hover:after {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.animated-button span {
    display: block;
}
.animated-button:hover span {
    transform: translateY(-40px);
}



/* Download pdf */
.download-pdf {
    margin-top: 80px;
}
.download-pdf a {
    display: flex;
    align-items: center;
    position: relative;
    background: #e4e4ff;
    display: table;
    padding: 20px 20px 20px 180px;
    border-radius: 10px;
}
.download-pdf img {
    transition: .4s all;
}
.download-pdf a:hover img {
    transform: scale(1.05);
}
.download-pdf-image {
    width: 120px;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    border: 1px solid #ddd;
}
.download-pdf-button {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--second-color);
    font-weight: 800;
}



/* Brands */
.brands-area {
    padding: 80px 0;
}
.brands {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -30px;
}
.brand {
    width: calc(100% / 8);
    padding: 0 15px 30px;
}



/* terms */
.terms {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.term {
    width: 20%;
    padding: 0 15px 30px;
    text-align: center;
}
.term a {
    display: block;
}
.term-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.3;
}
.term-desc {
    font-size: 15px;
    line-height: 1.5;
}
.term-thumbnail {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}
.term-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    transition: .3s all;
}
.term a:hover .term-thumbnail img {
    transform: scale(1.1);
}
@media (max-width: 999px) {
    .term {
        width: 25%;
    }
}
@media (max-width: 850px) {
    .term {
        width: 33.3%;
    }
}
@media (max-width: 700px) {
    .terms {
        margin: 0 -7.5px -30px;
    }
    .term {
        width: 50%;
        padding: 0 7.5px 30px;
    }
}
@media (max-width: 350px) {
    .term {
        width: 100%;
    }
}



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



/* Regions */
.regions-area {
    padding: 80px 0;
    background: #eafcfe;
}
.regions {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.region {
    width: 25%;
    padding: 0 15px 30px;
}
.region-thumbnail {
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px dashed var(--main-color);
    padding: 10px;
}
.region-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}
.region-details {
    text-align: center;
    padding-top: 10px;
}
.region-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--second-color);
    line-height: 1.3;
}
@media (max-width: 959px) {
    .region {
        width: 33.3%;
    }
}
@media (max-width: 767px) {
    .region {
        width: 50%;
    }
}
@media (max-width: 600px) {
    .regions {
        margin: 0 -7.5px -30px;
    }
    .region {
        padding: 0 7.5px 30px;
    }
    .region-title {
        font-size: 17px;
    }
    .region-thumbnail {
        padding: 7.5px;
    }
}



/* Table */
.region-table th, .region-table td {
    border: 1px solid #324882;
    width: 20%;
}
.region-table tr:nth-child(odd) {
    background: #102c72;
}
.region-table thead tr {
    text-align: center;
    font-size: 18px;
}
.region-table i {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.region-table {
    font-size: 18px;
}
@media (max-width: 767px) {
    .region-table th, .region-table td {
        font-size: 10px;
        padding: 5px;
    }
}



/* Mobile */
.mobile-contents {
    padding-top: 40px;
}
.home-mobile-block {
    padding-bottom: 80px;
}
.home-mobile-about, .home-mobile-contact {
    padding-bottom: 40px;
}
@media (min-width: 767px) {
    .mobile-contents {
        display: none;
    }
}