/*
 * ---------------------------
 * Table of content
 * ---------------------------
 * CSS Reset
 * Basic Styles
 * Preloader
 * Sidebar
 * About Block
 * Card Grid
 * Card Single Inner
 * Blog
 * Responsive
 */

/**
 * CSS Reset
 */

 html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

body {
    margin: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

pre {
    font-family: "Telefonica Cap", "Telefonica ExtraLight", "Telefonica Hand", "Telefonica Headline Light", "Telefonica Light", "Telefonica Script", "Telefonica Text";
    /* 1 */
    font-size: 1em;
    /* 2 */
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

b, strong {
    font-weight: bold;
}

code, kbd, samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button, input, optgroup, select, textarea {
    font-family: Telefonica, "Telefonica Cap", "Telefonica ExtraLight", "Telefonica Hand", "Telefonica Headline Light", "Telefonica Light", "Telefonica Script", "Telefonica Text";
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

button, input {
    /* 1 */
    overflow: visible;
}

button, select {
    /* 1 */
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

.wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.wrapper > h1 {
    text-align: center;
}

.wrapper > h1 span {
    border-bottom: 2px solid #49a4d9;
    display: inline-block;
    padding: 0 10px 10px;
    color: #49a4d9;
    transition: all 0.5s linear;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/**
 * Basic Styles
 */

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.tab_wrapper {
    margin: 20px 0 30px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.tab_wrapper * {
    box-sizing: border-box;
}

.tab_wrapper > ul {
    clear: both;
    display: inline-block;
    width: 100%;
}

.tab_wrapper > ul li {
    float: left;
    cursor: pointer;
    padding: 8px 18px;
    border-bottom: 0;
    position: relative;
}


.tab_wrapper .controller {
    display: block;
    overflow: hidden;
    clear: both;
    position: absolute;
    top: 0;
    right: 0;
}

.tab_wrapper .controller span {
    padding: 8px 22px;
    background: #49a4d9;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
}

.tab_wrapper .controller span.next {
    float: right;
    margin-left: 10px;
}

.tab_wrapper .content_wrapper {
    float: left;
    width: 100%;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
}

.tab_wrapper .content_wrapper .tab_content {
    display: none;
    padding: 15px 20px;
}

.tab_wrapper .content_wrapper .tab_content .error {
    color: red;
}

.tab_wrapper .content_wrapper .accordian_header {
    display: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #fff;
    position: relative;
    cursor: pointer;
}

.tab_wrapper .content_wrapper .accordian_header.active {
    color: #49a4d9;
    border-bottom: 1px solid #ccc;
}

.tab_wrapper .content_wrapper .accordian_header.active:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 5px;
    height: 100%;
    background: #49a4d9;
}

.tab_wrapper .content_wrapper .accordian_header .arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    border-radius: 2px;
    transform: rotate(-135deg);
    background: #fff;
    border-top: 3px solid #ccc;
    border-left: 3px solid #ccc;
}

.tab_wrapper .content_wrapper .accordian_header.active .arrow {
    transform: rotate(45deg);
    margin-top: 5px;
    border-top: 3px solid #bfd730;
    border-left: 3px solid #bfd703;
}

.tab_wrapper.left_side > ul {
    width: 25%;
    float: left;
    border-bottom: 1px solid #ccc;
}

.tab_wrapper.left_side > ul li {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 18px;
    border-width: 1px;
    border-right: 0;
    border-left: 0;
}

.tab_wrapper.left_side > ul li:after {
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #ccc;
}

.tab_wrapper.left_side > ul li.active {
    border-color: #ccc;
}

.tab_wrapper.left_side > ul li.active:after {
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #49a4d9;
}

.tab_wrapper.left_side > ul li.active:before {
    right: -1px;
    position: absolute;
    top: 0;
    content: "";
    width: 2px;
    height: 100%;
    background: #fff;
}

.tab_wrapper.left_side .content_wrapper {
    width: 75%;
    border: 1px solid #ccc;
    float: left;
}

.tab_wrapper.left_side .controller {
    top: -50px;
}

.tab_wrapper.right_side > ul {
    width: 25%;
    float: right;
    border-bottom: 1px solid #ccc;
}

.tab_wrapper.right_side > ul li {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 18px;
    border-width: 1px;
    border-right: 0;
    border-left: 0;
    text-align: right;
}

.tab_wrapper.right_side > ul li:after {
    right: 0;
    left: inherit;
    top: 0;
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #ccc;
}

.tab_wrapper.right_side > ul li.active {
    border-color: #ccc;
}

.tab_wrapper.right_side > ul li.active:after {
    right: 0;
    left: inherit;
    top: 0;
    width: 5px;
    height: 100%;
    content: "";
    background: #49a4d9;
}

.tab_wrapper.right_side > ul li.active:before {
    left: -2px;
    right: inherit;
    position: absolute;
    top: 0;
    content: "";
    width: 2px;
    height: 100%;
    background: #fff;
}

.tab_wrapper.right_side .content_wrapper {
    width: 75%;
    float: left;
    border: 1px solid #ccc;
}

.tab_wrapper.right_side .controller {
    top: -50px;
}

.tab_wrapper.accordion .content_wrapper {
    border-color: #ccc;
}

.tab_wrapper.accordion .content_wrapper .accordian_header {
    display: block;
}

.tab_wrapper.accordion > ul {
    display: none;
}

.tab_wrapper .active_tab {
    display: none;
    position: relative;
    background: #457a6c;/*Color fondo de los iconos animados*/
    padding: 12px;
    text-align: center;
    padding-right: 50px;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
}

.tab_wrapper .active_tab .arrow {
    width: 30px;
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    text-align: center;
    background: #fff;
    position: absolute;
    right: 6px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.tab_wrapper .active_tab .arrow:after {
    content: "";
    width: 10px;
    display: inline-block;
    height: 10px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -8px;
}

.tab_wrapper .active_tab .text {
    text-indent: 39px;
    display: block;
}

body {
    background: #fff;
    color: #7b7b7b;
    font-weight: 400;
    font-size: 16px;
    font-family: 'telefonica';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

.noscroll {
    overflow: hidden;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    vertical-align: middle;
    border-style: none;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.no-padding {
    padding: 0 !important;
}

.main {
    height: 100%;
    margin-left: 100px;
    margin-right: 25%;
}

.view-single .main {
    margin-right: 0;
    z-index: 9999;
}

.open .main > .grid {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all 1s cubic-bezier(0, 0.35, 0.25, 1);
    margin-right: 0;
    opacity: .5;
}

.main > .grid {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    transition: all .8s cubic-bezier(0, 0.35, 0.25, 1);

}

.content__item {
    font-size: 1em;
}

a {
    outline: none;
    color: #003c36;
    text-decoration: none;
    display: inline-block;
}

a:hover,
a:focus {
    color: #333;
    outline: none;
}

button:focus {
    outline: none;
}

p {
    font-family: 'Telefonica ExtraLight';
    font-size: 18px;
    color: #636363;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1
{
    color: #003c36;
    margin: 0 0 10px 0;
}


h2,
h3,
h4,
h5,
h6 {
    color: #003c36;
    margin: 0 0 10px 0;
	font-family: 'Telefonica Cap';
}


ul {
    padding: 0;
}

/**
 * Preloader
 */

.content__intro {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content__inner {
	text-align: center;
	color: #003c36;
	position: relative;
    margin-top: -50px;
}

.content__inner h2 {
    color: #003c36;
    font-size: 80px;
    font-weight: 200;
}
.content__inner h3 {
    color: #003c36;
    margin-bottom:30px;
    font-weight: 400;
}

.shape-wrap {
	position: absolute;
	top: 100%;
	width: 100%;
}

.shape-wrap svg {
    height: 100vh;
}

.shape {
	height: 500px;
	width: 100%;
	display: block;
	fill: #000;
}

/**
 * Sidebar
 */

.sidebar {
    text-align: center;
    /**background: background: rgba(0,60,54,1);
background: -moz-linear-gradient(left, rgba(0,60,54,1) 0%, rgba(20,74,67,1) 28%, rgba(69,122,108,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,60,54,1)), color-stop(28%, rgba(20,74,67,1)), color-stop(100%, rgba(69,122,108,1)));
background: -webkit-linear-gradient(left, rgba(0,60,54,1) 0%, rgba(20,74,67,1) 28%, rgba(69,122,108,1) 100%);
background: -o-linear-gradient(left, rgba(0,60,54,1) 0%, rgba(20,74,67,1) 28%, rgba(69,122,108,1) 100%);
background: -ms-linear-gradient(left, rgba(0,60,54,1) 0%, rgba(20,74,67,1) 28%, rgba(69,122,108,1) 100%);
background: linear-gradient(to right, rgba(0,60,54,1) 0%, rgba(20,74,67,1) 28%, rgba(69,122,108,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003c36', endColorstr='#457a6c', GradientType=1 );*/
	background-color: #003c36;
    z-index: 1000;
    position: fixed;
    width: 300px;
    max-width: 100%;
    height: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 15px;
    width: 100px;
}

.social-link {
    margin-bottom: 40px;
}

.social-link ul li a {
    position: relative;
    width: 16px;
    overflow: hidden;
    height: 20px;
}

.social-link ul li a .svg {
    position: absolute;
    left: 0;
    top: 0;
}

.social-link ul li a .svg.m {
    left: 0;
    transition: all .5s;
}

.social-link ul li a:hover .svg.m {
    left: 16px;
    transition: all .5s;
}

.social-link ul li a .svg.h {
    left: -16px;
    transition: all .5s;
}

.social-link ul li a:hover .svg.h {
    left: 0;
    transition: all .5s;
}


.social-link .svg {
    width: 14px;
    height: 17px;
}

.social-link ul li a path {
    fill: #ffffff;
    transition: all .3s;
}

.social-link ul li a:hover path {
    fill: #fff;
    transition: all .3s;
}

.social-link li {
    margin-bottom: 14px;
}

.sidebar-menu-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.copyright {
    opacity: .75;
}

.copyright svg {
    width: 16px;
}

.copyright p {
    color: #636363;
    font-size: 10px;
    font-weight: 400;
}

.copyright p span {
    display: block;
}

.card-nav {
    margin-bottom: 40px;
}


.card-nav::after {
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    background: transparent;
    height: 130%;
    display: none;
}

.offcanvus-open .card-nav::after,
.open .card-nav::after {
    display: block;
}

.offcanvus-open .card-nav,
.open .card-nav {
    opacity: .5;
    transition: all .3s;
}

.view-single .card-nav::after {
    display: block;
}

.view-single .card-nav {
    opacity: .5;
    transition: all .3s;
}

.view-single .card-nav {
    opacity: .5;
    transition: all .3s;
}

.card-nav li {
    position: relative;
    transition: all .8s;
}

.card-nav li:hover {
    opacity: .6;
    transition: all .8s;
}

.sidebar-offcanvas {
    width: 450px;
    background: #bfd703;
    height: 100Vh;
    position: absolute;
    left: -550px;
    top: 0;
    z-index: 99;
    padding: 35px 10px 0 40px;
    transition: all .6s cubic-bezier(0, 0.35, 0.25, 1);
}

._mCS_1 .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #c0c0c0;
}

.sidebar-offcanvas.active {
    left: 100px;
    transition: all .6s cubic-bezier(0, 0.35, 0.25, 1);
}

.offcanvus-open .main > .grid {

    transform: translateX(450px);
    transition: all .8s cubic-bezier(0, 0.35, 0.25, 1);
    opacity: .5;
}

#gallery2 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 999;
}

.offcanvus-video {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56%;
}

.offcanvus-video > img {
    position: absolute;
    top: -3000px;
    right: -3000px;
    bottom: -3000px;
    left: -3000px;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
    transform: scale(1);
    transition: all 1s;
}

.offcanvus-video:hover > img {
    transform: scale(1.3);
}

.offcanvus-video a {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: translateX(0);
    transition: transform 400ms;
    z-index: 1;
}

.offcanvus-video a:hover {
    transform: translateX(5px);
}

.offcanvus-video:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #003c36;
    opacity: .9;

}

.sidebar-offcanvas h6 {
    font-size: 30px;
    color: #003c36;
    margin-bottom: 36px;
    font-weight: 500;
}

.sidebar-offcanvas p {
    color: #636363;
    font-size: 18px;
    margin-top: 21px;
    line-height: 26px;
}

.card-nav li::after {
    content: '';
    width: 42px;
    height: 7px;
    position: absolute;
    background-image: url(../img/icon/arrow.png);
    background-repeat: no-repeat;
    background-size: auto;
    top: 9px;
    left: -65px;

    transition: all .3s;
}

.card-nav li.current::after {
    left: 29px;
}

.card-nav li { /*COLOR DE LOS NUMEROS DEL MENU IZQUIERDO*/
    cursor: pointer;
    font-size: 20px;
    color: #c0c0c0;
    margin-bottom: 11px;
}

.card-nav .current {/*COLOR DE LOS NUMEROS DEL MENU IZQUIERDO*/
    pointer-events: none;
    color: #ffffff;
}

.sb_open {
    margin-top: 20px;
    transform: scale(1);
    transition: all .5s;
    transition-delay: .2s;

}

.view-single .sb_open {
    pointer-events: none;
    opacity: .5;
    transition: opacity .3;
}

.offcanvus-open .sb_open {
    transform: scale(0);
    transition: all .5s;
    transition-delay: .2s;

}

.sb_close {
    position: absolute;
    left: 32px;
    top: 99px;
    visibility: hidden;
    background: #000;
    width: 34px;
    padding: 5px;
    text-align: center;
    opacity: .5;
    transform: scale(0);
    transition: all .5s;
}

.offcanvus-open .sb_close {
    left: 32px;
    visibility: visible;
    transition: all .5s;
    transition-delay: .2s;
    transform: scale(1);
    opacity: 1;
}

/**
 * About Block
 */

.top-content {
    width: 100%;
}

.top-content .profile-picture {
    float: left;
}

.profile-brief {
    overflow: hidden;
    padding: 30px 70px;
    position: relative;
    width: 66.66%;
    height: 50vh;
}

.profile-brief .flex-content {
    transform-origin: 0 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backface-visibility: hidden;
}

.download-cv-absolute .ai-icon {
    height: 60px;
    width: 54px;
    float: left;
    margin-left: -10px;
}

#ci-download path {
    stroke-width: 3px !important;
}

.download-cv-absolute .ai-icon svg path {
    stroke-width: 3px !important;
}

.profile-brief .flex-content > span {
    font-size: 30px;
    color: #636363;
    width: 100%;
    display: block;
}

.profile-brief h1 {
    font-size: 40px;
    color: #003c36;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.profile-brief .arrow {
    float: left;
}

.profile-brief .loader {
    margin-bottom: 20px;
}

.profile-brief .lader-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top-content .arrow::before {
    width: 10px;
    height: 4px;
    background: #c0c0c0;
    position: absolute;
    top: 7px;
    left: 19px;
    content: '';
    transition: all .3s;
}

.top-content:hover .arrow::after {
    border-left: 10px solid #003c36;
    left: 30px;
    transition: all .3s;
}

.top-content:hover .arrow::before {
    width: 27px;
    transition: all .3s;
    background: #003c36;
    left: 4px;
}

.profile-brief h3 {
    font-size: 20px;
    line-height: 16px;
    width: 100%;
}

.profile-brief p {
    font-size: 18px;
    color: #636363;
    font-weight: 300;
    margin-bottom: 38px;
    line-height: 24px;
}

.profile-brief img {
    display: inline;
}

.profile-brief a {
    font-size: 20px;
    color: #636363;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    margin-top: 17px;
    transition: all .8s;
}

.profile-brief a:hover {
    color: #003c36;
    transition: all .8s;
}

.profile-brief a span {
    margin-top: 0;
    float: left;
    margin-right: 24px;
    font-size: 16px;
    padding-top: 17px;
}

.main {
    position: relative;
    z-index: 50;
}

.grid {
    position: relative;
}


/* Overlay */

.grid::after {
    content: '';
    background: rgba(202, 202, 202, 0.4);
    opacity: 0;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.view-single .grid::after {
    opacity: 1;
}




/**
 * Card Grid
 */

.grid__item,
.grid__item_2 {

    position: relative;
    color: inherit;
    background: #fff;
    min-height: 515px;
    text-align: left;

    width: 33.33%;
    z-index: 99;
}

.grid__item_2.no_bg {
    background: none;
    box-shadow: none;
}

.no_bg .arrow::before {
    display: none;
}

.no_bg.grid_item:hover .arrow::after {
    border-left: 10px solid #003C36;
    left: 23px;
}

.grid__item_2 {
    padding: 65px 70px;
}

.grid__item {
    padding: 70px 70px;
}

.grid__item_2 {
    background: #003C36;
    -webkit-box-shadow: 0px -1px 0px 0px rgba(69, 122, 108, 1);
    -moz-box-shadow: 0px -1px 0px 0px rgba(69, 122, 108, 1);
    box-shadow: 0px -1px 0px 0px rgba(69, 122, 108, 1);
}

.ai-icon svg polyline,
.ai-icon svg polygon,
.ai-icon svg rect,
.ai-icon svg circle,
.ai-icon svg line,
.ai-icon svg path {
    stroke-width: 2 !important;
    stroke: #000;
}

.grid_item:hover .ai-icon svg polyline,
.grid_item:hover .ai-icon svg polygon,
.grid_item:hover .ai-icon svg rect,
.grid_item:hover .ai-icon svg circle,
.grid_item:hover .ai-icon svg line,
.grid_item:hover .ai-icon svg path {
    stroke: #003c36;
}

/* Common css for article */
.section-inner {
    width: 920px;
    margin: 0 auto;
}

.section-inner {
    position: relative;
}

.blog-list .section_heading h2 {
    margin-top: -15px;
}

/* Testimonial area */

.testimonial-wrapper {
    position: relative;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.testimonial-wrapper.owl-theme .owl-dots .owl-dot span {
    margin: 5px 3px;
    background: #fff;
    transition: all .3s;
}

.testimonial-wrapper.owl-theme .owl-dots .owl-dot.active span,
.testimonial-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #457a6c;
}

.testimonial-wrapper.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    position: absolute;
    top: 155px;
    transition: all .3s;
}

.single-testimonial .picture {
    width: 80px;
    height: 80px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #ebebeb;
    margin-bottom: 18px;
    text-align: center;
    overflow: hidden;
}

.single-testimonial .picture img {
    width: 100%;
}

.single-testimonial h5 {
    font-size: 20px;
    text-align: left;
    color: #000000;
    margin-bottom: 0;
    line-height: 25px;
    font-weight: 400;
}

.single-testimonial span {
    font-family: 'Telefonica Regular';
    font-size: 12px;
    font-weight: 300;
    text-align: left;
    color: #ffffff;
    margin-bottom: 45px;
    display: inline-block;
}

.single-testimonial p {
    font-size: 18px;
    color: #ffffff;
    font-family: 'Telefonica ExtraLight';
    line-height: 24px;
}

.item.single-client {
    border: 3px solid rgba(255, 255, 255, .15);
    height: 260px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.client-wrapper.owl-theme .owl-dots .owl-dot span {
    margin: 5px 3px;
    background: #fff;
}

.client-wrapper.owl-theme .owl-dots .owl-dot.active span,
.client-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #457a6c;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    border: 1px solid #fff;
    border-radius: 0;
    width: 16px;
    margin: 0;
    height: 19px;
    line-height: 0px;
    font-size: 10px;
    margin-bottom: 10px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.owl-carousel .owl-nav button.owl-prev {
    border-right: none;
}

.owl-carousel .owl-nav button.owl-next i,
.owl-carousel .owl-nav button.owl-prev i {
    display: block;
    height: 19px;
    width: 16px;
    position: relative;
    overflow: hidden;
}

.owl-carousel .owl-nav button.owl-next i:before,
.owl-carousel .owl-nav button.owl-next i:after,
.owl-carousel .owl-nav button.owl-prev i:before,
.owl-carousel .owl-nav button.owl-prev i:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    height: 8px;
    width: 8px;
    display: block;
    content: '';
    position: absolute;
    transition: transform 300ms;
}

.owl-carousel .owl-nav button.owl-prev i:before {
    transform: translate3d(5px, 4px, 0) rotate(-135deg);
}

.owl-carousel .owl-nav button.owl-prev:hover i:before {
    transform: translate3d(-16px, 4px, 0) rotate(-135deg);
}

.owl-carousel .owl-nav button.owl-prev i:after {
    transform: translate3d(21px, 4px, 0) rotate(-135deg);
}

.owl-carousel .owl-nav button.owl-prev:hover i:after {
    transform: translate3d(5px, 4px, 0) rotate(-135deg);
}

.owl-carousel .owl-nav button.owl-next i:before {
    transform: translate3d(1px, 4px, 0) rotate(45deg);
}

.owl-carousel .owl-nav button.owl-next:hover i:before {
    transform: translate3d(17px, 4px, 0) rotate(45deg);
}

.owl-carousel .owl-nav button.owl-next i:after {
    transform: translate3d(-15px, 4px, 0) rotate(45deg);
}

.owl-carousel .owl-nav button.owl-next:hover i:after {
    transform: translate3d(1px, 4px, 0) rotate(45deg);
}

.client-wrapper.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    bottom: -50px;
}

.client-wrapper.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    bottom: -50px;
}

.client-wrapper.owl-theme .owl-dots {
    position: absolute;
    left: 0;
    bottom: -80px;
}

.grid__item_2 .grid-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 35px;
}

.client-section {
    position: relative;
    height: auto;
}

.gmap3-area {
    height: 100%;
    width: 100%;
}

.arrow {
    position: relative;
    top: -13px;
    right: -26px;
}

.arrow::after {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #cccccc;
    position: absolute;
    top: 1px;
    left: 23px;
    content: '';
    transition: all .3s;
}

.arrow::before {
    width: 10px;
    height: 1px;
    background: transparent;
    position: absolute;
    top: 8px;
    left: 19px;
    content: '';
    transition: all .3s;
}

.grid_item:hover .arrow:after {
    border-left: 10px solid #003c36;
    left: 30px;
    transition: all .3s;
}

.grid_item:hover .arrow::before {
    width: 27px;
    transition: all .3s;
    background: #003c36;
    left: 4px;
}

.grid_item .ai-icon {

    margin-left: -22px;
}

/* Portfolio area css start*/

.portfolio {
    float: right;
    width: 25%;
    background: #003c36;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    padding: 0 40px;
    transition: all 1s cubic-bezier(0, 0.35, 0.25, 1);
    z-index: 99;
    padding-right: 0;
    overflow: hidden;
}


.portfolio-area-content {
    overflow: hidden;
}

.mCSB_container {
    margin-right: 0 !important;
    padding-right: 40px;
}

.portfolio.active .mCSB_container {
    padding-right: 5px;
}

.portfolio.active {
    width: calc(100% - 100px);
    transition: all 1s cubic-bezier(0, 0.35, 0.25, 1);
    padding: 0;
}

.portfolio .opener {
    position: absolute;
    float: right;
    transition: all 0.3s;
    width: 70px;
    height: 70px;
    text-align: center;
    display: block;
    z-index: 99;
    right: 10px;
}


.portfolio-filter {
    margin-top: 62px;
    overflow: hidden;
    height: 100%;
}

.opener .ai-icon svg path {
    stroke-width: 10 !important;
    stroke-miterlimit: 4;
    stroke: #c0c0c0; /*COLOR DE LA FLECHA DE LA GALERIA*/
    fill: none;
    transition: all .3s;
}

.opener:hover .ai-icon svg path {
    stroke: #fff;
    transition: all .3s;
}

.opener .ai-icon {
    height: 70px;
    width: 70px;
    transform: rotate(0deg);
    transition: all 1s;
    margin-top: 33px;
}

.active .opener .ai-icon {
    height: 70px;
    width: 70px;
    transform: rotate(180deg);
    transition: all 1s;
}

.portfolio h2 {
    font-size: 30px;
    color: #FFFFFF;
    margin-top: 50px;
    font-weight: normal;
    position: relative;
}

.portfolio.active h2 {
    margin-left: 40px;
}

.portfolio h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -26px;
    width: 30px;
    height: 7px;
    background-color: #C0C0C0;
}

.portfolio-filter > ul {
    list-style: none;
    margin-bottom: 50px;
}

.active .portfolio-filter > ul {
    margin: 0 40px 20px 40px;
}

.portfolio-filter > ul > li {
    display: inline-block;
    color: #C0C0C0;
    font-size: 16px;
    text-transform: capitalize;
    font-family: 'Telefonica extralight', sans-serif;
    margin-right: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all .8s;
}

.portfolio-filter > ul > li.active {
    color: #003c36;
    transition: all .8s;
	background-color: #ffffff;
	padding: 10px;
	border-radius: 2px;
}

.lg-sub-html {
    bottom: 20px;
}

.lg-sub-html h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.lg-sub-html p {
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
    
}
.lg-sub-html p a {
    color: #3acaf8;
}

.sin-item .item-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 999;
    transition: all 1s;
}

.portfolio.active .sin-item .item-img:after {
    opacity: 0;
}

.sin-item {
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.sin-item .item-img img {
    width: 100%;
    transition: all 1s;

}

.sin-item a img {
    width: 100%;
    transition: all 1s;

}

.sin-item a {
    display: block;
}

.sin-item:hover .item-img:after {
    transition: all 1s;
    opacity: 0;
}

.sin-item:hover .item-img img {
    transform: scale(1.3);
    transition: all 1s;
}

.item-info {
    background: #000;
    color: #003c36;
    height: 41px;
    padding-top: 11px;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    width: 100%;
    bottom: -45px;
    left: 0;
    opacity: 0;
    transition: all 1s;
    text-transform: uppercase;
}

.sin-item:hover .item-info {
    opacity: 1;
    bottom: 0;
    transition: all 1s;
}

.mix-items {
    margin-bottom: 35px;
    width: 100%;

}

.portfolio.active .portfolio-area-content {
    padding-left: 20px;
    padding-right: 20px;
}

.portfolio.active .mix-items {
    width: 25%;
    float: left;
    text-align: center;
    padding: 20px;
    margin-bottom: 0;
}

.item-info h6 {
    color: #003c36;
    float: left;
    font-size: 16px;
    font-weight: normal;
}

.item-info .ai-icon {
    float: right;
    width: 80px;
    height: 80px;
    transform: translateY(-32px);
    margin-right: -29px;
}

.item-info .ai-icon svg polyline,
.item-info .ai-icon svg polygon,
.item-info .ai-icon svg rect,
.item-info .ai-icon svg circle,
.item-info .ai-icon svg line,
.item-info .ai-icon svg path {
    stroke: #003c36;
    stroke-width: 3 !important;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
	border-color: #003c36;
}

.lg-progress-bar .lg-progress {
	background-color: #003c36;

}




/* Filter/dropdown dummy on the right */

.filter {
    text-align: right;
    font-size: 0.75em;
    margin-left: auto;
}

.dropdown {
    font-weight: bold;
    margin-left: 5px;
    cursor: pointer;
    color: #81c483;
}

.dropdown::after {
    content: '\25BC';
    margin-left: 2px;
    font-size: 80%;
}

.grid__item .icon {
    margin-bottom: 15px;
}


/* Grid item "border" */



.grid__item * {
    z-index: 10;
}

.grid-item {
    float: left;
    width: 350px;

    background: #e6e5e4;
    border: 2px solid #b6b5b4;
}

.title {
    margin: 0;
    font-size: 30px;
    text-align: left;
    font-weight: 400;
}

.title--preview {
    width: 100%;
    text-transform: uppercase;
}

.title.title--preview {
    position: relative;
    display: inline;
}

.loader {
    height: 7px;
    width: 30px;
    position: relative;
    background: #d6d6d6;
    margin-top: 15px;
}

.loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 7px;
    background: #003c36;
    left: 0;
    top: 0px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.grid__item--loading .loader::before {
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.brief {
    margin: 0;
    position: relative;
    font-size: 18px;
    text-align: left;
    display: block;
    color: #5c5c5c;
    font-weight: 300;
    margin-top: 15px;
    line-height: 26px;
}

.title--preview,
.loader,
.brief,
.icon {
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}


/* closing (delays) */

.icon {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}


/* Placeholder element (dummy that gets animated when we click on an item) */

.placeholder {
    pointer-events: none;
    position: absolute;
    width: calc(100% + 5px);
    height: calc(100vh + 5px);
    z-index: 100;
    top: 0;
    left: 0;
    background: #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.placeholder.placeholder--trans-in {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.placeholder.placeholder--trans-out {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}


/* main content */

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 0;
    /* Avoid second scroll bar in Chrome! */
    visibility: hidden;
    z-index: 400;
    /* overflow: hidden; */
}

.content.content--show {
    height: 100vh;
    pointer-events: auto;
    visibility: visible;
}

/**
 * Card Single Inner
 */

.content__item {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    padding: 105px 60px 80px 60px;
    pointer-events: none;
    font-size: 0.85em;
    background: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
}

.content__item.content__item--show {
    height: auto;
    min-height: 100vh;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    display: block;
}

.header-content {
    position: absolute;
    top: 0;
    width: 100%;
    /* overflow: hidden; */
    height: 0;
    opacity: 0;
    padding: 60px 60px 80px 60px;
    pointer-events: none;
    font-size: 0.85em;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content.content__item--show {
    height: auto;
    min-height: 100vh;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

/*------------------- About us   -----------------------------*/

.section_heading {
    margin-bottom: 46px;
}

.section_heading a span {
    float: left;
}

.section_heading a {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section_heading a svg {
    display: inline-block;
    height: 15px;
    margin-left: 5px;
}

.section_heading h2 {
    font-size: 54px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 50px;
}

.section_heading h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 30px;
    height: 7px;
    background-color: #d6d6d6;
}

.section_heading p {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 300;
}

.about-content ul {
    list-style: none;
}

.about-content ul li {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    border-bottom: 1px solid #efefef;
    text-align: center;
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    line-height: 20px;
}

.about-content ul li:after {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background: #003c36;
    top: 20px;
}

.about-content ul li span.left-align {
    float: left;
    font-weight: 400;
    width: 19%;
    font-family: 'Oswald', sans-serif;
}

.about-content ul li span {
    font-weight: 600;
    float: right;
    margin-right: 0;
    width: 67%;
    text-align: left;
}

.about-content ul li span:last-child {
    font-weight: 400;
}


/*------------------- Education section  -----------------------------*/

.education_tab ul li {
    font-size: 20px;
    color: #7d7d7d;
    padding: 20px 30px 21px;
    border-right: 1px solid #ebebeb;
    text-transform: uppercase;
    transition: all .3s;
}

.education_tab ul li:hover {
    color: #000;
    transition: all .3s;
}

.tab_wrapper.education_tab > ul {
    clear: both;
    display: inline-block;
    width: 100%;
    border: 1px solid #ebebeb;
    border-bottom: none;
}

.tab_wrapper.education_tab .content_wrapper {
    margin-top: -2px;
}

.tab_wrapper.education_tab > ul li.active {
    color: #003c36;
}

.tab_wrapper.education_tab .content_wrapper .tab_content {
    display: none;
    padding: 60px 30px;
    padding-bottom: 0;
}

.date span {
    width: 60px;
    background: #003c36;
    height: 60px;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
    color: #fff;
    transition: all .5s;
}

.date {
    width: 8%;
    float: left;
    font-size: 16px;
}

.education-content {
    width: 90%;
    overflow: hidden;
    padding-left: 20px;
}

.education-content h6 {
    font-size: 18px;
    color: #424242;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .5s;
}

.education-content p {
    font-size: 18px;
    color: #5c5c5c;
    font-weight: 300;
    line-height: 1.44;
    font-family: 'Open Sans', sans-serif;
}

.single-education {
    margin-bottom: 50px;
}

.single-education:hover .education-content h6 {
    color: #003c36;
    transition: all .5s;
}

.single-education:hover .date span {
    color: #003c36;
    background: #f7f7f7;
    transition: all .5s;
}

/*------------------- Skill section  -----------------------------*/
.skillset-list {
    display: table;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.skillset-list li {
    position: relative;
    float: left;
    clear: right;
    width: 100%;
    list-style: none;
    text-align: left;
    font-size: 1em;
    font-weight: 300;
    color: #666666;
}

.skillset-list li .bar {
    display: table;
    float: left;
    width: 100%;
    height: 10px;
    margin: 10px 0px 10px 0px;
    background-color: #f5f5f5;
}

@-webkit-keyframes create-full {
    0% {
        opacity: 0.4;
        z-index: 100;
        -ms-transform: scale(0.6);
        /* IE 9 */
        -webkit-transform: scale(0.6);
        /* Chrome, Safari, Opera */
        transform: scale(0.6);
    }
    50% {
        opacity: 0.8;
        z-index: 150;
        -ms-transform: scale(1.5);
        /* IE 9 */
        -webkit-transform: scale(1.5);
        /* Chrome, Safari, Opera */
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        z-index: 200;
        -ms-transform: scale(1.0);
        /* IE 9 */
        -webkit-transform: scale(1.0);
        /* Chrome, Safari, Opera */
        transform: scale(1.0);
    }
}

@keyframes create-full {
    0% {
        opacity: 0.4;
        z-index: 100;
        -ms-transform: scale(0.6);
        /* IE 9 */
        -webkit-transform: scale(0.6);
        /* Chrome, Safari, Opera */
        transform: scale(0.6);
    }
    50% {
        opacity: 0.8;
        z-index: 150;
        -ms-transform: scale(1.5);
        /* IE 9 */
        -webkit-transform: scale(1.5);
        /* Chrome, Safari, Opera */
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        z-index: 200;
        -ms-transform: scale(1.0);
        /* IE 9 */
        -webkit-transform: scale(1.0);
        /* Chrome, Safari, Opera */
        transform: scale(1.0);
    }
}

.skillset-list li .bar .full {
    position: relative;
    z-index: 100;
    float: left;
    height: 10px;
    background-color: #1abc9c;
    border-right: 1px solid #16a085;
    -webkit-animation: create-full 0.5s 1;
    -moz-animation: create-full 0.5s 1;
    -o-animation: create-full 0.5s 1;
    animation: create-full 0.5s 1;
}

@-webkit-keyframes create-empty {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes create-empty {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.skillset-list li .bar .empty {
    float: left;
    height: 10px;
    background-color: #f0f0f0;
    border-right: 1px solid #e0e0e0;
    -webkit-animation: create-bar 0.5s 1;
    -moz-animation: create-bar 0.5s 1;
    -o-animation: create-bar 0.5s 1;
    animation: create-bar 0.5s 1;
}

.skillset-list li #list-info {
    position: absolute;
    bottom: 90px;
    right: 0px;
    z-index: 100;
    opacity: 0;
    width: 200px;
    padding: 8px;
    background-color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.9);
    -webkit-transition: opacity 0.2s ease-out, bottom 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out, bottom 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out, bottom 0.2s ease-out;
    transition: opacity 0.2s ease-out, bottom 0.2s ease-out;
}

.skillset-list li #list-info p {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9em;
}
.skillset-list li {
    position: relative;
    float: left;
    clear: right;
    width: 25%;
    list-style: none;
    text-align: left;
    font-size: 1em;
    font-weight: 300;
    color: #666666;
    margin-right: 22%;
    margin-bottom: 30px;
}

.skillset-list p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    color: #5c5c5c;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.section.skills {
    margin-top: 60px;
}

.skillset-list li .bar .full {
    position: relative;
    z-index: 100;
    float: left;
    height: 20px;
    width: 10%;
    background-color: #003c36;
    border-right: 5px solid #fff;
    -webkit-animation: create-full 0.5s 1;
    -moz-animation: create-full 0.5s 1;
    -o-animation: create-full 0.5s 1;
    animation: create-full 0.5s 1;
}

.skillset-list li .bar {
    display: table;
    float: left;
    width: 100%;
    height: 10px;
    margin: 10px 0px 10px 0px;
    background-color: transparent;
}

.skillset-list li .bar .empty {
    float: left;
    height: 10px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    -webkit-animation: create-bar 0.5s 1;
    -moz-animation: create-bar 0.5s 1;
    -o-animation: create-bar 0.5s 1;
    animation: create-bar 0.5s 1;
    display: none;
}


/*------------------- Specialiities   -----------------------------*/



.list-item-content ul {
    list-style: none;
    margin-top: 60px;
}

.list-item-content ul li {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    text-align: left;
    padding: 2px 0;
    position: relative;
    line-height: 20px;
    transition: all .5s;
}

.list-item-content ul li::after {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background: #003c36;
    top: 24px;
    transition: all .5s;
}

.list-item-content ul li:hover::after {
    left: 13px;
    transition: all .5s;
}

.list-item-content ul li:hover span {
    background: transparent;
    transition: all 1s;
}

.list-item-content ul li span {
    background: #f7f7f7;
    padding: 16px;
    /* margin-bottom: 2px; */
    padding-left: 35px;
    display: inline-block;
    transition: all 1s;
}


/*------------------- experience section  -----------------------------*/

.experience_tab ul li {
    font-size: 14px;
    color: #000;
    padding: 0;
    padding-right: 10px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.experience_tab ul li:last-child .line {
    display: none;

}

.experience_tab ul li span:first-child {
    background: #fff;
    font-size: 20px;
    color: #000;
    transition: all .5s;

}

.experience_tab ul li span:first-child:hover {
    color: #003c36;
    transition: all .5s;
}

.experience_tab ul li.active span:first-child {
    background: #003c36;
    color: #fff;
    position: relative;
    transition: all .5s;
}

.experience_tab ul li span:first-child::after {
    content: '';
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    height: 0;
    width: 0;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
}

.experience_tab ul li.active span:first-child::after {
    border-top: 7px solid #003c36;
    transition: all .5s;
}



.experience_tab ul li span {
    padding: 15px 12px;
}

.tab_wrapper.experience_tab > ul {
    clear: both;
    display: inline-block;
    width: 100%;
    border-bottom: none;
}

.tab_wrapper.experience_tab .content_wrapper {
    margin-top: -2px;
}

.tab_wrapper.experience_tab > ul li.active {
    color: #003c36;
}

.tab_wrapper.experience_tab .content_wrapper .tab_content {
    display: none;
    padding: 60px 30px 30px 0;
}

.date span {
    width: 60px;
    background: #003c36;
    height: 60px;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
    color: #fff;
}

.date {
    width: 8%;
    float: left;
    font-size: 16px;
}

.experience_tab .line {
    width: 60px;
    height: 1px;
    background: red;
    position: relative;
    background: #cccccc;
    display: inline-block;
    top: 1px;
    margin: 0 13px;
    padding: 0;
}

.tab_wrapper.experience_tab .content_wrapper {

    border: none;

}

.experience_tab li {
    text-transform: uppercase;
}

.left-experince {
    width: 60%;
    float: left;
}

.left-experince {
    width: 60%;
    float: left;
    padding-right: 55px;
}

.single-experience h5 {
    font-size: 18px;
    color: #5c5c5c;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    line-height: 28px;
    color: #003c36;
    letter-spacing: 1px;
}

.single-experience p {
    font-size: 18px;
    font-weight: 300;
    color: #5c5c5c;
    font-family: 'Open Sans', sans-serif;
    line-height: 28px;
}



/* close button (for content and sidebar) */

.close-button {
    position: absolute;
    border: none;
    background: none;
    margin: 0;
    z-index: 100;
    top: 40px;
    right: 80px;
    font-size: 18px;
    color: #ddd;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 101px;
    padding-top: 50px;
    overflow: hidden;
}

.close-button .ai-icon svg path {
    stroke-width: 8 !important;
    stroke-miterlimit: 4;
    stroke: #000;
    fill: none;
    transition: all .8s;
}

.close-button .ai-icon {
    height: 40px;
    width: 47px;
}

.close-button span {
    display: block;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 10px;
    margin-bottom: 3px;
    font-family: 'Open Sans', sans-serif;
    transition: all .8s;
}

.close-button .ai-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s;
}

.close-button .ai-icon.show {
    left: 0;
    transition: all .5s;
    opacity: 1;
}

.close-button:hover .ai-icon.show {
    left: -33px;
    transition: all .5s;
    opacity: 0;
}

.close-button .ai-icon.hover-show {
    left: 33px;
    transition: all .5s;
    opacity: .5;
}

.close-button:hover .ai-icon.hover-show {
    left: 0;
    transition: all .5s;
    opacity: 1;
}

.ba-show {
    position: absolute;
    left: 0;
    transition: all .5s;
}

.close-button:hover .ba-show {
    left: -100px;
    transition: all .5s;
}

.ba-show.ba-hover-show {
    left: 100px;
    transition: all .5s;

}

.close-button:hover .ba-show.ba-hover-show {
    left: 0;
    transition: all .5s;

}

.cks-show {
    position: relative;
    top: 26px;
    left: 0;
}

.close-button:hover .cks-show {
    position: relative;
    top: 26px;
    left: -100px;
}

.cks-show.ck-hover-show {
    position: relative;
    top: 3px;
    left: 100px;
}

.close-button:hover .cks-show.ck-hover-show {
    left: 0;
    top: 3px;
}

/* show class for content close button */

.close-button--show {
    opacity: 1;
    pointer-events: auto;
}











.ai-icon {
    height: 100px;
    width: 100px;
}

.ai-icon svg polyline,
.ai-icon svg polygon,
.ai-icon svg rect,
.ai-icon svg circle,
.ai-icon svg line,
.ai-icon svg path {
    /*stroke-linecap: "square";*/
    stroke-linejoin: "miter";
    stroke-width: 3;
    /* changeable */
    stroke-miterlimit: 4;
    stroke: #444;
    /* changeable icon color */
    fill: none;
}

.top-content .profile-picture {
    width: 33.333%;
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.top-content .profile-picture img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    transform: scale3d(1, 1, 1);
    backface-visibility: hidden;
    transition: all 1s;
}

.top-content:hover .profile-picture img {
    transform: scale3d(1.1 , 1.1, 1);
}

.cards-container:before,
.cards-container:after {
    background-color: #ebebeb;
    width: 1px;
    height: calc(50vh + 1px);
    bottom: 0;
    position: absolute;
    display: block;
    content: '';
    z-index: 555;
    opacity: 1;
    transition: all 1s;
}

.cards-container:before {
    left: 33.333%;
}

.cards-container:after {
    left: 66.666%;
}

.view-single .cards-container:before,
.view-single .cards-container:after {
    opacity: 0;
    transition: all .2s;

}

.grid {
    min-height: 100vh;
}

.grid .top-content {
    height: 50vh;
    border-bottom: 1px solid #ebebeb;
    /* overflow: hidden; */
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.grid .grid_item {
    height: 50vh;
    min-height: auto;
    position: absolute;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility, transform;
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale(0);
    transform-origin: left center;
}

.grid .grid_item .flex-content {
    transform-origin: 0 0;
    backface-visibility: hidden;
}

.grid .grid_head {
    width: 100%;
    position: relative !important;
    transform: scale(1) !important;
    opacity: 1;
    visibility: visible;
}

.grid .loading .grid_item {
    transform: scale(1);
}

.grid .grid_item.in {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transform-origin: left center;
}

.grid .grid_item.out {
    transform-origin: right center;
}

.grid .grid_item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.grid .grid_item:nth-child(3n + 1) {
    left: 0;
}

.grid .grid_item:nth-child(3n + 2) {
    left: 33.333%;
}

.grid .grid_item:nth-child(3n + 3) {
    left: 66.666%;
}

@media screen and (max-width: 1200px) {
    .main {
        margin-right: 33.333%;
    }
    .portfolio {
        width: 33.333%;
    }
    .cards-container:before {
        left: 50%;
    }

    .cards-container:after {
        display: none;
    }

    .grid .grid_item {
        width: 50%;
    }

    .grid .grid_item:nth-child(2n + 1) {
        left: 0;
    }
    
    .grid .grid_item:nth-child(2n + 2) {
        left: 50%;
    }
}

.mix {
    display: none;
}

.scroll-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.nicescroll-cursors {
    background-color: #494949 !important;
    border: #494949 !important;
}

.mask-overlay {
    content: '';
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 94;
}



/* accordion menu */

#accordian {
    color: white;
    margin-bottom: 30px;
}


#accordian ul li a {
    font-size: 16px;
    color: #003c36;
    text-transform: uppercase;
    transition: all 0.8s;
}

#accordian ul li a:hover {
    opacity: 0.6;
    transition: all 0.8s;
}




#accordian li {
    list-style-type: none;

}

#accordian li a {
    list-style-type: none;
    padding: 20px 0;
    border-bottom: 1px solid #292929;
    display: block;
}

#accordian li ul li a {
    list-style-type: none;
    padding: 20px 0;
    border-bottom: 1px solid #292929;
    display: block;
}

#accordian ul ul li a {
    text-decoration: none;
    line-height: 27px;
    display: block;
    padding: 20px 15px;
    transition: all 0.15s;
    position: relative;
    color: #fff;
}

#accordian ul ul {
    display: none;
}

#accordian li.active > ul {
    display: block;
}

#accordian ul ul ul {
    margin-left: 15px;
}


/*achivement section*/

.achivement-inner {
    display: inline-block;
    padding-top: 18px;
}

.Single-achivement {
    width: 50%;
    border-left: 5px solid #003c36;
    padding-left: 30px;
    float: left;
    margin-bottom: 80px;
    padding-right: 75px;
    transition: all .5s;
}

.Single-achivement:hover {
    border-left: 5px solid #d6d6d6;
    transition: all .5s;
}

.Single-achivement h3 {
    font-size: 20px;
    color: #5c5c5c;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    margin-top: -19px;
    text-transform: uppercase;
    transition: all .5s;
}

.Single-achivement:hover h3 {
    color: #000;
    letter-spacing: 1px;
    transition: all .5s;
}

.Single-achivement p {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 28px;
}

.Single-achivement .icon {
    margin-left: -24px;
    transform: translateY(-17px);
}

.Single-achivement .ai-icon svg path {
    stroke: #003c36;

}

/*service section*/

.service-inner {
    display: inline-block;
    padding-top: 18px;
}

.Single-service {
    width: 50%;
    float: left;
    margin-bottom: 35px;
    padding-right: 50px;
}

.Single-service h3 {
    font-size: 20px;
    color: #5c5c5c;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    transition: all .5s;
    letter-spacing: normal;
}

.Single-service:hover h3 {
    color: #000;
    transition: all .5s;
    letter-spacing: 1px;
}

.Single-service p {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 28px;
}

.Single-service .letter {
    font-size: 24px;
    height: 60px;
    width: 60px;
    text-align: center;
    border: 4px solid #003c36;
    color: #003c36;
    line-height: 50px;
    margin-bottom: 24px;
    transition: background-color 300ms, color 300ms;
    display: block;
    background-color: #fff;
}

.Single-service .letter:before {
    content: attr(data-letter);
    line-height: 1;
    font-weight: 700;
}

.Single-service:hover .letter {
    background-color: #003c36;
    color: #fff;
}
/*contact section*/

.contact-content .contact-half {
    width: 50%;
    float: left;
    border-left: 5px solid #003c36;
    margin-bottom: 25px;
}

.contact-content span {
    display: block;
    color: #5c5c5c;
    font-size: 13px;
    letter-spacing: 1px;
    padding-left: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-top: 15px;
}

.contact-content .contact-full {
    width: 100%;
    border-left: 5px solid #003c36;
    overflow: hidden;
}

.contact-content .contact-half input[type="text"] {
    width: 88%;
    background: #f7f7f7;
    height: 61px;
    font-size: 20px;
    color: #000;
    font-weight: 300;
    padding: 30px;
    border: none;
    font-family: 'Open Sans', sans-serif;
}

.contact-content textarea {
    overflow: auto;
    width: 94%;
    background: #f7f7f7;
    border: none;
    font-size: 20px;
    color: #000;
    font-weight: 300;
    padding: 20px 30px;
    line-height: 40px;
    font-family: 'Open Sans', sans-serif;
    height: 200px;
}

.submit {
    font-size: 18px;
    background: #33c47d;
    color: #fff;
    border: none;
    padding: 12px 35px;
    text-transform: uppercase;
    margin-top: 35px;
    cursor: pointer;
}

.submit i {
    margin-left: 10px;
}

/**
 * Blog
 */

.blog-list {
    margin-left: 100px;
    padding: 105px 60px 80px 60px;
    font-size: 0.85em;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    width: 70%;
    float: left;
    padding-right: 130px;
}

.entry-title {
    font-size: 30px;
    color: #003c36;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.entry-title a {
    color: #003c36;
}

.entry-content p {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    color: #5c5c5c;
    font-weight: 300;
    line-height: 28px;

}

.blog-posts {
    margin-top: 60px;
}

.blog-image {
    width: 30%;
    float: right;
    text-align: right;
}

.blog-image .placer {
    height: 0;
    padding-bottom: 85%;
    overflow: hidden;
    position: relative;
}

.blog-image .placer img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

.single-blog {
    display: inline-block;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 0 40px 0;
    margin-bottom: 40px;
    position: relative;
}

.single-blog::after {
	position: absolute;
	height: 1px;
	width: 0;
	background: #003c36;
	content: '';
	bottom: -1px;
	left: 0;
	z-index: 555555555;
    transition: all 1s;
}

.single-blog:hover:after {
	width: 100%;
    transition: all 1s;
}

.blog-single-meta {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    color: #7e7e7e;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.blog-single-meta .publish-date {
    text-transform: uppercase;
}

.blog-single-meta .category:before {
    content: '-';
    padding-right: 5px;
}

.blog-single-meta .category a {
    font-style: italic;
    color: #383838;
}

.blog-single-meta .category a:hover {
    font-style: italic;
    color: #003c36;
}

.blog-meta-tags {
    font-size: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}

.blog-meta-tags span {
    text-transform: uppercase;
    display: inline-block;
    padding-right: 5px;
    font-size: 14px;
}

.blog-meta-tags ul {
    display: inline-block;
}

.blog-meta-tags ul li {
    display: inline-block;
    padding-right: 5px;
    font-size: 14px;
}

.blog-meta-tags ul li:after {
    content: ',';
    color: #003c36;
}

.blog-meta-tags ul li:last-child:after {
    display: none;
}

.blog-meta-tags ul li a {
    color: #003c36;
    transition: color .3s;
}

.blog-meta-tags ul li a:hover {
    color: #858585;
}

.single-blog p {
    margin-bottom: 20px;
}

.single-read-more {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.single-read-more span {
    position: absolute;
    right: 0;
    top: -5px;
}

.single-read-more span:after {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #cccccc;
    position: absolute;
    top: 1px;
    left: 23px;
    content: '';
    transition: all .3s;
}

.single-read-more span:before {
    width: 10px;
    height: 1px;
    background: transparent;
    position: absolute;
    top: 8px;
    left: 19px;
    content: '';
    transition: all .3s;
}

.single-read-more:hover span:after {
    border-left: 10px solid #003c36;
    left: 30px;
    transition: all .3s;
}

.single-read-more:hover span:before {
    width: 27px;
    transition: all .3s;
    background: #003c36;
    left: 4px;
}



.blog-details {
    width: 59%;
    float: left;
    padding-top: 0;
    border: none;
}

.blog-details .blog-image {
    width: 100%;
    margin-bottom: 35px;
}

.blog-details .blog-image img {
    max-width: 100%;
}

.blog-details .blog-content {
    width: 100%;
    padding-right: 0;
    font-family: 'Open Sans', sans-serif;
}

.blog-sidebar {
	width: 41%;
	float: left;
	height: 50px;
	padding-left: 85px;
}

.blog-details .entry-title {
    margin-bottom: 30px;
    margin-top: 0;
    display: inline-block;
    color: #003c36;
}

.blog-details .blog-meta {
    margin-bottom: 40px;
}

.blog-details .blog-meta span {
    margin: 0 10px;
}

.blog-details .blog-meta span:first-child {
    margin-left: 0;
}

.blog-details blockquote {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-style: italic;
    font-weight: 400;
    line-height: 25px;
    font-family: 'Open Sans', sans-serif;
    background: #f6f6f6;
    padding: 12px;
    padding-left: 30px;
    padding-bottom: 17px;
    position: relative;
    margin-bottom: 30px;
    margin-top: 30px;
}

.blog-details blockquote:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    background: #003c36;
    width: 5px;
}

.blog-details blockquote span {
    font-weight: 600;
}

.blog-content h4 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 24px;
	text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-content h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.blog-content ul {
    margin-top: 30px;
    margin-left: 10px;
    margin-bottom: 40px;
}

.blog-content ul li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 26px;
    color: #5c5c5c;
    font-style: italic;
}

.blog-content ul li span {
    font-size: 12px;
    color: #003c36;
    margin-right: 4px;
    font-weight: 700;
}

.blog-content .blog-list-item {
    padding-left: 40px;
    margin-left: 15px;
}

.blog-content .blog-list-item li {
    position: relative;
}

.blog-content .blog-list-item li::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #585858;
    border-radius: 100%;
}

.blog-footer {
    border-top: 1px solid #f2f2f2;
    display: inline-block;
    padding: 17px 0;
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    margin-top: 40px;
}

.share-on ul li a path {
    fill: #a3a3a3;
    transition: all .3s;
}

.share-on ul li a:hover path {
    fill: #003c36;
    transition: all .3s;
}

.share-on .svg {
    width: 14px;
    height: 17px;
}

.share-on span {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    float: left;
    padding-right: 16px;
}

.share-on ul li {
    display: inline;
    margin-right: 15px;
}

.share-on {
    width: 45%;
    float: left;
}

.blog-author {
    background-color: #f6f6f6;
    padding: 40px 30px;
    margin-top: 45px;
}

.blog-author .author-img {
    float: left;
    width: 65px;
    height: 65px;
    overflow: hidden;
}

.blog-author .author-img img {
    max-width: 100%;
}

.author-detail {
    padding-left: 20px;
    overflow: hidden;
}

.author-detail p {
    font-size: 14px;
    color: #868686;
    line-height: 24px;
    margin-bottom: 0;
}

.author-detail h6 {
    font-size: 16px;
    color: #003c36;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-detail h6 span {
    color: #000;
}

.author-detail h6 span:before {
    content: '- ';
}

.widget-area .widget a {
	color: #909090;
	font-size: 13px;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	transition: color .3s;
	font-family: 'Open Sans', sans-serif;
}

.widget-area .widget a:hover {
	color: #000;
}

.widget-area .widget {
	margin: 15px 15px 50px 15px;
}

.widget-area .widget-title {
	font-size: 18px;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	color: #003c36;
}
.widget-area .widget-image-banner img {
    max-width: 100%;
}
.widget-area .widget_search {
    margin-top: 0;
}

.widget-area .widget_search .screen-reader-text {
	display: none;
}

.widget-area .widget_search .search-form {
	position: relative;
}

.widget-area .widget_search label {
	display: block;
	height: 40px;
	margin-bottom: 0;
	margin-bottom: 40px;
	position: relative;
	width: 100%;
}

.widget-area .widget_search label input {
	border: 1px solid #f2f2f2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 400;
    height: 41px;
    line-height: 41px;
	padding: 0 10px;
	width: 100%;
}

.widget-area .widget_search label input:focus {
	border: 1px solid #f2f2f2 !important;
	box-shadow: none;
	outline: none;
}



.widget_search button {
	position: absolute;
	top: 0;
	right: -4px;
	background: transparent;
	border: navajowhite;
    cursor: pointer;
}

* {
	outline: none;
}

.widget_search .ai-icon svg path{
    stroke-width: 4px!important;
}

.widget_search .ai-icon {
    display: block;
	height: 43px;
	width: 41px;
}

.widget-area .widget_search .search-form:hover:after {
	color: #feb834;
}

.widget-area .widget-categories .widget-title {
    margin-bottom: 15px;
}

.widget-area .widget-title:after {
    content: '';
    background-color: #d6d6d6;
    height: 7px;
    width: 30px;
    display: block;
    margin-top: 20px;
}

.widget-area .widget-categories ul li a {
    line-height: 1;
    font-weight: 600;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 10px;
    transition: padding-left .3s, color .3s;
}

.widget-area .widget-categories ul li:last-child a {
    margin-bottom: 0;
}

.widget-area .widget-categories ul li a:hover {
    color: #000;
    padding-left: 8px;
}

.widget-area .widget_tag_cloud ul li {
    display: inline-block;
}

.widget-area .widget_tag_cloud ul li a {
	border: 1px solid #f2f2f2;
    display: inline-block;
    font-weight: 600;
	line-height: 33px;
	margin-bottom: 10px;
	margin-right: 10px;
    padding: 0 15px;
    transition: background-color .3s, border-color .3s, color .3s;
}

.widget-area .widget_tag_cloud ul li a:hover {
    border-color: #003c36;
    background-color: #003c36;
    color: #fff;
}

.widget-area .widget_social_profile ul li {
	display: inline-block;
	margin-right: 10px;
	width: 34px;
}

.widget-area .widget_social_profile ul li a {
	font-size: 0;
}

.widget-area .widget_social_profile ul li a span {
	display: block;
}

.widget-area .widget_social_profile ul li a span:before {
	background-color: #fff;
	border-radius: 25px;
	border: 1px solid #f2f2f2;
	display: block;
	font-size: 15px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	-webkit-transition: background-color .3s, color .3s;
	   -moz-transition: background-color .3s, color .3s;
	        transition: background-color .3s, color .3s;
	width: 40px;
}

.widget-area .widget_social_profile ul li a:hover span:before {
	background-color: #000;
	color: #fff;
}

.widget-area .widget_social_profile ul li a:hover span.ti-facebook:before {
	background: #3b5998;
}

.widget-area .widget_social_profile ul li a:hover span.ti-twitter:before {
	background: #0084b4;
}

.widget-area .widget_social_profile ul li a:hover span.ti-google:before {
	background: #de5347;
}

.widget-area .widget_social_profile ul li a:hover span.ti-dribbble:before {
	background: #ec4a89;
}

.widget .social-link ul li a path {
	fill: #000;
	transition: all .3s;
}

.comments-area {
	margin-bottom: 30px;
	font-family: 'Open Sans', sans-serif;
	margin-top: 60px;
}

.comments-area h2 {
	margin-bottom: 30px;
	font-family: 'Oswald', sans-serif;
	color: #1dac43;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}

.comments-area ol {
    padding-left: 0;
}

.comments-area .comment-list .comment-author {
    font-weight: 700;
}

.comments-area .comment-list .comment-author img {
	border: 4px solid #e0e0e0;
    margin-right: 15px;
}

.comments-area .comment-list .comment-author .fn {
	color: #000;
	position: relative;
	top: 10px;
}

.comments-area .comment-list .comment-author .says {
	position: relative;
    top: 10px;
}

.comments-area .comment-list .comment-metadata {
	margin-left: 70px;
	position: relative;
	top: -45px;
}

.comments-area .comment-list .comment-metadata a {
    color: #000;
}

.comments-area .comment-list .comment-content {
	margin-left: 70px;
	padding-top: 10px;
}

.comments-area .comment-list .comment-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
}

.comments-area .comment-list .reply {
	margin-bottom: 60px;
    margin-left: 70px;
    margin-top: 30px;
}

.comments-area .comment-list .reply a {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
    transition: color .3s;
}

.comments-area .comment-list .reply a:after {
    content: ' >>'
}

.comments-area .comment-list .reply a:hover {
	color: #1dac43;
}

.comments-area .comment-list li > ol {
	margin-left: 70px;
}


.comment-respond {
	margin-bottom: 30px;
	font-family: 'Open Sans', sans-serif;
	margin-top: 60px;
}

.comment-respond .form-input {
	margin-bottom: 20px;
}

.comment-respond .form-input input {
	display: block;
	font-size: 14px;
	font-weight: 400;
	height: 50px;
	-webkit-transition: border-color .5s;
	   -moz-transition: border-color .5s;
	        transition: border-color .5s;
	width: 100%;
}

.comment-respond .form-input input:focus {
	border-color: #d3d3d3;
	outline: none;
}

.site-content .comment-respond .form-textarea {
	display: table-cell;
	width: 900px;
}

.comment-respond .form-textarea textarea {
	border: 1px solid #f2f2f2;
	display: block;
	font-size: 14px;
	height: 190px;
	padding: 15px 0;
	resize: none;
	-webkit-transition: border-color .5s;
	   -moz-transition: border-color .5s;
	        transition: border-color .5s;
	width: 100%;
}

.comment-respond .form-textarea textarea:focus {
	border-color: #d3d3d3;
	outline: none;
}

.comment-respond .form-input,
.comment-respond .form-textarea {
	position: relative;
}

.comment-respond .form-input input,
.comment-respond .form-textarea textarea {
	border: 0;
	border-bottom: 1px solid #f2f2f2;
	box-shadow: none;
}

.comment-respond .form-input .underline,
.comment-respond .form-textarea .underline {
	background: #ababab;
	border: 0;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	-webkit-transition: width .3s;
	   -moz-transition: width .3s;
	        transition: width .3s;
	width: 0;
	z-index: 11;
}

.comment-respond .form-input input:focus + .underline,
.comment-respond .form-textarea textarea:focus + .underline {
	width: 100%;
}

.comment-respond .submit {
	background: #003c36;
	border: 0;
	color: #fff;
	display: block;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 50px;
	padding: 0 40px;
	text-transform: uppercase;
	-webkit-transition: background-color .3s;
	   -moz-transition: background-color .3s;
	        transition: background-color .3s;
	width: 100%;
}

.comment-respond .submit:hover,
.comment-respond .submit:focus {
	background-color: #000;
	outline: none;
}

.comment-respond .comment-reply {
	margin-bottom: 30px;
	font-family: 'Oswald', sans-serif;
	color: #1dac43;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}


.comments-area h2 {
	margin-bottom: 30px;
	font-family: 'Oswald', sans-serif;
	color: #1dac43;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}

.comments-area h2 span {
    font-size: 22px;
    margin-left: 10px;
}

.comment-respond .comment-notes {
	margin-bottom: 30px;
    font-size: 12px;
    color: #ff6868;
}

.enter {
	position: absolute;
	left: 50%;
	font-size: 26px;
	text-transform: uppercase;
	transform: translateX(-50%);
    display: none;
    height: 40px;
    width: 70px;
}

.enter span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: fadeInOut;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
}

.enter svg {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: fadeInOut;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-delay: 2000ms;
}

.enter svg polygon {
    fill: #003c36;
}

@keyframes fadeInOut {
    30%, 70% {
        opacity: 0;
    }
}

.count-wrapper {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.count
{
  color: #003c36;
  font-size:25px;
}

/**
 * Responsive
 */

@media (min-width: 2200px) and (max-width: 2880px) {
    
    .profile-brief .flex-content > span {
        font-size: 60px;
        line-height: 1.4;
    }

    .profile-brief h1 {
        font-size: 80px;
        line-height: 1.2;
    }
    
    .profile-brief h3 {
        font-size: 40px;
        line-height: 1.4;
    }
    
    .profile-brief p {
        font-size: 36px;
        line-height: 1.4;
    }

    .profile-brief a span {
        font-size: 40px;
        padding-top: 25px;
    }

    .title--preview {
        font-size: 50px;
    }

    .brief {
        font-size: 32px;
        font-weight: 400;
        margin-top: 40px;
        line-height: 52px;
    }

    .flex-content .ai-icon {
        height: 160px !important;
        width: 160px !important;
    }

    .download-cv-absolute .ai-icon {
        height: 100px !important;
        width: 100px !important;
    }

    .grid_item .ai-icon {
        margin-left: -35px;
    }

    .loader {
        height: 10px;
        width: 60px;
        margin-top: 30px;
    }

    .loader::before {
        height: 10px;

    }

    .social-link li {
        margin-bottom: 25px;
    }

    .social-link .svg {
        width: 27px;
        height: 26px;
    }

    .card-nav li {
        font-size: 22px;
    }

    .card-nav li::after {
        top: 12px;

    }
}

@media (min-width: 1200px) and (max-width: 1600px) {

    .grid__item,
    .grid__item_2 {
        padding: 50px 35px;
    }

    .profile-brief {
        padding: 0 35px;

    }

}



@media screen and (max-width:1450px) {

    .arrow {
        right: 6px;
    }

    .arrow::after {
        border-top: 7px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 9px solid #ccc;
        top: 1px;
        left: 23px;
    }

    .grid_item:hover .arrow::after {
        border-left: 9px solid #003c36;
    }

    .grid_item:hover .arrow::before {
        width: 15px;
        left: 18px;
    }

    .profile-brief {
        padding: 30px;

    }

    .grid__item_2 {
        padding: 30px 15px;
    }

    .grid__item {
        padding: 30px;
    }

    .grid__item_2 .grid-title {
        width: 85%;
    }


    a.download-cv-absolute {
        bottom: 5px;
    }

    .profile-brief span {
        font-size: 25px;
        padding-top: 30px;
    }

    .profile-brief h1 {
        font-size: 36px;
    }

    .profile-brief .loader {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .profile-brief p {
        margin-bottom: 15px;
    }

    .grid_item .ai-icon {
        margin-left: -12px;
        height: 60px;
        width: 60px;
    }

    .title {
        font-size: 25px;
    }

    .loader {
        margin-top: 12px;
        height: 5px;
    }

    .loader::before {
        height: 5px;

    }

    .portfolio-filter > ul > li {
        font-size: 15px;
        margin-right: 8px;

    }

}


@media (min-width: 768px) and (max-width: 991px) {


    .profile-brief {
        padding: 30px 35px;
    }

    .grid__item.grid__item_2 {
        padding: 30px 15px;
    }

    .grid__item {
        padding: 30px;
    }

    .grid__item_2 .grid-title {
        width: 85%;
    }

    a.download-cv-absolute {
        bottom: 5px;
    }

    .profile-brief span {
        font-size: 25px;
        padding-top: 30px;
    }

    .profile-brief h1 {
        font-size: 36px;
    }

    .profile-brief .loader {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .profile-brief p {
        margin-bottom: 15px;
    }

    .grid_item .ai-icon {
        margin-left: -12px;
        height: 60px;
        width: 60px;
    }

    .title {
        font-size: 25px;
    }

    .loader {
        margin-top: 12px;
        height: 5px;
    }

    .loader::before {
        height: 5px;

    }

    .portfolio-filter > ul > li {

        font-size: 17px;
        margin-right: 18px;

    }

}

/*Inner page responsive*/

@media (min-width:992px) and (max-width:1199px) {


    .section-inner {
        width: 850px;
    }


}

@media (min-width:768px) and (max-width:991px) {


    .section-inner {
        width: 100%;
    }

    .content__item {
        padding: 80px 40px;
    }

    .date {
        width: 60px;
    }

    .education-content {
        width: calc(100% - 60px);

    }

    .close-button {
        top: 20px;
        right: 40px;
    }

    .skillset-list li {
        width: 44%;
        margin-right: 5%;
    }

    .experience_tab ul li span {
        padding: 10px 6px;
    }

    .experience_tab .line {
        width: 40px;
        margin: 0 5px;
    }

    .left-experince {
        width: 100%;
        margin-bottom: 25px;
    }

    .tab_wrapper.experience_tab .content_wrapper .tab_content {
        padding: 30px 0px 30px 0;
    }

    .list-item-content ul li {
        font-size: 14px;
    }

}

@media (min-width:576px) and (max-width:767px) {

    .portfolio.active {
        width: calc(100% - 50px);
    }

    .portfolio.active .mix-items {
        width: 50%;
        padding: 15px 15px;
    }

    .portfolio.active h2 {
        margin-left: 15px;
    }

    .active .portfolio-filter > ul {
        margin-left: 15px;
    }

    .contact-content textarea {
        width: 89%;
    }

    .sidebar {
        padding: 0;
        width: 50px;
    }

    .logo img {
        width: 40px;
    }

    .logo {
        margin-top: 5px;
    }

    .sb_close {
        left: 8px;
        top: 62px;

    }

    .offcanvus-open .sb_close {
        left: 8px;
    }

    .card-nav li.current::after {
        left: 10px;
    }

    .card-nav li::after {
        width: 30px;
        background-size: 100%;
        top: 11px;
    }

    .main {
        margin-left: 50px;
    }



    .section-inner {
        width: 80%;
    }

    .content__item {
        padding: 43px 0;
    }

    .close-button {
        top: 18px;
        right: 28px;
    }

    .date {
        width: 60px;
    }

    .education-content {
        width: calc(100% - 60px);

    }

    .education_tab ul li {
        padding: 20px 18px 21px;
    }

    .education_tab ul li:last-child {
        border-right: none;
    }

    .skillset-list li {
        width: 52%;

        margin-right: 5%;
    }

    .Single-service {
        width: 100%;
        margin-bottom: 25px;
        padding-right: 25px;
    }

    .Single-achivement {
        width: 100%;
        margin-bottom: 40px;
        padding-right: 50px;
    }

    .contact-content .contact-half {
        width: 100%;
    }

    .left-experince {
        width: 100%;
        margin-bottom: 25px;
    }

    .tab_wrapper.experience_tab .content_wrapper .tab_content {
        padding: 30px 0px 30px 0;
    }

}

@media screen and (max-width:575px) {

    .sidebar {
        padding: 0;
        width: 50px;
    }

    .logo img {
        width: 40px;
    }

    .logo {
        margin-top: 5px;
    }

    .sb_close {
        left: 8px;
        top: 62px;

    }

    .offcanvus-open .sb_close {
        left: 8px;
    }

    .card-nav li.current::after {
        left: 10px;
    }

    .card-nav li::after {
        width: 30px;
        background-size: 100%;
        top: 11px;
    }

    .main {
        margin-left: 50px;
    }

    .section-inner {
        width: 100%;
        overflow: hidden;
        padding-left: 30px;
        padding-right: 30px;
    }

    .section_heading p {
        font-size: 20px;
    }

    .content__item {
        padding: 43px 0;
    }

    .about-content ul li span {
        font-size: 14px;
        float: none;
        width: 100%;
        display: block;
    }

    .about-content ul li span.left-align {
        width: 100%;
    }

    .about-content ul li {
        padding-left: 20px;
        text-align: left;
        font-size: 0;
    }

    .education_tab ul li {
        font-size: 14px;
        padding: 10px 15px 10px;
        border-right: none;
        width: 100%;
        border-bottom: 1px solid #ebebeb;
    }

    .education_tab ul li:last-child {
        border-bottom: none;
    }

    .date {
        width: 100%;
        font-size: 15px;
        margin-bottom: 25px;
    }

    .education-content {
        width: 100%;
        padding-left: 0;
    }

    .education-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .tab_wrapper.education_tab .content_wrapper .tab_content {
        padding: 20px 15px 0;
    }

    .single-education {
        margin-bottom: 10px;
    }

    .close-button {
        top: 15px;
        right: 15px;
        height: 65px;
        padding-top: 34px;
    }

    .close-button .ai-icon {
        height: 22px;
        width: 35px;
    }

    .close-button span {
        font-size: 13px;
    }

    .close-button:hover .cks-show {
        top: 15px;
        left: -47px;
    }

    .cks-show {
        top: 15px;
    }

    .cks-show.ck-hover-show {
        top: -3px;
    }

    .close-button:hover .cks-show.ck-hover-show {
        top: -3px;
    }

    .content__item {
        display: none;
    }

    .skillset-list li {
        width: 100%;
        margin-bottom: 15px;
    }

    .section.skills {
        margin-top: 0;
    }

    .experience_tab .line {
        width: 12px;
        margin: 0;
    }

    .experience_tab ul li span {
        padding: 15px 7px;
    }

    .left-experince {
        width: 100%;
        padding-right: 0;
    }

    .tab_wrapper.experience_tab .content_wrapper .tab_content {
        padding: 0;
    }

    .right-experince {
        padding-right: 1px;
        overflow: hidden;
    }

    .list-item-content ul li span {
        line-height: 18px;
        padding: 7px 7px 7px 15px;
    }

    .list-item-content ul li {
        font-size: 13px;
    }

    .list-item-content ul li::after {
        top: 12px;
    }
    
    .list-item-content ul li:hover::after {
        left: 0;
    }

    .section_heading h2::after {
        bottom: -23px;
    }

    .section_heading h2 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .Single-service {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .Single-service h3 {
        font-size: 16px;
    }

    .Single-achivement {
        width: 100%;
        border-left: 2px solid #003c36;
        padding-left: 20px;
        margin-bottom: 40px;
        padding-right: 0;
    }

    .Single-achivement:hover {
        border-left: 2px solid #d6d6d6;
    }

    .Single-achivement .ai-icon {
        height: 70px;
        width: 70px;
        margin-left: 5px;
    }

    .contact-content .contact-half input[type="text"] {
        width: 100%;
        height: 50px;
        font-size: 15px;
        padding: 15px;
    }
    
    .contact-content span {
	font-size: 16px;
	padding-left: 15px;
	margin-bottom: 17px;
}

    .contact-content .contact-half {
        width: 100%;
    }

    .contact-content textarea {
        width: 100%;
        font-size: 15px;
        padding: 15px;
        height: 160px;
    }

    .single-experience h5 {
        font-size: 16px;
    }
}

.ai-icon {
    height: 100px;
    width: 100px;
}

.ai-icon svg polyline,
.ai-icon svg polygon,
.ai-icon svg rect,
.ai-icon svg circle,
.ai-icon svg line,
.ai-icon svg path {
    stroke-linecap: "square";
    stroke-linejoin: "miter";
    stroke-width: 3;
    stroke-miterlimit: 4;
    stroke: #444;
    fill: none;
}

@media screen and (max-width: 1200px) {
    .profile-brief img {
        display: none;
    }
    .top-content .profile-picture {
        width: 50%;
    }
    .profile-brief {
        width: 50%;
    }
    .profile-brief h1 {
        font-size: 30px;
    }
    .profile-brief p {
        margin-bottom: 0;
    }
    a.download-cv-absolute {
        margin-top: 0;
    }
}
@media screen and (min-width: 992px) {
    .mobile-portfolio-opener {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .profile-brief p {
        margin-bottom: 20px;
    }
    .portfolio {
        right: -33.333%;
    }
    .portfolio.active {
        right: 0;
    }
    .portfolio.active .mix-items {
        width: 50%;
    }
    .mobile-portfolio-opener {
        height: 50px;
        width: 50px;
        background-color: #191919;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 99;
        cursor: pointer;
    }
    .mobile-portfolio-opener .ai-icon {
        width: 50px;
        height: 50px;
    }
    .mobile-portfolio-opener .ai-icon svg path {
        stroke-width: 10 !important;
        stroke-miterlimit: 4;
        stroke: #003c36;
        fill: none;
        transition: all .3s;
    }
    .main {
        margin-right: 0;
    }
    .blog-image {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
    .blog-content {
        float: none;
        padding-right: 0;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .main {
        overflow-x: scroll;
        height: 100vh;
    }
    .cards-container {
        padding-top: 20px;
    }
    .noscroll .main {
        overflow: hidden;
    }
    .main .content {
        position: fixed;
        width: calc(100vw - 50px);
        height: 100vh;
        left: 50px !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 999999;
    }
    .sidebar-offcanvas.active {
        left: 50px;
        padding-left: 30px;
        padding-right: 0;
    }
    .mCSB_container {
        padding-right: 30px;
    }
    .sidebar-offcanvas {
        width: calc(100% - 50px);
        left: calc(-100%);
    }
    .offcanvus-open .main > .grid {
        transform: translateX(100%);
    }
    .offcanvus-open .mobile-portfolio-opener {
        display: none;
    }
    .grid .top-content {
        height: auto;
        display: block;
    }
    .top-content .profile-picture {
        width: 100%;
        height: auto;
    }
    .top-content .profile-picture img {
        position: relative;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        transform: scale(1);
    }
    .top-content:hover .profile-picture img {
        transform: scale3d(1, 1, 1);
    }
    .profile-brief {
        width: 100%;
        height: auto;
        padding-bottom: 15px;
    }
    .profile-brief img {
        display: inline-block;
    }
    .profile-brief a {
        margin-top: 0;
    }
    .portfolio.active {
        width: calc(100% - 50px);
        padding: 0;
    }
    .portfolio.active .portfolio-area-content {
        padding-left: 0;
        padding-right: 0;
    }
    .portfolio.active h2 {
        margin-left: 30px;
    }
    .portfolio.active .mix-items {
        padding: 15px 30px;
        width: 100%;
    }
    .active .portfolio-filter > ul {
        margin-left: 30px;
        margin-right: 30px;
    }

    .grid .grid_item {
        width: 100%;
        position: relative;
        left: auto !important;
        height: auto;
        display: block !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .grid__map {
        height: 50vh !important;
    }
    .grid__item_2 {
        padding: 30px;
    }
    .cards-container:before {
        display: none;
    }
    .section_heading p {
        letter-spacing: normal;
    }
    .close-button {
        background-color: #fff;
    }
    .card-nav {
        display: none;
    }
    .social-link {
        margin-bottom: 20px;
    }
    .grid_item.xs-spacer {
        margin-bottom: 30px;
    }
    .grid_item .ai-icon {
        display: none;
    }
    .testimonial-wrapper.owl-carousel {
        padding-top: 15px;
    }
    .grid__item_2 .grid-title {
        font-size: 16px;
    }
    .experience_tab ul {
        display: block;
    }

    .experience_tab ul li {
        display: block;
        float: none;
    }
    .experience_tab ul li .line {
        display: none;
    }
    .blog-list {
        padding: 40px 30px;
        margin-left: 50px;
    }
    .blog-list .section-inner {
        width: 100%;
        padding: 0;
    }
    .blog-list .section_heading {
        margin-bottom: 0;
    }
    .blog-details {
        float: none;
        width: 100%;
        margin-bottom: 80px;
    }
    .blog-sidebar {
        float: none;
        width: 100%;
        padding-left: 0px;
        height: auto;
    }
    .widget-area .widget {
        margin: 15px 0 30px 0;
    }
    .comments-area .comment-list li > ol {
        margin-left: 20px;
    }
    .blog-list .section_heading h2 {
        margin-top: 0;
    }
    .copyright svg {
        margin-bottom: 5px;
    }
    .copyright p span {
        display: none;
    }

    .item.single-client {
        height: 150px;
    }
}

@media screen and (max-width: 500px) {
    .entry-title {
        font-size: 24px;
    }
    .blog-details .blog-meta {
        font-size: 0;
    }
    .blog-details .blog-meta span {
        display: block;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .blog-content ul {
        margin-left: 0;
    }
    .blog-content .blog-list-item {
        margin-left: 0;
        padding-left: 20px;
    }
    .blog-content ul.blog-list-step li span {
        display: block;
        margin-bottom: 10px;
    }
    .blog-footer .share-on {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .blog-footer .tag {
        width: 100%;
        float: none;
        border-left: none;
        padding-left: 0;
    }
    .blog-author .author-img {
        float: none;
        margin-bottom: 20px;
    }
    .author-detail {
        padding-left: 0;
    }
    .comments-area .comment-list .comment-content {
        margin-left: 0;
    }
    .comments-area .comment-list .reply {
        margin-left: 0;
        margin-bottom: 40px;
    }
    .comments-area .comment-list .comment-metadata {
        font-size: 12px;
    }
    .blog-meta-tags span {
        display: block;
        margin-bottom: 10px;
    }
}

@media (min-width: 2881px) {
    .display-warning {
        background-color: #000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1001;
    }

    .display-warning:before {
        content: 'Lost into the space';
        color: #003c36;
        font-size: 100px;
        margin-bottom: 40px;
        text-transform: uppercase;
    }
    
    .display-warning:after {
        content: 'This website is not optimized for this resolution';
        color: #fff;
        font-size: 60px;
    }
}