/*
Custom Properties
 */
:root {
    --color-primary: #3267b0;
    --color-secondary: #4899cd;
    --color-accent: #3BB0E5;
    --color-dark-blue: #0b314a;
    --color-bg: #fbfbfb;
    --color-bg-gray: #ececec;
    --color-footer-bg: #2d2d2d;
    --color-text: #333;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(0, 0, 0, 0.10);
    --header-height: 70px;
    --max-width: 1200px;
    --content-width: 800px;
    --transition-speed: 0.3s;
}

html, body {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    font-size: 18px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: 'Source Sans Pro', sans-serif;
}

a {
    text-decoration: none;
    color: #4899cd;
}

.cookie-info {
    background: rgba(30,30,30,0.95);
    position: fixed;
    bottom: 15px;
    left: 15px;
    color: #fff;
    z-index: 99999;
    padding: 17px 20px;
    max-width: 400px;
    border-radius: 5px;
}

.cookie-info a {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 1px;
}

.newsletter-home {
    margin-top: 60px;
}

.newsletter-home input {
    margin-left: auto !important;
    margin-right: auto !important;
}

.newsletter-home #mc_embed_signup_scroll{
    width: 100% !important;
    text-align: center !important;
}

/*
Header
 */
.fixed-height {
    height: 120px;
}

.logged-in .site-header {
    top: 32px;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(25px);
}

.site-header .main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-height);
    padding: 0 10px;
}

.site-header .main-content .site-branding a {
    display: flex;
    align-items: center;
}

.site-header .main-content .site-branding .logo {
    display: block;
    height: 60px;
    width: 240px;
    object-fit: contain;
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Menu button wrapper — hidden on desktop, shown on mobile via device.css */
.site-header .main-content .mobile-menu {
    display: none;
}

/* Menu toggle button */
.menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 20px;
    color: #333;
    line-height: 1;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.menu-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* Submenu toggle buttons — hidden on desktop, shown on mobile via device.css */
.submenu-toggle {
    display: none;
}

/* Mobile menu overlay — hidden until JS adds .is-visible */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.site-header .main-content .main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.site-header .main-content .main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.site-header .main-content .main-menu li {
    display: inline;
    position: relative;
    cursor: pointer;
}

.site-header .main-content .main-menu li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin: 0px 5px;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s ease;
}

/* Animated underline for top-level items */
.site-header .main-content .main-menu > ul > li > a::after,
.site-header .main-content .main-menu #header-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-header .main-content .main-menu > ul > li > a:hover,
.site-header .main-content .main-menu > ul > li.current-menu-item > a,
.site-header .main-content .main-menu > ul > li.current-menu-ancestor > a,
.site-header .main-content .main-menu #header-menu > li > a:hover,
.site-header .main-content .main-menu #header-menu > li.current-menu-item > a,
.site-header .main-content .main-menu #header-menu > li.current-menu-ancestor > a {
    color: var(--color-secondary);
    background: transparent;
}

.site-header .main-content .main-menu > ul > li > a:hover::after,
.site-header .main-content .main-menu > ul > li.current-menu-item > a::after,
.site-header .main-content .main-menu > ul > li.current-menu-ancestor > a::after,
.site-header .main-content .main-menu #header-menu > li > a:hover::after,
.site-header .main-content .main-menu #header-menu > li.current-menu-item > a::after,
.site-header .main-content .main-menu #header-menu > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

/* Generic fallback hover (sub-menu items) */
.site-header .main-content .main-menu li a:hover {
    background: transparent;
    color: var(--color-secondary);
}

/* ── Dropdown animation ── */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Dropdown / Sub-menu — hidden by default ── */
.site-header .main-content .main-menu li .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 9999;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(50, 103, 176, 0.18);
    border-radius: 6px;
    border-top: 3px solid var(--color-secondary);
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

/* Desktop: reveal sub-menu on hover with animation */
.site-header .main-content .main-menu li:hover > .sub-menu,
.site-header .main-content .main-menu li.focus > .sub-menu {
    display: block;
    animation: dropdownFadeIn 0.22s ease forwards;
}

.site-header .main-content .main-menu .sub-menu li {
    display: block;
}

.site-header .main-content .main-menu .sub-menu li a {
    display: block;
    white-space: nowrap;
    padding: 9px 18px 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: none;
    margin: 0;
    border-left: 3px solid transparent;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-header .main-content .main-menu .sub-menu li a:hover {
    color: var(--color-secondary) !important;
    background: rgba(72, 153, 205, 0.08) !important;
    border-left-color: var(--color-secondary);
}

.site-header .main-content .main-menu .sub-menu li a::after {
    display: none;
}

/* Search icon in top menu */
.site-header #searchToggle.is-active {
    background: var(--color-primary);
    color: #fff;
}

/* Search popup */
.search-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 30px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.search-popup.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-popup .search-popup-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-popup .search-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-popup .screen-reader-text {
    display: none;
}

.search-popup .search-field {
    flex: 1;
    padding: 14px 20px;
    font-size: 20px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease;
    width: 100%;
    min-width: 0;
}

.search-popup .search-field:focus {
    border-color: var(--color-primary);
}

.search-popup .search-submit {
    padding: 18px 20px;
    background: #4899cd;
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.search-popup .search-submit:hover {
    background: #3a7aaa;
}

.search-popup-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 8px 10px;
    line-height: 1;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.search-popup-close:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Search overlay mask */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/*
Main
 */
#content {
    max-width: 800px;
    margin: 10px auto 30px auto;
    overflow: hidden;
    padding: 5px 10px;
}

.type-page .entry-featuredImage img {
    width: 100%;
    height: auto;
}

.archive .page-header .section-name {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 17px;
}

.archive .page-header .page-title {
    margin-top: 0px;
    margin-bottom: 20px;
}

.page-header .entry-title {
    font-size: 40px;
    margin-top: 10px;
}

.page-header .page-title {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.widget-area {
    float: right;
    width: 30%;
    padding: 0 10px;
}

.widget-area .widget {
	margin: 30px 0;
}

.widget-recent-posts .post-loop article {
    float: none;
    width: auto;
    margin: 5px 0;
}

.widget-recent-posts .post-loop article .entry-featuredImage .mask .entry-info {
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget-recent-posts .post-loop article .entry-featuredImage .mask .entry-title {
    left: 10px;
    right: 5px;
}

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

.widget_recent_entries li {
    margin: 15px 0;
}

.widget_recent_entries li a {
    text-decoration: none;
    color: #000;
}

.widget h2 {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #38B5D9;
    padding-bottom: 4px;
}

.widget-area .cat-post-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-area .cat-post-widget li {
    margin: 13px 0;
    font-weight: 700;
    font-size: 14px;
}

.widget-area .cat-post-widget li .post-date {
    font-weight: 600;
    font-size: 11px;
    margin-top: 4px;
}
/*
Post loops
 */
.post-loop {
    overflow: hidden;
}

.post-loop .loop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.post-loop article {
    margin: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    -webkit-transition: box-shadow 0.3s, transform 0.3s;
}

.post-loop article:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

.post-loop article a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-loop article .entry-featuredImage {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e8e8e8;
}

.post-loop article .entry-featuredImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
    -webkit-transition: transform 0.4s;
}

.post-loop article .entry-featuredImage .no-thumbnail {
    width: 100%;
    height: 100%;
    background: #dde4ec;
}

.post-loop article:hover .entry-featuredImage img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.post-loop article .entry-content {
    padding: 15px;
}

.post-loop article .entry-title h2 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #222;
}

.post-loop article .entry-date {
    font-size: 13px;
    color: #888;
}

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

.homeBox.latest-posts .post-loop article .entry-title h2 {
    font-size: 18px;
}

/*
Home
 */
.big-picture {
    background-size: cover;
    background-position: 50% 45%;
    color: #fff;
}

.big-picture .mask {
    height: 600px;
    margin: 0 auto;
    position: relative;

    background: -moz-linear-gradient(45deg, rgba(50,103,176,1) 0%, rgba(59,176,229,0.5) 100%);
    background: -webkit-linear-gradient(45deg, rgba(50,103,176,1) 0%,rgba(59,176,229,0.5) 100%);
    background: linear-gradient(45deg, rgba(50,103,176,1) 0%,rgba(59,176,229,0.5) 100%);
}

.big-picture .mask .content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    text-align: center;
}

.big-picture .mask .content .title {
    font-size: 70px;
    font-weight: 800;
    margin: 0;
}

.big-picture .mask .content .description {
    margin: 15px auto 0px auto;
    font-size: 23px;
    max-width: 600px;
    font-weight: 600;
}

.homeBox {
    margin: 20px 0 70px 0;
    padding: 10px 10px;
}

.homeBox .wrapper {
    text-align: center;
}

.homeBox .wrapper .text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 26px;
}

.homeBox .more {
    font-weight: 600;
    margin-bottom: 10px;
}

.homeBox .more a {
    padding: 6px 15px;
    border: 2px solid #4899cd;
    color: #1b1b1b;
    font-size: 17px;
    font-weight: 500;
}

.homeBox .more a:hover {
    background: #4899cd;
    color: #fff;
}

.homeBox .title {
    font-weight: 800;
    font-size: 35px;
    color: #0b314a;
    margin-bottom: 20px;
    text-align: center;
}

.homeBox .title a {
    color: #0b314a;
}

.homeBox .title .line {
    background: #3BB0E5;
    width: 75px;
    height: 3px;
    margin: 10px auto;
}

.homeBox .text p:first-child {
    margin-top: 0;
}

.homeBox.who-we-are .video {
    margin: 15px auto;
}

.homeBox.who-we-are .video iframe {
    width: 100%;
    max-width: 650px;
    height: auto;
    aspect-ratio: 16 / 9;
}

.homeBox .clients-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.homeBox .clients-list li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeBox .clients-list li img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.homeBox .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.homeBox .services-list li {
    background: #ecf0f1;
}

.homeBox .services-list li .content {
    background-size: cover;
    background-position: 50% 50%;
    padding: 20px 20px;
}

.homeBox .services-list li .icon {
    width: 150px;
    height: 150px;
    background-position: 50% 50%;
    background-size: cover;
    margin: 0 auto 10px auto;
}

.homeBox .services-list li .name {
    font-weight: 700;
    font-size: 23px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.homeBox .services-list li .name a {
    color: #000000;
}

.call-to-action {
    margin: 40px 10px;
}

.call-to-action .content {
    background: -webkit-linear-gradient(160deg, #1a3a8a 0%, #2d7dd2 100%);
    background: linear-gradient(160deg, #1a3a8a 0%, #2d7dd2 100%);
    padding: 60px 48px;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(26, 58, 138, 0.22);
}

.call-to-action .content .title {
    margin: 0 0 12px 0;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.call-to-action .content .tagline {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.82;
    line-height: 1.6;
    margin: 0;
}

.call-to-action .content .button {
    margin: 36px 0 0 0;
}

.call-to-action .content .button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 14px 36px;
    color: #1a3a8a;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.2px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}

.call-to-action .content .button a:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    color: #1a3a8a;
    background: #fff;
}

.call-to-action form input, .call-to-action form select {
    width: 200px;
    margin: 5px !important;
}

.call-to-action div.wpcf7 .ajax-loader {
    display: none;
}

.call-to-action form select {
    padding: 6px 10px;
}

/*
Pagination
*/
.navigation ul {
    list-style: none;
    padding: 0;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    color: #fff;
    text-decoration:none;
}

.navigation li {
    display: inline;
    margin-right: 5px;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    background-color: #557f9b;
    border-radius: 300px;
    cursor: pointer;
    padding: 3px 10px;
}

.navigation li a:hover,
.navigation li.active a {
    background-color: #4899cd;
}

/*
Newsletter Form
 */
.nl-form {
    background: #0b314a;
    padding: 30px 10px;
    text-align: center;
    margin: 10px 0px;
}

.nl-form .title {
    font-weight: 300;
    font-size: 40px;
    color: #4899cd;
    margin-bottom: 10px;
    text-shadow: 0px 0px 23px rgba(0,0,0,0.30);
}

.nl-form .description {
    margin: 10px 0;
    font-size: 14px;
    color: #fff;
}

.nl-form .form input[type="email"] {
    background: rgba(255,255,255,0.10);
    border-radius: 0;
    border: 0;
    color: #fff;
}

.nl-form .form button {
    background: rgba(255,255,255,0.10);
    border-radius: 0;
    color: #fff;
    padding: 9px 20px;
}

.nl-form .form button:hover {
    background: rgba(255,255,255,0.30);
}

.nl-form #resultForm {
    margin: 15px 0;
}

/*
Articles Styling
 */
.single-post .entry-featuredImage {
	max-width: 100%;
    height: auto;
}
 
.single-post article img, .single-post article video {
    width: 100%;
    height: auto;
}

.single-post .dontchangemywidth img {
    width: auto !important;
    height: auto !important;
    text-align: center;
}

.single-post .wp-caption {
    width: inherit !important;
    height: auto !important;
    margin: 0px;
}

.single-post .wp-caption .wp-caption-text {
    font-size: 13px;
    opacity: 0.5;
}

.single-post article .emoji {
    width: 16px !important;
    height: auto !important;
}

article iframe {
    max-width: 100% !important;
    position: static !important;
    border: 0;
}

.single-post .entry-content a {
    text-decoration: none;
    color: #4899cd;
    padding-bottom: 2px;
    font-weight: 800;
}

.single-post article .entry-info {
    margin-bottom: 10px;
}

.single-post article .entry-info, .single-post article .entry-info a {
    text-decoration: none;
	color: #000;
    font-size: 15px;
    margin: 10px 0;
}

.single-post article .entry-title {
    font-size: 20px;
    margin-top: 0;
}

.single-post article .entry-title h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-dark-blue);
}

.single-post article .entry-title a {
    text-decoration: none;
	color: #000;
}

article .entry-content h1,
article .entry-content h2,
article .entry-content h3,
article .entry-content h4,
article .entry-content h5,
article .entry-content h6 {
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}

article .entry-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-blue);
    border-bottom: 2px solid var(--color-bg-gray);
    padding-bottom: 6px;
}

article .entry-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

article .entry-content h4 {
    font-size: 19px;
    font-weight: 700;
}

article .entry-content h5 {
    font-size: 17px;
    font-weight: 600;
}

article .entry-content h6 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-page img {
    width: 100%;
    height: auto;
}

.type-page .dontchangemywidth {
    text-align: center;
}

.type-page .dontchangemywidth img {
    width: auto !important;
    height: auto !important;
}

.single-post article .entry-content, .type-page .entry-content {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

.single-post article .entry-content p,
.type-page .entry-content p {
    margin-top: 0;
    margin-bottom: 1.25em;
}

.single-post article .entry-content {
    position: relative;
    padding-top: 15px;
}

.single-post article .entry-content .description {
    font-size: 19px;
    margin: 0 40px 30px 0;
    line-height: 1.65;
    font-weight: 700;
    color: #444;
}

.single-post article .entry-content .description p {
    margin-top: 5px;
}

.single-post .info {
    font-family: 'Source Sans Pro', sans-serif;
}

.single-post .info .author {
	border-top: 2px solid rgba(0,0,0,0.10);
	border-bottom: 2px solid rgba(0,0,0,0.10);
	padding-top: 4px;
	padding-bottom: 4px;
    margin: 15px 0;
	position: relative;
}

.single-post .info .author-name  {
	margin: 15px 0;
    font-size: 27px;
    font-weight: 700;
}

.single-post .info .author-description  {
    font-size: 14px;
}

.single-post .info .author-social {
	position: absolute;
    top: 5px;
    right: 10px;
}

.single-post .info .author-social ul  {
    padding: 0;
	margin: 5px 0 0 0;
	list-style: none;
}

.single-post .info .author-social li  {
    display: inline;
}

.single-post .info .author-social li a  {
    display: inline-block;
    margin: 4px 5px 4px 0px;
    text-align: center;
    width: 20px;
    padding: 3px 7px;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}

.single-post .info .tags ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.single-post .info .tags li {
    margin-right: 10px;
    display: inline;
}

.single-post .info .tags li a {
    background: #4899cd;
    border-radius: 7px;
    color: #fff;
    display: inline-block;
    padding: 2px 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

blockquote:before {
    color: #ccc;
    content: "\201C";
    font-family: Georgia,serif;
    font-size: 110px;
    font-weight: 700;
    line-height: .1em;
    margin-right: .25em;
    vertical-align: -.4em;
    position: absolute;
    top: 50px;
}

blockquote {
    background: #f6f6f6;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: .5em 10px;
    position: relative;
}

blockquote p {
    padding: 0 65px;
}

.article-page #comments {
    margin-top: 30px;
}

/* Social Share */
.share {
    position: fixed;
    top: 110px;
    left: 20px;
    z-index: 2;
}

.social-share ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-share li {
    display: inline;
    margin: 10px 5px;
}

.social-share li a {
    display: inline-block;
    color: #fff;
    background: #000;
    padding: 7px 0px;
    font-size: 20px;
    text-align: center;
    width: 41px;
    border-radius: 200px;
}

.social-share li a::first-child {
    margin-left: 0;
}

.social-share .fb a {
    background: #3B5998;
}

.social-share .tw a {
    background: #55acee;
}

.social-share .li a {
    background: #0077b5;
}

.social-share .mail a {
    background: #00c300;
}

.social-share .gplus a {
    background: #d34836;
}

.social-share .rss a {
    background: #FF6600;
}

.social-share .socialSharesCounterDiv .shareIcon {
	display: block;
}

.social-share .socialSharesCounterDiv a {
	background: #4899cd;
    font-weight: 600;
}

.facebookColor {background: #3B5998;}
.googlePlusColor {background: #d34836;}
.twitterColor {background: #55acee;}
.globeColor {background: #2c3e50;}

.fbLikeUs {
    margin-top: 10px;
}

/*
Comments
 */
.comment-form #comment {
    width: 100%;
    height: 90px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    position: relative;
    background: #ededed;
    padding: 5px 15px;
    margin: 10px 0;
	border-radius: 20px;
}

.comment-list .comment .comment-meta {
	margin-top: 10px;
}

.comment-list .comment .reply {
    position: absolute;
    right: 10px;
    bottom: 15px;
}

.comment-list .comment .reply a {
    color: #fff;
    background: #313131;
    padding: 5px 10px;
    border-radius: 300px;
    text-decoration: none;
    font-size: 13px;
}

.comment-meta .comment-metadata a {
    font-size: 12px;
    text-decoration: none;
    color: #000;
}

.comment-list .children {
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
}

.comment-form-comment label {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.comment-form-author, 
.comment-form-email,
.comment-form-url {
    overflow: hidden;
}

.comment-form-author label, 
.comment-form-email label,
.comment-form-url label {
    width: 140px;
    display: block;
    float: left;
    margin-top: 7px;
}

/*
Footer
 */
.site-footer {
    background: #2d2d2d;
    color: #fff;
    padding: 10px 0 30px 0;
    z-index: 5;
}

.site-footer .content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-footer .content .logo {
    display: block;
    height: 127px;
    width: 202px;
    margin: 10px auto 0 auto;
    transition: width 0.3s, height 0.3s;
    -webkit-transition: width 0.3s, height 0.3s;
    object-fit: contain;
}

.site-footer .copyright {
    font-size: 14px;
}

.site-footer .follow-us ul {
    list-style: none;
    margin: 10px 0 20px 0;
    padding: 0;
}

.site-footer .follow-us li {
    display: inline;
}

.site-footer .follow-us li a {
    display: inline-block;
    padding: 5px 9px;
    background: #fff;
    color: #000;
    font-size: 14px;
    border-radius: 600px;
    margin-right: 10px;
}

.site-footer .follow-us .facebook a:hover {
    background: #3b5998;
    color: #fff;
}

.site-footer .follow-us .instagram a:hover {
    background: #8a3ab9;
    color: #fff;
}

.site-footer .follow-us .twitter a:hover {
    background: #00aced;
    color: #fff;
}

.site-footer .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0px 0 20px 0;
    text-align: center;
}

.site-footer .footer-menu li {
    display: inline;
}

.site-footer .footer-menu li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 0 10px;
}

.site-footer .footer-menu li a:hover {
    opacity: 0.5;
}

.site-footer .footer-contact {
    margin: 25px 0 25px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-contact-columns {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.site-footer .footer-contact-col {
    flex: 1;
    min-width: 170px;
    max-width: 240px;
}

.site-footer .footer-contact-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3BB0E5;
    margin: 0 0 10px 0;
}

.site-footer .footer-contact-col address,
.site-footer .footer-contact-col p {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 6px 0;
}

.site-footer .footer-contact-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer .footer-contact-col a:hover {
    color: #fff;
}

.site-footer .footer-contact-col .fa {
    color: #3BB0E5;
    margin-right: 7px;
    width: 13px;
    text-align: center;
}

.search-form .screen-reader-text {
    display: none;
}

/*
404 Page
 */
.error-page {
    margin: 60px 0;
    text-align: center;
}

.error-page .img img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 300px;
}

.error-page .search-form {
    margin-top: 20px;
}

.error-page .search-form .screen-reader-text {
    display: none;
}