/*
Theme Name: Myself Pro
Theme URI: https://themepalace.com/downloads/myself-pro
Author: Theme Palace
Author URI: https://themepalace.com
Description: Myself Pro – Modern Portfolio & Personal WordPress Theme. Myself Pro is suitable for personal, portfolio, designer, freelance, and another websites. Myself Pro is absolutely perfect for displaying your skills and experiences and to showcase your amazing portfolio. Myself Pro is fully responsive, so you do not have to worry if your visitors are viewing your site on an iPhone, iPad or a computer. Myself Pro is beautifully crafted, clean, easy to use, responsive, features different layouts with sidebar position and allows unlimited color selection.
Requires at least: 5.0
Version: 1.0.9
Requires PHP: 5.6
Tested up to: 6.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: myself-pro
Tags: translation-ready, custom-background, theme-options, custom-menu, threaded-comments, featured-images, footer-widgets, left-sidebar, editor-style, right-sidebar, full-width-template, two-columns, three-columns, four-columns, grid-layout, custom-colors, custom-header, custom-logo, featured-image-header, blog, portfolio, entertainment

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Myself Pro is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Preloader
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Layouts and Titles
# Media
	## Captions
	## Galleries
# Social Icons
# Breadcrumb List
# Sections
	## Introduction Section
# Footer
# Responsive

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loader {
	overflow-x: hidden;
	overflow-y: hidden;
	vertical-align: middle;
	background-color: #fff;
	position:fixed;
	display: table;
	width: 100%;
	top:0;
	height: 100%;
	min-height: 100%;
	z-index:9999;
}

.loader-container {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 12;
	text-align:center;
	text-transform: uppercase;
}

.loader-container svg {
	width: 70px;
	height: 70px;
	fill: #0bb3e4;
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.blog-loader {
    text-align: center;
    margin-top: 50px;
}
.blog-loader svg {
    width: 30px;
    height: 30px;
}
#LBloadmore svg.latest-posts-loader,
.blog-loader svg {
    margin-left: 15px;
    animation: infinitepreloader 1.5s  infinite ease-in-out;
}
@keyframes infinitepreloader {
	100%{transform: rotate(180deg);}
}

#preloader {
	position:relative;
	margin:auto;
	width:100px;
}

#preloader span {
	display:block;
	bottom:0px;
	width: 9px;
	height: 5px;
	background:#fff;
	position:absolute;
	animation: preloader 1.5s  infinite ease-in-out;
}
 
#preloader span:nth-child(2) {
	left:11px;
	animation-delay: .2s;
}
#preloader span:nth-child(3) {
	left:22px;
	animation-delay: .4s;
}
#preloader span:nth-child(4) {
	left:33px;
	animation-delay: .6s;
}
#preloader span:nth-child(5) {
	left:44px;
	animation-delay: .8s;
}

@keyframes preloader {
    0% {height:5px;transform:translateY(0px);background: #0bb3e4;}
    25% {height:30px;transform:translateY(15px);background: #0bb3e4;}
    50% {height:5px;transform:translateY(0px);background: #0bb3e4;}
    100% {height:5px;transform:translateY(0px);background: #0bb3e4;}
}

.backtotop {
    background-color: #0bb3e4;
    z-index: 300;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 18px;
    text-align: center;
    position: fixed;
    bottom: -100px;
    right: 25px;
    cursor: pointer;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    color: #fff;
}
.backtotop:hover {
	background-color: #333;
}
.backtotop svg {
    display: inline-block;
    vertical-align: middle;
    fill: #fff;
}

@-webkit-keyframes colorchange {
	0%   {border-color: #e30048;}
	25%  {border-color: #0bb3e4;}
	50%  {border-color: #9acf0b;}
	75%  {border-color: #a93d7b;}
	100% {border-color: #f1ad02;}
}

@keyframes colorchange {
	0%   {border-color: #e30048;}
	25%  {border-color: #0bb3e4;}
	50%  {border-color: #9acf0b;}
	75%  {border-color: #a93d7b;}
	100% {border-color: #f1ad02;}
}
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	font-family: 'Oxygen', sans-serif;
	font-weight: 400;
}

#page {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 15px #aaa;
}

.boxed-layout,
.frame-layout {
    background-image: url('assets/uploads/pattern.png');
}

#content {
    position: relative;
}

.no-sidebar-content #inner-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 52px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: #152944;
	margin: 16px 0;
	line-height: 1.3;
	font-weight: 400;
    font-family: 'Playfair Display', serif;
}

mark {
	background: #ff0;
	color: #333;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
tbody {
    text-align: left;
}
tr {
    border: 1px solid #ccc;
}
td,
th {
	padding: 10px 25px;
    font-weight: 400;
}

th {
	color: #fff;
}

td#next {
    text-align: right;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #637279;
	font-size: 16px;
	font-size: 1rem;
	line-height: 28px;
    word-wrap: break-word;
}
p {
	margin: 0 0 1em;
	color: #637279;
}
dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #fff;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Gotham", "Gotham", monospace;  # font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
    overflow-x: hidden;
}
blockquote {
    padding: 21px 25px;
    margin: 30px 0;
    font-size: 22px;
    line-height: 1.5;
}
blockquote.alignright {
    padding-right: 0;
    margin-bottom: 14px;
}
blockquote p:before,
blockquote p:after {
    content: "“";
    display: inline-block;
}
blockquote p:after {
    content: "”";
}
blockquote p {
    margin: 0;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0;
    padding-left: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 0.5em;
}

dt {
	font-weight: bold;
    margin-bottom: 1em;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	vertical-align: middle;
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
    display: inline-block;
    overflow: auto;
}
#wp-calendar {
    display: table;
    width: 100%;
}
#wp-calendar td,
#wp-calendar th {
    padding: 5px
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	text-decoration: none;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	outline: thin dotted;
	text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	padding: 3px;
}

select {
	border: 1px solid #e0e0e0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline: thin dotted;
}

textarea,
#respond input,
.wpcf7 input {
    border: 1px solid #e9e9e9;
    border-radius: 0;
    padding: 0 15px;
}
textarea {
	width: 100%;
	padding: 15px;
}
#respond textarea {
    height: 200px;
    padding: 15px;
}
#respond input[type="submit"] {
	padding: 17px 46px;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 40px;
    min-width: 148px;
    background-color: #0bb3e4;
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    height: auto;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#respond input[type="submit"]:hover,
#respond input[type="submit"]:focus {
	background-color: #152944;
    color: #fff;
}
p.form-submit {
    clear: both;
    display: inline-block;
    position: relative;
}
.comment-notes {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}
#respond label {
    margin-bottom: 7px;
    display: inline-block;
}
#commentform p {    
    margin-bottom: 21px;
}
#commentform p.comment-form-comment {
    margin-bottom: 0;
}
#commentform p.form-submit {
	margin: 21px 0 0;
	text-align: center;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #0bb3e4;
	text-decoration: underline;
}

a:hover,
a:focus,
a:active {
	color: #152944;
}

a:focus {
    outline: thin dotted;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#masthead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3000;
    padding: 30px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#navigation-menu {
    background-color: #fff;
    position: relative;
    z-index: 3;
    min-height: 70px;
}
#masthead .social-icons {
    margin: 10px 0 0;
}
body:not(.home) #masthead {
    position: relative;
    padding: 15px 0;
    background-color: #fff;
}
.site-branding {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.site-logo {
    margin-right: 20px;
}
.site-logo {
    max-height: 60px;
    width: auto;
}
.site-title {
    margin: 0;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.site-title a {
    color: #152944;
    text-decoration: none;
}
.site-title a:hover,
.site-title a:focus {
	color: #0bb3e4;
}
.site-description {
    margin: 4px 0 0;
    line-height: 1.3;
    color: #152944;
    font-weight: bold;
}
.main-navigation {
	display: block;
    position: relative;
}
.main-navigation ul#primary-menu li.current-menu-item > a,
.main-navigation ul#primary-menu li:hover > a {
    color: #0bb3e4;
}
.main-navigation ul#primary-menu li:hover > svg,
.main-navigation li.menu-item-has-children:hover > a > svg,
.main-navigation li.menu-item-has-children > a:hover > svg,
.main-navigation ul#primary-menu > li.current-menu-item > a > svg {
    fill: #0bb3e4;
}
.main-navigation ul ul {
    background-color: #fff;
    text-align: left;
    padding: 0;
}
.main-navigation ul.sub-menu li a {
    padding: 8px 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}
.main-navigation ul.sub-menu a:after {
	float: right;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation .social-menu-item ul {
    display: block;
    border: none;
}
.main-navigation .social-menu-item ul li a {
	width: 40px;
    border: 1px solid #d6d6d6;
}
.main-navigation .social-menu-item ul li {
	margin-right: 10px;
}
#masthead .main-navigation .social-menu-item .social-icons {
    margin: 0;
    padding: 10px;
}
.main-navigation + .social-icons {
	display: none;
}
.main-navigation li {
	position: relative;
}

.main-navigation ul.nav-menu > li > a {
    padding: 22px 8px;
    color: #333;
}
.main-navigation form.search-form input {
    background-color: #333;
    border-color: #333;
    color: #333;
    font-weight: 400;
}
.main-navigation ul.nav-menu > li > a.search:hover svg.icon-search,
.main-navigation ul.nav-menu > li > a.search:focus svg.icon-search,
.main-navigation li.search-menu a:hover svg,
.main-navigation li.search-menu a:focus svg,
.main-navigation li.search-menu a.search-active svg {
	fill: #0bb3e4;
}
.main-navigation a:hover,
.main-navigation ul.nav-menu > li > a:hover {
    color: #0bb3e4;
}
.main-navigation ul.nav-menu{
    margin-right: -25px;
}
.main-navigation a {
	font-size: 14px;
    font-weight: bold;
	display: block;
    text-decoration: none;
	color: #152944;
	text-transform: uppercase;
}
.main-navigation ul ul {
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 225px;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
	color: #333;
}
form.search-form {
    width: 100%;
    max-width: 100%;
    position: relative;
}
.main-navigation form.search-form {
    min-width: 320px;
}
input.search-field {
    height: 50px;
    border-radius: 0;
    padding: 0 50px 0 15px;
    width: 100%;
}
.main-navigation svg.icon-close {
    display: none;
}
#search.hidden-small form.search-form {
    position: absolute;
    left: 0;
    right: 0;
}
svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
.search-menu svg.icon-search {
    fill: #949494;
}
svg.icon-search,
svg.icon-close {
    width: 15px;
    height: 15px;
    fill: #fff;
}
svg.icon-close {
    width: 20px;
    height: 20px;
}
.search-submit svg.icon-search {
    fill: #adadad;
    opacity: 1;
}
.main-navigation svg.icon-down {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    fill: #7b7b7b;
}
.main-navigation .sub-menu svg {
    width: 12px;
    height: 12px;
    fill: #7b7b7b;
    position: absolute;
    right: 15px;
    top: 17px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#site-menu #search {
    display: none;
}
#search-menu {
	display: none;
}
#search-menu .icon-close,
#search-menu.active .icon-search,
.search-menu .icon-close,
.search-menu.active .icon-search {
    display: none;
}
#search-menu.active .icon-close,
.search-menu.active .icon-close {
	display: inline-block;
}
#search-menu button .icon-search,
.search-menu button .icon-search,
#search-menu.active button .icon-search,
.search-menu.active button .icon-search {
	display: inline-block;
}
#search-menu input[type="search"] {
	padding-left: 40px;
    border-radius: 4px;
    min-height: 40px;
    height: auto;
    background-color: #efefef;
    border-color: #efefef;
    padding: 5px 15px 0px 40px;
}
#search-menu form.search-form button.search-submit {
	min-height: 40px;
	height: auto;
}
.menu-toggle {
    border-radius: 0;
    height: 50px;
    line-height: 50px;
    display: block;
    position: relative;
    background-color: transparent;
    border: none;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.menu-toggle:focus {
    outline: thin dotted #000;
}
.menu-toggle.active:focus {
    outline: thin dotted #fff;
}
.secondary-menu-toggle {
	position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}
.secondary-menu-toggle svg {
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: auto;
}
.secondary-menu-toggle svg.icon-close {
    display: none;
    fill: #000;
    width: 16px;
    height: 16px;
}
.secondary-menu-toggle.active svg.icon-menu-bar {
	display: none;
}
.secondary-menu-toggle.active svg.icon-close {
	display: block;
}
#site-menu .menu-toggle.active svg {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.menu-label {
    text-transform: uppercase;
    color: #152944;
    padding: 3px 0 0 10px;
    letter-spacing: 0.05em;
    font-weight: bold;
}
.active .menu-label {
	color: #fff;
}
svg.icon-menu {
    fill: #152944;
    vertical-align: baseline;
    width: 30px;
    height: 30px;
}
svg.icon-close,
.menu-toggle.active svg.icon-menu {
    display: none;
}
.menu-toggle.active svg.icon-close {
	display: block;
}
button.dropdown-toggle {
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    width: 45px;
    height: 57px;
    line-height: 62px;
}
.main-navigation .dropdown-toggle.active > svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.menu-overlay {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.menu-overlay.active {
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 3;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
	position: relative;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
	position: relative;
}
.navigation.post-navigation, 
.navigation.posts-navigation {
    margin-top: 20px;
    background-color: #f6f6f6;
    padding: 23px 20px;
}
.post-navigation a, 
.posts-navigation a {
    font-weight: 500;
    color: #152944;
    display: block;
}
.post-navigation a:hover, 
.posts-navigation a:hover,
.post-navigation a:focus, 
.posts-navigation a:focus {
	color: #0bb3e4;
}
.post-navigation, 
.posts-navigation {
    padding: 0;
    position: relative;
}
.pagination .page-numbers,
.pagination .page-numbers.dots:hover,
.pagination .page-numbers.dots:focus {
    text-align: center;
    line-height: 45px;
    width: 45px;
    height: 45px;
    display: inline-block;
    margin-right: 5px;
    color: #fff;
    background-color: #152944;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
    color: #fff;
    background-color: #0bb3e4;
}
.pagination .prev.page-numbers svg,
.pagination .next.page-numbers svg {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 12px;
    height: 12px;
}
.pagination .next.page-numbers svg {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.prev.page-numbers svg,
.next.page-numbers svg {
    fill: #cecece;
}
.nav-previous span {
    padding-left: 38px;
    float: left;
    text-align: left;
}
.nav-next span {
    padding-right: 38px;
    float: right;
    text-align: right;
}
.navigation .nav-previous svg {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    top: 5px;
    left: 0;
}
.navigation .nav-next svg {
    position: absolute;
    top: 5px;
    right: 0;
}
.post-navigation span,
.posts-navigation span {
    display: table;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.footer-widgets-area:before,
.footer-widgets-area:after,
.wrapper:before,
.wrapper:after,
.widget:before,
.widget:after,
.post-archive:before,
.post-archive:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.footer-widgets-area:before,
.footer-widgets-area:after,
.wrapper:before,
.wrapper:after,
.widget:before,
.widget:after,
.post-archive:before,
.post-archive:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 43px;
}
.widget:last-child {
    margin-bottom: 0;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
    background-color: #efefef;
    padding: 10px;
    border: none;
    width: 100%;
    max-width: 300px;
}
.widget select:focus {
    outline: thin dotted;
}

.widget input {
    height: 40px;
    border-radius: 0;
    padding: 0 15px;
    border: none;
}

form.search-form button.search-submit {
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    width: 45px;
    border-radius: 0;
}
.widget_search form.search-form .search-submit {
    width: auto;
    color: #fff;
    background-color: #202C36;
    left: auto;
    right: 0;
    font-size: 14px;
    height: 50px;
    width: 50px;
    line-height: 25px;
}
.widget_search form.search-form .search-submit:hover,
.widget_search form.search-form .search-submit:focus {
	background-color: #0bb3e4;
	color: #fff;
}
.widget_search form.search-form .search-submit svg {
	fill: #b9b9b9;
	width: 14px;
    height: 14px;
}
.widget_search form.search-form .search-submit:hover svg,
.widget_search form.search-form .search-submit:focus svg {
	fill: #fff;
}
.widget_search form.search-form input {
	border: none;
}
.widget_search form.search-form input {
    padding: 0 55px 0 15px;
    height: 50px;
    background-color: #fff;
}
form.search-form {
    position: relative;
}

form.search-form input {
    width: 100%;
    padding: 0 40px 0 15px;
    font-weight: 300;
}

#wp-calendar tbody td {
    text-align: center;
}

#wp-calendar caption {
    margin-bottom: 15px;
}

.widget-title {
    font-size: 22px;
    margin: 0 0 16px;
}

.widget li:not(:last-child) {
    margin-bottom: 10px;
}

.widget_instagram ul {
    list-style: none;
    margin: -5px;
    padding: 0;
}
.widget.widget_instagram li {
	margin: 0;
	padding: 5px;
}
.widget_instagram .col-1 li {
	width: 100%;
	float: none;
}
.widget_instagram .col-2 li {
	width: 50%;
	float: left;
}
.widget_instagram .col-3 li {
	width: 33.33%;
	float: left;
}
.widget_instagram .col-4 li {
	width: 25%;
	float: left;
}
.widget_instagram .col-5 li {
	width: 20%;
	float: left;
}
.widget_instagram li img {
	width: 100%;
}
.widget.widget_archive li {
	text-align: right;
}
.widget.widget_archive li a {
	float: left;
}
#secondary .widget-title,
#secondary .widgettitle,
#secondary .widget.widget_block h1,
#secondary .widget.widget_block h2,
#secondary .widget.widget_block h3,
#secondary .widget.widget_block h4  {
	margin: 0 0 25px;
    width: 100%;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
}
#secondary .widget:not(:last-child) {
    margin-bottom: 25px;
}
input[type="submit"] {
    padding: 17px 46px;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 40px;
    min-width: 148px;
    background-color: #0bb3e4;
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    height: auto;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
	background-color: #152944;
    color: #fff;
}
.jetpack_subscription_widget form {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}
.jetpack_subscription_widget input[type="email"] {
    width: 100%;
    min-height: 60px;
    padding: 2px 168px 0 30px;
    background-color: #414C57;
    border: none;
    border-radius: 50px;
    color: #fff;
}
.jetpack_subscription_widget input[type="submit"] {
    padding: 13px 23px;
    font-size: 14px;
    line-height: 34px;
    display: inline-block;
    border-radius: 25px;
    min-width: 133px;
    min-height: 60px;
    background-color: #0bb3e4;
    color: #fff;
    border: none;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.jetpack_subscription_widget input[type="submit"]:hover,
.jetpack_subscription_widget input[type="submit"]:focus {
	background-color: #0bb3e4;
}
.jetpack_subscription_widget #subscribe-text {
    display: inline-block;
    margin-bottom: 10px;
}
.jetpack_subscription_widget #subscribe-text p {
    margin-top: 0;
    line-height: 25px;
}
.jetpack_subscription_widget #subscribe-submit {
    display: inline-block;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}
.jetpack_subscription_widget .widget-title {
    margin-bottom: 5px;
}
#subscribe-email label {
    margin-bottom: 7px;
    display: inline-block;
    width: 100%;
}
.widget_popular_post ul,
.widget_latest_post ul,
.widget_featured_post ul {
    padding: 0;
    margin: 0;
    list-style: none;
    clear: both;
    display: table;
}
.widget.widget_popular_post ul li,
.widget.widget_latest_post ul li,
.widget.widget_featured_post ul li {
    clear: both;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}
.widget.widget_popular_post ul li:last-child,
.widget.widget_latest_post ul li:last-child,
.widget.widget_featured_post ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.widget_popular_post h3,
.widget_latest_post h3,
.widget_featured_post h3 {
    font-size: 16px;
    line-height: 1.5;
    display: table-row;
    letter-spacing: 0.01em;
}
.widget_popular_post h3 a,
.widget_latest_post h3 a,
.widget_featured_post h3 a {
	display: block;
}
#secondary .widget_popular_post h3 a,
#secondary .widget_latest_post h3 a,
#secondary .widget_featured_post h3 a {
	font-weight: 600;
}
.widget_popular_post time,
.widget_latest_post time,
.widget_featured_post time {
    display: table-row;
    font-weight: 500;
}
.widget_popular_post h3 a,
.widget_popular_post a:hover time,
.widget_popular_post a:focus time,
.widget_latest_post h3 a,
.widget_latest_post a:hover time,
.widget_latest_post a:focus time,
.widget_featured_post h3 a,
.widget_featured_post a:hover time,
.widget_featured_post a:focus time {
    color: #333;
}
.widget_popular_post h3 a:hover,
.widget_popular_post h3 a:focus,
.widget_popular_post a:hover time,
.widget_popular_post a:focus time,
.widget_latest_post h3 a:hover,
.widget_latest_post h3 a:focus,
.widget_latest_post a:hover time,
.widget_latest_post a:focus time,
.widget_featured_post h3 a:hover,
.widget_featured_post h3 a:focus,
.widget_featured_post a:hover time,
.widget_featured_post a:focus time {
	color: #0bb3e4;
}
.widget_popular_post a time,
.widget_popular_post time,
.widget_latest_post a time,
.widget_latest_post time,
.widget_featured_post a time,
.widget_featured_post time {
    color: #0bb3e4;
    font-family: 'Playfair Display', serif;
}
.widget_popular_post img,
.widget_latest_post img,
.widget_featured_post img {
    max-width: 95px;
    width: 95px;
    height: 95px;
    float: left;
    margin-right: 14px;
}
.textwidget img {
    margin-bottom: 25px;
    display: block;
}
.widget.widget_text .btn {
	margin-top: 20px;
}
.textwidget a {
    line-height: 1.5;
    display: inline-block;
    font-weight: 500;
}
#secondary .jetpack_subscription_widget input[type="email"] {
    height: 50px;
    min-height: auto;
    background-color: #fff;
    border-color: #fff;
    padding: 15px 18px;
}
#secondary .jetpack_subscription_widget input[type="submit"] {
    position: relative;
    margin: auto;
    min-height: 50px;
    border-radius: 0;
    background-color: #333;
    min-width: 151px;
    margin: 0;
    text-transform: uppercase;
}
#secondary .jetpack_subscription_widget input[type="submit"]:hover,
#secondary .jetpack_subscription_widget input[type="submit"]:focus {
	background-color: #0bb3e4;
}
#secondary p#subscribe-email {
    margin-top: 0;
}
#secondary .widget .social-icons {
    text-align: center;
    margin-top: -10px;
}
#secondary .widget .social-icons li a:hover svg,
#secondary .widget .social-icons li a:focus svg {
	fill: #fff;
}
#secondary .widget {
    background-color: #f6f6f6;
    padding: 40px 30px;
}
.widget svg {
	fill: #0bb3e4;
}
#secondary a,
#secondary li {
    color: #637279;
}
#secondary a {
	color: #152944;
}
#secondary a:hover,
#secondary a:focus {
    color: #0bb3e4;
}
.widget_categories li,
.widget.widget_archive ul li {
    text-align: right;
}
.widget_categories li a,
.widget.widget_archive ul li a {
    float: left;
}
.wp-block-search__button {
    background-color: #202C36;
    color: #fff;
    border-color: #202C36;
}
.wp-block-search__button:hover,
.wp-block-search__button:focus {
    background-color: #0bb3e4;
    border-color: #0bb3e4;
}
.tagcloud a {
    text-decoration: none;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}
.hentry {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}
.single span.cat-links {
    display: block;
}
.single span.cat-links ul {
    display: inline-block;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
nav.navigation.pagination {
    margin-top: 50px;
    clear: both;
    display: inline-block;
    width: 100%;
    text-align: left;
}
.navigation.pagination svg {
    fill: #fff;
    width: 16px;
    height: 16px;
    position: relative;
    top: -2px;
}
.navigation.posts-navigation svg, 
.navigation.post-navigation svg {
    width: 20px;
    height: 20px;
    fill: #999;
    display: inline-block;
    vertical-align: middle;
}
.navigation.posts-navigation a:hover svg, 
.navigation.post-navigation a:hover svg,
.navigation.posts-navigation a:focus svg, 
.navigation.post-navigation a:focus svg {
	fill: #0bb3e4;
}
.navigation.posts-navigation svg.icon-left, 
.navigation.post-navigation svg.icon-left {
	margin-right: 20px;
}
.navigation.posts-navigation svg.icon-right, 
.navigation.post-navigation svg.icon-right {
	margin-left: 20px;
}
.post-categories a {
    color: rgba(255, 255, 255, 0.50);
}
.single-post .site-main .comment-navigation, 
.single-post .site-main .posts-navigation, 
.single-post .site-main .post-navigation {
	margin-bottom: 0;
}
.post-navigation .previous-article span span,
.posts-navigation .previous-article span span,
.post-navigation .next-article span span,
.posts-navigation .next-article span span {
    display: block;
}
.post-navigation span.previous-article b,
.post-navigations span.previous-article b,
.post-navigation span.next-article b,
.post-navigations span.next-article b {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.post-navigation span.previous-article,
.post-navigations span.previous-article {
    display: table;
}
.single.no-sidebar #inner-content-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

#reply-title,
.comments-title {
    font-size: 42px;
    margin: 0;
}
.comments-title,
#reply-title {
	margin-bottom: 43px;
	font-size: 32px;
	font-weight: 500;
}
ul.post-categories li:after {
    content: ",";
}
ul.post-categories li:last-child:after {
    display: none;
}
ol.comment-list {
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
}
#comments ol {
    list-style: none;
    margin-left: 0;
    padding: 0;
}
#comments ol.comment-list {
	position: relative;
    overflow: hidden;
}
#comments ol.children {
    margin-left: 90px;
}
.says {
    display: none;
}
.comment-meta img {
    width: 60px;
    height: 60px;
    float: left;
    border-radius: 50%;
    margin-right: 20px;
}
#comments time:before {
    display: none;
}
.comment-body {
    position: relative;
}
.reply {
    padding-left: 80px;
    display: inline-block;
    margin-top: 3px;
}
#comments article {
    margin-bottom: 15px;
    clear: both;
}
.comment-meta .fn {
    margin-left: 20px;
    margin-top: 18px;
}
.comment-content {
    margin-bottom: 13px;
    margin-top: -50px;
    margin-left: 80px;
    background-color: #f6f6f6;
    padding: 55px 20px 20px;
}
#comments ol.comment-list > li:last-child article:last-child,
#comments ol.comment-list > li:last-child {
	border-bottom: none;
}
#comments ol.comment-list > li:first-child {
    padding-top: 0;
}
#comments ol.comment-list > li {
    margin-bottom: 30px;
}
#comments ol.comment-list > li article:last-child .reply {
	border-bottom: none;
    padding-bottom: 0;
}
.reply a {
    display: inline-block;
    color: #fff;
    position: relative;
    font-size: 14px;
    background-color: #0bb3e4;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
}
.reply a:hover,
.reply a:focus {
    background-color: #152944;
    color: #fff;
}
.comment-meta .url,
.comment-meta .fn {
    display: inline-block;
    color: #152944;
    font-size: 16px;
    margin-right: 5px;
    font-weight: 600;
    text-decoration: none;
}
.logged-in-as a {
    text-decoration: none;
}
.comment-meta .fn:after {
    content: "|";
    color: #72757a;
}
.comment-meta .url:hover,
.comment-meta .url:focus,
.comment-metadata a,
.comment-metadata a time {
	color: #0bb3e4;
	text-decoration: none;
}
.comment-metadata a,
.comment-metadata a time {
    color: #152944;
}
.comment-metadata a:hover,
.comment-metadata a:focus,
.comment-metadata a:hover time,
.comment-metadata a:focus time {
	color: #0bb3e4;
}
.cat-links a {
	text-decoration: none;
}
.comment-metadata {
    display: inline-block;
    margin-left: -5px;
}
.comment-content p {
    margin-bottom: 0;
}
#comments {
    margin-top: 40px;
}
.comment-wrap {
    background-color: #fff;
    padding: 20px;
    margin-left: 80px;
}
#respond .comment-form-cookies-consent input[type="checkbox"], 
.comment-form-cookies-consent input[type="checkbox"] {
    width: auto;
    float: left;
    height: auto;
    min-height: auto;
    margin-right: 10px;
}
#respond .comment-form-cookies-consent label, 
.comment-form-cookies-consent label {
    display: table;
    margin: 0;
    line-height: 1;
}
.comment-form-cookies-consent {
    clear: both;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Layouts and titles
--------------------------------------------------------------*/
section {
	position: relative;
}
.relative {
	display: block;
	position: relative;
}
.relative:before,
.relative:after {
	content: "";
	display: table;
	clear: both;
}
.page-section {
	padding: 60px 0;
}
.entry-content {
	margin-top: 0;
}
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.entry-title,
.section-title {
    font-size: 32px;
    font-size: 2em;
    margin: 0 0 16px;
    word-wrap: break-word;
}
.entry-title a,
.section-title a,
ul li a {
    text-decoration: none;
}
.section-header {
    margin-bottom: 35px;
}
.section-title {
    font-size: 32px;
    font-size: 2em;
    position: relative;
    padding-bottom: 36px;
}
.section-title:after {
    content: "";
    background-color: #f7ab00;
    width: 40px;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.section-subtitle {
    color: #0bb3e4;
    text-transform: uppercase;
    font-size: 22px;
    font-size: 1.375em;
    margin: 0;
    font-weight: 400;
}
.section-content {
    margin-bottom: 38px;
    line-height: 35px;
}
.section-content p {
    margin-bottom: 0;
}
.overlay {
    background-color: #152944;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.read-more {
    text-align: center;
}
.btn {
    padding: 17px 46px;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 40px;
    min-width: 148px;
    background-color: #0bb3e4;
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn:hover,
.btn:focus {
	background-color: #152944;
    color: #fff;
}
#infinite-handle {
    text-align: center;
    margin-bottom: 30px;
}
button:focus {
	border: none;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
/*--------------------------------------------------------------
## Social Icons
--------------------------------------------------------------*/
.social-icons li {
    display: inline-block;
    height: auto;
    text-align: center;
    position: relative;
    list-style: none;
}
.footer-widgets-area .widget .social-icons li {
	display: inline-block;
    width: auto;
}
.social-icons li:not(:last-child) {
    margin-right: 5px;
}
.social-icons,
.social-icons ul {
    margin: 0;
    padding: 0;
}
.social-icons li a {
    background-color: transparent;
    width: 40px;
    height: 40px;
    line-height: 35px;
    display: block;
    border: 2px solid #BCCAD3;
    border-radius: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.social-icons li a:hover svg,
.social-icons li a:focus svg {
	fill: #fff;
}
.social-icons li a:hover svg,
.social-icons li a:focus svg {
	fill: #fff;
}
.social-icons li a svg {
    fill: #949494;
    margin: 0;
}
/*--------------------------------------------------------------
## Social Icons Hover Color
--------------------------------------------------------------*/
.social-icons li a[href*="facebook.com"]:hover,
.social-icons li a[href*="fb.com"]:hover,
.social-icons li a[href*="facebook.com"]:focus,
.social-icons li a[href*="fb.com"]:focus {
 	background-color: #3c5798 !important;
 	border-color: #3c5798;
}
.social-icons li a[href*="twitter.com"]:hover,
.social-icons li a[href*="twitter.com"]:focus {
 	background-color: #1ea0f1 !important;
 	border-color: #1ea0f1;
}
.social-icons li a[href*="linkedin.com"]:hover,
.social-icons li a[href*="linkedin.com"]:focus {
 	background-color: #0077B5 !important;
 	border-color: #0077B5;
}
.social-icons li a[href*="plus.google.com"]:hover,
.social-icons li a[href*="plus.google.com"]:focus {
 	background-color: #ec7161 !important;
 	border-color: #ec7161;
}

.social-icons li a[href*="youtube.com"]:hover,
.social-icons li a[href*="youtube.com"]:focus {
 	background-color: #cc181e !important;
 	border-color: #cc181e;
}

.social-icons li a[href*="dribbble.com"]:hover,
.social-icons li a[href*="dribbble.com"]:focus {
 	background-color: #f4a09c !important;
 	border-color: #f4a09c;
}

.social-icons li a[href*="pinterest.com"]:hover,
.social-icons li a[href*="pinterest.com"]:focus {
 	background-color: #bd081b !important;
 	border-color: #bd081b;
}

.social-icons li a[href*="bitbucket.org"]:hover,
.social-icons li a[href*="bitbucket.org"]:focus {
 	background-color: #205081 !important;
 	border-color: #205081;
}

.social-icons li a[href*="github.com"]:hover,
.social-icons li a[href*="github.com"]:focus {
 	background-color: #323131 !important;
 	border-color: #323131;
}

.social-icons li a[href*="codepen.io"]:hover,
.social-icons li a[href*="codepen.io"]:focus {
 	background-color: #333 !important;
 	border-color: #333;
}

.social-icons li a[href*="flickr.com"]:hover,
.social-icons li a[href*="flickr.com"]:focus {
 	background-color: #025FDF !important;
 	border-color: #025FDF;
}

.social-icons li a[href$="/feed/"]:hover,
.social-icons li a[href$="/feed/"]:focus {
 	background-color: #089DE3 !important;
 	border-color: #089DE3;
}

.social-icons li a[href*="foursquare.com"]:hover,
.social-icons li a[href*="foursquare.com"]:focus {
 	background-color: #F94877 !important;
 	border-color: #F94877;
}

.social-icons li a[href*="instagram.com"]:hover,
.social-icons li a[href*="instagram.com"]:focus {
 	background-color: #B9358A !important;
 	border-color: #B9358A;
}

.social-icons li a[href*="tumblr.com"]:hover,
.social-icons li a[href*="tumblr.com"]:focus {
 	background-color: #56BC8A !important;
 	border-color: #56BC8A;
}

.social-icons li a[href*="reddit.com"]:hover,
.social-icons li a[href*="reddit.com"]:focus {
 	background-color: #FF4500 !important;
 	border-color: #FF4500;
}

.social-icons li a[href*="vimeo.com"]:hover,
.social-icons li a[href*="vimeo.com"]:focus {
 	background-color: #00ADEF !important;
 	border-color: #00ADEF;
}

.social-icons li a[href*="digg.com"]:hover,
.social-icons li a[href*="digg.com"]:focus {
 	background-color: #00ADEF !important;
 	border-color: #00ADEF;
}

.social-icons li a[href*="twitch.tv"]:hover,
.social-icons li a[href*="twitch.tv"]:focus {
 	background-color: #0E9DD9 !important;
 	border-color: #0E9DD9;
}

.social-icons li a[href*="stumbleupon.com"]:hover,
.social-icons li a[href*="stumbleupon.com"]:focus {
 	background-color: #EB4924 !important;
 	border-color: #EB4924;
}

.social-icons li a[href*="delicious.com"]:hover,
.social-icons li a[href*="delicious.com"]:focus {
 	background-color: #0076E8 !important;
 	border-color: #0076E8;
}

.social-icons li a[href*="mailto:"]:hover,
.social-icons li a[href*="mailto:"]:focus {
 	background-color: #4169E1 !important;
 	border-color: #4169E1;
}
.social-icons li a[href*="soundcloud.com"]:hover,
.social-icons li a[href*="soundcloud.com"]:focus {
 	background-color: #FF5500 !important;
 	border-color: #FF5500;
}
.social-icons li a[href*="wordpress.org"]:hover,
.social-icons li a[href*="wordpress.org"]:focus {
 	background-color: #0073AA !important;
 	border-color: #0073AA;
}
.social-icons li a[href*="wordpress.com"]:hover {
 	background-color: #00AADC !important;
 	border-color: #00AADC;
}

.social-icons li a[href*="jsfiddle.net"]:hover,
.social-icons li a[href*="jsfiddle.net"]:focus {
 	background-color: #396AB1 !important;
 	border-color: #396AB1;
}

.social-icons li a[href*="tripadvisor.com"]:hover,
.social-icons li a[href*="tripadvisor.com"]:focus {
 	background-color: #FFE090 !important;
 	border-color: #FFE090;
}

.social-icons li a[href*="angel.co"]:hover,
.social-icons li a[href*="angel.co"]:focus {
 	background-color: #333 !important;
 	border-color: #333;
}

.social-icons li a[href*="slack.com"]:hover,
.social-icons li a[href*="slack.com"]:focus {
 	background-color: #E60264 !important;
 	border-color: #E60264;
}
/*--------------------------------------------------------------
#  Page Site Header
--------------------------------------------------------------*/
#page-site-header {
    padding: 50px 0;
    text-align: center;
    background-color: #333;
    color: #fff;
}
#page-site-header .page-title {
	font-size: 36px;
	color: #fff;
}
.error404.left-sidebar #primary,
.error404.right-sidebar #primary,
.error404.no-sidebar #primary {
    width: 100%;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    float: none;
    text-align: center;
}
/*--------------------------------------------------------------
#  Breadcrumb List
--------------------------------------------------------------*/
.trail-items {
    margin: 0;
    padding: 0;
    list-style: none;
}
.trail-items li {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.trail-items li a {
	color: rgba(255, 255, 255, 0.60);
}
.trail-items li a:hover,
.trail-items li a:focus {
	color: #fff;
}
.trail-items li:not(:last-child):after {
	content: "/";
    color: rgba(255, 255, 255, 0.60);
    padding-left: 4px;
    padding-right: 2px;
}
/*--------------------------------------------------------------
#  Page Site Header
--------------------------------------------------------------*/
#page-site-header {
    padding: 275px 0;
    text-align: center;
    position: relative;
    background-color: #333;
    background-size: cover;
    background-position: 50%;
}
#page-site-header .wrapper {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    width: 90%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#page-site-header .page-title {
	font-size: 32px;
	color: #fff;
    margin: 0;
    line-height: 1.5;
}
/*--------------------------------------------------------------
#  Introduction Section
--------------------------------------------------------------*/
#introduction-section {
    background-color: #EBEEF3;
    padding: 150px 0 0;
}
#introduction-section .wrapper {
    position: relative;
}
#introduction-section .entry-title {
    color: #152944;
    font-size: 52px;
    line-height: 1.1;
    max-width: 345px;
    font-weight: bold;
}
#introduction-section .entry-title a {
    color: #152944;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#introduction-section .entry-title a:hover,
#introduction-section .entry-title a:focus {
	color: #0bb3e4;
}
#introduction-section .entry-content, 
#introduction-section .entry-content p {
    color: #152944;
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
}
#introduction-section .entry-content {
	margin-bottom: 43px;
}
#introduction-section .btn:hover, 
#introduction-section .btn:focus {
    background-color: #fff;
    color: #293134;
}
.separator {
    background-color: #f7ab00;
    width: 40px;
    height: 6px;
}
#introduction-section .separator {
	margin-bottom: 50px;
}
.buttons a:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 20px;
}
#introduction-section .entry-container {
    margin-bottom: 30px;
}
#introduction-section .featured-image img {
    position: relative;
    z-index: 1;
}
/*--------------------------------------------------------------
#  About Me
--------------------------------------------------------------*/
#about-me,
#my-profile,
#my-services,
#my-portfolio,
#my-clients,
#testimonial-slider-section,
#latest-posts,
#call-to-action {
    background-color: #fff;
}
#about-me .section-header {
    margin-left: auto;
    margin-right: auto;
}
#about-me .entry-container {
    text-align: center;
}
#about-me article.has-post-thumbnail .entry-container {
    margin-bottom: 50px;
}
#about-me article.has-post-thumbnail .featured-image {
    padding-bottom: 100%;
    background-size: cover;
    background-position: 50%;
}
/*--------------------------------------------------------------
#  Gallery Slider
--------------------------------------------------------------*/
#about-me + #my-profile,
#my-profile + #my-services {
    padding-top: 0;
}
.profile-slider {
    margin: 0 -15px;
}
.profile-slider article {
    padding: 0 15px;
}
.profile-slider .featured-image {
    padding-bottom: 100%;
    background-size: cover;
    background-position: 50%;
    position: relative;
}
.profile-slider .entry-header {
    text-align: center;
    margin-bottom: 30px;
}
.profile-slider .entry-header a {
    display: block;
    text-decoration: none;
}
.profile-slider .entry-title {
    margin-bottom: 10px;
}
.profile-slider article:hover .entry-title,
.profile-slider article:hover .entry-header p {
	color: #0bb3e4;
}
.profile-slider article .entry-header p {
	border-bottom: 1px solid transparent;
	margin-bottom: 0;
	display: inline-block;
    line-height: 20px;
}
.profile-slider article:hover .entry-header p {
	border-bottom-color: #0bb3e4;
}
.profile-slider .overlay {
    background-color: #152944;
    opacity: 0.8;
}
.profile-slider .featured-image:before {
    content: "";
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 30px;
    margin: 0 auto;
    z-index: 1;
}
.more-link {
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    line-height: 45px;
    position: relative;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.profile-slider .overlay,
.profile-slider .more-link,
.profile-slider .featured-image:before {
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.more-link:hover, 
.more-link:focus {
    border-color: #0bb3e4;
    background-color: #0bb3e4;
}
.more-link svg {
    fill: #fff;
    width: 22px;
    height: 22px;
}
.profile-slider .more-link {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 20px;
}
.slick-dots li {
	margin: 0;
}
.slick-dots li button {
	background-color: rgba(0, 0, 0, 0.25);
	width: 10px;
	height: 10px;
	border-radius: 10px;
}
.slick-dots li.slick-active button {
	background-color: #0bb3e4;
}
.slick-dots li button:before {
	display: none;
}
/*--------------------------------------------------------------
#  Our Services
--------------------------------------------------------------*/
#my-services .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#my-services .section-title:after {
	left: 0;
	right: 0;
}
#my-services .entry-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 22px;
    font-weight: 600;
}
#my-services .entry-title a {
	color: #152944;
}
#my-services .entry-content {
	line-height: 35px;
}
.section-header {
    max-width: 500px;
}
.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.tabs li {
    display: block;
    margin-bottom: 10px;
}
ul.tabs li:last-child {
	margin-bottom: 0;
}
ul.tabs li a {
	color: #637279;
	text-transform: uppercase;
    font-weight: bold;
	display: inline-block;
    border-bottom: 2px solid transparent;
}
ul.tabs li.active a {
	color: #0bb3e4;
    border-bottom: 2px solid #0bb3e4;
}
ul.tabs li a:hover,
ul.tabs li a:focus,
#my-services .entry-title a:hover,
#my-services .entry-title a:focus {
	color: #0bb3e4;
}
#my-services .icon {
    margin-bottom: 30px;
}
.tab-section {
    border-bottom: 1px solid #e5e5e5;
    margin-top: 28px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-align: center;
}
.tab-section-content.col-4 article {
    width: 100%;
    padding: 0 15px;
}
#my-services article .service-item-wrapper {
    padding: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#my-services article:hover .service-item-wrapper {
    box-shadow: 15px 26px 40px 0px rgba(0, 0, 0, 0.1);
}
.tab-content {
    margin: 0 -30px;
    display: none;
    text-align: center;
}
.tab-content.active {
	display: block;
}
.service-item-wrapper .fa {
    font-size: 52px;
}
/*--------------------------------------------------------------
#  Working Experience
--------------------------------------------------------------*/
#working-experience {
    padding-bottom: 0;
	background: #0b88c0; /* Old browsers */
	background: -moz-linear-gradient(left, #0b88c0 0%, #112e7a 100%, #207cca 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0b88c0 0%,#112e7a 100%,#207cca 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0b88c0 0%,#112e7a 100%,#207cca 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#working-experience .section-title {
    color: #fff;
}
#working-experience .section-title:after {
	margin-left: 0;
}
#working-experience .section-content, 
#working-experience .section-content p {
    color: #fff;
}
.working-experience-slider .featured-image img {
	width: 100%;
	height: 260px;
    object-fit: cover;
}
.working-experience-slider .entry-container {
    padding: 43px 30px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-right: none;
    position: relative;
}
.working-experience-slider article:first-child .entry-container {
    border-left: 1px solid #e5e5e5;
}
.working-experience-slider:before,
.working-experience-slider:after {
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    left: -100%;
}
.working-experience-slider:after {
	left: auto;
    right: -100%;
}
.working-experience-slider .entry-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 22px;
    font-weight: 600;
}
.working-experience-slider .entry-meta {
	margin-bottom: 15px;
}
.working-experience-slider .posted-on a {
	color: #f7ab00;
}
.working-experience-slider .entry-title a {
	color: #152944;
}
.working-experience-slider .entry-title a:hover,
.working-experience-slider .entry-title a:focus,
.working-experience-slider .posted-on a:hover,
.working-experience-slider .posted-on a:focus {
	color: #0bb3e4;
}
.working-experience-slider .slick-prev:before,
.working-experience-slider .slick-next:before {
	-webkit-filter: brightness(0) invert(1);
	-moz-filter: brightness(0) invert(1);
	-ms-filter: brightness(0) invert(1);
	-o-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
#  My Portfolio
--------------------------------------------------------------*/
.grid {
    margin: 0 -10px;
}
.grid-item {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
}
.grid-item .featured-image {
    background-size: cover;
    background-position: 50%;
    padding-bottom: 100%;
    position: relative;
}
.grid-item .more-link {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 50px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.grid-item .overlay {
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.grid-item .overlay:after {
    content: "";
    border: 15px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.grid-item .entry-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 30px 30px;
}
.grid-item .entry-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Oxygen', sans-serif;
}
.grid-item .entry-title a {
	color: #fff;
}
.grid-item .entry-title a:hover,
.grid-item .entry-title a:focus {
	opacity: 0.8;
}
.post-categories {
    list-style: none;
    padding: 0;
}
.post-categories li:not(:last-child):after {
    content: ",";
    color: #f7ab00;
}
.post-categories li a {
    color: #f7ab00;
}
.post-categories li a:hover,
.post-categories li a:focus {
	color: #0bb3e4;
}
#my-portfolio .read-more {
    margin-top: 30px;
}
/*--------------------------------------------------------------
#  My Video
--------------------------------------------------------------*/
#my-video {
    padding-bottom: 0;
	background: #0b88c0; /* Old browsers */
	background: -moz-linear-gradient(left, #0b88c0 0%, #112e7a 100%, #207cca 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0b88c0 0%,#112e7a 100%,#207cca 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0b88c0 0%,#112e7a 100%,#207cca 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#my-video .section-title,
#my-video .section-content,
#my-video .section-content p {
    color: #fff;
    text-align: center;
}
#my-video .section-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    margin-top: 40px;
    height: 0;
    max-width: 1031px;
    margin-left: auto;
    margin-right: auto;
}
.video-wrapper .wp-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
}
.video-wrapper .mejs-container {
    width: 100% !important;
    height: 100% !important;
}
/*--------------------------------------------------------------
#  My Clients
--------------------------------------------------------------*/
#my-clients {
    padding-bottom: 0;
    border-bottom: 1px solid #e5e5e5;
}
#my-clients .section-content {
    text-align: center;
}
#my-clients .read-more {
	margin-top: 40px;
    margin-bottom: 70px;
}
.happy-clients {
    text-align: center;
    position: relative;
}
.happy-clients article {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.happy-clients .featured-image {
    margin-bottom: 30px;
}
.happy-clients .entry-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.center-featured-image {
    margin-bottom: 0;
}
/*--------------------------------------------------------------
#  Testimonial Slider Section
--------------------------------------------------------------*/
#testimonial-slider-section .section-header {
    max-width: 530px;
}
.testimonial-slider .entry-content,
.testimonial-slider .entry-content p {
    text-align: center;
    font-family: 'Oxygen', sans-serif;
    font-size: 22px;
    line-height: 35px;
    font-weight: 600;
    color: #2b353e;
    letter-spacing: 0.01em;
}
.quote-icon {
    text-align: center;
    margin: 25px 0;
    display: inline-block;
    width: 100%;
}
.quote-icon img {
	margin-left: auto;
	margin-right: auto;
}
.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.title-wrapper img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	margin-right: 15px;
	border-radius: 80px;
}
.title-wrapper .entry-title {
	font-family: 'Oxygen', sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}
.title-wrapper p {
	margin-bottom: 0;
}
.title-wrapper .entry-title a {
	color: #2b353e;
}
.title-wrapper .entry-title a:hover,
.title-wrapper .entry-title a:focus {
	color: #0bb3e4;
}
.slick-prev,
.slick-next {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	z-index: 10;
}
.slick-prev {
	left: 0;
}
.slick-next {
	right: 0;
}
.slick-prev:before,
.slick-next:before {
    content: "";
    background-image: url('assets/uploads/prev-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 50px;
    height: 50px;
}
.slick-next:before {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.classic-slider .testimonial-slider .slick-list {
    margin: 0;
}
.classic-slider .testimonial-slider article {
	opacity: 1;
	padding: 0;
}
.classic-slider .wrapper.testimonial-wrapper {
	width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
/*--------------------------------------------------------------
#  My Skills
--------------------------------------------------------------*/
#my-skills {
    background-color: #333;
    background-position: 50%;
    background-size: cover;
}
#my-skills .overlay {
    opacity: 0.85;
    background: #0b88c0; /* Old browsers */
	background: -moz-linear-gradient(left, #0b88c0 0%, #112e7a 100%, #207cca 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0b88c0 0%,#112e7a 100%,#207cca 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0b88c0 0%,#112e7a 100%,#207cca 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#my-skills .section-title, 
#my-skills .section-content, 
#my-skills .section-content p {
    color: #fff;
    text-align: center;
}
#my-skills .read-more a {
    background-color: #fff;
    color: #152944;
}
#my-skills .read-more a:hover,
#my-skills .read-more a:focus {
	background-color: #152944;
	color: #fff;
}
#my-skills .hentry {
	position: relative;
    margin-bottom: 100px;
}
#my-skills .hentry:last-child {
	margin-bottom: 0;
}
.skillbar-outer {
    background-color: rgba(255, 255, 255, 0.30);
    width: 100%;
    height: 10px;
    position: relative;
}
.skillbar-inner {
    background-color: #fff;
    width: 0;
    height: 10px;
}
.skill-percentage {
    position: absolute;
    right: 0;
    bottom: 18px;
    color: #fff;
    font-weight: bold;
}
.skill-name {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    top: -35px;
}
.skill-item {
    margin-top: 62px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.skill-item:not(:last-child) {
    margin-bottom: 62px;
}
#my-skills .pie-title {
    color: #fff;
    margin-top: 0;
}
#my-skills .tp-skills-horizontalbar .outer-box {
    background-color: rgba(255, 255, 255, 0.30);
    width: 100%;
    height: 10px;
    position: relative;
}
#my-skills .tp-skills-horizontalbar .inner-fill {
    background-color: #fff;
    height: 10px;
    position: initial;
}
#my-skills .tp-skills-horizontalbar .skill-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    display: inline-block;
}
#my-skills .tp-skills-horizontalbar .percent-value {
    position: absolute;
    right: 0;
    bottom: 18px;
    color: #fff;
    font-weight: bold;
}


/*--------------------------------------------------------------
#  Contact Me Section
--------------------------------------------------------------*/
#contact-me {
    background-size: cover;
    background-position: 50%;
}
#contact-me .overlay {
    opacity: 0.85;
    background: #0b88c0;
    background: -moz-linear-gradient(left, #0b88c0 0%, #112e7a 100%, #207cca 100%);
    background: -webkit-linear-gradient(left, #0b88c0 0%,#112e7a 100%,#207cca 100%);
    background: linear-gradient(to right, #0b88c0 0%,#112e7a 100%,#207cca 100%);
}
#contact-me .section-title {
    color: #fff;
}
#contact-me .section-title:after {
	margin-left: 0;
}
#contact-me .hentry {
    position: relative;
}
#respond input, 
.wpcf7 input {
	height: auto;
    width: 100%;
}
.comment-author.vcard {
    display: inline-block;
}
#respond input[type="submit"],
.wpcf7 input[type="submit"] {
	height: auto;
    width: auto;
}
.wpcf7 input[type="submit"] {
    float: right;
}
#contact-me input[type="text"], 
#contact-me input[type="email"], 
#contact-me input[type="url"], 
#contact-me input[type="password"], 
#contact-me input[type="search"], 
#contact-me input[type="number"], 
#contact-me input[type="tel"], 
#contact-me input[type="range"], 
#contact-me input[type="date"], 
#contact-me input[type="month"], 
#contact-me input[type="week"], 
#contact-me input[type="time"], 
#contact-me input[type="datetime"], 
#contact-me input[type="datetime-local"], 
#contact-me input[type="color"], 
#contact-me textarea {
	background-color: rgba(255, 255, 255, 0.20);
    border: none;
    color: #fff;
}
#contact-me textarea {
	height: 200px;
}
#contact-me label {
    color: rgba(255, 255, 255, 0.80);
}
#contact-me form p {
    margin-bottom: 30px;
}
#contact-me form p:nth-last-child(-n+3) {
    margin-bottom: 23px;
}
#contact-me form {
    max-width: 569px;
    margin-left: auto;
    margin-right: auto;
}
#contact-me .social-icons li a svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
#contact-me .social-icons li a {
    width: 70px;
    height: 70px;
    line-height: 65px;
    border-color: rgba(255, 255, 255, 0.20);
}
#contact-me .social-icons li a:hover,
#contact-me .social-icons li a:focus {
    border-color: transparent;
}
#contact-me .social-icons li:not(:last-child) {
	margin-right: 15px;
}
#contact-me .social-icons {
    margin-top: 40px;
}
#contact-me .col-2 {
    margin: 0 -25px;
}
#contact-me .col-2 .hentry {
    padding: 0 25px;
}
ul.contact-info {
    list-style: none;
    padding: 0;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}
ul.contact-info li:not(:last-child) {
    margin-bottom: 43px;
}
ul.contact-info span a:not(:last-child):after {
    content: ",";
    margin-right: 5px;
}
ul.contact-info svg {
    fill: #fff;
    float: left;
    margin-right: 20px;
    margin-top: 6px;
}
ul.contact-info span {
    display: table-row;
}
ul.contact-info span.title {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
ul.contact-info a {
	color: #fff;
}
ul.contact-info a:hover,
ul.contact-info a:focus {
	opacity: 0.8;
}
#contact-me input::-webkit-input-placeholder,
#contact-me textarea::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}
#contact-me input::-moz-placeholder,
#contact-me textarea::-moz-placeholder {
	color: #fff;
	opacity: 1;
}
#contact-me input:-moz-placeholder,
#contact-me textarea:-moz-placeholder {
	color: #fff;
	opacity: 1;
}
#contact-me input::-ms-input-placeholder,
#contact-me textarea::-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

/*--------------------------------------------------------------
#  Archive/Blog
--------------------------------------------------------------*/
.archive-blog-wrapper .has-post-thumbnail .post-wrapper {
    position: relative;
}
.archive-blog-wrapper .post-wrapper {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 50px;
}
.archive-blog-wrapper .read-more {
    text-align: left;
}
.archive-blog-wrapper .post-categories,
.single .post-categories {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}
.archive-blog-wrapper .post-categories li,
.single .post-categories li {
    display: inline-block;
}
.single .post-categories a {
	color: #637279;
}
.single .post-categories a:hover,
.single .post-categories a:focus {
    color: #0bb3e4;
}
.single .byline {
    margin-bottom: 7px;
    display: block;
}
.archive-blog-wrapper .entry-container {
    padding: 33px 40px;
    text-align: center;
}
.archive-blog-wrapper .entry-title {
    font-family: 'Oxygen', sans-serif;
    font-weight: bold;
    font-size: 22px;
}
.archive-blog-wrapper .entry-title a {
	color: #152944;
}
.archive-blog-wrapper .byline a,
.archive-blog-wrapper .posted-on a {
    color: #637279;
    text-decoration: none;
}
.archive-blog-wrapper .entry-title a:hover,
.archive-blog-wrapper .entry-title a:focus,
.archive-blog-wrapper .byline a:hover,
.archive-blog-wrapper .posted-on a:hover,
.archive-blog-wrapper .byline a:focus,
.archive-blog-wrapper .posted-on a:focus {
	color: #0bb3e4;
}
.archive-blog-wrapper .entry-meta > span:not(:last-child):after {
    content: "-";
    margin-left: 5px;
}
.archive-blog-wrapper .entry-content {
    margin-bottom: 30px;
}
.archive-blog-wrapper .entry-content p {
    margin-bottom: 0;
}
.single .posted-on {
    margin-bottom: 15px;
    display: block;
}
.single .posted-on a {
    background-color: #0bb3e4;
    color: #fff;
    padding: 2px 15px;
    margin-bottom: 0;
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
}
.archive-blog-wrapper article .featured-image {
	position: relative;
	width: 100%;
}
.archive-blog-wrapper article .featured-image img {
	width: 100%;
}
.archive-blog-wrapper article:nth-child(odd) .featured-image:before,
.archive-blog-wrapper article:nth-child(even) .featured-image:before {
	content: "";
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-bottom: 14px solid #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    width: 28px;
    margin: 0 auto;
}
.archive-blog-wrapper.col-1,
.archive-blog-wrapper.col-2 {
    max-width: 400px;
    margin: 0 auto;
}
.archive-blog-wrapper.col-2 {
    max-width: 800px;
}
body:not(.home) .archive-blog-wrapper.col-2 {
	max-width: 100%;
}
#latest-posts .read-more {
    margin-top: 50px;
}
#latest-posts {
    background-color: #EBEEF3;
}
.archive-blog-wrapper article {
    background-color: #fff;
    border: 1px solid #eee;
}

/*--------------------------------------------------------------
#  Medical Slider
--------------------------------------------------------------*/
#medical-slider article {
    position: relative;
    background-size: cover;
    background-position: 50%;
    padding: 100px 0;
}
#medical-slider .overlay {
    opacity: 0.3;
}
#medical-slider .medical-slider-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 90%;
    padding: 50px;
}
#medical-slider .entry-title {
	margin: 0 0 20px;
	font-size: 32px;
}
#medical-slider .entry-content {
    max-width: 650px;
    margin: 0 auto 30px;
}
#medical-slider .entry-title,
#medical-slider .entry-title a,
#medical-slider .entry-content,
#medical-slider .entry-content p {
	color: #fff;
}
#medical-slider .entry-content p {
    margin-bottom: 0;
}
#medical-slider .entry-title a:hover,
#medical-slider .entry-title a:focus {
	color: #fff;
	opacity: 0.8;
}
#medical-slider .medical-read-more a {
    background-color: #fff;
    color: #4D273F;
}
#medical-slider .medical-read-more a:hover,
#medical-slider .medical-read-more a:focus {
    background-color: #000;
    color: #fff;
}
.medical-read-more a {
    background-color: #4D273F;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 10px 30px;
    line-height: 28px;
    text-transform: none;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.medical-read-more a:hover,
.medical-read-more a:focus {
	background-color: #000;
	color: #fff;
}
#medical-slider .slick-dots {
	position: absolute;
	bottom: 20px;
}
#medical-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 7px;
}
#medical-slider .slick-dots li button {
	height: 12px;
    width: 12px;
    border-radius: 12px;
    padding: 0;
    background-color: #fff;
}
#medical-slider .slick-dots li.slick-active button {
	background-color: #4D273F;
}

/*--------------------------------------------------------------
#  Medical Services Section
--------------------------------------------------------------*/
.medical-service-item .inner-box {
	position: relative;
	z-index: 9; 
}

.medical-service-item .inner-box .featured-image {
	position: relative;
	overflow: hidden;
	background: rgba(77, 39, 63, 0.5); 
}

.medical-service-item .inner-box .featured-image img {
	width: 100%;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s; 
}

.medical-service-item .inner-box:hover .featured-image img {
	opacity: .05;
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2); 
}

.medical-service-item .entry-header {
	position: relative;
	border-bottom: 2px #E6B59E dashed;
	margin: -40px 10px 0;
	background: #fff;
	text-align: center;
	padding: 30px 15px 30px;
	-webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05); 
}

#medical-services .entry-title {
	font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
    font-size: 20px;
}

#medical-services .entry-title a {
	color: #002c42;
}

/*--------------------------------------------------------------
#  Medical About Us Section
--------------------------------------------------------------*/
#medical-services + #medical-about-us {
    padding-top: 0;
}
#medical-about-us .entry-title {
    font-weight: bold;
}
#medical-about-us .entry-title a {
    color: #002c42;
}
#medical-about-us .entry-content {
    margin-bottom: 30px;
}
#medical-about-us .featured-image {
    background-size: cover;
    background-position: 50%;
    background-color: #333;
    padding: 150px 0;
    margin-bottom: 25px;
}
#medical-about-us .read-more {
    text-align: left;
}

/*--------------------------------------------------------------
#  Medical Reasons Section
--------------------------------------------------------------*/
#medical-reasons {
    background-color: #4D273F;
    padding: 0;
}
#medical-reasons p {
	color: #fff;
}
#medical-reasons .wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
#medical-reasons .entry-title,
#medical-reasons .entry-title a,
#medical-reasons .entry-content,
#medical-reasons ul {
    color: #fff;
}
#medical-reasons .entry-title {
    font-weight: bold;
}
#medical-reasons .entry-content {
    margin-bottom: 25px;
}
#medical-reasons .featured-image {
    background-size: cover;
    background-position: 50%;
    background-color: #333;
    padding: 150px 0;
}
#medical-reasons .entry-container  {
	padding: 30px;
	background-size: cover;
}
#medical-reasons .entry-title a:hover,
#medical-reasons .entry-title a:focus {
	color: #fff;
	opacity: 0.8;
}
/*--------------------------------------------------------------
#  Medical Features Section
--------------------------------------------------------------*/
#medical-features {
    background-color: #f5f5f5;
}
#medical-features .medical-feature-item {
	position: relative;
	text-align: center;
	background: #ffffff;
	padding: 50px 50px 30px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#medical-features .medical-feature-item .entry-title {
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
    font-size: 20px;
}
#medical-features .medical-feature-item .entry-title,
#medical-features .medical-feature-item .entry-title a {
	color: #002c42;
}
#medical-features .feature-icon a {
    color: #4D273F;
}
#medical-features .medical-feature-item .entry-content {
	font-size: 18px;
	line-height: 35px;
}
#medical-features .medical-feature-item:hover {
	background: #E6B59E;
}
#medical-features .medical-feature-item:hover .feature-icon i,
#medical-features .medical-feature-item:hover .entry-title,
#medical-features .medical-feature-item:hover .entry-content p,
#medical-features .medical-feature-item:hover .entry-title a {
	color: #fff;
}
#medical-features .feature-icon i {
    font-size: 40px;
}

/*--------------------------------------------------------------
#  Medical News
--------------------------------------------------------------*/
#medical-news article {
	position: relative;
}
#medical-news .medical-news-item {
    box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.08);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.04, 0.37, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.04, 0.37, 1);
    background-color: #fff;
    border-radius: 7px 7px 0 0;
}
#medical-news .medical-news-item:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}
#medical-news .featured-image {
    background-size: cover;
    background-position: 50%;
    background-color: #333;
    padding: 125px 0;
    position: relative;
}
#medical-news .entry-container {
    padding: 30px;
}
#medical-news .entry-title {
    font-size: 20px;
    font-weight: bold;
}
#medical-news .entry-title a {
    color: #002c42;
}
#medical-news .entry-title a:hover,
#medical-news .entry-title a:focus,
#medical-about-us .entry-title a:hover,
#medical-about-us .entry-title a:focus,
#medical-services .entry-title a:hover,
#medical-services .entry-title a:focus {
	color: #4D273F;
}
#medical-news .entry-content {
    margin-bottom: 25px;
}
#medical-news .post-read-more {
    border-top: 1px solid #eee;
    padding-top: 15px;
}
#medical-news .post-read-more a {
    color: #002c42;
}
#medical-news .post-read-more a:after {
    content: "\f178";
    font-family: "FontAwesome";
    display: inline-block;
    font-size: 16px;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    margin-left: 7px;
    position: relative;
    text-shadow: none;
    text-transform: none;
    transition: all 0.3s ease 0s;
}
#medical-news .date {
    position: absolute;
    left: -15px;
    top: 22px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 15px 5px;
    min-width: 70px;
    z-index: 9;
    background: #4D273F;
    line-height: 1.3em;
    text-align: center;
}
#medical-news .date:before {
    position: absolute;
    content: '';
    background: #4D273F;
    width: 15px;
    height: 20px;
    left: 0;
    bottom: -20px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

@media screen and (min-width: 567px) {
	#medical-about-us .featured-image,
	#medical-reasons .featured-image {
	    padding: 200px 0;
	}
}

@media screen and (min-width: 767px) {
	#medical-slider article {
	    padding: 150px 0;
	}
	#medical-slider .entry-title {
		font-size: 42px;
	}
	#medical-about-us .entry-title,
	#medical-reasons .entry-title {
	    font-size: 32px;
	}
	#medical-about-us article.has-post-thumbnail,
	#medical-reasons article.has-post-thumbnail {
		display: table;
	    width: 100%;
	    position: relative;
	}
	#medical-about-us article.has-post-thumbnail .featured-image,
	#medical-reasons article.has-post-thumbnail .featured-image {
		width: 50%;
		display: table-cell;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	#medical-about-us article.has-post-thumbnail .entry-container,
	#medical-reasons article.has-post-thumbnail .entry-container {
		width: 50%;
		display: table-cell;
		padding: 50px 0 50px 50px;
		text-align: left;
	}
	#medical-reasons article.has-post-thumbnail .entry-container {
		padding: 50px;
	}
}

@media screen and (min-width: 1024px) {
	#medical-slider .entry-title {
		font-size: 62px;
	}
	#medical-about-us .entry-title,
	#medical-reasons .entry-title {
	    font-size: 42px;
	}
	#medical-reasons article.has-post-thumbnail .entry-container {
		padding: 70px;
	}
}

@media screen and (min-width: 1900px) {
	#medical-reasons article.has-post-thumbnail .entry-container {
		padding: 100px;
	}
}

/*--------------------------------------------------------------
# Second Design
--------------------------------------------------------------*/
.second-design #masthead {
    position: relative;
    background-color: #fff;
    padding: 10px 0;
}
.second-design:not(.dark-version) .menu-toggle svg.icon-close {
    fill: #000;
}
.second-design .section-header {
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.second-design .section-title {
    margin-bottom: 15px;
    padding-bottom: 0;
}
.second-design .section-title:after {
	display: none;
}
.second-design .section-subtitle {
    font-size: 16px;
    text-transform: none;
    color: #666;
}
.second-design.dark-version #masthead,
.dark-version #medical-features .medical-feature-item,
.dark-version .medical-service-item .entry-header,
.dark-version #medical-news .medical-news-item {
    background-color: #1c1c1c;
}
.dark-version #medical-services .entry-title a,
.dark-version #medical-about-us .entry-title a,
.second-design.dark-version .section-subtitle,
.dark-version #medical-features .feature-icon a,
.dark-version #medical-features .medical-feature-item .entry-title a,
.dark-version #medical-news .entry-title a,
.dark-version #medical-news .post-read-more a {
    color: #fff;
}
.dark-version #medical-services .entry-title a:hover,
.dark-version #medical-services .entry-title a:focus,
.dark-version #medical-about-us .entry-title a:hover,
.dark-version #medical-about-us .entry-title a:focus,
.dark-version #medical-features .feature-icon a:hover,
.dark-version #medical-features .feature-icon a:focus,
.dark-version #medical-features .medical-feature-item .entry-title a:hover,
.dark-version #medical-features .medical-feature-item .entry-title a:focus,
.dark-version #medical-news .entry-title a:hover,
.dark-version #medical-news .entry-title a:focus,
.dark-version #medical-news .post-read-more a:hover,
.dark-version #medical-news .post-read-more a:focus {
	color: #fff;
	opacity: 0.8;
}
.dark-version #medical-features {
    background-color: #111;
}


/*--------------------------------------------------------------
# Third Design  Business Slider
--------------------------------------------------------------*/
.third-design #masthead {
    position: relative;
    padding: 0;
}
.business-section-header {
    margin-bottom: 50px;
    text-align: center;
}
.business-section-title {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin: 0 0 20px;
}
.business-section-title:after,
.third-design .section-title:after,
.fourth-design .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #6dc234;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.third-design #colophon .widget-title:before, 
.third-design #colophon .widgettitle:before, 
.third-design #colophon .widget.widget_block h1:before, 
.third-design #colophon .widget.widget_block h2:before, 
.third-design #colophon .widget.widget_block h3:before, 
.third-design #colophon .widget.widget_block h4:before,
.fourth-design #colophon .widget-title:before, 
.fourth-design #colophon .widgettitle:before, 
.fourth-design #colophon .widget.widget_block h1:before, 
.fourth-design #colophon .widget.widget_block h2:before, 
.fourth-design #colophon .widget.widget_block h3:before, 
.fourth-design #colophon .widget.widget_block h4:before,
.sixth-design #colophon .widget-title:before, 
.sixth-design #colophon .widgettitle:before, 
.sixth-design #colophon .widget.widget_block h1:before, 
.sixth-design #colophon .widget.widget_block h2:before, 
.sixth-design #colophon .widget.widget_block h3:before, 
.sixth-design #colophon .widget.widget_block h4:before {
	background-color: #6dc234;
}
.third-design #colophon .site-info a,
.fourth-design #colophon .site-info a {
	color: #6dc234;
}
.business-section-subtitle {
    margin: 0 auto;
    max-width: 600px;
}
.third-design .no-padding-top {
	padding-top: 0 !important;
}
#business-slider article {
    position: relative;
    background-size: cover;
    background-position: 50%;
    padding: 100px 0;
}
#business-slider .business-slider-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0;
    width: 90%;
    padding: 50px;
    border-radius: 4px;
   margin: auto;    
}
#business-slider .entry-title {
    margin: 0 0 20px;
    line-height: 1.2;
}
#business-slider .entry-content {
    max-width: 650px;
    margin: 0 auto 30px;
}
#business-slider .entry-title,
#business-slider .entry-title a,
#business-slider .entry-content,
#business-slider .entry-content p {
    color: #fff;
}
#business-slider .entry-content p {
    margin-bottom: 0;
}
#business-slider .entry-title a:hover,
#business-slider .entry-title a:focus {
    color: #fff;
    opacity: 0.8;
}
#business-slider .business-read-more a {
    background-color: #6dc234;
    color: #fff;
}
#business-slider .business-read-more a:hover,
#business-slider .business-read-more a:focus {
    background-color: #000;
    color: #fff;
}
.third-design .btn {
	background-color: #6dc234;
}
.business-read-more a {
    padding: 17px 46px;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 40px;
    min-width: 148px;
    background-color: #6dc234;
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.business-read-more a:hover,
.business-read-more a:focus,
.third-design .btn:hover,
.third-design .btn:focus {
    background-color: #000;
    color: #fff;
}
#business-slider .slick-dots {
    bottom: 20px;
    margin: 0;
    position: absolute;
}
#business-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 7px;
}
#business-slider .slick-dots li button {
    height: 12px;
    width: 12px;
    border-radius: 12px;
    padding: 0;
    background-color: #fff;
}
#business-slider .slick-dots li.slick-active button {
    background-color: #6dc234;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
#  Business About Us
--------------------------------------------------------------*/
#business-about-us {
    background-color: #f1f6fc;
}
#business-about-us article.has-post-thumbnail .featured-image {
    padding: 150px 0;
    background-size: cover;
    background-position: 50%;
    background-color: #333;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}
#business-about-us .entry-container {
    text-align: center;
}
#business-about-us .entry-title {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin: 0 0 25px;
}
#business-about-us .entry-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #6dc234;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#business-about-us .entry-title a {
    color: #232323;
}
#business-about-us .entry-content {
    margin: 0 0 25px;
}

/*--------------------------------------------------------------
#  Travel Destination Section
--------------------------------------------------------------*/
#travel-destination-section {
    padding-bottom: 30px;
}
#travel-destination-section .travel-destination-wrapper {
    text-align: center;
    position: relative;
    overflow: hidden;
}
#travel-destination-section .overlay-one {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0;
    filter : alpha(opacity=0) ;
    transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    -webkit-transition: opacity .3s;
}
#travel-destination-section .overlay-two {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    background: linear-gradient(0deg,rgba(0,0,0,.8) 0,transparent);
}
#travel-destination-section .travel-destination-wrapper:hover .overlay-one {
    opacity: .65;
    filter: alpha(opacity=65);
}
#travel-destination-section .featured-image {
    position: relative;
    padding: 185px 0;
    background-size: cover;
    background-position: 50%;
    background-color: #000;
}
#travel-destination-section .featured-image a {
    display: block;
}
#travel-destination-section article .entry-title {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 600;
    color: #fff;
}
#travel-destination-section article .entry-title a,
#travel-destination-section .entry-content,
#travel-destination-section .entry-content p {
    color: #fff;
}
#travel-destination-section .entry-content {
    margin-bottom: 15px;
}
#travel-destination-section article .entry-title a:hover,
#travel-destination-section article .entry-title a:focus {
    color: #fff;
    opacity: 0.8;
}
#travel-destination-section .entry-container {
    padding: 30px 15px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translate(0,0);
    -moz-transform: translate(0,0);
    -webkit-transform: translate(0,0);
    transition: transform .2s ease-out,top .2s ease-out;
    -moz-transition: transform .2s ease-out,top .2s ease-out;
    -o-transition: transform .2s ease-out,top .2s ease-out;
    -webkit-transition: transform .2s ease-out,top .2s ease-out;
}
#travel-destination-section .travel-destination-wrapper:hover .entry-container {
    top: 50%;
    bottom: auto;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#travel-destination-section .entry-header {
    padding: 50px 15px;
    text-align: center;
    transform: translate(0,-100%);
    -moz-transform: translate(0,-100%);
    -webkit-transform: translate(0,-100%);
    transition: transform .2s ease-out,padding .2s ease-out;
    -moz-transition: transform .2s ease-out,padding .2s ease-out;
    -o-transition: transform .2s ease-out,padding .2s ease-out;
    -webkit-transition: transform .2s ease-out,padding .2s ease-out;
}
#travel-destination-section .travel-destination-wrapper:hover .entry-header {
    padding-bottom: 8px;
    transform: translate(0,0);
    -moz-transform: translate(0,0);
    -webkit-transform: translate(0,0);
}
#travel-destination-section .btn {
    padding: 8px 15px;
    font-size: 13px;
    line-height: 1.3;
}
#travel-destination-section article.no-post-thumbnail .entry-container {
    width: 100%;
    float: none;
}
#travel-destination-section article .entry-content p:last-child {
    margin-bottom: 0;
}
#travel-destination-section .entry-meta {
    margin-bottom: 5px;
}
#travel-destination-section .entry-meta .cat-links {
    color: #fff;
}
#travel-destination-section .entry-meta .cat-links:before {
    display: none;
}
#travel-destination-section .entry-meta a {
    color: rgba(255, 255, 255, 0.90);
    font-size: 15px;
}
#travel-destination-section .entry-meta a:hover,
#travel-destination-section .entry-meta a:focus {
    color: #fff;
}
.more-link {
    text-transform: uppercase;
    font-weight: 600;
}
.view-all i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
#travel-destination-section .more-link {
    color: #6dc234;
    border: none;
    width: auto;
    height: auto;
    line-height: 0;
    border-radius: 0;
    text-decoration: none;
}
#travel-destination-section .more-link:hover,
#travel-destination-section .more-link:focus {
    color: #fff;
    background-color: transparent;
}
.popular-destination-trip-duration,
.popular-destination-trip-price {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #6dc234;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 8px 12px;
    line-height: 1;
}
.popular-destination-trip-price {
    left: auto;
    right: 20px;
}

.third-design #my-video {
    text-align: center;
    margin: auto;
    overflow: hidden;
}

.wp-travel.trip-headline-wrapper .featured-detail-section.right-plot {
    width: 100%;
    float: none;
}
.wp-travel.trip-headline-wrapper .right-plot-inner-wrap {
    padding: 0;
    margin-bottom: 50px;
}
.wp-travel.trip-headline-wrapper .wp-detail-review-wrap .wp-travel-trip-detail {
    display: block;
    text-align: center;
}
.single.single-itineraries .wp-travel-content .wp-travel-trip-meta-info {
    padding: 0;
}
.single.single-itineraries .wp-travel-trip-meta-info {
    margin-top: 0;
}
.wp-travel-trip-meta-info {
    position: relative;
    background-color: #4dcce6;
    max-width: 979px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    padding: 23px 30px;
    border: none;
}
.wp-travel-trip-meta-info ul {
    clear: both;
    display: table;
    width: 100%;
}
.single.single-itineraries .right-plot-inner-wrap .wp-travel-trip-meta-info ul li {
    padding: 0;
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    margin-right: 0;
    margin-top: 0;
    font-size: 16px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    padding: 25px;
}
.single.single-itineraries .right-plot .right-plot-inner-wrap .travel-info .title {
    color: #fff;
    text-align: center;
    font-size: 20px;
}
.travel-info .title, 
.travel-info .value, 
.wp-travel-trip-meta-info ul li a ,
#secondary .travel-info .title, 
#secondary .travel-info .value, 
#secondary .wp-travel-trip-meta-info ul li a {
    color: #fff;
}
.wp-travel-trip-meta-info ul li a:hover,
#secondary .travel-info .title:hover, 
#secondary .travel-info .value:hover, 
#secondary .wp-travel-trip-meta-info ul li a:hover,
.wp-travel-trip-meta-info ul li a:focus,
#secondary .travel-info .title:focus, 
#secondary .travel-info .value:focus, 
#secondary .wp-travel-trip-meta-info ul li a:focus {
    color: #333;
}
.wp-travel-trip-meta-info ul li .travel-info:last-child {
    margin-bottom: 0;
}
.wp-travel-booking-wrapper {
    margin: 30px 0 0;
}
.wp-travel.trip-headline-wrapper .wp-travel-booknow-btn, 
#wp-travel-send-enquiries,
.wptravel-book-your-trip.wp-travel-booknow-btn {
    padding: 11px 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    border: 1px solid;
    display: inline-block;
    margin-top: 7px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    background-color: #4dcce6;
    border-color: #4dcce6;
    color: #fff;
    line-height: 35px;
    border-radius: 0;
    letter-spacing: 0.1em;
    outline: none;
    height: auto;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.wptravel-book-your-trip {
    margin-right: 15px;
}
#secondary span.wp-travel-booking-enquiry {
	color: #fff;
}
.wp-travel.trip-headline-wrapper .wp-travel-booknow-btn:hover, 
.wp-travel.trip-headline-wrapper .wp-travel-booknow-btn:focus, 
#wp-travel-send-enquiries:hover, 
#wp-travel-send-enquiries:focus,
.wptravel-book-your-trip.wp-travel-booknow-btn:hover,
.wptravel-book-your-trip.wp-travel-booknow-btn:focus,
.wp-travel-default-article .wp-travel-explore a:hover,
.wp-travel-default-article .wp-travel-explore a:focus,
#shopping-cart .cart-summary .cart-summary-bottom .update-cart-form .field-inline .btn:hover,
#shopping-cart .cart-summary .cart-summary-bottom .update-cart-form .field-inline .btn:focus {
    background-color: #000;
    border-color: #000;
    color: #fff;
}
#shopping-cart .cart-summary .cart-summary-bottom .update-cart-form .field-inline .btn {
    background-color: #0bb3e4;
}
.single.single-itineraries .wp-travel.trip-headline-wrapper .wp-travel-booking-enquiry {
    transition: 0s;
}
.booking-form .dashicons.dashicons-editor-help {
    vertical-align: middle;
}
.wp-travel-trip-code {
    margin-top: 20px;
}
.wp-travel-trip-code code {
    color: #4dcce6;
    font-size: 16px;
}
.wp-travel-tab-wrapper {
    margin-bottom: 50px !important;
}
.single.single-itineraries .wp-travel-tab-wrapper .tab-list.resp-tabs-list {
    max-width: 100%;
    margin: 0px auto 0;
    padding: 0 25px;
    position: relative;
    background-color: #f9f9f9;
}
.single.single-itineraries .wp-travel-tab-wrapper .tab-list.resp-tabs-list li {
    color: #777;
    font-weight: 600;
    font-size: 15px;
}
.wp-travel-tab-wrapper .tab-list.resp-tabs-list li.resp-tab-active {
    border-bottom: 6px solid #ff8737;
}
.wp-travel-tab-wrapper .tab-list.resp-tabs-list li {
    text-align: center;
    border-right: none;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    padding: 26px 10px;
    clear: none;
    width: auto;
    margin: 0 5px;
}
.wp-travel-tab-wrapper .tab-list.resp-tabs-list li:last-child {
    border-right: none;
}
.wp-tab-review-inner-wrapper .wp-travel-noreviews {
    text-align: left;
    padding-left: 27px;
}
.single.single-itineraries #reviews .comment-respond {
    background: transparent;
    border: none;
    margin: 0 auto;
    margin-top: 20px;
}
.wp-travel-tab-wrapper .wp-travel button.slick-arrow.slick-prev::before,
.wp-travel-tab-wrapper .wp-travel button.slick-arrow.slick-next::before {
	content: "" !important;
	display: none;
}
.wp-travel-tab-wrapper .wp-travel button.slick-arrow {
    display: none !important;
}
.wp-travel-booking__panel-bottom .right-info {
    padding-right: 50px;
}
/*--------------------------------------------------------------
#  Travel Archive
--------------------------------------------------------------*/
.right-sidebar .secondary-inactive #primary, 
.left-sidebar .secondary-inactive #primary {
    width: 100%;
    padding: 0;
    float: none;
}
.wp-travel-default-article {
    background-color: #fff;
    border-radius: 15px;
    border: none;
    padding: 20px;
}
.archive-blog-wrapper article.wp-travel-default-article {
    display: block;
    align-items: center;
    flex-direction: column;
}
.wp-travel-default-article .wp-travel-article-image-wrap img {
    border-radius: 15px;
    width: 100%;
}
.wp-travel-article-image-wrap .wp-travel-average-review {
    font-size: 14px;
    margin-top: 20px;
}
.wp-travel-article-image-wrap .wp-travel-review-text {
    display: none;
}
.wp-travel-default-article .wp-travel-entry-content-wrapper .description-left {
    padding: 0 25px;
}
.wp-travel-default-article .wp-travel-entry-content-wrapper .description-left .entry-title, 
.wp-travel-itinerary-items .wp-travel-post-item-wrapper .post-title a {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.wp-travel-default-article .wp-travel-entry-content-wrapper .description-left .entry-content {
    margin-bottom: 15px;
}
.entry-meta .category-list-items {
    float: none;
    padding: 0;
}
.description-left .entry-meta .travel-info {
    display: block;
    float: none;
    color: #242625;
}
.description-left .entry-meta .travel-info span.group-size {
    display: inline-block;
    text-align: left;
    min-width: 145px;
}
.description-right .travel-info span, 
.description-left .entry-meta .travel-info span.group-size {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #979797;
}
.entry-meta .travel-info span, .entry-meta .category-list-items span {
    font-size: 16px;
    color: #000;
}
.wp-travel-default-article .wp-travel-entry-content-wrapper .description-right {
    border-left-color: #dcdcdc;
}
.description-right .wp-detail-review-wrap {
    margin-bottom: 15px;
}
.description-right .travel-info {
    display: block;
    color: #242625;
    font-weight: bold;
    text-align: right;
}
.description-right .travel-info span, 
.description-left .entry-meta .travel-info span.group-size {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #979797;
}
.description-right .travel-info .wp-travel-trip-time.trip-duration i, 
.description-right .travel-info .wp-travel-trip-time.trip-duration i + span {
    display: inline-block;
    vertical-align: middle;
}
.wp-travel-trip-time.trip-duration .wp-travel-trip-duration {
    font-size: 16px;
}
.wp-travel-default-article .wp-travel-explore {
    margin-bottom: 0;
    margin-top: 20px;
    width: 100%;
    text-align: right;
}
.wp-travel-default-article .wp-travel-explore a, .wp-travel-toolbar .wp-travel-filter-button .btn-wp-travel-filter {
    padding: 5px 19px;
    border: none;
    background-color: #0bb3e4;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    min-width: 134px;
    line-height: 27px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/*--------------------------------------------------------------
#  Business Services
--------------------------------------------------------------*/
#business-services-section article {
    text-align: center;
}
#business-services-section .service-item {
    background-color: #6dc234;
    border: none;
    padding: 30px;
}
#business-services-section .icon-container {
    margin-bottom: 20px;
}
#business-services-section .icon-container a {
    display: inline-block;
    font-size: 42px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #333;
}
#business-services-section .entry-title {
    font-size: 22px;
}
#business-services-section .entry-content, 
#business-services-section .entry-title a, 
#business-services-section .icon-container a,
#business-services-section .service-item .entry-content p {
    color: #fff;
}
#business-services-section .entry-title a:hover, 
#business-services-section .entry-title a:focus, 
#business-services-section .icon-container a:hover, 
#business-services-section .icon-container a:focus {
    color: #fff;
    opacity: 0.8;
}
#business-services-section .service-item .entry-content {
    font-size: 14px;
    line-height: 26px;
}

/*--------------------------------------------------------------
#  Travel Tours Section
--------------------------------------------------------------*/
#travel-tours-section .travel-tours-wrapper {
    background-color: #fff;
    box-shadow: 0 0 23px rgba(10, 10, 10,0.08);
}
#travel-tours-section .featured-image {
    position: relative;
    background-size: cover;
    background-position: 50%;
    padding: 135px 0;
}
#travel-tours-section .entry-title {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}
#travel-tours-section .travel-tours-wrapper a {
	color: #232323;
}
#travel-tours-section .travel-tours-wrapper a:hover,
#travel-tours-section .travel-tours-wrapper a:focus {
	color: #6dc234;
}
#travel-tours-section .entry-container {
    padding: 30px;
}
#travel-tours-section .popular-tours-meta {
    clear: both;
    display: table;
    width: 100%;
    margin-top: 20px;
}
#travel-tours-section .popular-tours-trip-duration {
    float: left;
    text-align: left;
    color: #8c8c8c;
    font-weight: 500;
}
#travel-tours-section .popular-tours-trip-price {
    color: #6dc234;
    font-size: 22px;
    font-weight: 600;
    float: right;
    text-align: right;
}
#travel-tours-section .fa.fa-clock-o {
    color: #6dc234;
    margin-right: 10px;
    font-size: 18px;
}
#travel-tours-section .customer-rating i {
    color: #ccc;
}
#travel-tours-section .customer-rating.star-1 i:nth-child(1) {
    color: #FACC21;
}
#travel-tours-section .customer-rating.star-2 i:nth-child(1),
#travel-tours-section .customer-rating.star-2 i:nth-child(2) {
    color: #FACC21;
}
#travel-tours-section .customer-rating.star-3 i:nth-child(1),
#travel-tours-section .customer-rating.star-3 i:nth-child(2),
#travel-tours-section .customer-rating.star-3 i:nth-child(3) {
    color: #FACC21;
}
#travel-tours-section .customer-rating.star-4 i:nth-child(1),
#travel-tours-section .customer-rating.star-4 i:nth-child(2),
#travel-tours-section .customer-rating.star-4 i:nth-child(3),
#travel-tours-section .customer-rating.star-4 i:nth-child(4) {
    color: #FACC21;
}
#travel-tours-section .customer-rating.star-5 i:nth-child(1),
#travel-tours-section .customer-rating.star-5 i:nth-child(2),
#travel-tours-section .customer-rating.star-5 i:nth-child(3),
#travel-tours-section .customer-rating.star-5 i:nth-child(4),
#travel-tours-section .customer-rating.star-5 i:nth-child(5) {
    color: #FACC21;
}

/*--------------------------------------------------------------
#  Business Counter
--------------------------------------------------------------*/
#business-counter {
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
}
#business-counter .overlay {
    opacity: 0.7;
    background-color: #6dc234;
}
#business-counter article {
    position: relative;
    z-index: 1;
    text-align: center;
}
#business-counter .counter-icon i {
    font-size: 36px;
    color: #fff;
}
#business-counter .counter-value {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
#business-counter .counter-value:after {
    content: "+";
}
#business-counter .entry-title {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 0;
}
#business-counter .separator-line {
    width: 45px;
    height: 1px;
    background-color: #fff;
    margin: 15px auto;
    opacity: 0.5;
}

/*--------------------------------------------------------------
#  Business Subscribe Us
--------------------------------------------------------------*/
#business-subscribe-us {
    background-size: cover;
    background-position: 50%;
    background-color: #333;
}
#business-subscribe-us .overlay {
    opacity: 0.7;
    background-color: #000;
}
#business-subscribe-us .subscribe-form-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}
#business-subscribe-us .subtitle {
    color: #fff;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0;
}
#business-subscribe-us .widgettitle {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    background-color: transparent;
}
#business-subscribe-us .widgettitle:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#business-subscribe-us #subscribe-text {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 40px;
}
#business-subscribe-us #subscribe-text p {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
}
#business-subscribe-us .jetpack_subscription_widget #subscribe-submit {
    position: relative;
    margin-top: 15px;
}
#business-subscribe-us input[type="email"] {
    width: 100%;
    border-radius: 0;
    padding: 10px 20px;
    max-width: 500px;
    margin: 0 auto 10px;
    font-weight: 400;
    font-size: 14px;
    min-height: auto;
    background-color: #ddd;
}
#business-subscribe-us button[type="submit"] {
    color: #fff;
    background-color: #000;
    padding: 10px 30px;
    line-height: 28px;
    font-size: 16px;
    border-radius: 0;
    border: none;
}
#business-subscribe-us button[type="submit"]:hover,
#business-subscribe-us button[type="submit"]:focus {
    background-color: #fe463a;
    color: #fff;
}

/*--------------------------------------------------------------
#  Business Latest Posts
--------------------------------------------------------------*/
#business-latest-posts .business-post-item {
    box-shadow: 0 10px 30px 0 rgba(50,50,50,0.16);
    border-radius: 4px;
    background-color: #fff;
}
#business-latest-posts .business-post-item .entry-container {
    padding: 25px;
}
#business-latest-posts .entry-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
}
#business-latest-posts .entry-title a {
    color: #232323;
}
#business-latest-posts .entry-content {
    color: #aaa;
    margin-bottom: 15px;
}
#business-latest-posts .entry-meta {
    border-top: 1px solid #ececec;
    padding-top: 15px;
}
#business-latest-posts .posted-on {
    float: left;
}
#business-latest-posts .more-link {
    float: right;
    background-color: transparent;
    padding: 0;
    width: auto;
    height: auto;
    line-height: 28px;
    border: none;
    border-radius: 0;
}
#business-latest-posts .posted-on a {
    color: #888;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}
#business-latest-posts .more-link a {
    font-weight: 600;
    color: #6dc234;
    font-size: 14px;
    text-decoration: none;
}
#business-latest-posts .entry-content p {
    margin-bottom: 0;
}
#business-latest-posts .entry-title a:hover,
#business-latest-posts .entry-title a:focus,
#business-latest-posts .posted-on a:hover,
#business-latest-posts .posted-on a:focus {
    color: #6dc234;
}
#business-latest-posts .more-link a:hover,
#business-latest-posts .more-link a:focus {
    color: #000;
}



@media screen and (min-width: 567px) {
    .business-section-content.col-3 article,
    .business-section-content.col-4 article {
        width: 50%;
        float: left;
    }
    .business-section-content.col-3 article:nth-child(2n+1),
    .business-section-content.col-4 article:nth-child(2n+1) {
        clear: left;
    }
    .business-section-content.col-3 article:nth-last-child(-n+2),
    .business-section-content.col-4 article:nth-last-child(-n+2) {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 767px) {
    #business-slider article {
        padding: 150px 0;
    }
    #business-about-us article.has-post-thumbnail {
        display: table;
        width: 100%;
        position: relative;
    }
    #business-about-us article.has-post-thumbnail .featured-image {
        width: 50%;
        display: table-cell;
        margin-bottom: 0;
        padding: 0;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    #business-about-us article.has-post-thumbnail .entry-container {
        width: 50%;
        display: table-cell;
        float: right;
        text-align: left;
        padding: 50px;
    }
    #business-about-us article.has-post-thumbnail .entry-title:after {
        right: auto;
    }
}

@media screen and (min-width: 992px) {
    #travel-destination-section article {
        width: 33.33%;
        float: left;
        clear: none;
        margin-bottom: 30px;
    }
    #travel-destination-section article:first-child {
        width: 66.66%;
    }
    #travel-destination-section .entry-container {
        padding: 30px;
    }
}

@media screen and (min-width: 1024px) {
    #business-slider .entry-title {
        font-size: 50px;
    }
    .business-section-content.col-3 article {
        width: 33.33%;
    }
    .business-section-content.col-4 article {
        width: 25%;
    }
    .business-section-content.col-3 article:nth-child(2n+1),
    .business-section-content.col-4 article:nth-child(2n+1) {
        clear: none;
    }
    .business-section-content.col-3 article:nth-child(3n+1),
    .business-section-content.col-4 article:nth-child(4n+1) {
        clear: left;
    }
    .business-section-content.col-3 article:nth-last-child(-n+3),
    .business-section-content.col-4 article:nth-last-child(-n+4) {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1900px) {
    #business-slider article {
        padding: 250px 0;
    }
}


/*--------------------------------------------------------------
# Fourth Design 
--------------------------------------------------------------*/
.fourth-design #masthead {
    position: relative;
    padding: 0;
}
.fourth-design .no-padding-top {
    padding-top: 0 !important;
}
.fourth-design .section-title:after {
	content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #6dc234;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.fourth-design .section-title {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin: 0 0 20px;
} 

/*--------------------------------------------------------------
# Help Us
--------------------------------------------------------------*/

#help-us .section-content {
    position: relative;
}
.help-wrapper {
    border: 1px solid rgb(30 41 57 / 0.20);
}
.help-wrapper .featured-image {
    padding: 100px 0;
    text-align: center;
}
.featured-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    position: relative;
}
.help-wrapper .entry-container {
    padding: 30px 20px;
}
.help-wrapper .entry-title a {
    color: #1e2939;
}

/*--------------------------------------------------------------
#  Business Team
--------------------------------------------------------------*/
#business-team article {
    text-align: center;
}
#business-team .business-team-item {
    background-color: #eee;
}
#business-team .entry-container {
    padding: 15px;
}
#business-team .entry-title {
    font-size: 20px;
    font-weight: bold;
    color: #232323;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
}
#business-team .entry-title a {
    color: #232323;
}
#business-team .entry-title a:hover,
#business-team .entry-title a:focus {
    color: #1273eb;
}
#business-team .social-icons li a svg {
    width: 16px;
    height: 16px;
}


/*--------------------------------------------------------------
# Fifth Design 
--------------------------------------------------------------*/
.fifth-design #masthead {
    position: relative;
    padding: 0;
}
.fifth-design .no-padding-top {
    padding-top: 0 !important;
}
.fifth-design .section-title:after {
	content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #fe463a;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.fifth-design .section-title {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin: 0 0 20px;
} 
.fifth-design #business-slider .business-read-more a,
.fifth-design #business-latest-posts .more-link a,
.fifth-design #business-latest-posts .posted-on a:hover {
    background-color: #fff;
    color: #fe463a;
}
.fifth-design #colophon .site-info a {
	color: #fe463a;
}
.fifth-design #business-slider .business-read-more a:hover, 
.fifth-design #business-slider .business-read-more a:focus,
.fifth-design .business-read-more a:hover, 
.fifth-design .business-read-more a:focus,
.fifth-design .backtotop:hover {
    background-color: #000;
    color: #fff;
}
.fifth-design #business-slider .slick-dots li.slick-active button,
.fifth-design #business-about-us .entry-title:after,
.fifth-design .business-read-more a,
.fifth-design .business-section-title:after,
.fifth-design #colophon .widget-title:before,
.fifth-design .backtotop,
.fifth-design .section-title:after,
.fifth-design #colophon .widget-title:before, 
.fifth-design #colophon .widgettitle:before, 
.fifth-design #colophon .widget.widget_block h1:before, 
.fifth-design #colophon .widget.widget_block h2:before, 
.fifth-design #colophon .widget.widget_block h3:before, 
.fifth-design #colophon .widget.widget_block h4:before {
    background-color: #fe463a;
}

.business-service-item {
    background-color: #f1f6fc;
    padding: 30px;
    text-align: center;
}
.business-service-item:hover {
    border-color: #fe463a;
}
.business-service-icon {
    margin-bottom: 20px;
}
.business-service-icon a {
    font-size: 36px;
    color: #fff;
    width: 100px;
    height: 100px;
    display: inline-block;
    line-height: 100px;
    border-radius: 100px;
    background-color: #fe463a;
}
#business-services-section article:nth-child(1n) .business-service-icon a {
    background-image: linear-gradient(-134deg, #FFA62E 0%, #FB962E 20%, #F8852E 40%, #F3742D 60%, #EF612D 80%, #EA4D2C 100%);
}
#business-services-section article:nth-child(2n) .business-service-icon a {
    background-image: linear-gradient(-135deg, #FF6CAB 0%, #F660BC 10%, #EC53CD 20%, #E045DE 30%, #D335EE 40%, #C323FF 50%, #B53AFF 60%, #A749FF 70%, #9854FF 80%, #865EFF 90%, #7366FF 100%);
}
#business-services-section article:nth-child(3n) .business-service-icon a {
    background-image: linear-gradient(45deg, #00B8BA 0%, #01C6C4 20%, #01D4CE 40%, #02E2D8 60%, #01F0E3 80%, #00FFED 100%);
}
#business-services-section article:nth-child(4n) .business-service-icon a {
    background-image: linear-gradient(-135deg, #ED5565 0%, #D62839 100%);
}
#business-services-section article:nth-child(5n) .business-service-icon a {
    background-image: linear-gradient(-135deg, #5D9CEC 0%, #0E65D7 100%);
}
#business-services-section article:nth-child(6n) .business-service-icon a {
    background-image: linear-gradient(-135deg, #A0D468 0%, #6EAF27 100%);
}
.business-service-item .entry-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}
#business-services-section .business-service-item .entry-title a {
    color: #232323;
}
.business-service-item .entry-title a:hover,
.business-service-item .entry-title a:focus {
    color: #fe463a;
}
.business-service-item .entry-content {
    font-size: 15px;
}
.fifth-design #business-counter .overlay {
    opacity: 0.7;
    background-color: #000;
}

/*--------------------------------------------------------------
#  Courses
--------------------------------------------------------------*/
.courses-wrapper {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.courses-wrapper .featured-image {
    padding: 105px 0;
    background-size: cover;
    background-position: 50%;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: -3px;
    border-radius: 5px;
}
.courses-wrapper .entry-container {
    margin-top: 20px;
}
.courses-wrapper .entry-title {
    font-size: 20px;
}
.courses-wrapper .entry-title a {
    color: #000;
}
.courses-wrapper .entry-title a:hover {
    color: #fe463a;
}
.courses-wrapper ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.courses-wrapper ul li {
    display: inline-block;
}
.courses-wrapper ul li span, 
.courses-wrapper ul li small {
    font-size: 18px;
}
.courses-wrapper ul li:not(:last-child):after {
    content: ".";
    margin-left: 5px;
    margin-right: 3px;
}
.fifth-design #testimonial-slider-section {
    background-color: #eee;
}


/*--------------------------------------------------------------
#  Courses
--------------------------------------------------------------*/
.courses-wrapper {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.courses-wrapper .featured-image {
    padding: 105px 0;
    background-size: cover;
    background-position: 50%;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: -3px;
    border-radius: 5px;
}
.courses-wrapper .entry-container {
    margin-top: 20px;
}
.courses-wrapper .entry-title {
    font-size: 20px;
}
.courses-wrapper .entry-title a {
    color: #000;
}
.courses-wrapper .entry-title a:hover {
    color: #fe463a;
}
.courses-wrapper ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.courses-wrapper ul li {
    display: inline-block;
}
.courses-wrapper ul li span, 
.courses-wrapper ul li small {
    font-size: 18px;
}
.courses-wrapper ul li:not(:last-child):after {
    content: ".";
    margin-left: 5px;
    margin-right: 3px;
}
.fifth-design #testimonial-slider-section {
    background-color: #eee;
}


/*--------------------------------------------------------------
# Sixth Design 
--------------------------------------------------------------*/
.sixth-design .business-section-title:after,
.sixth-design #colophon .widget-title:before, 
.sixth-design #colophon .widgettitle:before, 
.sixth-design #colophon .widget.widget_block h1:before, 
.sixth-design #colophon .widget.widget_block h2:before, 
.sixth-design #colophon .widget.widget_block h3:before, 
.sixth-design #colophon .widget.widget_block h4:before,
.sixth-design .section-title:after {
	background-color: #FF0030;
}
.sixth-design #colophon .site-info a,
.sixth-design #business-latest-posts .more-link a {
	color: #FF0030;
}
.sixth-design #masthead {
    position: relative;
    padding: 0;
}
.sixth-design .no-padding-top {
    padding-top: 0 !important;
}
.sixth-design .business-slider-wrapper .entry-meta {
    margin-bottom: 12px;
    display: block;
}
.sixth-design .cat-links,
.sixth-design .byline {
    visibility: hidden;
}
.sixth-design .cat-links a {
    visibility: visible;
    background-color: #FF0030;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 8px;
    text-transform: capitalize;
}
.sixth-design .cat-links a:nth-child(1n) {
    background-color: #FF0030;
}
.sixth-design .cat-links a:nth-child(2n) {
    background-color: #875FC0;
}
.sixth-design .cat-links a:nth-child(1n):hover, 
.sixth-design .cat-links a:nth-child(1n):focus {
    background-color: #000;
}
.sixth-design .byline .author.vcard {
    visibility: visible;
    margin-left: -25px;
}
.sixth-design .business-slider-wrapper .entry-title a, 
.sixth-design .business-slider-wrapper .posted-on a, 
.sixth-design .business-slider-wrapper .author.vcard a,
.sixth-design .business-slider-wrapper .entry-meta.author-posted-on > span:not(:last-child):after {
    color: #fff;
}
.sixth-design .author.vcard a:before {
    content: "\f007";
    font-family: "FontAwesome";
    margin-right: 10px;
}
.sixth-design .entry-meta.author-posted-on > span:not(:last-child):after {
    content: "-";
    margin: 0 8px;
    visibility: visible;
}
.sixth-design .business-slider-wrapper .entry-title a:hover, 
.sixth-design .business-slider-wrapper .entry-title a:focus, 
.sixth-design .business-slider-wrapper .posted-on a:hover,
 .sixth-design .business-slider-wrapper .posted-on a:focus, 
 .sixth-design .business-slider-wrapper .author.vcard a:hover, 
 .sixth-design .business-slider-wrapper .author.vcard a:focus {
    color: #FF0030;
}

#magazine-thumbnail-post {
    margin: 50px 0;
}
.thumbnail-wrapper {
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0;
}
.thumbnail-post-wrapper {
    margin: 0 -10px;
}
#magazine-thumbnail-post .featured-image {
    float: left;
}
#magazine-thumbnail-post .featured-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    float: left;
    margin-right: 20px;
}
#magazine-thumbnail-post .entry-container {
    display: table-row;
}
#magazine-thumbnail-post .entry-container .entry-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}
#magazine-thumbnail-post .entry-container .entry-title a {
    color: #1e2939;
}
#magazine-thumbnail-post .entry-meta {
    margin-bottom: 0;
}
.sixth-design .posted-on {
    display: inline-block;
    font-size: 14px;
    color: #566273;
}
.posted-on a,
span.author.vcard a {
    text-decoration: none;
}
/*--------------------------------------------------------------
# Must Read
--------------------------------------------------------------*/
#magazine-must-read {
    margin-bottom: 50px;
}
#magazine-must-read .featured-image {
    padding: 115px 0;
    margin-bottom: 20px;
    background-color: #000;
}
#magazine-must-read .section-header {
    max-width: 100%;
}
#magazine-must-read .section-title {
    text-align: center;
    margin: auto;
    padding-bottom: 20px;
}
#magazine-must-read .entry-container {
    text-align: left;
}
#magazine-must-read .entry-meta {
    position: absolute;
    position: absolute;
    bottom: 0;
    left: 0;
}
.fourth-design .post-categories {
    list-style: none;
    padding-left: 0;
    display: inline-block;
}
#magazine-must-read .post-categories li,
.magazine-photography-wrapper .post-categories li {
    display: inline-block;
    vertical-align: middle;
}
#magazine-must-read .post-categories a,
.magazine-photography-wrapper .post-categories a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    padding: 8px 12px;
    font-weight: 500;
    text-transform: uppercase;
}
#magazine-must-read .post-categories a:hover,
.magazine-photography-wrapper .post-categories a:hover {
    color: #fff;
    opacity: 0.8;
}
.site-advertisement {
    margin-bottom: 50px;
}
#magazine-must-read .cat-links {
    margin-right: 0;
}
#magazine-must-read .entry-container .entry-title {
    font-size: 24px;
}
#magazine-must-read .entry-container .entry-title a, 
.sixth-design .entry-title a {
    color: #1e2939;
}
#magazine-thumbnail-post .entry-container .entry-title a:hover, 
#magazine-thumbnail-post .entry-container .entry-title a:focus, 
#magazine-must-read .entry-container .entry-title a:hover, 
.sixth-design .entry-title a:hover {
    color: #0bb3e4;
}
.sixth-design .cat-links li:nth-child(1n) a {
    background-color: #FF0030;
}
.sixth-design .cat-links li:nth-child(2n) a {
    background-color: #875FC0;
}

/*--------------------------------------------------------------
# Magazine Photography
--------------------------------------------------------------*/
.sixth-design .entry-title {
    font-size: 21px;
    word-wrap: break-word;
}
.third-design .cat-links {
    margin-right: 0;
}
#magazine-photography {
    margin-bottom: 50px;
}
.magazine-photography-wrapper .featured-image {
    padding: 225px 0;
}
#magazine-photography .section-title:after,
#most-viewed-posts .section-title:after {
    margin: 0;
}
.magazine-photography-wrapper .entry-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: linear-gradient(to top,rgba(0,0,0,.7) 0,rgba(0,0,0,0) 100%);
}
.magazine-photography-wrapper .reading-wrapper .entry-meta {
    position: relative;
}
.magazine-photography-wrapper article .entry-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 10px 0;
}
.magazine-photography-wrapper article .entry-title a,
.magazine-photography-wrapper span.byline,
.magazine-photography-wrapper .author.vcard .fn,
.fourth-design .magazine-photography-wrapper .posted-on a {
    color: #fff;
}

.magazine-photography-wrapper article .entry-title a:hover,
.magazine-photography-wrapper span.byline:hover,
.magazine-photography-wrapper .author.vcard .fn:hover {
    color: #fff;
    opacity: 0.8;
}
.widget_photography_news {
    margin-top: 20px;
}
#magazine-photography .widget_photography_news ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
#magazine-photography .widget_photography_news ul li:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.widget_photography_news li:before, 
.widget_photography_news li:after {
    content: "";
    display: table;
    clear: both;
}
.widget_photography_news ul li img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    float: left;
    margin-right: 20px;
}
.widget_photography_news ul li .entry-container {
    display: table-row;
}
#magazine-advertisement-section {
    margin-bottom: 50px;
}
#magazine-advertisement-section img {
    width: 100%;
}

/*--------------------------------------------------------------
# Most Viwed
--------------------------------------------------------------*/
#most-viewed-posts .featured-image {
    padding: 150px 0;
    margin-bottom: 20px;
}
#most-viewed-posts .entry-container {
    text-align: left;
}



/*--------------------------------------------------------------
# Seventh Design 
--------------------------------------------------------------*/
.seventh-design #colophon .widget-title:before, 
.seventh-design #colophon .widgettitle:before, 
.seventh-design #colophon .widget.widget_block h1:before, 
.seventh-design #colophon .widget.widget_block h2:before, 
.seventh-design #colophon .widget.widget_block h3:before, 
.seventh-design #colophon .widget.widget_block h4:before {
	background-color: #f78a74;
}
.seventh-design #colophon .site-info a {
	color: #f78a74;
}
.seventh-design #masthead {
    position: relative;
    padding: 0;
}
.seventh-design .no-padding-top {
    padding-top: 0 !important;
}
.seventh-design #business-slider .business-read-more a {
    background-color: #f78a74;
    color: #fff;
}
.seventh-design .business-read-more a,
.seventh-design #business-slider .slick-dots li.slick-active button {
    background-color: #f78a74;
}
.seventh-design #business-slider .business-read-more a:hover, 
.seventh-design #business-slider .business-read-more a:focus {
    background-color: #000;
    color: #fff;
}
.seventh-design .business-section-title:after {
    background-color: #f78a74;
}
.seventh-design .entry-title {
    font-size: 21px;
}
.seventh-design .entry-title a,
.seventh-design span.posted-on a:hover,
.seventh-design #business-latest-posts .more-link a:hover {
    color: #000;
}
.seventh-design .entry-title a:hover,
.seventh-design span.posted-on a,
.seventh-design #business-latest-posts .entry-title a:hover, 
.seventh-design #business-latest-posts .entry-title a:focus, 
.seventh-design #business-latest-posts .posted-on a:hover, 
.seventh-design #business-latest-posts .posted-on a:focus,
.seventh-design #business-latest-posts .more-link a {
    color: #f78a74;
}

/*--------------------------------------------------------------
# Blog-featured-posts 
--------------------------------------------------------------*/
#blog-featured-posts article {
    padding: 0 15px;
    margin-bottom: 30px;
    display: grid;
    grid-auto-rows: 240px;
}
#blog-featured-posts .blog-featured-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 15px;
    background-color: #333;
}
#blog-featured-posts .entry-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border: 1px solid;
    border-color: rgba(255,255,255,1);
    z-index: 10;
    width: 100%;
    height: 100%;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}
#blog-featured-posts .entry-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background-color: rgba(255,255,255, 1);
    font-weight: 400;
    padding: 9px 13px 9px 15px;
    line-height: 1.5;
}
#blog-featured-posts .entry-title a {
    color: #000;
}
#blog-featured-posts .entry-title a:hover, #blog-featured-posts .entry-title a:focus {
    color: #f78a74;
}

/*--------------------------------------------------------------
#  Blog Popular Posts
--------------------------------------------------------------*/
#blog-popular-posts .entry-container {
    background-color: #fff;
    text-align: center;
    padding: 30px 25px;
    box-shadow: 0 10px 30px 0 rgba(50,50,50,0.16);
    border-radius: 4px;
}
#blog-popular-posts .entry-content {
    border-top: 1px solid #E8E8E8;
    padding: 15px 0 0;
    max-width: 500px;
    margin: 15px auto 0;
}
#blog-popular-posts .cat-links {
    margin-bottom: 15px;
    display: inline-block;
}
#blog-popular-posts .cat-links a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.01em;
    background-color: #f78a74;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    margin-bottom: 10px;
}
#blog-popular-posts .read-more {
    margin-top: 10px;
}
#blog-popular-posts .read-more a {
    border: 1px solid #f78a74;
    color: #000;
    display: inline-block;
    padding: 10px 30px;
    line-height: 1.3;
    font-size: 14px;
    text-decoration: none;
}
#blog-popular-posts .read-more a:hover,
#blog-popular-posts .read-more a:focus {
	background-color: #f78a74;
	border-color: #f78a74;
	color: #fff;
}

/*--------------------------------------------------------------
#  Blog Latest Posts
--------------------------------------------------------------*/
#blog-featured-posts,
#blog-popular-posts,
#blog-latest-posts {
    padding: 50px 0;
}
#blog-featured-posts + #blog-popular-posts,
#blog-featured-posts + #blog-latest-posts,
#blog-popular-posts + #blog-latest-posts {
    padding-top: 0;
}
#blog-latest-posts #main {
    margin: 0 -15px;
}
#blog-latest-posts article {
	margin-bottom: 30px;
}
#blog-latest-posts article:last-child {
	margin-bottom: 0;
}
#blog-latest-posts .blog-post-wrapper {
    text-align: center;
    background-color: #fff;
    padding: 30px 25px 40px;
    box-shadow: 0 10px 30px 0 rgba(50,50,50,0.16);
    border-radius: 4px;
}
#blog-latest-posts .cat-links {
    margin-bottom: 15px;
    display: inline-block;
}
#blog-latest-posts .cat-links a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.01em;
    background-color: #f78a74;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
}
#blog-latest-posts .cat-links a:hover,
#blog-latest-posts .cat-links a:focus {
	background-color: #000;
	color: #fff;
}
#blog-latest-posts .entry-title {
	font-weight: 400;
	font-size: 22px;
	margin-bottom: 10px;
	line-height: 1.4;
}
#blog-latest-posts .entry-title a {
	color: #1c1c1c;
}
#blog-latest-posts .entry-title a:hover,
#blog-latest-posts .entry-title a:focus {
	color: #b79156;
}
#blog-latest-posts .posted-on {
	position: relative;
	overflow: hidden;
	margin-bottom: 25px;
    display: block;
}
#blog-latest-posts .posted-on a {
    color: #232323;
    font-size: 14px;
    font-weight: 600;
}
#blog-latest-posts .posted-on:before {
    margin-left: -41px;
    text-align: right;
}
#blog-latest-posts .posted-on:after {
    margin-left: 15px;
}
#blog-latest-posts .featured-image {
    margin: 0 -25px 25px;
}
#blog-latest-posts .entry-content {
    padding: 0 15px;
    max-width: 700px;
    margin: 0 auto 25px;
}
#blog-latest-posts .read-more a {
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: transparent;
    font-size: 12px;
    padding: 12px 20px;
    line-height: 1;
    font-weight: 600;
    border: 1px solid #f78a74;
    text-decoration: none;
}
#blog-latest-posts .read-more a:hover,
#blog-latest-posts .read-more a:focus {
	background-color: #f78a74;
	border-color: #f78a74;
	color: #fff;
}
#blog-latest-posts .social-icons {
	position: relative;
	display: inline-block;
}
#blog-latest-posts .social-icons li {
    margin: 5px;
}
#blog-latest-posts .social-icons li a {
    border: 1px solid #d6d6d6;
    border-radius: 100%;
    line-height: 30px;
    width: 35px;
    height: 35px;
}
#blog-latest-posts .social-icons li a svg {
	width: 13px;
	height: 13px;
	fill: #000;
}
#blog-latest-posts .social-icons li a:hover svg,
#blog-latest-posts .social-icons li a:focus svg {
	fill: #fff;
}
#blog-latest-posts .post-footer-share {
    position: relative;
    overflow: hidden;
}
#blog-latest-posts .social-icons:before, 
#blog-latest-posts .social-icons:after {
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 1px solid;
    border-color: #ddd;
    width: 690px;
    margin: 0 20px;
}
#blog-latest-posts .social-icons:before {
    right: 100%;
}
#blog-latest-posts .social-icons:after {
    left: 100%;
}

@media screen and (min-width: 567px) {
	.seventh-design #blog-latest-posts article {
	    width: 50%;
	    float: left;
	    padding: 0 15px;
	}
	.seventh-design #blog-latest-posts article:nth-child(2n+1) {
		clear: left;
	}
	.seventh-design #blog-latest-posts article:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 992px) {
	.seventh-design #blog-latest-posts article {
	    width: 33.33%;
	}
	.seventh-design #blog-latest-posts article:nth-child(2n+1) {
		clear: none;
	}
	.seventh-design #blog-latest-posts article:nth-child(3n+1) {
		clear: left;
	}
	.seventh-design #blog-latest-posts article:nth-last-child(-n+3) {
		margin-bottom: 0;
	}
}


/*--------------------------------------------------------------
# Eight Design
--------------------------------------------------------------*/
.eight-design #colophon .widget-title:before, 
.eight-design #colophon .widgettitle:before, 
.eight-design #colophon .widget.widget_block h1:before, 
.eight-design #colophon .widget.widget_block h2:before, 
.eight-design #colophon .widget.widget_block h3:before, 
.eight-design #colophon .widget.widget_block h4:before {
	background-color: #007aff;
}
.eight-design #colophon .site-info a {
	color: #007aff;
}
.wp-travel-enquiries-form-wrapper {
    margin-top: 30px;
}
.eight-design #masthead {
    position: relative;
    padding: 0;
}
.eight-design #business-slider .slick-dots li.slick-active button, 
.eight-design #business-about-us .entry-title:after, 
.eight-design .business-read-more a, 
.eight-design .business-section-title:after,
.eight-design #business-slider .business-read-more a {
    background-color: #007aff;
}
.eight-design #business-slider .business-read-more a:hover, 
.eight-design #business-slider .business-read-more a:focus, 
.eight-design .business-read-more a:hover, 
.eight-design .business-read-more a:focus {
    background-color: #000;
    color: #fff;
}
.eight-design #business-services-section .service-item {
    background-color: #fff;
    border: 3px solid #d5d5d5;
    padding: 30px 20px;
    position: relative;
}
.eight-design #business-services-section .icon-container a,
.eight-design #business-services-section .entry-title a,
.eight-design #business-services-section .service-item .entry-content p {
    color: #333;
}
.eight-design #business-services-section .entry-title {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.eight-design #business-counter .overlay {
    opacity: 0.7;
    background-color: #000;
}


/*--------------------------------------------------------------
# Dark Version
--------------------------------------------------------------*/
.dark-version,
.dark-version #about-me, 
.dark-version #my-profile, 
.dark-version #my-services, 
.dark-version #my-portfolio, 
.dark-version #my-clients, 
.dark-version #testimonial-slider-section, 
.dark-version #latest-posts, 
.dark-version #call-to-action {
	background-color: #222;
}
.dark-version #introduction-section {
	background-color: #333;
}

.dark-version #introduction-section,
.dark-version .working-experience-slider .entry-container,
.dark-version .working-experience-slider:before, 
.dark-version .working-experience-slider:after,
.dark-version .archive-blog-wrapper article,
body.dark-version:not(.home) #masthead,
.dark-version #secondary .widget,
.dark-version .navigation.post-navigation, 
.dark-version .navigation.posts-navigation,
.dark-version .comment-content,
.dark-version input[type="text"], 
.dark-version input[type="email"], 
.dark-version input[type="url"],
.dark-version #respond textarea,
.dark-version .pagination .page-numbers.current, 
.dark-version .pagination .page-numbers:hover, 
.dark-version .pagination .page-numbers:focus,
.dark-version .backtotop,
.dark-version #business-about-us,
.dark-version #travel-tours-section .travel-tours-wrapper,
.dark-version #business-latest-posts .business-post-item,
.dark-version .wp-travel-trip-meta-info,
.dark-version.single.single-itineraries .wp-travel-tab-wrapper .tab-list.resp-tabs-list,
.dark-version .wp-travel-calendar-view,
.dark-version #wp-travel-enquiries .wp-travel-form-field.textarea-field textarea#wp-travel-enquiry-query,
.dark-version .wp-travel-itinerary-items .wp-travel-itinerary-list li,
.dark-version .wp-travel-itinerary-items .wp-travel-post-wrap-bg,
.dark-version .wp-travel-calendar-view .wp-travel-booking__pricing-wrapper,
.dark-version .wp-travel-booking__panel-bottom,
.dark-version .wp-travel-form-field.full-width.textarea-field textarea#wp-travel-note,
.dark-version .checkout-page-wrap .wp-travel-form-field select,
.dark-version #shopping-cart .cart-summary,
.dark-version .wp-travel-error,
.dark-version #business-team .business-team-item,
.dark-version.fifth-design #business-latest-posts .more-link a,
.dark-version.fifth-design #business-latest-posts .posted-on a:hover,
.dark-version .courses-wrapper,
.dark-version .business-service-item,
.dark-version #blog-popular-posts .entry-container,
.dark-version #blog-latest-posts .blog-post-wrapper,
.dark-version.eight-design #business-services-section .service-item {
	background-color: #333;
}

.dark-version #my-skills .overlay,
.dark-version #contact-me .overlay,
.dark-version #wp-travel-enquiries {
	background: #333;
}

.dark-version #working-experience,
.dark-version #my-video,
.dark-version #colophon,
.dark-version .pagination .page-numbers, 
.dark-version .pagination .page-numbers.dots:hover, 
.dark-version .pagination .page-numbers.dots:focus,
.dark-version  .wp-travel-calendar-view .wp-travel-booking__pricing-wrapper .wp-travel-booking__trip-option-list li,
.dark-version .checkout-accordion .panel-default,
.dark-version .checkout-page-wrap .wp-travel-checkout-section {
    background: #000;
}

.dark-version.menu-sticky #masthead.nav-shrink {
	background-color: #404040;
}

.dark-version p,
.dark-version h1,
.dark-version h2,
.dark-version h3,
.dark-version h4,
.dark-version h5,
.dark-version h6,
.dark-version pre,
.dark-version strong,
.dark-version,
.dark-version .site-title a,
.dark-version .site-description,
.dark-version #introduction-section .entry-title a,
.dark-version #introduction-section .entry-content, 
.dark-version #introduction-section .entry-content p,
.dark-version #my-services .entry-title a,
.dark-version .service-item-wrapper .fa,
.dark-version ul.tabs li.active a,
.dark-version .working-experience-slider .entry-title a,
.dark-version .happy-clients .entry-title a,
.dark-version .testimonial-slider .entry-content, 
.dark-version .testimonial-slider .entry-content p,
.dark-version .title-wrapper .entry-title a,
.dark-version .post-categories li a,
.dark-version .archive-blog-wrapper .entry-title a,
.dark-version .archive-blog-wrapper .byline a, 
.dark-version .archive-blog-wrapper .posted-on a,
.dark-version #colophon .widget-title, 
.dark-version #colophon .widgettitle,
.dark-version #colophon a, 
.dark-version #colophon p, 
.dark-version #colophon li,
.dark-version #secondary a, 
.dark-version #secondary li,
.dark-version .post-navigation a, 
.dark-version .posts-navigation a,
.dark-version .comment-meta .url, 
.dark-version .comment-meta .fn,
.dark-version .comment-metadata a, 
.dark-version .comment-metadata a time,
.dark-version .logged-in-as a,
.dark-version #business-about-us .entry-title a,
.dark-version #travel-tours-section .travel-tours-wrapper a,
.dark-version #business-latest-posts .entry-title a,
.dark-version #colophon .widget.widget_block h1, 
.dark-version #colophon .widget.widget_block h2, 
.dark-version #colophon .widget.widget_block h3, 
.dark-version #colophon .widget.widget_block h4,
.dark-version #business-latest-posts .more-link a:hover, 
.dark-version #business-latest-posts .more-link a:focus,
.dark-version .trip-short-desc span a:hover,
.dark-version input[type="text"],
.dark-version input[type="email"],
.dark-version textarea,
.dark-version .wp-travel-itinerary-items .wp-travel-post-item-wrapper .post-title a,
.dark-version .wp-travel-itinerary-items .wp-travel-post-item-wrapper .wp-travel-post-content .post-category a,
.dark-version #shopping-cart .cart-summary .list-group li>div .trip-content .trip-item-name-price .trip-name h5 a,
.dark-version .wp-travel-error,
.dark-version .help-wrapper .entry-title a,
.dark-version #business-team .entry-title a,
.dark-version .courses-wrapper .entry-title a,
.dark-version #business-services-section .business-service-item .entry-title a,
.dark-version #magazine-thumbnail-post .entry-container .entry-title a,
.dark-version.sixth-design .posted-on a, 
.dark-version.sixth-design span.author.vcard a,
.dark-version #magazine-must-read .entry-container .entry-title a, .sixth-design .entry-title a,
.dark-version.seventh-design .entry-title a,
.dark-version #blog-popular-posts .read-more a,
.dark-version #blog-latest-posts .entry-title a,
.dark-version #blog-latest-posts .posted-on a,
.dark-version #blog-latest-posts .read-more a,
.dark-version.eight-design #business-services-section .icon-container a, 
.dark-version.eight-design #business-services-section .entry-title a, 
.dark-version.eight-design #business-services-section .service-item .entry-content p {
	color: #fff;
}


.dark-version #introduction-section .entry-title a:hover,
.dark-version .profile-slider article:hover .entry-title, 
.dark-version .profile-slider article:hover .entry-header p,
.dark-version #my-services .entry-title a:hover,
.dark-version .service-item-wrapper .fa:hover,
.dark-version ul.tabs li a:hover, ul.tabs li a:focus, 
.dark-version #my-services .entry-title a:hover, 
.dark-version #my-services .entry-title a:focus,
.dark-version .working-experience-slider .entry-title a:hover,
.dark-version .happy-clients .entry-title a:hover,
.dark-version .title-wrapper .entry-title a:hover, 
.dark-version .title-wrapper .entry-title a:focus,
.dark-version .post-categories li a:hover,
.dark-version .archive-blog-wrapper .entry-title a:hover, 
.dark-version .archive-blog-wrapper .entry-title a:focus, 
.dark-version .archive-blog-wrapper .byline a:hover, 
.dark-version .archive-blog-wrapper .posted-on a:hover, 
.dark-version .archive-blog-wrapper .byline a:focus, 
.dark-version .archive-blog-wrapper .posted-on a:focus,
.dark-version #colophon a:hover, 
.dark-version #colophon a:focus,
.dark-version #secondary a:hover, 
.dark-version #secondary a:focus,
.dark-version .post-navigation a:hover, 
.dark-version .posts-navigation a:hover, 
.dark-version .post-navigation a:focus, 
.dark-version .posts-navigation a:focus,
.dark-version .comment-metadata a:hover, 
.dark-version .comment-metadata a:focus, 
.dark-version .comment-metadata a:hover time, 
.dark-version .comment-metadata a:focus time,
.dark-version .comment-meta .url:hover, 
.dark-version .comment-meta .url:focus, 
.dark-version .comment-metadata a, 
.dark-version .comment-metadata a time,
.dark-version .logged-in-as a:hover,
.dark-version #business-about-us .entry-title a:hover,
.dark-version #business-about-us .entry-title a:focus,
.dark-version .wp-travel-itinerary-items .wp-travel-post-item-wrapper .post-title a:hover,
.dark-version .wp-travel-itinerary-items .wp-travel-post-item-wrapper .post-title a:focus,
.dark-version .wp-travel-itinerary-items .wp-travel-post-item-wrapper .wp-travel-post-content .post-category a:hover,
.dark-version .wp-travel-itinerary-items .wp-travel-post-item-wrapper .wp-travel-post-content .post-category a:focus,
.dark-version #shopping-cart .cart-summary .list-group li>div .trip-content .trip-item-name-price .trip-name h5 a:hover,
.dark-version #shopping-cart .cart-summary .list-group li>div .trip-content .trip-item-name-price .trip-name h5 a:focus,
.dark-version .help-wrapper .entry-title a:hover,
.dark-version .help-wrapper .entry-title a:focus,
.dark-version #business-team .entry-title a:hover,
.dark-version #business-team .entry-title a:focus,
.dark-version .courses-wrapper .entry-title a:hover,
.dark-version .courses-wrapper .entry-title a:focus,
.dark-version #business-services-section .business-service-item .entry-title a:hover,
.dark-version #business-services-section .business-service-item .entry-title a:focus,
.dark-version #magazine-thumbnail-post .entry-container .entry-title a:hover,
.dark-version #magazine-thumbnail-post .entry-container .entry-title a:focus,
.dark-version.sixth-design .posted-on a:hover, 
.dark-version.sixth-design span.author.vcard a:hover,
.dark-version #magazine-thumbnail-post .entry-container .entry-title a:hover, 
.dark-version #magazine-thumbnail-post .entry-container .entry-title a:focus, 
.dark-version #magazine-must-read .entry-container .entry-title a:hover, 
.dark-version.sixth-design .entry-title a:hover,
.dark-version.seventh-design span.posted-on a:hover, 
.dark-version.seventh-design #business-latest-posts .more-link a:hover,
.dark-version.seventh-design .entry-title a:hover,
.dark-version #blog-latest-posts .entry-title a:hover, 
.dark-version #blog-latest-posts .entry-title a:focus  {
	color: #fff;
	opacity: 0.8;
}

.dark-version .profile-slider article:hover .entry-header p,
.dark-version ul.tabs li.active a {
	border-bottom-color: #fff;
}

.dark-version .profile-slider .featured-image:before {
	border-top-color: #222;
}
.dark-version .tab-section,
.dark-version .happy-clients article {
    border-bottom: 1px solid rgba(229, 229, 229, 0.2);
}

.dark-version .working-experience-slider .entry-container,
.dark-version .archive-blog-wrapper article {
    border: 1px solid rgba(229, 229, 229, 0.29);
}

.dark-version #colophon,
.dark-version .site-info {
    border-top: 1px solid rgba(229, 229, 229, 0.32);
}

.dark-version #colophon .social-icons li a svg,
.dark-version .navigation.posts-navigation svg, 
.dark-version .navigation.post-navigation svg,
.dark-version svg.icon-menu {
	fill:#fff;
}

.dark-version .navigation.posts-navigation a:hover svg, 
.dark-version .navigation.post-navigation a:hover svg, 
.dark-version .navigation.posts-navigation a:focus svg, 
.dark-version .navigation.post-navigation a:focus svg {
	fill:#fff;
	opacity: 0.8;
}

.dark-version .happy-clients .featured-image img {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.dark-version .slick-prev:before, 
.dark-version .slick-next:before {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.dark-version #page-site-header + #breadcrumb-list {
    display: none;
}

@media screen and (min-width: 1024px) {
	.dark-version #masthead .main-navigation ul#primary-menu li.current-menu-item > a {
		color: #fff;
	}
	.dark-version #masthead .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version .main-navigation ul#primary-menu li:hover > a {
		color: #fff;
		opacity: 0.8;
	}
	.dark-version .main-navigation ul#primary-menu > li.current-menu-item > a > svg,
	.dark-version  #masthead .main-navigation ul.nav-menu > li > a:hover svg {
	    fill: #fff;
	}
	.dark-version #masthead .main-navigation ul.nav-menu > li > a:hover svg {
	    fill: #fff;
	    opacity: 0.8;
	}
}

/*--------------------------------------------------------------
# 					Footer
--------------------------------------------------------------*/
#colophon {
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
}
#colophon ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#colophon a,
#colophon p,
#colophon li {
    color: #637279;
    font-size: 16px;
}
#colophon .site-info a {
	color: #f7ab00;
}
#colophon a:hover,
#colophon a:focus {
    color: #0bb3e4;
}
#colophon .social-icons li:not(:last-child) {
	margin-right: 15px;
}
#colophon .widget-title, 
#colophon .widgettitle,
#colophon .widget.widget_block h1,
#colophon .widget.widget_block h2,
#colophon .widget.widget_block h3,
#colophon .widget.widget_block h4  {
    color: #152944;
    font-family: 'Oxygen', sans-serif;
    font-weight: bold;
    font-size: 22px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 33px;
}
#colophon .widget-title:before,
#colophon .widgettitle:before,
#colophon .widget.widget_block h1:before,
#colophon .widget.widget_block h2:before,
#colophon .widget.widget_block h3:before,
#colophon .widget.widget_block h4:before  {
    content: "";
    background-color: #f7ab00;
    width: 40px;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
}
.custom-menu ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}
.custom-menu ul li:last-child {
	margin-right: 0;
}
#colophon .social-icons li a svg {
    fill: #152944;
}
#colophon .social-icons li a:hover svg,
#colophon .social-icons li a:focus svg {
    fill: #fff;
}
.site-info .social-icons {
    display: inline-block;
}
.site-info {
    text-align: center;
    padding: 17px 0;
    border-top: 1px solid #e5e5e5;
    margin-left: auto;
    margin-right: auto;
}
.site-info.wrapper.col-2 {
	margin-left: auto;
    margin-right: auto;
}
.site-info span {
	display: block;
	text-align: center;
}
.site-info span + .social-icons {
	margin-top: 15px;
}
.custom-menu {
    margin-bottom: 15px;
}
.footer-widgets-area .widget ul li:last-child,
.footer-widgets-area .widget .social-icons li {
	margin-bottom: 0;
}
.footer-widgets-area .hentry {
	margin-bottom: 45px;
}
.footer-widgets-area.col-1 .hentry {
    text-align: center;
}
.footer-widgets-area.col-1 .hentry:last-child {
	margin-bottom: 0;
}
.footer-widgets-area.col-1 .textwidget img {
    margin-left: auto;
    margin-right: auto;
}
.footer-widgets-area.col-1 {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Typography Options
--------------------------------------------------------------*/
.header-font-1 h1,
.header-font-1 h2,
.header-font-1 h3,
.header-font-1 h4,
.header-font-1 h5,
.header-font-1 h6,
.header-font-1 .site-title,
.header-font-1 .widget_popular_post a time,
.header-font-1 .widget_popular_post time,
.header-font-1 .widget_latest_post a time,
.header-font-1 .widget_latest_post time,
.header-font-1 .widget_featured_post a time,
.header-font-1 .widget_featured_post time {
	font-family: 'Rajdhani', sans-serif;
}

.header-font-2 h1,
.header-font-2 h2,
.header-font-2 h3,
.header-font-2 h4,
.header-font-2 h5,
.header-font-2 h6,
.header-font-2 .site-title,
.header-font-2 .widget_popular_post a time,
.header-font-2 .widget_popular_post time,
.header-font-2 .widget_latest_post a time,
.header-font-2 .widget_latest_post time,
.header-font-2 .widget_featured_post a time,
.header-font-2 .widget_featured_post time {
	font-family: 'Cherry Swash', sans-serif;
}

.header-font-3 h1,
.header-font-3 h2,
.header-font-3 h3,
.header-font-3 h4,
.header-font-3 h5,
.header-font-3 h6,
.header-font-3 .site-title,
.header-font-3 .widget_popular_post a time,
.header-font-3 .widget_popular_post time,
.header-font-3 .widget_latest_post a time,
.header-font-3 .widget_latest_post time,
.header-font-3 .widget_featured_post a time,
.header-font-3 .widget_featured_post time {
	font-family: 'Philosopher', sans-serif;
}

.header-font-4 h1,
.header-font-4 h2,
.header-font-4 h3,
.header-font-4 h4,
.header-font-4 h5,
.header-font-4 h6,
.header-font-4 .site-title,
.header-font-4 .widget_popular_post a time,
.header-font-4 .widget_popular_post time,
.header-font-4 .widget_latest_post a time,
.header-font-4 .widget_latest_post time,
.header-font-4 .widget_featured_post a time,
.header-font-4 .widget_featured_post time {
	font-family: 'Slabo 27px', sans-serif;
}

.header-font-5 h1,
.header-font-5 h2,
.header-font-5 h3,
.header-font-5 h4,
.header-font-5 h5,
.header-font-5 h6,
.header-font-5 .site-title,
.header-font-5 .widget_popular_post a time,
.header-font-5 .widget_popular_post time,
.header-font-5 .widget_latest_post a time,
.header-font-5 .widget_latest_post time,
.header-font-5 .widget_featured_post a time,
.header-font-5 .widget_featured_post time {
	font-family: 'Dosis', sans-serif;
}

.body-font-1,
.body-font-1 #my-services .entry-title,
.body-font-1 .working-experience-slider .entry-title,
.body-font-1 .grid-item .entry-title,
.body-font-1 .happy-clients .entry-title,
.body-font-1 .testimonial-slider .entry-content,
.body-font-1 .testimonial-slider .entry-content p,
.body-font-1 .title-wrapper .entry-title,
.body-font-1 .archive-blog-wrapper .entry-title,
.body-font-1 #colophon .widget-title, 
.body-font-1 #colophon .widgettitle {
	font-family: 'News Cycle', sans-serif;
}

.body-font-2,
.body-font-2 #my-services .entry-title,
.body-font-2 .working-experience-slider .entry-title,
.body-font-2 .grid-item .entry-title,
.body-font-2 .happy-clients .entry-title,
.body-font-2 .testimonial-slider .entry-content,
.body-font-2 .testimonial-slider .entry-content p,
.body-font-2 .title-wrapper .entry-title,
.body-font-2 .archive-blog-wrapper .entry-title,
.body-font-2 #colophon .widget-title, 
.body-font-2 #colophon .widgettitle {
	font-family: 'Pontano Sans', sans-serif;
}

.body-font-3,
.body-font-3 #my-services .entry-title,
.body-font-3 .working-experience-slider .entry-title,
.body-font-3 .grid-item .entry-title,
.body-font-3 .happy-clients .entry-title,
.body-font-3 .testimonial-slider .entry-content,
.body-font-3 .testimonial-slider .entry-content p,
.body-font-3 .title-wrapper .entry-title,
.body-font-3 .archive-blog-wrapper .entry-title,
.body-font-3 #colophon .widget-title, 
.body-font-3 #colophon .widgettitle {
	font-family: 'Gudea', sans-serif;
}

.body-font-4,
.body-font-4 #my-services .entry-title,
.body-font-4 .working-experience-slider .entry-title,
.body-font-4 .grid-item .entry-title,
.body-font-4 .happy-clients .entry-title,
.body-font-4 .testimonial-slider .entry-content,
.body-font-4 .testimonial-slider .entry-content p,
.body-font-4 .title-wrapper .entry-title,
.body-font-4 .archive-blog-wrapper .entry-title,
.body-font-4 #colophon .widget-title, 
.body-font-4 #colophon .widgettitle {
	font-family: 'Quattrocento Sans', sans-serif;
}

.body-font-5,
.body-font-5 #my-services .entry-title,
.body-font-5 .working-experience-slider .entry-title,
.body-font-5 .grid-item .entry-title,
.body-font-5 .happy-clients .entry-title,
.body-font-5 .testimonial-slider .entry-content,
.body-font-5 .testimonial-slider .entry-content p,
.body-font-5 .title-wrapper .entry-title,
.body-font-5 .archive-blog-wrapper .entry-title,
.body-font-5 #colophon .widget-title, 
.body-font-5 #colophon .widgettitle {
	font-family: 'Khand', sans-serif;
}

/*--------------------------------------------------------------
# 					RESPONSIVE
--------------------------------------------------------------*/
@media screen and (min-width: 567px) {
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6 {
		margin: 0 -15px;
	}
	.col-2 article,
	.col-3 article,
	.col-4 article,
	.col-5 article,
	.col-6 article {
		padding: 0 15px;
		float: left;
		width: 50%;
		margin-bottom: 30px;
	}
	.col-2 article:nth-child(2n+1),
	.col-3 article:nth-child(2n+1),
	.col-4 article:nth-child(2n+1) {
		clear: left;
	}
	.col-2 article:nth-last-child(-n+2),
	.col-3 article:nth-last-child(-n+2),
	.col-4 article:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
	.site-logo img {
	    max-height: 65px;
	    width: auto;
	}
	#introduction-section .entry-title {
	    font-size: 38px;
	    max-width: 475px;
	}
	#introduction-section .entry-container {
	    padding-right: 25px;
	}
	#my-services article .service-item-wrapper {
	    padding: 30px;
	}
	#my-services article {
		width: 50%;
		float: left;
	}
	ul.tabs li {
	    display: inline-block;
	    margin-right: 20px;
	}
	#my-services article:nth-child(2n+1) {
		clear: left;
	}
	.archive-blog-wrapper article {
		display: flex;
	    align-items: center;
	    flex-direction: column;
	}
	.archive-blog-wrapper .no-post-thumbnail {
	    display: flex;
	    align-items: center;
	    flex-direction: column;
	    justify-content: center;
	}
	.archive-blog-wrapper article:nth-child(even) {
	    flex-direction: column-reverse;
	}
	.archive-blog-wrapper article:nth-child(even) .featured-image:before {
		bottom: auto;
	    top: 0;
	    -webkit-transform: rotate(-180deg);
	    -moz-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	    -o-transform: rotate(-180deg);
	    transform: rotate(-180deg);
	}
	.archive-blog-wrapper.col-2 article,
	.archive-blog-wrapper.col-3 article,
	.archive-blog-wrapper.col-4 article {
	    width: 50%;
	    float: left;
	}
	.archive-blog-wrapper.col-2 article:nth-child(2n+1),
	.archive-blog-wrapper.col-3 article:nth-child(2n+1),
	.archive-blog-wrapper.col-4 article:nth-child(2n+1) {
		clear: left;
	}
	.footer-widgets-area.col-2 .hentry,
	.footer-widgets-area.col-4 .hentry {
		width: 50%;
		float: left;
	}
	.footer-widgets-area.col-2 .hentry:nth-child(2n+1),
	.footer-widgets-area.col-4 .hentry:nth-child(2n+1) {
		clear: left;
	}
	.footer-widgets-area.col-2 .hentry:nth-child(odd),
	.footer-widgets-area.col-4 .hentry:nth-child(odd) {
		padding-right: 40px;
	}
	.footer-widgets-area.col-2 .hentry:nth-last-child(-n+2),
	.footer-widgets-area.col-4 .hentry:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 767px) {
	.col-3 article {
		width: 33.33%;
	}
    .col-3 article:nth-child(2n+1) {
		clear: none;
	}
	.col-3 article:nth-child(3n+1) {
		clear: left;
	}
	.col-3 article:nth-last-child(-n+3) {
		margin-bottom: 0;
	}
	#page-site-header .page-title {
		font-size: 42px;
		margin: 0 0 5px;
	}
	#introduction-section .featured-image:before {
	    content: "";
	    background-color: #fff;
	    border-radius: 50%;
	    width: 350px;
	    height: 350px;
	    position: absolute;
	    top: 0;
	    right: 0;
	}
	#introduction-section .entry-title {
	    margin-bottom: 28px;
	    font-size: 72px;
	}
	#introduction-section article {
	    display: flex;
	    align-items: center;
	    flex-direction: row;
	}
	#introduction-section .entry-container, 
	#introduction-section .featured-image {
	    width: 50%;
	}
	#introduction-section .featured-image {
	    text-align: right;
	}
	#about-me article.has-post-thumbnail {
	    display: table;
	    width: 100%;
        position: relative;
	}
	#about-me article.has-post-thumbnail .entry-container {
	    padding: 50px;
	    float: left;
        margin-bottom: 0;
		display: table-cell;
		width: 57.5%;
	}
	#about-me article.has-post-thumbnail .featured-image {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0; 
		padding-bottom: 0;
		display: table-cell;
		width: 42.5%;
	}
	#my-profile .wrapper {
	    width: 100%;
	    max-width: 100%;
	    padding: 0;
	}
	.profile-slider .featured-image {
		padding: 150px 0;
	}
	.profile-slider .overlay,
	.profile-slider .more-link,
	.profile-slider .featured-image:before {
		visibility: hidden;
		opacity: 0;
	}
	.profile-slider article:hover .overlay,
	.profile-slider article:hover .more-link,
	.profile-slider article:hover .featured-image:before {
		visibility: visible;
		opacity: 1;
	}
	.profile-slider article:hover .overlay {
		opacity: 0.8;
	}
	.grid-item {
	    width: 50%;
	}
	.grid-item .entry-container,
	.grid-item .overlay {
		opacity: 0;
		visibility: hidden;
	}
	.grid-item:hover .entry-container,
	.grid-item:hover .more-link {
		opacity: 1;
		visibility: visible;
	}
	.grid-item:hover .overlay {
		opacity: 0.8;
		visibility: visible;
	}
	.archive-blog-wrapper.col-3 article {
		width: 33.33%;
	}
	.archive-blog-wrapper.col-3 article:nth-child(2n+1) {
		clear: none;
	}
	.archive-blog-wrapper.col-3 article:nth-child(3n+1) {
		clear: left;
	}
	#contact-me .col-2 .hentry {
	    width: 50%;
	    float: left;
	}
	#contact-me .col-2 form {
		margin-right: 0;
	}
	#contact-me .col-2 .hentry:first-child {
	    border-right: 1px solid rgba(255, 255, 255, 0.20);
	}
	.comment-navigation .nav-previous, 
	.posts-navigation .nav-previous, 
	.post-navigation .nav-previous {
	    padding-right: 25px;
	}
	.comment-navigation .nav-next, 
	.posts-navigation .nav-next, 
	.post-navigation .nav-next {
		padding-left: 25px;
	}
	.footer-widgets-area.col-3 .hentry {
		margin-bottom: 0;
		width: 33.33%;
		float: left;
	}
	.footer-widgets-area.col-3 .hentry:not(:last-child) {
		padding-right: 40px;
	}
	.site-info.col-2 span {
	    width: auto;
	    float: left;
	    text-align: left;
        margin: 6px 0;
	}
	.site-info.col-2 .social-icons {
	    float: right;
	    text-align: right;
	}
	.site-info span + .social-icons {
		margin-top: 0;
	}
	.site-wrapper.copyright {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	}
}
@media screen and (min-width: 992px) {
    .col-4 article {
		width: 25%;
	}
	.col-4 article:nth-child(2n+1) {
		clear: none;
	}
	.col-4 article:nth-child(4n+1) {
		clear: left;
	}
	.col-4 article:nth-last-child(-n+4) {
		margin-bottom: 0;
	}
	.page-section {
		padding: 80px 0;
	}
	.section-title {
		font-size: 42px;
		font-size: 2.625em;
	}
	.entry-title {
		font-size: 32px;
		font-size: 2em;
	}
	#introduction-section {
	    padding: 215px 0 0;
	}
	#introduction-section .entry-content, 
	#introduction-section .entry-content p {
		font-size: 28px;
	    max-width: 600px;
	}
	#introduction-section .featured-image:before {
	    width: 500px;
	    height: 500px;
	    top: -75px;
	    right: -30px;
	}
	#introduction-section .entry-container {
	    margin-top: -100px;
	}
	.profile-slider .featured-image {
	    padding: 200px 0;
	}
	.tab-section-content.col-4 article {
	    width: 25%;
	    float: left;
	}
	.tab-section {
		padding-bottom: 0;
	}
	ul.tabs li {
		margin-bottom: 0;
	}
	ul.tabs li a {
		padding-bottom: 20px;
	}
	#working-experience .section-header {
	    width: 42%;
	    float: left;
	}
	#working-experience .section-content {
	    width: 58%;
	    float: right;
        padding-left: 25px;
	}
	.working-experience-slider {
	    margin-top: 20px;
	}
	.grid-item .entry-container {
		padding: 0 40px 40px;
	}
	.grid-item .entry-title {
	    font-size: 18px;
	    font-weight: 600;
	    margin-bottom: 5px;
	}
	.grid-item:nth-child(1),
	.grid-item:nth-child(5),
	.grid-item:nth-child(9),
	.grid-item:nth-child(2),
	.grid-item:nth-child(6),
	.grid-item:nth-child(10) {
	    width: 50%;
	}
	.grid-item:nth-child(3),
	.grid-item:nth-child(7),
	.grid-item:nth-child(11),
	.grid-item:nth-child(4),
	.grid-item:nth-child(8),
	.grid-item:nth-child(12) {
	    width: 25%;
	}
	.grid-item:nth-child(1) .featured-image,
	.grid-item:nth-child(5) .featured-image,
	.grid-item:nth-child(9) .featured-image {
	    padding: 352px 0;
	}
	.grid-item:nth-child(2) .featured-image,
	.grid-item:nth-child(6) .featured-image,
	.grid-item:nth-child(10) .featured-image,
	.grid-item:nth-child(3) .featured-image,
	.grid-item:nth-child(7) .featured-image,
	.grid-item:nth-child(11) .featured-image,
	.grid-item:nth-child(4) .featured-image,
	.grid-item:nth-child(8) .featured-image,
	.grid-item:nth-child(12) .featured-image {
	    padding: 171px 0;
	}
	.grid-item .overlay:after {
	    border: 20px solid rgba(255, 255, 255, 0.5);
	}
	.happy-clients .entry-title {
		font-size: 22px;
	}
	.happy-clients article {
	    width: 18%;
	    float: left;
	    text-align: right;
	}
	.center-featured-image {
	    margin-bottom: 0;
	    padding: 0 25px;
	    text-align: center;
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    width: 64%;
	    margin: 0;
	    -webkit-transform: translateX(-50%);
	    -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	    -o-transform: translateX(-50%);
	    transform: translateX(-50%);
	}
	.happy-clients article:nth-of-type(2n) {
	    text-align: right;
	    float: right;
	}
	.happy-clients article:nth-of-type(2n+1) {
	    clear: both;
	    text-align: left;
	}
	#my-clients .section-header {
	    text-align: left;
	    margin-left: 0;
	    width: 42%;
	    float: left;
	}
	#my-clients .section-title:after {
		margin-left: 0;
	}
	#my-clients .section-content {
	    text-align: left;
	    margin-left: 0;
	    width: 58%;
	    float: right;
        padding-left: 25px;
	}
	#my-clients .read-more {
	    text-align: left;
	    margin-bottom: 50px;
	}
	.happy-clients article:nth-child(5),
	.happy-clients article:nth-child(6) {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.wrapper.testimonial-wrapper {
	    width: 100%;
	    max-width: 100%;
	    padding: 0;
	}
	.testimonial-slider .slick-list {
		margin: 0 -500px;
	}
	.testimonial-slider .slick-prev {
	    left: 21%;
	}
	.testimonial-slider .slick-next {
	    right: 21%;
	}
	.testimonial-slider article {
		padding: 0 70px;
		opacity: 0.2;
	}
	.testimonial-slider article.slick-current {
		opacity: 1;
	}
	#my-skills .hentry {
		margin-bottom: 0;
	}
	#my-skills .col-2 {
		margin: 0 -30px;
	}
	#my-skills .col-2 .hentry {
		width: 50%;
		float: left;
		padding: 0 30px;
	}
	#my-skills .col-2 .section-title, 
	#my-skills .col-2 .section-content, 
	#my-skills .col-2 .section-content p,
	#my-skills .col-2 .read-more {
		text-align: left;
	}
	#my-skills .col-2 .section-title:after,
	#my-skills .col-2 .section-header.text-center {
		margin-left: 0;
	}
	#my-skills .col-2 .section-header {
	    max-width: 465px;
	}
	#my-skills .col-2 .section-content {
	    max-width: 575px;
	}
	#call-to-action .section-header {
	    width: 50%;
	    float: left;
	    text-align: left;
        margin-bottom: 0;
	}
	#call-to-action .section-title {
		margin-bottom: 0;
	}
	#call-to-action .section-title:after {
		margin-left: 0;
	}
	#call-to-action .read-more {
		width: 50%;
		float: right;
	    text-align: right;
        margin: 40px 0;
	}
	.archive-blog-wrapper.col-4 article {
	    width: 25%;
	}
	.archive-blog-wrapper.col-4 article:nth-child(2n+1) {
		clear: none;
	}
	.archive-blog-wrapper.col-4 article:nth-child(4n+1) {
		clear: left;
	}
	.no-sidebar .archive-blog-wrapper .entry-title {
		font-size: 22px;
		font-size: 1.375em;
	}
	.no-sidebar .comment-form-author, 
	.no-sidebar .comment-form-email, 
	.no-sidebar .comment-form-url {
	    width: 33.33%;
	    float: left;
	}
	.no-sidebar .comment-form-author input, 
	.no-sidebar .comment-form-email input {
	    max-width: 93%;
	}
	.footer-widgets-area.page-section {
	    padding: 73px 0;
	}
	.footer-widgets-area.col-4 .hentry {
	    width: 25%;
		padding-right: 40px;
	}
	.footer-widgets-area.col-5 .hentry:first-child {
	    width: 28%;
	    padding-right: 55px;
	}
	.footer-widgets-area.col-5 .hentry {
		width: 18%;
		float: left;
	    padding-right: 25px;
	}
	.footer-widgets-area.col-4 .hentry:last-child {
		padding-right: 0;
	}
	.footer-widgets-area.col-4 .hentry:nth-child(2n+1) {
	    clear: none;
	}
	.footer-widgets-area.col-4 .hentry:nth-child(4n+1),
	.footer-widgets-area.col-5 .hentry:nth-child(5n+1) {
	    clear: left;
	}
	.footer-widgets-area.col-4 .hentry:nth-last-child(-n+4) {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1024px) {
	#masthead .social-icons li:not(:last-child) {
	    margin-right: 15px;
	}
	#masthead .social-icons {
	    margin: 0;
	}
	#social-navigation {
	    float: right;
	    display: flex;
	    align-items: center;
	    justify-content: right;
	    min-height: 70px;
	    max-width: 20%;
	    width: 20%;
	}
	.menu-overlay.active {
		display: none;
	}
	#social-navigation .social-icons {
	    display: inline-block;
	}
	.site-branding {
	    text-align: left;
	    float: left;
	    margin-right: 25px;
	    max-width: 25%;
	    width: 25%;
	    display: flex;
	    align-items: center;
	    min-height: 70px;
	}
	.main-navigation li.social-menu-item {
	    display: none;
	}
	.main-navigation .nav-menu > li > a > svg {
		fill: #152944;
	}
	#site-menu .search-menu {
		display: none;
	}
	#search-menu a svg {
	    fill: #949494;
	}
	.main-navigation {
	    float: left;
	    max-width: 50%;
	    width: 50%;
        display: block !important;
        text-align: right;
	}
	.main-navigation a,
	.main-navigation ul.nav-menu > li > a {
		color: #152944;
	}
	.dark-version .main-navigation a, 
	.dark-version .main-navigation ul.nav-menu > li > a,
	.dark-version.menu-sticky .nav-shrink .main-navigation ul.nav-menu > li > a,
	.dark-version .nav-shrink .site-title a, 
	.dark-version .nav-shrink .site-description {
		color: #fff;
	}
	.main-navigation li.menu-item-has-children:hover > a > svg, 
	.main-navigation li.menu-item-has-children > a:hover > svg {
		fill: #0bb3e4;
	}
	#masthead .main-navigation ul#primary-menu li.current-menu-item > a,
	#masthead .main-navigation ul.nav-menu > li > a:hover,
	.main-navigation ul#primary-menu li:hover > a {
		color: #0bb3e4;
	}
	.main-navigation ul#primary-menu > li.current-menu-item > a > svg,
	#masthead .main-navigation ul.nav-menu > li > a:hover svg {
		fill: #0bb3e4;
	}
	.main-navigation ul.nav-menu {
		display: block !important;
	    height: auto !important;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li.focus > ul {
		left: 0;
		right: auto;
	}
	.main-navigation ul ul li:hover > ul,
	.main-navigation ul ul li.focus > ul {
		left: 100%;
		right: auto;
	}
	.main-navigation ul.sub-menu li a {
		border-bottom: none;
	}
	.main-navigation ul ul li:not(:last-child) {
	    border-bottom: 1px solid #ddd;
	}
	.main-navigation ul ul {
	    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	}
	.main-navigation ul.sub-menu li:hover > a,
	.main-navigation ul.sub-menu li:focus > a {
		background-color: #0bb3e4;
		color: #fff;
	}
	.main-navigation ul.sub-menu > li:last-child > a {
		border-bottom: none;
	}
	.main-navigation li.search-menu {
		display: none;
	}
	#masthead .social-icons li a svg {
		fill: #152944;
	}
	.dark-version #masthead .social-icons li a svg,
	.dark-version .main-navigation .nav-menu > li > a > svg,
	.dark-version #masthead.nav-shrink .social-icons li a svg,
	.dark-version #masthead.nav-shrink .main-navigation .nav-menu > li > a > svg {
		fill:#fff;
	}
	#masthead .social-icons li a:hover svg,
	#masthead .social-icons li a:focus svg {
		fill: #fff;
	}
	.main-navigation .search-active .icon-search {
		display: none;
	}
	.main-navigation .search-active .icon-close {
		display: inline-block;
	}
	#masthead .main-navigation ul ul li.menu-item-has-children > a {
	    padding-right: 35px;
	}
	#masthead .main-navigation ul ul li a svg {
	    display: inline-block;
	    top: 17px;
	    -webkit-transform: rotate(-90deg);
	    -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	    -o-transform: rotate(-90deg);
	    transform: rotate(-90deg);
	}
	.main-navigation ul#primary-menu ul li.current-menu-item > a,
	.main-navigation ul#primary-menu ul li:hover > a,
	.main-navigation ul#primary-menu ul li:focus > a {
	    color: #fff;
	}
	.main-navigation ul ul li.menu-item-has-children:hover > a > svg, 
	.main-navigation ul ul li.menu-item-has-children > a:hover > svg {
		fill: #fff;
	}
	button.dropdown-toggle,
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
	.main-navigation li {
	    display: inline-block;
	}
	.main-navigation .left-menu {
	    padding-left: 50px;
	}
	.main-navigation ul.nav-menu > li.left-menu > a,
	.main-navigation ul.nav-menu > li.right-menu > a {
		padding-left: 5px;
		padding-right: 5px;
	}
	.main-navigation li.left-menu + li.right-menu:before {
	    content: "/";
	    position: absolute;
	    top: 50%;
	    margin-left: -6px;
	    color: #fff;
	    margin-top: -1px;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}
	.main-navigation form.search-form {
	    border: 20px solid #333;
	}
	.main-navigation form.search-form input {
	    background-color: #fff;
	    border-color: #fff;
	    color: #333;
	}
	.main-navigation form.search-form svg.icon-search {
		fill: #333;
	}
	.menu-sticky #masthead {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	}
	.menu-sticky #masthead.nav-shrink {
		background-color: #fff;
		padding: 10px 0;
	    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.10);
	}
	.menu-sticky #navigation-menu {
	    margin-top: 70px;
	}
	.home.customize-support.menu-sticky #masthead,
	body:not(.home).customize-support.menu-sticky #masthead.nav-shrink {
		top: 32px;
	}
	body:not(.home) #masthead {
		top: 0;
	}
	.menu-sticky #masthead.nav-shrink {
		position: fixed;
	}
	body:not(.home).menu-sticky #masthead {
	    position: sticky;
	    top: 0;
        background-color: #fff;
	}
	body.dark-version:not(.home).menu-sticky.dark-version #masthead {
		 background-color: #333;
	}
	#introduction-section .featured-image img {
		max-height: 600px;
	}
	#page-site-header .page-title {
		font-size: 52px;
	}
	.video-wrapper {
	    padding-bottom: 40.25%;
	    max-width: 1031px;
	    max-height: 576px;
	}
	.video-wrapper .wp-video {
	    max-width: 1031px;
	    max-height: 576px;
	    margin: 0 auto;
	    right: 0;
	}
	.no-sidebar nav.navigation.pagination {
	    text-align: center;
	}
	.right-sidebar #primary,
	.left-sidebar #primary {
    	width: 70%;
    	float: left;
	    padding-right: 30px;
    }
    .right-sidebar #secondary,
    .left-sidebar #secondary {
    	width: 30%;
    	float: left;
    }
	.left-sidebar #primary {
		padding-left: 30px;
		padding-right: 0;
		float: right;
	}
    .no-sidebar #primary {
    	width: 100%;
    	float: none;
    	padding-right: 0;
    }
    .boxed-layout #page {
	    max-width: 1200px;
	    width: 90%;
	    margin-left: auto;
	    margin-right: auto;
	}
	.frame-layout {
		max-width: 1600px;
		width: 90%;
		margin: 50px auto;
	}
}
@media screen and (min-width: 1200px) {
	.profile-slider .featured-image {
	    padding: 250px 0;
	}
	#my-services article {
	    width: 25%;
	}
	#my-services article:nth-child(2n+1) {
		clear: none;
	}
	#my-services article:nth-child(4n+1) {
		clear: left;
	}
	.working-experience-slider .featured-image img {
		height: 288px;
	}
	ul.tabs li {
	    margin-right: 40px;
	}
	ul.tabs li:last-child {
		margin-right: 0;
	}
	.working-experience-slider .slick-prev {
	    left: -70px;
	    top: 40%;
	}
	.working-experience-slider .slick-next {
	    right: -70px;
	    top: 40%;
	}
}
@media screen and (min-width: 1900px) {
	.wrapper {
	    max-width: 1440px;
	}
	.main-navigation ul.nav-menu > li > a {
	    padding: 22px 12px;
	}
	.page-section {
		padding: 93px 0 100px;
	}
	#introduction-section .entry-title {
	    font-size: 110px;
	    max-width: 500px;
	}
	#introduction-section .featured-image img {
		max-height: 900px;
	}
	#introduction-section .featured-image:before {
	    width: 57%;
	    height: 91%;
	    top: -75px;
	    right: -100px;
	}
	#about-me article.has-post-thumbnail .entry-container {
	    padding: 80px 170px 50px 50px;
	}
	.profile-slider .featured-image {
	    padding: 360px 0;
	}
	#my-services article .service-item-wrapper {
	    padding: 50px 30px;
	}
	.working-experience-slider .featured-image img {
		height: 260px;
	}
	.tab-section {
		margin-bottom: 70px;
	}
	ul.tabs li {
	    margin-right: 55px;
	}
	.grid-item .entry-container {
		padding: 0 50px 50px;
	}
	.grid-item .entry-title {
	    font-size: 22px;
	    margin-bottom: 10px;
	}
	#my-portfolio .read-more {
	    margin-top: 50px;
	}
	.video-wrapper {
        margin-top: 50px;
	}
	#my-clients .read-more {
		margin-bottom: 120px;
	}
	.happy-clients article {
	    margin-bottom: 60px;
	}
	.testimonial-slider .slick-prev {
	    left: 25%;
	}
	.testimonial-slider .slick-next {
	    right: 25%;
	}
	.center-featured-image {
		padding: 0 50px;
	}
	#latest-posts .read-more {
	    margin-top: 70px;
	}
	#contact-me .social-icons {
	    margin-top: 55px;
	}
	nav.navigation.pagination {
		margin-top: 70px;
	}
	#comments {
		margin-top: 65px;
	}
	#comments ol.comment-list {
	    margin-bottom: 50px;
	}
	.woocommerce-filtering {
	    margin-top: 93px;
	}
	nav.woocommerce-pagination {
	    margin-bottom: 93px;
	}
	#secondary .widget:not(:last-child) {
	    margin-bottom: 50px;
	}
	.right-sidebar #primary {
	    padding-right: 50px;
    }
    .left-sidebar #primary {
	    padding-left: 50px;
    }
	.footer-widgets-area.col-3 .hentry:not(:last-child),
	.footer-widgets-area.col-2 .hentry:nth-child(odd) {
		padding-right: 100px;
	}
	.boxed-layout #page {
	    max-width: 1600px;
	    width: 90%;
	}
	.site-info.col-3 span, 
	.site-info.col-3 .social-icons {
	    width: 15%;
	}
	.site-info.col-3 .custom-menu {
	    width: 70%;
	}
}
@media screen and (max-width: 1023px) {
	.main-navigation a {
	    border-bottom: 1px solid #eee;
	}
	.main-navigation ul ul a {
	    width: 100%;
	}
	.main-navigation ul ul,
	.main-navigation ul ul ul {
	    box-shadow: none;
	    float: none;
	    position: relative;
	    top: 0;
	    left: 0;
	    margin-bottom: 0;
	    display: none;
	}
	.main-navigation ul.sub-menu li {
	    padding-right: 0;
	}
	.main-navigation .menu-item-has-children > a:before {
	    content: "";
	    float: right;
	    position: relative;
	    right: 25px;
	    background-color: #ccc;
	    width: 1px;
	    height: 25px;
	}
	.main-navigation .menu-item-has-children > a:after {
	    padding-top: 3px;
	}
	.main-navigation ul.nav-menu > li > a,
	.main-navigation ul.sub-menu li a {
	    padding: 15px 15px 15px 25px;
	}
	.main-navigation ul.sub-menu li a {
		padding-left: 50px;
	}
	.main-navigation ul.sub-menu ul li a {
		padding-left: 75px;
	}
	.main-navigation ul.sub-menu ul ul li a {
		padding-left: 100px;
	}
	.main-navigation ul.sub-menu ul ul ul li a {
		padding-left: 125px;
	}
	.main-navigation .menu-item-has-children a svg {
		display: none;
	}
	.main-navigation ul.sub-menu li a {
		border-left: none;
	}
	.main-navigation ul.nav-menu {
	    margin-right: 0;
	    background-color: #fff;
	    border-top: 1px solid #eee;
	}
	.main-navigation {
		position: static;
	}
	.main-navigation a {
		color: #333;
	}
	.main-navigation svg.icon-search,
	.main-navigation svg.icon-down {
		fill: #333;
	    margin-top: -5px;
	}
	.main-navigation ul.sub-menu {
		border: none;
	}
	#masthead.site-header .main-navigation {
	    margin-top: 0;
	    position: absolute;
	    z-index: 3;
	    max-width: 100%;
	    top: 100%;
	    left: auto;
	    right: 0;
	    width: 100%;
	    display: none;
	}
	.main-navigation .search-menu a {
	    display: none;
	}
	.main-navigation form.search-form input {
	    background-color: #fff;
	    border: none;
	    min-height: 55px;
	}
	.main-navigation form.search-form button.search-submit {
		height: 59px;
	}
	.main-navigation form.search-form input {
		padding-left: 25px;
	}
	.main-navigation .sub-menu svg {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	    top: 28px;
	}
	#social-navigation {
		display: none;
	}
	#secondary {
	    margin-top: 50px;
	}
}

@media screen and (max-width: 992px) {
	.center-featured-image {
	    margin-top: 40px;
	    display: inline-block;
	    width: 100%;
	    text-align: center;
	}
	#contact-me .social-icons li a {
	    width: 40px;
	    height: 40px;
	    line-height: 35px;
	}
	#contact-me .social-icons li a svg {
		width: 16px;
		height: 16px;
	}
	.comments-title, 
	#reply-title {
	    font-size: 28px;
	}
}
@media screen and (max-width: 767px) {
	#masthead.site-header .main-navigation ul.nav-menu {
		max-width: 100%;
	}
	#introduction-section .featured-image:before {
		display: none;
	}
	#contact-me .hentry {
		margin-bottom: 50px;
	}
	#contact-me .hentry:last-child {
		margin-bottom: 0;
	}
	#contact-me .col-2 form {
		margin-left: 0;
	}
	#page-site-header {
	    padding: 200px 0;
	}
	.comment-navigation .nav-previous, 
	.posts-navigation .nav-previous, 
	.post-navigation .nav-previous,
	.comment-navigation .nav-next, 
	.posts-navigation .nav-next, 
	.post-navigation .nav-next {
		width: 100%;
    	margin: 15px 0;
	}
	.post-navigation span.previous-article b, 
	.post-navigations span.previous-article b, 
	.post-navigation span.next-article b, 
	.post-navigations span.next-article b {
		font-size: 18px;
	}
	.comment-wrap {
	    margin-left: 0;
	}
	#commentform p.comment-form-comment,
	#commentform p.form-submit {
		margin-top: 21px;
	}
	.comments-title, 
	#reply-title {
	    font-size: 26px;
	}
	#comments {
	    margin-top: 40px;
	}
	.site-info span:not(:last-child) {
	    margin-bottom: 20px;
	}
}
@media screen and (max-width: 567px) {
	.menu-label {
		display: none;
	}
	.site-branding {
	    display: block;
	}
	.site-logo {
	    margin-right: 0;
	}
	.site-logo + #site-identity {
	    margin-top: 15px;
	}
	#page-site-header {
	    padding: 150px 0;
	}
	.pagination .page-numbers.prev, 
	.pagination .page-numbers.next {
		top: 0;
	}
	.pagination .prev.page-numbers:before, 
	.pagination .next.page-numbers:before {
		width: 35px;
		height: 10px;
	}
	.pagination .page-numbers.prev, 
	.pagination .page-numbers.next {
		margin-left: 0;
		margin-right: 0;
	}
	.comment-content {
		margin-left: 0;
	    background-color: #fff;
	    margin-top: 25px;
	    padding: 15px 20px;
	}
	.reply {
		padding-left: 0;
	}
	#comments ol.children {
	    margin-left: 25px;
	}
	.comment-meta .fn {
	    margin-left: 0;
	    margin-top: 10px;
	}
	#colophon .widget-title:before, 
	#colophon .widgettitle:before {
		right: 0;
	}
	.footer-widgets-area .hentry:last-child,
	.footer-widgets-area.col-3 .hentry:last-child {
		margin-bottom: 0;
	    padding-right: 0;
	}
	.custom-menu ul li {
	    display: block;
	    margin: 0 0 10px;
	}
	.footer-widgets-area {
		text-align: center;
	}
	.textwidget img {
		margin-left: auto;
		margin-right: auto;
	}
}
