@import url('./assets/font.css');
/*!
Theme Name: Myour
Theme URI: https://myour.bslthemes.com/
Author: beshleyua
Author URI: https://themeforest.net/user/beshleyua
Description: Myour - One Page Resume WordPress Theme
Requires at least: 4.7
Requires PHP: 5.2.4
Tested up to: 5.4.2
Version: 1.2
License: General Public License
License URI: http://www.gnu.org/licenses/gpl.html
Text Domain: myour
Tags: full-width-template, editor-style, featured-images, sticky-post, threaded-comments, translation-ready, theme-options
*/

/* TABLE OF CONTENTS
	- Basic
	- Preloader
	- Container
	- Columns
	- Typography
	- Links
	- Buttons
	- Forms
	- Lists
	- Code
	- Tables
	- Alignment
	- Text Formating
	- Blockquote
	- Animations
	- Header
	- Section
	- Started
	- About
	- Resume
	- Skills
	- Service
	- Portfolio
	- Box Items
	- Contacts
	- Blog
	- Footer
	- Popups
*/

/* - Basic */
html {
    margin-right: 0 !important;
}

body {
    margin: 0;
    padding: 0;
    border: none;
    font-family: "Poppins";
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    background: #373b40;
    letter-spacing: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.clear {
    clear: both;
}

/* - Preloader */
.preloader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 999;
}

.preloader .box-1, .preloader .box-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #68e0cf;
}

.preloader .box-2 {
    background: #373b40;
}

.preloader .spinner {
    margin: -40px 0 0 -5px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 80px;
}

.preloader .spinner .lines {
    position: absolute;
    width: 10px;
    height: 80px;
}

.preloader .spinner .lines:before, .preloader .spinner .lines:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 80px;
    background: #FFF;
    clip: rect(0, 0, 20px, 0);
    -webkit-clip: rect(0, 0, 20px, 0);
}

.preloader .spinner .lines:before {
    left: 0;
    animation: loading 2s cubic-bezier(0.165, 0.85, 0.45, 1) 0s infinite;
}

.preloader .spinner .lines:after {
    left: 15px;
    background: #68e0cf;
    animation: loading 2s cubic-bezier(0.165, 0.85, 0.45, 1) 0.5s infinite;
}

/* - Container */
.container {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.wrapper {
    position: relative;
    margin-top: 50px;
    margin-right: 45%;
    margin-left: 92px;
}

.wrapper:before {
    content: '';
    position: fixed;
    right: 45%;
    left: 92px;
    top: 0;
    height: 40px;
    background: #373b40;
    z-index: 13;
}

.page-template-template-blog .wrapper:before,
.single-post .wrapper:before,
.blog .wrapper:before,
.single .wrapper:before,
.error404 .wrapper:before,
.search .wrapper:before,
.archive .wrapper:before,
.page-template-default .wrapper:before {
    left: calc(12% + 92px);
}

@media (max-width: 1280px) {
    .wrapper {
        margin-left: 30%;
    }
    .wrapper:before {
        left: 30%;
    }
}

@media (max-width: 992px) {
    .wrapper {
        position: relative;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .wrapper:before {
        display: none;
    }
}

/* - Columns */
.cols {
    margin: 0 -20px;
    position: relative;
}

.cols .col {
    margin-bottom: 30px;
    padding: 0 20px;
    float: left;
    width: 50%;
}

.cols .col.col-full {
    width: 100%;
}

@media (max-width: 720px) {
    .cols .col {
        width: 100%;
    }
}

.cols:after {
    content: '';
    display: block;
    clear: both;
}

.cols .col.col-sm {
    width: 25%;
}

@media (max-width: 720px) {
    .cols .col.col-sm {
        width: 100%;
    }
}

.cols .col.col-lg {
    width: 75%;
}


@media (max-width: 720px) {
    .cols .col.col-lg {
        width: 100%;
    }
}

.single-post-text > *:first-child {
    margin-top: 0;
}

.single-post-text > *:last-child {
    margin-bottom: 0;
}

/* - Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: "Poppins";
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 12px;
}

p {
    font-size: 14px;
    padding: 0;
    margin: 30px 0;
}

strong {
    font-weight: 700;
}

@media screen and (max-width: 720px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 14px;
    }
    h5 {
        font-size: 12px;
    }
    h6 {
        font-size: 13px;
    }
    p {
        margin: 20px 0;
    }
}

/* - Links */
a {
    color: #FFF;
    text-decoration: underline;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: #68e0cf;
}

/* - Buttons */
.animated-button {
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    line-height: 16px;
}

.animated-button span {
    position: relative;
    overflow: hidden;
    display: block;
    text-shadow: 0 16px 0 #68e0cf;
}

.animated-button span em {
    min-width: 5px;
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    backface-visibility: hidden;
    transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}

.animated-button span em:nth-child(1) {
    transition-delay: 0.025s;
}

.animated-button span em:nth-child(2) {
    transition-delay: 0.05s;
}

.animated-button span em:nth-child(3) {
    transition-delay: 0.075s;
}

.animated-button span em:nth-child(4) {
    transition-delay: 0.1s;
}

.animated-button span em:nth-child(5) {
    transition-delay: 0.125s;
}

.animated-button span em:nth-child(6) {
    transition-delay: 0.15s;
}

.animated-button span em:nth-child(7) {
    transition-delay: 0.175s;
}

.animated-button span em:nth-child(8) {
    transition-delay: 0.2s;
}

.animated-button span em:nth-child(9) {
    transition-delay: 0.225s;
}

.animated-button span em:nth-child(10) {
    transition-delay: 0.25s;
}

.animated-button span em:nth-child(11) {
    transition-delay: 0.275s;
}

a.btn,
.btn,
.single-post-text input[type="submit"],
button {
    padding: 0 35px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    height: 64px;
    line-height: 62px;
    text-align: center;
    font-size: 12px;
    color: #FFF;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    outline: none;
    border: 1px solid #585d65;
    cursor: pointer;
    border-radius: 64px;
    -moz-border-radius: 64px;
    -webkit-border-radius: 64px;
    -khtml-border-radius: 64px;
    transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -moz-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -webkit-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -o-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

a.btn:hover,
.btn:hover,
.single-post-text input[type="submit"]:hover,
button:hover {
    border-color: #68e0cf;
}

a.btn:hover .animated-button em,
.btn:hover .animated-button em,
.single-post-text input[type="submit"]:hover .animated-button em,
button:hover .animated-button em {
    transform: translateY(calc(16px * -1));
}

a.btn:hover .icon,
.btn:hover .icon,
.single-post-text input[type="submit"]:hover .icon,
button:hover .icon {
    color: #68e0cf;
    transform: translateX(6px);
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -o-transform: translateX(6px);
}

a.btn .icon,
.btn .icon,
button .icon {
    margin-right: 10px;
    transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -moz-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -webkit-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -o-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.wp-block-button {
    margin: 0 0 15px 0;
}

.wp-block-button__link,
a.wp-block-button__link {
    background-color: #68e0cf;
    color: #101010;
    line-height: normal;
}

.blocks-gallery-grid .blocks-gallery-image figcaption, .blocks-gallery-grid .blocks-gallery-item figcaption, .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption {
    line-height: normal;
}

.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border: 2px solid #68e0cf;
    color: #68e0cf;
}

.is-style-outline .wp-block-button__link:hover {
    background: #68e0cf;
    color: #101010;
}

.wp-block-button__link:hover,
a.wp-block-button__link:hover {
    color: #101010;
}

hr.wp-block-separator {
    border: none;
    border-bottom: 1px solid #333;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #333;
}

.wp-block-table.is-style-stripes {
    border-bottom-color: #333;
}

/* - Forms */
input,
textarea {
    padding: 0 30px;
    display: block;
    font-family: "Poppins";
    font-size: 14px;
    height: 64px;
    direction: rtl;
    width: 100%;
    color: #FFF;
    background: none !important;
    border: 1px solid #585d65;
    resize: none;
    outline: 0;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

input:focus,
textarea:focus,
button:focus {
    color: #FFF;
}

textarea {
    height: 170px;
    padding-top: 30px;
    padding-bottom: 30px;
    resize: none;
}

label,
legend {
    display: block;
    padding-bottom: 10px;
    font-family: "Poppins";
    font-size: 13px;
}

fieldset {
    border-width: 0;
    padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

form.post-password-form {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 50px!important;
    text-align: center;
}

form.post-password-form label {
    display: block;
}

form.post-password-form input {
    text-align: center;
}

::-webkit-input-placeholder {
    color: #ccc;
}

:-moz-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

:-ms-input-placeholder {
    color: #ccc;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: #FFF;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    color: #FFF;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: #FFF;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    color: #FFF;
}

input.error,
textarea.error,
input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
    border-bottom: 1px solid red !important;
}

label.error,
.wpcf7-not-valid-tip {
    display: none !important;
}

input.error::-moz-placeholder,
textarea.error::-moz-placeholder,
input.wpcf7-not-valid::-moz-placeholder,
textarea.wpcf7-not-valid::-moz-placeholder {
    color: red;
}

input.error:-moz-placeholder,
textarea.error:-moz-placeholder,
input.wpcf7-not-valid:-moz-placeholder,
textarea.wpcf7-not-valid:-moz-placeholder {
    color: red;
}

input.error:-ms-input-placeholder,
textarea.error:-ms-input-placeholder,
input.wpcf7-not-valid:-ms-input-placeholder,
textarea.wpcf7-not-valid:-ms-input-placeholder {
    color: red;
}

input.error::-webkit-input-placeholder,
textarea.error::-webkit-input-placeholder,
input.wpcf7-not-valid::-webkit-input-placeholder,
textarea.wpcf7-not-valid::-webkit-input-placeholder {
    color: red;
}

div.wpcf7-response-output {
    margin: 20px 0 0 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

input[type="checkbox"], input[type="radio"] {
    width: auto;
    height: auto;
    margin-bottom: 10px;
    margin-right: 0;
    margin-left: 0;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

input[type="radio"] {
    -webkit-appearance: radio;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="submit"],
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="file"] {
    margin-bottom: 10px;
    border: none;
    height: auto;
}

select {
    margin-bottom: 10px;
    width: 100%;
    height: 30px;
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 1em 0 0;
}

select {
    margin-bottom: 10px;
    width: 100%;
    height: 30px;
    background: #585d65;
    border: none;
    color: rgba(255,255,255,0.8);
}

.content-sidebar select, .wp-block-archives-dropdown select, .wp-block-categories select {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    background-color: #585d65;
    background-image: url(assets/images/arrow.svg);
    background-position: calc(100% - 15px) 50%;
    background-size: 11px;
    background-repeat: no-repeat;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    color: #fff;
    border: 1px solid #585d65;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 36px;
    padding-left: 15px;
    padding-right: 30px;
    cursor: pointer;
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 1em 0 0;
}

/* - Lists */
ul {
    list-style: disc;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 0px;
    list-style-position: inside;
}

ol {
    list-style: decimal;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 0px;
    list-style-position: inside;
}

ul ul, ol ol, ul ol, ol ul {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
}

img {
    max-width: 100%;
}

.single-post-text img + figure {
    margin-top: 20px;
}

.content-sidebar img {
    height: auto;
}

.widget.widget_text p {
    margin: 0 0 15px 0;
    font-size: 14px;
}

.wp-caption-text, .wp-block-image figcaption, .wp-block-video figcaption, .wp-block-embed figcaption {
    max-width: 100%;
    margin: 0;
    padding: 5px 10px 0 10px;
    text-align: center;
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

/* - Code */
code {
    padding: 0 4px;
    font-size: 14px;
    font-style: italic;
    color: #68e0cf;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    overflow: auto;
    max-width: 100%;
    white-space: nowrap;
}

pre {
    margin: 20px 0;
    padding: 0;
    max-width: 100%;
    overflow: auto;
    white-space: pre;
    font-size: 14px;
}

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

/* - Tables */
table {
    width: 100%;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    background: none;
    border: 1px solid #585d65;
}

.content-sidebar table caption {
    padding: 5px 0;
    font-weight: 700;
    font-size: 14px;
    border-bottom: none;
    background: #585d65;
    color: #fff;
}

.content-sidebar th {
    padding: 5px 0;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border: none;
    text-transform: uppercase;
}

.content-sidebar td {
    border: none;
    padding: 5px 0;
    font-size: 12px;
    background: none;
    text-align: center;
    border: 1px solid #585d65;
}

.content-sidebar tfoot td {
    border: none;
}

.content-sidebar td.pad {
    background: none;
}

.content-sidebar td#today {
    background: #68e0cf;
    color: #000!important;
    font-weight: 700;
}

.single-post-text table {
    width: 100%;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    background: none;
    border: 1px solid #585d65;
}

.single-post-text table th {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #585d65;
    border: 1px solid #585d65;
    text-align: center;
}

.single-post-text table td {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: none;
    border: 1px solid #585d65;
}

.single-post-text table td#today {
    background: #68e0cf;
    color: #fff!important;
    font-weight: 700;
}

.single-post-text table caption {
    margin: 10px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

dt {
    margin-bottom: 5px;
    font-weight: 700;
}

dd {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 20px;
}

@media screen and (max-width: 720px) {
    .single-post-text th {
        padding: 10px;
        font-size: 14px;
    }
    .single-post-text td {
        padding: 10px;
        font-size: 14px;
    }
}

/* - Alignment */
.align-center {
    text-align: center !important;
}

.align-right {
    text-align: right !important;
}

.align-left {
    text-align: left !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.pull-none {
    float: none !important;
}

.alignright {
    margin-left: 20px !important;
    margin-bottom: 10px !important;
    float: right !important;
    max-width: 50% !important;
}

.alignleft {
    margin-right: 20px !important;
    margin-bottom: 10px !important;
    float: left !important;
    max-width: 50% !important;
}

.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
}

.full-width {
    max-width: 100%;
    width: 100%;
}

.full-max-width {
    max-width: 100%;
    width: auto;
}

.centrize {
    display: table !important;
    table-layout: fixed !important;
    height: 100% !important;
    position: relative !important;
    top: 0;
    left: 0;
    z-index: 2;
}

.vertical-center {
    display: table-cell !important;
    vertical-align: middle !important;
}

/* - Text Formating */
.text-uppercase {
    text-transform: uppercase !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-regular {
    font-weight: 400 !important;
}

.text-bold {
    font-weight: 700 !important;
}

.text-italic {
    font-style: italic !important;
}

/* - Blockquote */
blockquote {
    font-family: "Poppins";
}

/* - Animations */
/* preloader */
@keyframes loading {
    0% {
        clip: rect(0, 80px, 0, 0);
        -webkit-clip: rect(0, 80px, 0, 0);
    }
    30% {
        clip: rect(20px, 80px, 0, 0);
        -webkit-clip: rect(20px, 80px, 0, 0);
    }
    50% {
        clip: rect(20px, 80px, 0, 0);
        -webkit-clip: rect(20px, 80px, 0, 0);
    }
    80% {
        clip: rect(20px, 20px, 80px, 0);
        -webkit-clip: rect(20px, 20px, 80px, 0);
    }
    100% {
        clip: rect(80px, 20px, 80px, 0);
        -webkit-clip: rect(80px, 20px, 80px, 0);
    }

}

/* Mouse Button Animations */
@keyframes mouse-anim {
    0% {
        top: -5px;
    }
    50% {
        top: 5px;
    }
    100% {
        top: -5px;
    }

}

/* - Header */
.header {
    padding: 0 50px 0 5px;
    position: fixed;
    right: 50px;
    left: 50px;
    top: 40px;
    height: 80px;
    z-index: 100;
    background: #585d65;
    border-radius: 80px;
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
    -khtml-border-radius: 80px;
    transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.header .logo {
    position: relative;
    float: right;
    width: 200px;
    height: 80px;
    display: flex;
    font-size: 0;
    line-height: 1.2;
    font-weight: 800;
    color: #FFF;
    align-items: center;
}

.header .logo a {
    color: #FFF;
}

.header .logo img {
    max-width: 100%;
}

.header .logo img.logo-img {
    margin-left: 30px;
    width: auto;
    height: auto;
    max-width: 36px;
    display: inline-block;
}

.header .logo .logo-lnk {
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    max-width: 130px;
}

.header .download-cv-btn {
    float: left;
    margin-top: 8px;
    margin-right: 8px;
    border-color: #FFF;
}

.header .download-cv-btn:hover .icon {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}

.header .top-menu {
    margin-left: 50px;
    float: left;
}

.header .top-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 80px;
    display: flex;
    align-items: center;
}

.header .top-menu ul li {
    margin-left: 40px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.header .top-menu ul li a {
    position: relative;
    overflow: hidden;
    display: block;
    font-size: 12px;
    line-height: 50px;
    color: #FFF;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -moz-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -webkit-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -o-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.header .top-menu ul li:first-child {
    margin-right: 0;
}

.header .top-menu ul li:hover > .sub-menu, .header .top-menu ul li:hover > .children {
    opacity: 1;
    pointer-events: auto;
}

.header .top-menu ul li.current-menu-item > a {
    color: #68e0cf;
}

.header .top-menu ul li:hover > a:hover .animated-button em {
    transform: translateY(calc(16px * -1));
}

.header .top-menu ul li.menu-item-has-children > a:after {
    content: "\f078";
    margin-right: 5px;
    position: relative;
    top: 0;
    display: inline-block;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 1em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.header .top-menu-nav .sub-menu,
.header .top-menu-nav .children {
    position: absolute;
    right: 0;
    top: 50px;
    padding: 10px 0;
    width: 190px;
    height: auto;
    display: block;
    background: #585d65;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
    -khtml-box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
}

.header .top-menu-nav .sub-menu ul,
.header .top-menu-nav .children ul {
    top: -10px;
    left: 100%;
}

.header .top-menu-nav .sub-menu ul:before,
.header .top-menu-nav .children ul:before {
    left: -12px;
    top: 10px;
    border-right: 6px solid #585d65;
}

.header .top-menu ul li:last-child .sub-menu,
.header .top-menu-nav .children {
    right: 0;
    left: auto;
}

.header .top-menu-nav .sub-menu:before,
.header .top-menu-nav .children:before {
    content: '';
    position: absolute;
    right: 10px;
    top: -12px;
    border: 6px solid transparent;
    border-bottom: 6px solid #585d65;
}

.header .top-menu ul li:last-child .sub-menu:before,
.header .top-menu-nav .children:before {
    right: 10px;
    left: auto;
}

.header .top-menu-nav .sub-menu li,
.header .top-menu-nav .children li {
    margin-left: 0;
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
}

.header .top-menu-nav .sub-menu li:last-child,
.header .top-menu-nav .children li:last-child {
    border-bottom: none;
}

.header .top-menu-nav .sub-menu li a,
.header .top-menu-nav .children li a {
    margin: 0;
    display: block;
    font-size: 11px;
    line-height: 1.4;
    color: #FFF;
}

.header .top-menu-nav .sub-menu li a:hover,
.header .top-menu-nav .children li a:hover,
.header .top-menu-nav .sub-menu li.active a,
.header .top-menu-nav .children li.active a {
    color: #68e0cf;
}

.header .menu-btn {
    padding: 20px;
    position: relative;
    margin: 0 auto;
    margin-top: 8px;
    width: 64px;
    height: 64px;
    line-height: 62px;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 64px;
    -moz-border-radius: 64px;
    -webkit-border-radius: 64px;
    -khtml-border-radius: 64px;
}

.header .menu-btn:before, .header .menu-btn:after {
    content: '';
    position: absolute;
    top: 22px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #FFF;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.header .menu-btn:after {
    top: auto;
    bottom: 22px;
}

.header .menu-btn span {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    height: 2px;
    background: #FFF;
    margin-top: -1px;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

/* header active */
.header.active {
    top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    background: #585d65;
}

.header.active .menu-btn:before {
    opacity: 0;
}

.header.active .menu-btn:after {
    bottom: 30px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.header.active .menu-btn span {
    left: 20px;
    right: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.header.active .top-menu {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.header.active .top-menu ul li .sub-menu,
.header.active .top-menu ul li .children {
    display: block;
}

@media (max-width: 1280px) {
    .header .top-menu {
        margin-right: 30px;
    }
    .header .top-menu ul li {
        margin-left: 25px;
    }
    .header {
        padding-left: 20px;
    }
    .header .logo {
        max-width: 160px;
    }
    .header .logo img.logo-img {
        margin-right: 14px;
    }
    .header .logo .logo-lnk {
        max-width: 108px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 0 30px;
        left: 0;
        right: 0;
        top: 20px;
        height: 80px;
        background: none;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -khtml-border-radius: 0;
    }
    .header.fixed {
        top: 0;
		background: #585d65;
    }
    .header .download-cv-btn {
        display: none;
    }
    .header .top-menu-nav {
        display: block;
    }
    .header .top-menu {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        float: none;
        width: auto;
        height: 0px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
        -moz-transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
        -webkit-transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
        -o-transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
    }
    .header.active .top-menu {
        padding-top: 30px;
        clear: both;
    }
    .header .top-menu .menu-top-menu-container {
        display: block;
    }
    .header .top-menu ul {
        display: block;
    }
    .header .top-menu ul li {
        margin-left: 0;
        display: block;
    }
    .header .top-menu ul li a {
        font-size: 20px;
    }
    .header .top-menu-nav .sub-menu, .header .top-menu-nav .children {
        position: relative;
        left: 0;
        top: 0;
        margin: 20px 0;
        width: auto;
        text-align: center;
        pointer-events: none;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: none;
        -webkit-transition: none;
        display: none;
    }
    .header.active .top-menu-nav .sub-menu, .header.active .top-menu-nav .children {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .header.active .top-menu ul li .sub-menu, .header.active .top-menu ul li .children {
        display: none;
    }
    .header .top-menu ul li.menu-item-has-children > a:after {
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }
    .header .top-menu ul li.menu-item-has-children.active > a:after {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }
    .header .top-menu-nav .sub-menu:before, .header .top-menu-nav .children:before {
        margin-left: -6px;
        left: 50%;
    }
    .header .top-menu-nav .sub-menu li .sub-menu, .header .top-menu-nav .children li .children {
        left: 0;
        top: 0;
        margin: 10px -20px -10px -20px;
        padding: 0;
        background: #676c75;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        -khtml-box-shadow: none;
    }
    .header .top-menu-nav .sub-menu li .sub-menu:before, .header .top-menu-nav .children li .children:before {
        display: none;
    }
    .header .menu-btn {
        display: block;
        float: left;
    }
}

/* - Background Option */
.background-bg {
    position: fixed;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
}

.background-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #68e0cf;
}

.background-filter .background-img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    mix-blend-mode: luminosity;
}

.background-filter.gradient:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-radial-gradient(center, ellipse cover, rgba(55, 59, 64, 0.5) 0%, #373b40 90%);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(55, 59, 64, 0.5) 0%, #373b40 90%);
	background: radial-gradient(ellipse at center, rgba(55, 59, 64, 0.5) 0%, #373b40 90%);
/*     background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.5) 0%, #373b40 90%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, #373b40 90%); */
}

.background-filter.gradient .background-img {
    -webkit-filter: none;
    filter: none;
    mix-blend-mode: unset;
}

.background-filter.circle {
    clip-path: circle(75% at 10% 45%);
    -webkit-clip-path: circle(75% at 10% 45%);
}

.background-filter.circle .background-img {
    -webkit-filter: none;
    filter: none;
    mix-blend-mode: unset;
}

.background-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (max-width: 1280px) {
    .background-bg {
        width: 30%;
    }
}

@media (max-width: 992px) {
    .background-bg {
        position: relative;
        width: 100%;
        height: 70vh;
    }
    .background-filter.circle {
        clip-path: circle(100% at 50% 0%);
        -webkit-clip-path: circle(100% at 50% 0%);
    }

}

@media (max-width: 720px) {
    .background-bg {
        height: 450px;
    }
}

/* - Section */
.section {
    position: relative;
    overflow: hidden;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #585d65;
    z-index: 12;
}

.section .content {
    position: relative;
    max-width: 820px;
}

.section .titles {
    position: relative;
    margin: 0 0 60px 0;
    display: block;
}

.section .titles .title {
    margin: 0 0 10px 0;
    max-width: 70%;
    font-size: 55px;
    line-height: 1.2;
    color: #FFF;
    font-weight: 800;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.section .titles .subtitle {
    font-size: 14px;
    line-height: 1.2;
    color: #68e0cf;
    font-weight: 600;
    text-transform: uppercase;
}

.content-carousel {
    position: relative;
    z-index: 2;
}

.content-carousel .owl-carousel .item img {
    width: auto;
    max-width: 100%;
}

.content-carousel .navs {
    position: absolute;
    right: auto;
    left: 0;
    top: -150px;
    height: 1px;
    z-index: 3;
    direction: ltr;
    font-size: 0;
}

.content-carousel .navs:before {
    content: '';
    position: absolute;
    right: 50px;
    top: 32px;
    width: 1000%;
    height: 1px;
    background: #585d65;
}

.content-carousel .navs .prev,
.content-carousel .navs .next {
    margin-right: 15px;
    margin-top: 0;
    position: relative;
    top: 0;
    right: 0;
    left: auto;
    width: 64px;
    height: 64px;
    line-height: 62px;
    background: #373b40;
    font-size: 14px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 1px solid #585d65;
    border-radius: 64px;
    -moz-border-radius: 64px;
    -webkit-border-radius: 64px;
    -khtml-border-radius: 64px;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

@media (max-width: 992px) {
    .section {
        padding-left: 30px;
        padding-right: 30px;
    }
    .section .content {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .section .titles {
        margin-bottom: 40px;
        text-align: center;
    }
    .section .titles .title {
        max-width: 100%;
        font-size: 34px;
    }
    .content-carousel {
        padding-bottom: 100px;
    }
    .content-carousel .navs {
        margin-right: -75px;
        top: auto;
        bottom: 64px;
        right: 50%;
    }
    .content-carousel .navs .prev, .content-carousel .navs .next {
        margin-left: 22px;
    }
    .content-carousel .navs .prev {
        margin-left: 0;
    }
}

/* - Started */
.section.started {
    margin: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    position: relative;
    overflow: visible;
    height: 100vh;
    z-index: 11;
}

.single .section.started,
.single-post .section.started,
.blog .section.started,
.page-template-template-blog .section.started,
.error404 .section.started,
.search .section.started,
.archive .section.started,
.page-template-default .section.started {
    padding-bottom: 50px;
}

.section.started .h-title {
    margin: 40px -11vw 0 0;
    padding: 4.2vw;
    font-size: 4.2vw;
    line-height: 1.4;
    font-weight: 800;
    color: #FFF;
    background: #373b40;
    word-break: break-word;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    border-radius: 264px;
    -moz-border-radius: 264px;
    -webkit-border-radius: 264px;
    -khtml-border-radius: 264px;
}

.section.started .h-title strong {
    color: #68e0cf;
}

.section.started .started-content {
    padding-left: 8%;
    max-width: 500px;
}

.section.started .started-content .h-subtitles {
    margin: 0 0 30px 0;
    height: 18px;
}

.section.started .started-content .h-subtitle,
.section.started .started-content .typed-subtitle,
.section.started .started-content .typed-cursor {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    color: #68e0cf;
    font-weight: 600;
    text-transform: uppercase;
}

.section.started .started-content .typed-cursor {
    margin-left: 3px;
}

.section.started .started-content .h-text {
    margin: 0 0 30px 0;
    font-size: 14px;
    color: #fff;
}

.section.started .btn {
    margin-right: 15px;
}

.section.started .mouse-btn {
    padding: 0;
    width: 64px;
    font-size: 18px;
    text-align: center;
}

.section.started .mouse-btn .icon {
    margin-right: 0;
    position: relative;
    top: -5px;
    left: 0;
    animation: mouse-anim 1s ease-out 0s infinite;
}

.section.started .mouse-btn:hover .icon {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
}

.started-carousel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.started-carousel .swiper-container,
.started-carousel .swiper-wrapper {
    height: 100%;
}

.started-carousel .swiper-slide {
    opacity: 1 !important;
}

.started-carousel .swiper-slide.first {
    z-index: 2;
}

.started-carousel .background-filter {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -moz-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -webkit-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -o-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.started-carousel .swiper-slide.swiper-clip-active .background-filter {
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
}

@media (max-width: 992px) {
    .section.started {
        margin: 0;
        padding-top: 0;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 70px;
        height: auto !important;
        text-align: center;
    }
    .section.started .h-title {
        margin: 0 auto;
        margin-top: -200px;
        padding: 70px 35px 30px 35px;
        width: 480px;
        font-size: 60px;
        background: #373b40;
        border-radius: 360px 360px 0 0;
        -moz-border-radius: 360px 360px 0 0;
        -webkit-border-radius: 360px 360px 0 0;
        -khtml-border-radius: 360px 360px 0 0;
    }
    .section.started .started-content {
        padding-left: 0;
        max-width: 100%;
    }
    .section.started .started-content .h-subtitles {
        margin: 0 0 40px 0;
        height: 18px;
    }
    .section.started .started-content .h-text {
        display: none;
    }
    .section.started .mouse-btn {
        display: none !important;
    }
    .section.started .btn {
        margin-right: 0;
    }
}

@media (max-width: 720px) {
    .section.started {
        padding-bottom: 50px;
    }
    .section.started .h-title {
        margin-top: -140px;
        padding: 70px 15px 15px 15px;
        width: auto;
        font-size: 40px;
    }
}

/* - About */
.info-list {
}

.info-list ul {
    list-style: none;
    margin: 0 -20px;
    padding: 0;
    font-size: 0;
}

.info-list ul li {
    margin: 0 0 6px 0;
    padding: 0 20px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: 14px;
    font-weight: 600;
}

.info-list ul li strong {
    display: inline-block;
    vertical-align: top;
    width: 90px;
    font-weight: 600;
    text-transform: uppercase;
    color: #68e0cf;
}

@media (max-width: 720px) {
    .info-list ul li {
        width: 100%;
    }
    .info-list ul li strong {
        margin-right: 15px;
        width: auto;
    }

}

/* - Resume */
.resume-items {
    margin: 0 -20px;
    margin-top: -60px;
    font-size: 0;
}

.resume-items .resume-col {
    margin-top: 60px;
    padding: 0 20px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.resume-item {
    position: relative;
    font-size: 14px;
}

.resume-item .date {
    position: absolute;
    right: -8px;
    top: -22px;
    display: inline-block;
    font-size: 11px;
    color: #68e0cf;
    font-weight: 600;
    transform-origin: bottom left;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.resume-item .icon {
    margin-bottom: 15px;
    font-size: 32px;
    height: 32px;
    color: #68e0cf;
}

.resume-item .name {
    margin: 0 50px 0 30px;
    font-size: 18px;
    color: #FFF;
    font-weight: 800;
}

.resume-item .single-post-text *:last-child {
    margin-bottom: 0;
}


@media (max-width: 720px) {
    .resume-item .date {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
    }
    .resume-item .name {
        margin-bottom: 20px;
        margin-left: 0;
    }

}

/* - Skills */
.skills ul {
    margin: -40px -20px 0 -20px;
    padding: 0;
    list-style: none;
    font-size: 0;
}

.skills ul li {
    position: relative;
    padding: 40px 20px 0 20px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.skills .name {
    margin: 0 0 30px 0;
    position: relative;
    font-size: 18px;
    color: #FFF;
    font-weight: 800;
}

.skills .single-post-text {
    margin-bottom: 30px;
}

.skills .progress {
    display: block;
    height: 2px;
    position: relative;
    width: 100%;
    background: #585d65;
}

.skills .progress .percentage {
    right: 0;
    top: 0;
    position: absolute;
    height: 2px;
    width: 0%;
    background: #68e0cf;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.skills .progress .percentage .percent {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 12px;
    color: #68e0cf;
    font-weight: 600;
}

.skills.list .name {
    padding-left: 35px;
    position: relative;
}

.skills.list .name:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 3px;
    display: inline-block;
    color: #68e0cf;
    font-family: 'FontAwesome';
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.skills.list .progress {
    display: none;
}

.skills.dotted .progress {
    height: 14px;
    background: transparent !important;
}

.skills.dotted .progress .percentage {
    position: relative;
    overflow: hidden;
    top: 0;
    float: right;
    height: 14px;
    background: transparent !important;
    z-index: 2;
}

.skills.dotted .progress .dg,
.skills.dotted .progress .da {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 14px;
}

.skills.dotted .progress .dg span,
.skills.dotted .progress .da span {
    display: block;
    width: 14px;
    height: 14px;
    background: #585d65;
    border-radius: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    -khtml-border-radius: 14px;
}

.skills.dotted .progress .da {
    top: 0;
}

.skills.dotted .progress .da span {
    background: #68e0cf;
}

.skills.circles ul li {
    width: 33.333%;
}

.skills.circles .progress {
    margin: 0 0 30px 0;
    position: relative;
    font-size: 90px;
    width: 90px;
    height: 90px;
    background: #585d65;
    border-radius: 90px;
    -moz-border-radius: 90px;
    -webkit-border-radius: 90px;
    -khtml-border-radius: 90px;
}

.skills.circles .progress:after {
    content: '';
    position: absolute;
    top: 0.04em;
    left: 0.04em;
    width: 0.92em;
    height: 0.92em;
    display: block;
    background-color: #373b40;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
}

.skills.circles .progress span {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: #68e0cf;
    font-weight: 600;
    line-height: 90px;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
}

.skills.circles .progress .percentage {
    display: none;
}

.skills.circles .progress .slice {
    position: absolute;
    width: 1em;
    height: 1em;
    clip: rect(0em, 1em, 1em, 0.5em);
    -webkit-clip: rect(0em, 1em, 1em, 0.5em);
}

.skills.circles .single-post-text,
.skills.circles .single-post-text p {
    margin-bottom: 0;
}

.skills.circles .progress.p51 .slice,
.skills.circles .progress.p52 .slice,
.skills.circles .progress.p53 .slice,
.skills.circles .progress.p54 .slice,
.skills.circles .progress.p55 .slice,
.skills.circles .progress.p56 .slice,
.skills.circles .progress.p57 .slice,
.skills.circles .progress.p58 .slice,
.skills.circles .progress.p59 .slice,
.skills.circles .progress.p60 .slice,
.skills.circles .progress.p61 .slice,
.skills.circles .progress.p62 .slice,
.skills.circles .progress.p63 .slice,
.skills.circles .progress.p64 .slice,
.skills.circles .progress.p65 .slice,
.skills.circles .progress.p66 .slice,
.skills.circles .progress.p67 .slice,
.skills.circles .progress.p68 .slice,
.skills.circles .progress.p69 .slice,
.skills.circles .progress.p70 .slice,
.skills.circles .progress.p71 .slice,
.skills.circles .progress.p72 .slice,
.skills.circles .progress.p73 .slice,
.skills.circles .progress.p74 .slice,
.skills.circles .progress.p75 .slice,
.skills.circles .progress.p76 .slice,
.skills.circles .progress.p77 .slice,
.skills.circles .progress.p78 .slice,
.skills.circles .progress.p79 .slice,
.skills.circles .progress.p80 .slice,
.skills.circles .progress.p81 .slice,
.skills.circles .progress.p82 .slice,
.skills.circles .progress.p83 .slice,
.skills.circles .progress.p84 .slice,
.skills.circles .progress.p85 .slice,
.skills.circles .progress.p86 .slice,
.skills.circles .progress.p87 .slice,
.skills.circles .progress.p88 .slice,
.skills.circles .progress.p89 .slice,
.skills.circles .progress.p90 .slice,
.skills.circles .progress.p91 .slice,
.skills.circles .progress.p92 .slice,
.skills.circles .progress.p93 .slice,
.skills.circles .progress.p94 .slice,
.skills.circles .progress.p95 .slice,
.skills.circles .progress.p96 .slice,
.skills.circles .progress.p97 .slice,
.skills.circles .progress.p98 .slice,
.skills.circles .progress.p99 .slice,
.skills.circles .progress.p100 .slice {
    clip: rect(auto, auto, auto, auto);
    -webkit-clip: rect(auto, auto, auto, auto);
}

.skills.circles .progress .bar,
.skills.circles .progress.p51 .fill,
.skills.circles .progress.p52 .fill,
.skills.circles .progress.p53 .fill,
.skills.circles .progress.p54 .fill,
.skills.circles .progress.p55 .fill,
.skills.circles .progress.p56 .fill,
.skills.circles .progress.p57 .fill,
.skills.circles .progress.p58 .fill,
.skills.circles .progress.p59 .fill,
.skills.circles .progress.p60 .fill,
.skills.circles .progress.p61 .fill,
.skills.circles .progress.p62 .fill,
.skills.circles .progress.p63 .fill,
.skills.circles .progress.p64 .fill,
.skills.circles .progress.p65 .fill,
.skills.circles .progress.p66 .fill,
.skills.circles .progress.p67 .fill,
.skills.circles .progress.p68 .fill,
.skills.circles .progress.p69 .fill,
.skills.circles .progress.p70 .fill,
.skills.circles .progress.p71 .fill,
.skills.circles .progress.p72 .fill,
.skills.circles .progress.p73 .fill,
.skills.circles .progress.p74 .fill,
.skills.circles .progress.p75 .fill,
.skills.circles .progress.p76 .fill,
.skills.circles .progress.p77 .fill,
.skills.circles .progress.p78 .fill,
.skills.circles .progress.p79 .fill,
.skills.circles .progress.p80 .fill,
.skills.circles .progress.p81 .fill,
.skills.circles .progress.p82 .fill,
.skills.circles .progress.p83 .fill,
.skills.circles .progress.p84 .fill,
.skills.circles .progress.p85 .fill,
.skills.circles .progress.p86 .fill,
.skills.circles .progress.p87 .fill,
.skills.circles .progress.p88 .fill,
.skills.circles .progress.p89 .fill,
.skills.circles .progress.p90 .fill,
.skills.circles .progress.p91 .fill,
.skills.circles .progress.p92 .fill,
.skills.circles .progress.p93 .fill,
.skills.circles .progress.p94 .fill,
.skills.circles .progress.p95 .fill,
.skills.circles .progress.p96 .fill,
.skills.circles .progress.p97 .fill,
.skills.circles .progress.p98 .fill,
.skills.circles .progress.p99 .fill,
.skills.circles .progress.p100 .fill {
    position: absolute;
    width: 0.92em;
    height: 0.92em;
    clip: rect(0em, 0.5em, 1em, 0em);
    -webkit-clip: rect(0em, 0.5em, 1em, 0em);
    border: 0.04em solid #68e0cf;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
}

.skills.circles .progress.p51 .bar:after,
.skills.circles .progress.p51 .fill,
.skills.circles .progress.p52 .bar:after,
.skills.circles .progress.p52 .fill,
.skills.circles .progress.p53 .bar:after,
.skills.circles .progress.p53 .fill,
.skills.circles .progress.p54 .bar:after,
.skills.circles .progress.p54 .fill,
.skills.circles .progress.p55 .bar:after,
.skills.circles .progress.p55 .fill,
.skills.circles .progress.p56 .bar:after,
.skills.circles .progress.p56 .fill,
.skills.circles .progress.p57 .bar:after,
.skills.circles .progress.p57 .fill,
.skills.circles .progress.p58 .bar:after,
.skills.circles .progress.p58 .fill,
.skills.circles .progress.p59 .bar:after,
.skills.circles .progress.p59 .fill,
.skills.circles .progress.p60 .bar:after,
.skills.circles .progress.p60 .fill,
.skills.circles .progress.p61 .bar:after,
.skills.circles .progress.p61 .fill,
.skills.circles .progress.p62 .bar:after,
.skills.circles .progress.p62 .fill,
.skills.circles .progress.p63 .bar:after,
.skills.circles .progress.p63 .fill,
.skills.circles .progress.p64 .bar:after,
.skills.circles .progress.p64 .fill,
.skills.circles .progress.p65 .bar:after,
.skills.circles .progress.p65 .fill,
.skills.circles .progress.p66 .bar:after,
.skills.circles .progress.p66 .fill,
.skills.circles .progress.p67 .bar:after,
.skills.circles .progress.p67 .fill,
.skills.circles .progress.p68 .bar:after,
.skills.circles .progress.p68 .fill,
.skills.circles .progress.p69 .bar:after,
.skills.circles .progress.p69 .fill,
.skills.circles .progress.p70 .bar:after,
.skills.circles .progress.p70 .fill,
.skills.circles .progress.p71 .bar:after,
.skills.circles .progress.p71 .fill,
.skills.circles .progress.p72 .bar:after,
.skills.circles .progress.p72 .fill,
.skills.circles .progress.p73 .bar:after,
.skills.circles .progress.p73 .fill,
.skills.circles .progress.p74 .bar:after,
.skills.circles .progress.p74 .fill,
.skills.circles .progress.p75 .bar:after,
.skills.circles .progress.p75 .fill,
.skills.circles .progress.p76 .bar:after,
.skills.circles .progress.p76 .fill,
.skills.circles .progress.p77 .bar:after,
.skills.circles .progress.p77 .fill,
.skills.circles .progress.p78 .bar:after,
.skills.circles .progress.p78 .fill,
.skills.circles .progress.p79 .bar:after,
.skills.circles .progress.p79 .fill,
.skills.circles .progress.p80 .bar:after,
.skills.circles .progress.p80 .fill,
.skills.circles .progress.p81 .bar:after,
.skills.circles .progress.p81 .fill,
.skills.circles .progress.p82 .bar:after,
.skills.circles .progress.p82 .fill,
.skills.circles .progress.p83 .bar:after,
.skills.circles .progress.p83 .fill,
.skills.circles .progress.p84 .bar:after,
.skills.circles .progress.p84 .fill,
.skills.circles .progress.p85 .bar:after,
.skills.circles .progress.p85 .fill,
.skills.circles .progress.p86 .bar:after,
.skills.circles .progress.p86 .fill,
.skills.circles .progress.p87 .bar:after,
.skills.circles .progress.p87 .fill,
.skills.circles .progress.p88 .bar:after,
.skills.circles .progress.p88 .fill,
.skills.circles .progress.p89 .bar:after,
.skills.circles .progress.p89 .fill,
.skills.circles .progress.p90 .bar:after,
.skills.circles .progress.p90 .fill,
.skills.circles .progress.p91 .bar:after,
.skills.circles .progress.p91 .fill,
.skills.circles .progress.p92 .bar:after,
.skills.circles .progress.p92 .fill,
.skills.circles .progress.p93 .bar:after,
.skills.circles .progress.p93 .fill,
.skills.circles .progress.p94 .bar:after,
.skills.circles .progress.p94 .fill,
.skills.circles .progress.p95 .bar:after,
.skills.circles .progress.p95 .fill,
.skills.circles .progress.p96 .bar:after,
.skills.circles .progress.p96 .fill,
.skills.circles .progress.p97 .bar:after,
.skills.circles .progress.p97 .fill,
.skills.circles .progress.p98 .bar:after,
.skills.circles .progress.p98 .fill,
.skills.circles .progress.p99 .bar:after,
.skills.circles .progress.p99 .fill,
.skills.circles .progress.p100 .bar:after,
.skills.circles .progress.p100 .fill {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.skills.circles .progress *, .skills.circles .progress *:before, .skills.circles .progress *:after {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.skills.circles .progress.p1 .bar {
    transform: rotate(3.6deg);
    -webkit-transform: rotate(3.6deg);
    -moz-transform: rotate(3.6deg);
    -o-transform: rotate(3.6deg);
}

.skills.circles .progress.p2 .bar {
    transform: rotate(7.2deg);
    -webkit-transform: rotate(7.2deg);
    -moz-transform: rotate(7.2deg);
    -o-transform: rotate(7.2deg);
}

.skills.circles .progress.p3 .bar {
    transform: rotate(10.8deg);
    -webkit-transform: rotate(10.8deg);
    -moz-transform: rotate(10.8deg);
    -o-transform: rotate(10.8deg);
}

.skills.circles .progress.p4 .bar {
    transform: rotate(14.4deg);
    -webkit-transform: rotate(14.4deg);
    -moz-transform: rotate(14.4deg);
    -o-transform: rotate(14.4deg);
}

.skills.circles .progress.p5 .bar {
    transform: rotate(18deg);
    -webkit-transform: rotate(18deg);
    -moz-transform: rotate(18deg);
    -o-transform: rotate(18deg);
}

.skills.circles .progress.p6 .bar {
    transform: rotate(21.6deg);
    -webkit-transform: rotate(21.6deg);
    -moz-transform: rotate(21.6deg);
    -o-transform: rotate(21.6deg);
}

.skills.circles .progress.p7 .bar {
    transform: rotate(25.2deg);
    -webkit-transform: rotate(25.2deg);
    -moz-transform: rotate(25.2deg);
    -o-transform: rotate(25.2deg);
}

.skills.circles .progress.p8 .bar {
    transform: rotate(28.8deg);
    -webkit-transform: rotate(28.8deg);
    -moz-transform: rotate(28.8deg);
    -o-transform: rotate(28.8deg);
}

.skills.circles .progress.p9 .bar {
    transform: rotate(32.4deg);
    -webkit-transform: rotate(32.4deg);
    -moz-transform: rotate(32.4deg);
    -o-transform: rotate(32.4deg);
}

.skills.circles .progress.p10 .bar {
    transform: rotate(36deg);
    -webkit-transform: rotate(36deg);
    -moz-transform: rotate(36deg);
    -o-transform: rotate(36deg);
}

.skills.circles .progress.p11 .bar {
    transform: rotate(39.6deg);
    -webkit-transform: rotate(39.6deg);
    -moz-transform: rotate(39.6deg);
    -o-transform: rotate(39.6deg);
}

.skills.circles .progress.p12 .bar {
    transform: rotate(43.2deg);
    -webkit-transform: rotate(43.2deg);
    -moz-transform: rotate(43.2deg);
    -o-transform: rotate(43.2deg);
}

.skills.circles .progress.p13 .bar {
    transform: rotate(46.8deg);
    -webkit-transform: rotate(46.8deg);
    -moz-transform: rotate(46.8deg);
    -o-transform: rotate(46.8deg);
}

.skills.circles .progress.p14 .bar {
    transform: rotate(50.4deg);
    -webkit-transform: rotate(50.4deg);
    -moz-transform: rotate(50.4deg);
    -o-transform: rotate(50.4deg);
}

.skills.circles .progress.p15 .bar {
    transform: rotate(54deg);
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -o-transform: rotate(54deg);
}

.skills.circles .progress.p16 .bar {
    transform: rotate(57.6deg);
    -webkit-transform: rotate(57.6deg);
    -moz-transform: rotate(57.6deg);
    -o-transform: rotate(57.6deg);
}

.skills.circles .progress.p17 .bar {
    transform: rotate(61.2deg);
    -webkit-transform: rotate(61.2deg);
    -moz-transform: rotate(61.2deg);
    -o-transform: rotate(61.2deg);
}

.skills.circles .progress.p18 .bar {
    transform: rotate(64.8deg);
    -webkit-transform: rotate(64.8deg);
    -moz-transform: rotate(64.8deg);
    -o-transform: rotate(64.8deg);
}

.skills.circles .progress.p19 .bar {
    transform: rotate(68.4deg);
    -webkit-transform: rotate(68.4deg);
    -moz-transform: rotate(68.4deg);
    -o-transform: rotate(68.4deg);
}

.skills.circles .progress.p20 .bar {
    transform: rotate(72deg);
    -webkit-transform: rotate(72deg);
    -moz-transform: rotate(72deg);
    -o-transform: rotate(72deg);
}

.skills.circles .progress.p21 .bar {
    transform: rotate(75.6deg);
    -webkit-transform: rotate(75.6deg);
    -moz-transform: rotate(75.6deg);
    -o-transform: rotate(75.6deg);
}

.skills.circles .progress.p22 .bar {
    transform: rotate(79.2deg);
    -webkit-transform: rotate(79.2deg);
    -moz-transform: rotate(79.2deg);
    -o-transform: rotate(79.2deg);
}

.skills.circles .progress.p23 .bar {
    transform: rotate(82.8deg);
    -webkit-transform: rotate(82.8deg);
    -moz-transform: rotate(82.8deg);
    -o-transform: rotate(82.8deg);
}

.skills.circles .progress.p24 .bar {
    transform: rotate(86.4deg);
    -webkit-transform: rotate(86.4deg);
    -moz-transform: rotate(86.4deg);
    -o-transform: rotate(86.4deg);
}

.skills.circles .progress.p25 .bar {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.skills.circles .progress.p26 .bar {
    transform: rotate(93.6deg);
    -webkit-transform: rotate(93.6deg);
    -moz-transform: rotate(93.6deg);
    -o-transform: rotate(93.6deg);
}

.skills.circles .progress.p27 .bar {
    transform: rotate(97.2deg);
    -webkit-transform: rotate(97.2deg);
    -moz-transform: rotate(97.2deg);
    -o-transform: rotate(97.2deg);
}

.skills.circles .progress.p28 .bar {
    transform: rotate(100.8deg);
    -webkit-transform: rotate(100.8deg);
    -moz-transform: rotate(100.8deg);
    -o-transform: rotate(100.8deg);
}

.skills.circles .progress.p29 .bar {
    transform: rotate(104.4deg);
    -webkit-transform: rotate(104.4deg);
    -moz-transform: rotate(104.4deg);
    -o-transform: rotate(104.4deg);
}

.skills.circles .progress.p30 .bar {
    transform: rotate(108deg);
    -webkit-transform: rotate(108deg);
    -moz-transform: rotate(108deg);
    -o-transform: rotate(108deg);
}

.skills.circles .progress.p31 .bar {
    transform: rotate(111.6deg);
    -webkit-transform: rotate(111.6deg);
    -moz-transform: rotate(111.6deg);
    -o-transform: rotate(111.6deg);
}

.skills.circles .progress.p32 .bar {
    transform: rotate(115.2deg);
    -webkit-transform: rotate(115.2deg);
    -moz-transform: rotate(115.2deg);
    -o-transform: rotate(115.2deg);
}

.skills.circles .progress.p33 .bar {
    transform: rotate(118.8deg);
    -webkit-transform: rotate(118.8deg);
    -moz-transform: rotate(118.8deg);
    -o-transform: rotate(118.8deg);
}

.skills.circles .progress.p34 .bar {
    transform: rotate(122.4deg);
    -webkit-transform: rotate(122.4deg);
    -moz-transform: rotate(122.4deg);
    -o-transform: rotate(122.4deg);
}

.skills.circles .progress.p35 .bar {
    transform: rotate(126deg);
    -webkit-transform: rotate(126deg);
    -moz-transform: rotate(126deg);
    -o-transform: rotate(126deg);
}

.skills.circles .progress.p36 .bar {
    transform: rotate(129.6deg);
    -webkit-transform: rotate(129.6deg);
    -moz-transform: rotate(129.6deg);
    -o-transform: rotate(129.6deg);
}

.skills.circles .progress.p37 .bar {
    transform: rotate(133.2deg);
    -webkit-transform: rotate(133.2deg);
    -moz-transform: rotate(133.2deg);
    -o-transform: rotate(133.2deg);
}

.skills.circles .progress.p38 .bar {
    transform: rotate(136.8deg);
    -webkit-transform: rotate(136.8deg);
    -moz-transform: rotate(136.8deg);
    -o-transform: rotate(136.8deg);
}

.skills.circles .progress.p39 .bar {
    transform: rotate(140.4deg);
    -webkit-transform: rotate(140.4deg);
    -moz-transform: rotate(140.4deg);
    -o-transform: rotate(140.4deg);
}

.skills.circles .progress.p40 .bar {
    transform: rotate(144deg);
    -webkit-transform: rotate(144deg);
    -moz-transform: rotate(144deg);
    -o-transform: rotate(144deg);
}

.skills.circles .progress.p41 .bar {
    transform: rotate(147.6deg);
    -webkit-transform: rotate(147.6deg);
    -moz-transform: rotate(147.6deg);
    -o-transform: rotate(147.6deg);
}

.skills.circles .progress.p42 .bar {
    transform: rotate(151.2deg);
    -webkit-transform: rotate(151.2deg);
    -moz-transform: rotate(151.2deg);
    -o-transform: rotate(151.2deg);
}

.skills.circles .progress.p43 .bar {
    transform: rotate(154.8deg);
    -webkit-transform: rotate(154.8deg);
    -moz-transform: rotate(154.8deg);
    -o-transform: rotate(154.8deg);
}

.skills.circles .progress.p44 .bar {
    transform: rotate(158.4deg);
    -webkit-transform: rotate(158.4deg);
    -moz-transform: rotate(158.4deg);
    -o-transform: rotate(158.4deg);
}

.skills.circles .progress.p45 .bar {
    transform: rotate(162deg);
    -webkit-transform: rotate(162deg);
    -moz-transform: rotate(162deg);
    -o-transform: rotate(162deg);
}

.skills.circles .progress.p46 .bar {
    transform: rotate(165.6deg);
    -webkit-transform: rotate(165.6deg);
    -moz-transform: rotate(165.6deg);
    -o-transform: rotate(165.6deg);
}

.skills.circles .progress.p47 .bar {
    transform: rotate(169.2deg);
    -webkit-transform: rotate(169.2deg);
    -moz-transform: rotate(169.2deg);
    -o-transform: rotate(169.2deg);
}

.skills.circles .progress.p48 .bar {
    transform: rotate(172.8deg);
    -webkit-transform: rotate(172.8deg);
    -moz-transform: rotate(172.8deg);
    -o-transform: rotate(172.8deg);
}

.skills.circles .progress.p49 .bar {
    transform: rotate(176.4deg);
    -webkit-transform: rotate(176.4deg);
    -moz-transform: rotate(176.4deg);
    -o-transform: rotate(176.4deg);
}

.skills.circles .progress.p50 .bar {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.skills.circles .progress.p51 .bar {
    transform: rotate(183.6deg);
    -webkit-transform: rotate(183.6deg);
    -moz-transform: rotate(183.6deg);
    -o-transform: rotate(183.6deg);
}

.skills.circles .progress.p52 .bar {
    transform: rotate(187.2deg);
    -webkit-transform: rotate(187.2deg);
    -moz-transform: rotate(187.2deg);
    -o-transform: rotate(187.2deg);
}

.skills.circles .progress.p53 .bar {
    transform: rotate(190.8deg);
    -webkit-transform: rotate(190.8deg);
    -moz-transform: rotate(190.8deg);
    -o-transform: rotate(190.8deg);
}

.skills.circles .progress.p54 .bar {
    transform: rotate(194.4deg);
    -webkit-transform: rotate(194.4deg);
    -moz-transform: rotate(194.4deg);
    -o-transform: rotate(194.4deg);
}

.skills.circles .progress.p55 .bar {
    transform: rotate(198deg);
    -webkit-transform: rotate(198deg);
    -moz-transform: rotate(198deg);
    -o-transform: rotate(198deg);
}

.skills.circles .progress.p56 .bar {
    transform: rotate(201.6deg);
    -webkit-transform: rotate(201.6deg);
    -moz-transform: rotate(201.6deg);
    -o-transform: rotate(201.6deg);
}

.skills.circles .progress.p57 .bar {
    transform: rotate(205.2deg);
    -webkit-transform: rotate(205.2deg);
    -moz-transform: rotate(205.2deg);
    -o-transform: rotate(205.2deg);
}

.skills.circles .progress.p58 .bar {
    transform: rotate(208.8deg);
    -webkit-transform: rotate(208.8deg);
    -moz-transform: rotate(208.8deg);
    -o-transform: rotate(208.8deg);
}

.skills.circles .progress.p59 .bar {
    transform: rotate(212.4deg);
    -webkit-transform: rotate(212.4deg);
    -moz-transform: rotate(212.4deg);
    -o-transform: rotate(212.4deg);
}

.skills.circles .progress.p60 .bar {
    transform: rotate(216deg);
    -webkit-transform: rotate(216deg);
    -moz-transform: rotate(216deg);
    -o-transform: rotate(216deg);
}

.skills.circles .progress.p61 .bar {
    transform: rotate(219.6deg);
    -webkit-transform: rotate(219.6deg);
    -moz-transform: rotate(219.6deg);
    -o-transform: rotate(219.6deg);
}

.skills.circles .progress.p62 .bar {
    transform: rotate(223.2deg);
    -webkit-transform: rotate(223.2deg);
    -moz-transform: rotate(223.2deg);
    -o-transform: rotate(223.2deg);
}

.skills.circles .progress.p63 .bar {
    transform: rotate(226.8deg);
    -webkit-transform: rotate(226.8deg);
    -moz-transform: rotate(226.8deg);
    -o-transform: rotate(226.8deg);
}

.skills.circles .progress.p64 .bar {
    transform: rotate(230.4deg);
    -webkit-transform: rotate(230.4deg);
    -moz-transform: rotate(230.4deg);
    -o-transform: rotate(230.4deg);
}

.skills.circles .progress.p65 .bar {
    transform: rotate(234deg);
    -webkit-transform: rotate(234deg);
    -moz-transform: rotate(234deg);
    -o-transform: rotate(234deg);
}

.skills.circles .progress.p66 .bar {
    transform: rotate(237.6deg);
    -webkit-transform: rotate(237.6deg);
    -moz-transform: rotate(237.6deg);
    -o-transform: rotate(237.6deg);
}

.skills.circles .progress.p67 .bar {
    transform: rotate(241.2deg);
    -webkit-transform: rotate(241.2deg);
    -moz-transform: rotate(241.2deg);
    -o-transform: rotate(241.2deg);
}

.skills.circles .progress.p68 .bar {
    transform: rotate(244.8deg);
    -webkit-transform: rotate(244.8deg);
    -moz-transform: rotate(244.8deg);
    -o-transform: rotate(244.8deg);
}

.skills.circles .progress.p69 .bar {
    transform: rotate(248.4deg);
    -webkit-transform: rotate(248.4deg);
    -moz-transform: rotate(248.4deg);
    -o-transform: rotate(248.4deg);
}

.skills.circles .progress.p70 .bar {
    transform: rotate(252deg);
    -webkit-transform: rotate(252deg);
    -moz-transform: rotate(252deg);
    -o-transform: rotate(252deg);
}

.skills.circles .progress.p71 .bar {
    transform: rotate(255.6deg);
    -webkit-transform: rotate(255.6deg);
    -moz-transform: rotate(255.6deg);
    -o-transform: rotate(255.6deg);
}

.skills.circles .progress.p72 .bar {
    transform: rotate(259.2deg);
    -webkit-transform: rotate(259.2deg);
    -moz-transform: rotate(259.2deg);
    -o-transform: rotate(259.2deg);
}

.skills.circles .progress.p73 .bar {
    transform: rotate(262.8deg);
    -webkit-transform: rotate(262.8deg);
    -moz-transform: rotate(262.8deg);
    -o-transform: rotate(262.8deg);
}

.skills.circles .progress.p74 .bar {
    transform: rotate(266.4deg);
    -webkit-transform: rotate(266.4deg);
    -moz-transform: rotate(266.4deg);
    -o-transform: rotate(266.4deg);
}

.skills.circles .progress.p75 .bar {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}

.skills.circles .progress.p76 .bar {
    transform: rotate(273.6deg);
    -webkit-transform: rotate(273.6deg);
    -moz-transform: rotate(273.6deg);
    -o-transform: rotate(273.6deg);
}

.skills.circles .progress.p77 .bar {
    transform: rotate(277.2deg);
    -webkit-transform: rotate(277.2deg);
    -moz-transform: rotate(277.2deg);
    -o-transform: rotate(277.2deg);
}

.skills.circles .progress.p78 .bar {
    transform: rotate(280.8deg);
    -webkit-transform: rotate(280.8deg);
    -moz-transform: rotate(280.8deg);
    -o-transform: rotate(280.8deg);
}

.skills.circles .progress.p79 .bar {
    transform: rotate(284.4deg);
    -webkit-transform: rotate(284.4deg);
    -moz-transform: rotate(284.4deg);
    -o-transform: rotate(284.4deg);
}

.skills.circles .progress.p80 .bar {
    transform: rotate(288deg);
    -webkit-transform: rotate(288deg);
    -moz-transform: rotate(288deg);
    -o-transform: rotate(288deg);
}

.skills.circles .progress.p81 .bar {
    transform: rotate(291.6deg);
    -webkit-transform: rotate(291.6deg);
    -moz-transform: rotate(291.6deg);
    -o-transform: rotate(291.6deg);
}

.skills.circles .progress.p82 .bar {
    transform: rotate(295.2deg);
    -webkit-transform: rotate(295.2deg);
    -moz-transform: rotate(295.2deg);
    -o-transform: rotate(295.2deg);
}

.skills.circles .progress.p83 .bar {
    transform: rotate(298.8deg);
    -webkit-transform: rotate(298.8deg);
    -moz-transform: rotate(298.8deg);
    -o-transform: rotate(298.8deg);
}

.skills.circles .progress.p84 .bar {
    transform: rotate(302.4deg);
    -webkit-transform: rotate(302.4deg);
    -moz-transform: rotate(302.4deg);
    -o-transform: rotate(302.4deg);
}

.skills.circles .progress.p85 .bar {
    transform: rotate(306deg);
    -webkit-transform: rotate(306deg);
    -moz-transform: rotate(306deg);
    -o-transform: rotate(306deg);
}

.skills.circles .progress.p86 .bar {
    transform: rotate(309.6deg);
    -webkit-transform: rotate(309.6deg);
    -moz-transform: rotate(309.6deg);
    -o-transform: rotate(309.6deg);
}

.skills.circles .progress.p87 .bar {
    transform: rotate(313.2deg);
    -webkit-transform: rotate(313.2deg);
    -moz-transform: rotate(313.2deg);
    -o-transform: rotate(313.2deg);
}

.skills.circles .progress.p88 .bar {
    transform: rotate(316.8deg);
    -webkit-transform: rotate(316.8deg);
    -moz-transform: rotate(316.8deg);
    -o-transform: rotate(316.8deg);
}

.skills.circles .progress.p89 .bar {
    transform: rotate(320.4deg);
    -webkit-transform: rotate(320.4deg);
    -moz-transform: rotate(320.4deg);
    -o-transform: rotate(320.4deg);
}

.skills.circles .progress.p90 .bar {
    transform: rotate(324deg);
    -webkit-transform: rotate(324deg);
    -moz-transform: rotate(324deg);
    -o-transform: rotate(324deg);
}

.skills.circles .progress.p91 .bar {
    transform: rotate(327.6deg);
    -webkit-transform: rotate(327.6deg);
    -moz-transform: rotate(327.6deg);
    -o-transform: rotate(327.6deg);
}

.skills.circles .progress.p92 .bar {
    transform: rotate(331.2deg);
    -webkit-transform: rotate(331.2deg);
    -moz-transform: rotate(331.2deg);
    -o-transform: rotate(331.2deg);
}

.skills.circles .progress.p93 .bar {
    transform: rotate(334.8deg);
    -webkit-transform: rotate(334.8deg);
    -moz-transform: rotate(334.8deg);
    -o-transform: rotate(334.8deg);
}

.skills.circles .progress.p94 .bar {
    transform: rotate(338.4deg);
    -webkit-transform: rotate(338.4deg);
    -moz-transform: rotate(338.4deg);
    -o-transform: rotate(338.4deg);
}

.skills.circles .progress.p95 .bar {
    transform: rotate(342deg);
    -webkit-transform: rotate(342deg);
    -moz-transform: rotate(342deg);
    -o-transform: rotate(342deg);
}

.skills.circles .progress.p96 .bar {
    transform: rotate(345.6deg);
    -webkit-transform: rotate(345.6deg);
    -moz-transform: rotate(345.6deg);
    -o-transform: rotate(345.6deg);
}

.skills.circles .progress.p97 .bar {
    transform: rotate(349.2deg);
    -webkit-transform: rotate(349.2deg);
    -moz-transform: rotate(349.2deg);
    -o-transform: rotate(349.2deg);
}

.skills.circles .progress.p98 .bar {
    transform: rotate(352.8deg);
    -webkit-transform: rotate(352.8deg);
    -moz-transform: rotate(352.8deg);
    -o-transform: rotate(352.8deg);
}

.skills.circles .progress.p99 .bar {
    transform: rotate(356.4deg);
    -webkit-transform: rotate(356.4deg);
    -moz-transform: rotate(356.4deg);
    -o-transform: rotate(356.4deg);
}

.skills.circles .progress.p100 .bar {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

@media (max-width: 720px) {
    .skills ul li {
        width: 100%;
    }
    .skills.dotted ul li {
        width: 100%;
    }
    .skills.circles ul li {
        width: 50%;
    }
    .skills.circles .progress {
        margin-left: 0;
        margin-right: 0;
    }
    .skills .name {
        margin-bottom: 20px;
    }
}

/* - Clients */
.clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 90px;
    font-size: 0;
    line-height: normal;
    opacity: 0.4;
    transition: opacity 1s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -moz-transition: opacity 1s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -webkit-transition: opacity 1s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -o-transition: opacity 1s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.clients-item a {
    text-decoration: none;
}

.clients-item img {
    max-width: 100%;
    max-height: 90px;
}

.clients-item:hover {
    opacity: 1;
}

/* - Service */
.service-items {
    margin: 0 -20px;
    margin-top: -60px;
    font-size: 0;
}

.service-items .service-col {
    margin-top: 60px;
    padding: 0 20px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.service-item .icon {
    margin-bottom: 15px;
    font-size: 32px;
    height: 32px;
    color: #68e0cf;
}

.service-item .name {
    margin: 0 0 30px 0;
    font-size: 18px;
    color: #FFF;
    font-weight: 800;
}

.service-item .single-post-text p {
    margin-bottom: 0;
}

@media (max-width: 720px) {
    .service-items {
        margin-top: -40px;
    }
    .service-items .service-col {
        margin-top: 40px;
        width: 100%;
    }
    .service-item .name {
        margin: 0 0 20px 0;
    }
}

/* - Portfolio */
.section.works .filters input {
    display: none;
}

.section.works .filters .btn-group {
    display: inline-block;
    vertical-align: top;
}

.section.works .filters label {
    display: inline-block;
    vertical-align: top;
    margin-right: 25px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-bottom: 0;
}

.section.works .filters label.glitch-effect {
    color: #68e0cf;
}

/* 9. Box Items */
.box-items {
    margin: 0 -20px;
    position: relative;
    overflow: hidden;
}

.box-items .box-col {
    padding: 40px 20px 0 20px;
    float: left;
    width: 50%;
}

.box-items .box-item {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.box-items .box-item:hover .image .info {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}

.box-items .box-item:hover .desc .name {
    color: #68e0cf;
}

.box-items .box-item .image {
    position: relative;
    line-height: normal;
}

.box-items .box-item .image a {
    display: block;
    font-size: 0;
}

.box-items .box-item .image a img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
}

.box-items .box-item .image .info {
    text-align: center;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    padding: 18px;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
}

.box-items .box-item .image .info .centrize {
    background: #68e0cf;
}

.box-items .box-item .image .info .icon {
    color: #FFF;
    font-size: 21px;
    display: inline-block;
    transition: all 0.1s ease-in 0.4s;
    -moz-transition: all 0.1s ease-in 0.4s;
    -webkit-transition: all 0.1s ease-in 0.4s;
    -o-transition: all 0.1s ease-in 0.4s;
    font-weight: normal;
}

.box-items .box-item .desc {
    position: relative;
    padding: 15px 20px 0 20px;
}

.box-items .box-item .desc .category {
    margin: 0;
    display: inline-block;
    font-size: 11px;
    color: #68e0cf;
    font-weight: 600;
    text-transform: uppercase;
}

.box-items .box-item .desc .name {
    height: 50px;
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.box-items .box-item .desc a {
    text-decoration: none;
}

@media (max-width: 720px) {
    .section.works .filters label {
        margin-right: 16px;
        margin-left: 0;
        margin-bottom: 8px;
    }
    .section.works .box-items {
        margin-top: -20px;
    }
    .box-items .box-col {
        padding: 40px 0 0 0;
        float: none;
        width: 100%;
    }
}

/* - Contacts */
.section.contacts .alert-success {
    display: none;
}

.section.contacts .alert-success p {
    font-size: 14px;
    color: #FFF;
}

.contact-form {
    padding-right: 40px;
    float: left;
    width: 50%;
}

.contact-form .group-val {
    position: relative;
    margin-bottom: 40px;
}

.contact-form .group-val p {
    margin: 0;
}

.contact-form .group-val .label {
    padding: 0 10px;
    position: absolute;
    right: 35px;
    top: -5px;
    font-size: 12px;
    line-height: 12px;
    color: #FFF;
    font-weight: 800;
    background: #373b40;
    text-transform: uppercase;
    z-index: 2;
}

.contact-form .group-val .label strong {
    color: #68e0cf;
    float: left;
    padding-right: 3px;
}

.contact-info {
    padding: 30px;
    float: right;
    width: 50%;
    min-height: 482px;
    border: 1px solid #585d65;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
}

.contact-info .name {
    margin: 0 0 5px 0;
    font-size: 24px;
    color: #FFF;
    font-weight: 800;
}

.contact-info .subname {
    font-size: 11px;
    color: #68e0cf;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-info .info-list {
    margin: 35px 0 50px 0;
}

.contact-info .info-list ul li {
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.contact-info .info-list ul li strong {
    margin-right: 8px;
    width: auto;
}

.contact-info .author {
    font-family: "Mr Dafoe";
    font-size: 32px;
    color: #FFF;
}

@media (max-width: 720px) {
    .contact-form {
        padding-right: 0;
        float: none;
        width: 100%;
    }
    .contact-form .btn {
        top: -20px;
        display: block;
        width: 100%;
    }
    .contact-info {
        margin-top: 40px;
        float: none;
        width: 100%;
    }
}

/* - Pricing */
.pricing-items {
    margin: 0 -20px;
    font-size: 0;
}

.pricing-items .pricing-col {
    padding: 0 20px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.pricing-item {
    position: relative;
    text-align: center;
}

.pricing-item .icons {
    font-size: 32px;
    height: 32px;
    color: #68e0cf;
}

.pricing-item .name {
    margin: 15px 0;
    font-size: 18px;
    color: #FFF;
    font-weight: 800;
}

.pricing-item .amount {
    margin: 30px 0;
}

.pricing-item .amount .number {
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 54px;
    line-height: 36px;
    font-weight: 800;
    color: #FFF;
}

.pricing-item .amount .number .dollar,
.pricing-item .amount .number .period {
    position: absolute;
    left: -15px;
    top: -5px;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}

.pricing-item .amount .number .period {
    right: auto;
    left: -55px;
    top: auto;
    bottom: -5px;
    width: 50px;
    text-align: left;
    white-space: nowrap;
}

.pricing-item .feature-list {
    margin-bottom: 30px;
}

.pricing-item .feature-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-item .feature-list ul li {
    margin: 10px 0;
    font-size: 14px;
}

.pricing-item .feature-list ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.pricing-item .feature-list ul li del {
    text-decoration: line-through;
    color: rgba(255,255,255,0.8);
}

.pricing-item .feature-list ul li strong {
    margin: 0 0 0 5px;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    color: #000;
    background: #68e0cf;
    font-weight: 400;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
}

/* - Testimonials */
.reviews-item {
    position: relative;
}

.reviews-item .image {
    float: right;
    margin-bottom: 15px;
    width: 70px;
    font-size: 0;
}

.reviews-item .image img {
    width: 100%;
    height: auto;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
}

.reviews-item .info {
    padding-top: 10px;
    margin-right: 90px;
    direction: rtl !important;
}

.reviews-item .name {
    font-size: 18px;
    color: #FFF;
    font-weight: 800;
}

.reviews-item .company {
    font-size: 12px;
    color: #68e0cf;
    font-weight: 600;
    text-transform: uppercase;
}

.reviews-item .text {
    position: relative;
    margin: 30px 0 0 0;
    padding: 0 0 0 40px;
    clear: both;
}

.reviews-item .text p {
    margin-bottom: 0;
}

.reviews-item .text:before {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 32px;
    color: #68e0cf;
    font-weight: 800;
}

@media (max-width: 720px) {
    .section.testimonials {
        text-align: center;
    }
    .reviews-item .image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .reviews-item .info {
        padding-top: 0;
        margin-left: 0;
    }
    .reviews-item .text {
        margin: 15px 0 0 0;
        padding: 15px 0 0 0;
    }
    .reviews-item .text:before {
        width: 100%;
    }
}

blockquote {
    margin: 25px 0;
    padding: 0 0 0 20px;
    font-size: 12px;
    line-height: 24px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    font-weight: 300;
    border-left: 2px solid #68e0cf;
}

blockquote code {
    padding: 2px;
    display: inline;
}

iframe, object {
    max-width: 100%;
}

/* - Footer */
.footer {
    padding: 0;
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 92px;
    height: 1px;
    z-index: 99;
}

.footer:before {
    content: '';
    position: absolute;
    bottom: -50vh;
    right: 0;
    width: 1px;
    height: 200vh;
/*     background: #585d65; */
	background: #2d4350;
}

.footer .socials {
    margin-left: -27px;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 54px;
}

.footer .socials a {
    position: relative;
    display: block;
    margin-bottom: 15px;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
    color: #FFF;
    text-align: center;
    background: #373b40;
    border: 1px solid #585d65;
    border-radius: 54px;
    -moz-border-radius: 54px;
    -webkit-border-radius: 54px;
    -khtml-border-radius: 54px;
    transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.footer .socials a:last-child {
    margin-bottom: 0;
}

.footer .socials a:hover {
    color: #68e0cf;
}

.page-template-template-blog .footer,
.single-post .footer,
.blog .footer,
.single .footer,
.error404 .footer,
.search .footer,
.archive .footer,
.page-template-default .footer {
    padding: 0;
    margin-bottom: 52px;
    margin-left: 92px;
    margin-right: calc(12% + 92px);
    position: relative;
    bottom: auto;
    left: auto;
    right: 0;
    width: auto;
    height: auto;
    z-index: 99;
}

.page-template-template-blog .footer:before,
.single-post .footer:before,
.blog .footer:before,
.single .footer:before,
.error404 .footer:before,
.search .footer:before,
.archive .footer:before,
.page-template-default .footer:before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #585d65;
}

.page-template-template-blog .footer .socials a,
.single-post .footer .socials a,
.blog .footer .socials a,
.single .footer .socials a,
.error404 .footer .socials a,
.search .footer .socials a,
.archive .footer .socials a,
.page-template-default .footer .socials a {
    margin-right: 0;
}

.page-template-template-blog .footer .footer-inner,
.single-post .footer .footer-inner,
.blog .footer .footer-inner,
.single .footer .footer-inner,
.error404 .footer .footer-inner,
.search .footer .footer-inner,
.archive .footer .footer-inner,
.page-template-default .footer .footer-inner {
    margin: 0 auto;
    max-width: 1200px;
}

.footer .footer-inner:after,
.footer-inner:after {
    content: '';
    position: relative;
    display: block;
    clear: both;
}

.page-template-template-blog .footer .socials,
.single-post .footer .socials,
.blog .footer .socials,
.single .footer .socials,
.error404 .footer .socials,
.search .footer .socials,
.archive .footer .socials,
.page-template-default .footer .socials {
    /* margin-left: 0; */
    position: relative;
    right: 0;
    bottom: 0;
    width: auto;
    float: left;
}

.page-template-template-blog .footer .socials a,
.single-post .footer .socials a,
.blog .footer .socials a,
.single .footer .socials a,
.error404 .footer .socials a,
.search .footer .socials a,
.archive .footer .socials a,
.page-template-default .footer .socials a {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px;
    width: 54px;
    height: 54px;
    background: #373b40;
    border: 1px solid #585d65;
}

/* section footer tablet */
@media (max-width: 992px) {
    .footer {
        margin: 0 0 50px 0;
        padding: 0;
        position: relative;
        bottom: auto;
        height: auto;
        width: 100%;
    }
    .footer:before {
        top: 50%;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 1px;
    }
    .footer .socials {
        margin-right: 0;
        position: relative;
        right: 0;
        width: 100%;
        text-align: center;
        font-size: 0;
    }
    .footer .socials a {
        display: inline-block;
        margin-left: 6px;
        margin-right: 6px;
        margin-bottom: 0;
        width: 54px;
    }
}

/* section footer mobile */
/* - Popups */
.popup-box {
    margin: 30px auto;
    width: 520px;
    background: #373b40;
    position: relative;
    padding: 0;
}

@media (max-width: 720px) {
    .popup-box {
        width: 440px;
    }
}

@media (max-width: 480px) {
    .popup-box {
        width: 320px;
    }
}

.popup-box .image {
    height: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.popup-box .image img {
    width: 100%;
    height: auto;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
}

.popup-box .desc {
    padding: 35px;
}

.popup-box .category {
    margin: 0 0 5px 0;
    display: block;
    font-size: 12px;
    color: #68e0cf;
}

.popup-box .desc h4 {
    margin: 0 0 15px 0;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-close-btn-in .mfp-close {
    top: 40px !important;
    right: 0 !important;
    padding-right: 0 !important;
    width: 54px !important;
    height: 54px !important;
    line-height: 54px !important;
    opacity: 1 !important;
    font-weight: 300;
    color: #FFF;
    font-size: 18px;
    text-align: center !important;
    font-family: 'Verdana' !important;
}

.mfp-close-btn-in .mfp-close {
    color: #FFF !important;
}

.mfp-close-btn-in .popup-box .mfp-close, .mfp-close-btn-in .mfp-iframe-holder .mfp-close {
    top: 0 !important;
}

/* -----------------------------------------------------------------
  - Blog
----------------------------------------------------------------- */

.page-template-template-blog .section,
.single-post .section,
.blog .section,
.single .section,
.error404 .section,
.search .section,
.archive .section,
.page-template-default .section {
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 auto;
    max-width: 1300px;
}

.page-template-template-blog .section.started,
.single-post .section.started,
.blog .section.started,
.single .section.started,
.error404 .section.started,
.search .section.started,
.archive .section.started,
.page-template-default .section.started {
    height: auto!important;
    border: none;
}

.page-template-template-blog .section.started .started-content,
.single-post .section.started .started-content,
.blog .section.started .started-content,
.single .section.started .started-content,
.error404 .section.started .started-content,
.search .section.started .started-content,
.archive .section.started .started-content,
.page-template-default .section.started .started-content {
    padding-left: 0;
    padding-top: 6.2rem;
    max-width: 100%;
}

.page-template-template-blog .section.started .h-title,
.single-post .section.started .h-title,
.blog .section.started .h-title,
.single .section.started .h-title,
.error404 .section.started .h-title,
.search .section.started .h-title,
.archive .section.started .h-title,
.page-template-default .section.started .h-title {
    margin: 0;
    padding: 4.2vw 0 0 0;
    text-align: center;
}

.page-template-template-blog .section.started .started-content .h-subtitles,
.single-post .section.started .started-content .h-subtitles,
.blog .section.started .started-content .h-subtitles,
.single .section.started .started-content .h-subtitles,
.error404 .section.started .started-content .h-subtitles,
.search .section.started .started-content .h-subtitles,
.archive .section.started .started-content .h-subtitles,
.page-template-default .section.started .started-content .h-subtitles {
    margin: 15px 0 0 0;
    height: auto;
    text-align: center;
}

.page-template-template-blog .section.started .started-content .h-subtitle p,
.single-post .section.started .started-content .h-subtitle p,
.blog .section.started .started-content .h-subtitle p,
.single .section.started .started-content .h-subtitle p,
.error404 .section.started .started-content .h-subtitle p,
.search .section.started .started-content .h-subtitle p,
.archive .section.started .started-content .h-subtitle p,
.page-template-default .section.started .started-content .h-subtitle p {
    margin: 0;
}

.page-template-template-blog .wrapper,
.single-post .wrapper,
.blog .wrapper,
.single .wrapper,
.error404 .wrapper,
.search .wrapper,
.archive .wrapper,
.page-template-default .wrapper {
    margin-right: calc(12% + 92px);
}

.page-template-template-blog .wrapper .container,
.single-post .wrapper .container,
.blog .wrapper .container,
.single .wrapper .container,
.error404 .wrapper .container,
.search .wrapper .container,
.archive .wrapper .container,
.page-template-default .wrapper .container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.page-template-template-blog .footer .text,
.single-post .footer .text,
.blog .footer .text,
.single .footer .text,
.error404 .footer .text,
.search .footer .text,
.archive .footer .text,
.page-template-default .footer .text {
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    float: right;
    display: block;
    height: 54px;
    line-height: 54px;
    background: #373b40;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.error404 .footer .text {
    display: none;
}

.section.blog .content {
    max-width: 100%;
}

.background-bg-inner.background-bg {
    width: 12%;
}

.background-bg-inner.background-filter .background-img {
    background-image: none !important;
}

.footer .text {
    display: none;
}

.post-details {
    color: #A1A1A1;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-details a {
    color: #fff;
    font-weight: bolder;
    transition: color 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}

.box-items .box-item .category,
.box-items .box-item .date {
    margin: 0;
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.box-items .box-item .date a {
    text-decoration: none;
}

.single-post-text .details-list li {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 13px;
    text-transform: uppercase;
}

.single-post-text .details-list li:before {
    display: none;
}

.single-post-text .details-list li strong {
    margin-bottom: 5px;
    display: block;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.single-post-text table {
    border: 1px solid #333;
}

.blog-items {
    float: left;
    width: 72%;
}

.no-sidebar .blog-items {
    float: none;
    width: auto;
}

.blog-items.cols {
    margin-left: -40px;
    margin-right: -40px;
    float: none;
    width: auto;
    font-size: 0;
}

.blog-items.cols .blog-col {
    padding: 0 40px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: 16px;
}

.blog-items.cols .blog-col .blog-item.content-box {
    padding: 0!important;
    border: none!important;
    background: none!important;
    text-align: center;
}

.blog-items.cols .blog-col .blog-item .image {
    margin-bottom: 30px;
    line-height: normal;
}

.blog-items.cols .blog-col .blog-item .image img {
    margin-bottom: 0;
}

.blog-items .blog-item {
    margin-bottom: 70px;
}

.blog-items .blog-item .image {
    position: relative;
    overflow: hidden;
}

.blog-items .blog-item .image a {
    display: block;
    font-size: 0;
    line-height: normal;
}

.blog-items .blog-item .image a img {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    position: relative;
    top: 0;
}

.blog-items .blog-item .desc {
    position: relative;
    display: block;
}

.blog-items .blog-item .desc .name {
    display: block;
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    word-wrap: break-word;
    transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
    -o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.blog-items .blog-item .desc .name:hover {
    color: #68e0cf;
}

.blog-items .blog-item .category-list,
.blog-items .blog-item .date {
    margin: 0 0 3px 0;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.blog-items .blog-item .category a,
.blog-items .blog-item .date a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.blog-items .blog-item .single-post-text {
    margin-top: 15px;
}

.blog-items .blog-item .single-post-text p {
    margin-top: 0;
    margin-bottom: 0;
}

.blog-items .blog-item .desc .btn {
    margin-top: 20px;
}

.section .blog-items.cols .pager, .blog-items.cols .page-links, .blog-items.cols .nav-links {
    margin-left: 40px;
    margin-right: 40px;
    font-size: 14px;
}

.admin-bar .header {
    top: 32px;
}

@media (max-width: 1280px) {
    .page-template-template-blog .wrapper, .single-post .wrapper, .blog .wrapper, .single .wrapper, .error404 .wrapper, .search .wrapper, .archive .wrapper, .page-template-default .wrapper {
        margin-left: 42px;
        margin-right: 42px;
    }
    .background-bg-inner.background-bg {
        display: none;
    }
    .page-template-template-blog .footer, .single-post .footer, .blog .footer, .single .footer, .error404 .footer, .search .footer, .archive .footer, .page-template-default .footer {
        margin-left: 92px;
    }
    .page-template-template-blog .footer .text, .single-post .footer .text, .blog .footer .text, .single .footer .text, .error404 .footer .text, .search .footer .text, .archive .footer .text, .page-template-default .footer .text {
        margin-left: 0;
        padding-left: 0;
    }
}

/* section portfolio tablet */

@media (max-width: 992px) {
    .blog-items {
        width: 68.5%;
    }
    .page-template-template-blog .wrapper,
    .single-post .wrapper,
    .blog .wrapper,
    .single .wrapper,
    .error404 .wrapper,
    .search .wrapper,
    .archive .wrapper,
    .page-template-default .wrapper {
        margin-left: 0;
        margin-right: 0;
    }
    .page-template-template-blog .section,
    .single-post .section,
    .blog .section,
    .single .section,
    .error404 .section,
    .search .section,
    .archive .section,
    .page-template-default .section {
    }
    .page-template-template-blog .section.started .started-content,
    .single-post .section.started .started-content,
    .blog .section.started .started-content,
    .single .section.started .started-content,
    .error404 .section.started .started-content,
    .search .section.started .started-content,
    .archive .section.started .started-content,
    .page-template-default .section.started .started-content {
        max-width: 100%;
    }
    .page-template-template-blog .section.started .h-title,
    .single-post .section.started .h-title,
    .blog .section.started .h-title,
    .single .section.started .h-title,
    .error404 .section.started .h-title,
    .search .section.started .h-title,
    .archive .section.started .h-title,
    .page-template-default .section.started .h-title {
        margin: 0;
        width: auto;
    }
    .page-template-template-blog .wrapper .container,
    .single-post .wrapper .container,
    .blog .wrapper .container,
    .single .wrapper .container,
    .error404 .wrapper .container,
    .search .wrapper .container,
    .archive .wrapper .container,
    .page-template-default .wrapper .container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-template-template-blog .footer,
    .single-post .footer,
    .blog .footer,
    .single .footer,
    .error404 .footer,
    .search .footer,
    .archive .footer,
    .page-template-default .footer {
        margin-right: 50px;
        margin-left: 50px;
    }
    .page-template-template-blog .footer:before,
    .single-post .footer:before,
    .blog .footer:before,
    .single .footer:before,
    .error404 .footer:before,
    .search .footer:before,
    .archive .footer:before,
    .page-template-default .footer:before {
        display: none;
    }
    .page-template-template-blog .footer .text,
    .single-post .footer .text,
    .blog .footer .text,
    .single .footer .text,
    .error404 .footer .text,
    .search .footer .text,
    .archive .footer .text,
    .page-template-default .footer .text {
        padding-right: 0;
        padding-bottom: 15px;
        float: none;
        height: auto;
        line-height: normal;
        text-align: center;
    }
    .page-template-template-blog .footer .socials,
    .single-post .footer .socials,
    .blog .footer .socials,
    .single .footer .socials,
    .error404 .footer .socials,
    .search .footer .socials,
    .archive .footer .socials,
    .page-template-default .footer .socials {
        float: none;
    }
    .page-template-template-blog .footer .socials a,
    .single-post .footer .socials a,
    .blog .footer .socials a,
    .single .footer .socials a,
    .error404 .footer .socials a,
    .search .footer .socials a,
    .archive .footer .socials a,
    .page-template-default .footer .socials a {
        margin-right: 5px;
        margin-left: 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .section.blog .content {
        max-width: 100%;
    }
    .background-bg-inner.background-bg {
        display: none;
    }
    .background-bg-inner.background-filter .background-img {
        background-image: none !important;
    }
}

/* section portfolio mobile */

@media (max-width: 720px) {
    .box-items {
        margin-left: 0;
        margin-right: 0;
    }
    .box-items .box-item {
        padding-left: 0;
        padding-right: 0;
        float: none;
        width: 100%;
    }
    .box-items .box-item:last-child {
        padding-bottom: 0;
    }
    .blog-items {
        float: none;
        width: 100%;
    }
    .blog-items.cols .blog-col {
        width: 100%;
    }
    .page-template-template-blog .section,
    .single-post .section,
    .blog .section,
    .single .section,
    .error404 .section,
    .search .section,
    .archive .section,
    .page-template-default .section {
        padding-left: 30px;
        padding-right: 30px;
    }
    .admin-bar .header {
        top: 46px;
    }
    .admin-bar .header.fixed {
        top: 0;
    }
    .blog-items.cols .blog-col .blog-item .image {
        margin-bottom: 20px;
    }
    .section .blog-items.cols .pager, .blog-items.cols .page-links, .blog-items.cols .nav-links {
        margin-bottom: 20px;
    }
}

/* - Blog */

.started-content .date {
    margin: 0 0 10px;
    display: inline-block;
    padding: 0 5px;
    height: 20px;
    line-height: 18px;
    font-weight: 500;
    font-size: 11px;
    color: #68e0cf;
    border: 1px solid #68e0cf;
}

.single-post-text,
.comment-text {
    word-wrap: break-word;
}

.comment-text {
    display: flex;
    flex-direction: column;
}

.single-post-text > *:first-child,
.comment-text > *:first-child {
    margin-top: 0;
}

.single-post-text > *:last-child,
.comment-text > *:last-child {
    margin-bottom: 0;
}

.single-post-text:after {
    content: '';
    position: relative;
    clear: both;
    display: block;
}

.single-post-text .content-box *,
.comment-text .content-box * {
    margin-top: 0;
}

.single-post-text img,
.comment-text img {
    max-width: 100%;
    height: auto;
}

.single-post-text p a,
.comment-text p a {
    color: #68e0cf;
}

.single-post-text p a:hover,
.comment-text p a:hover {
    text-decoration: underline;
}

blockquote {
    margin: 25px 0;
    padding: 0 0 0 20px;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    font-weight: 400;
    border-left: 2px solid #68e0cf;
}

blockquote code {
    padding: 2px;
    display: inline;
}

iframe,
object {
    max-width: 100%;
}

.single-post-text ul,
.comment-text ul {
    list-style: none;
}

.single-post-text ol,
.comment-text ol {
    list-style-position: inside;
}

.single-post-text ul>li,
.single-post-text ol>li,
.comment-text ul>li,
.comment-text ol>li {
    margin: 5px 0;
    padding: 0 0 0 14px;
    position: relative;
    font-weight: 400;
}

.single-post-text ol>li,
.comment-text ol>li {
    margin: 5px 0;
    padding: 0;
    position: relative;
    font-size: 14px;
    font-weight: 400;
}

.single-post-text ul>li:before,
.comment-text ul>li:before {
    margin: 0;
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    background: #68e0cf;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    padding: 0;
}

.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
    display: none;
}

.single-post-text figure,
.comment-text figure {
    margin: 0 0 20px 0;
    max-width: 100%;
    overflow: auto;
}

.single-post-text figure .wp-caption-text,
.comment-text figure .wp-caption-text,
.gallery-caption,
.bypostauthor {
    font-style: italic;
}

.gallery {
    margin: 30px -10px;
}

.single-post-text .gallery {
    margin-bottom: 0;
}

.gallery .gallery-item {
    margin: 0;
    padding: 10px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}

.gallery .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-1 .gallery-item {
    width: 100%;
}

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

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

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

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

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

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

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

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

.post-comments {
    margin-top: 60px;
}

.post-comments .comments,
.post-comments .children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-comments .post-comment {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.post-comments .post-comment:first-child {
    padding-top: 0;
    border-top: none;
}

.post-comments .post-comment .image {
    float: left;
    width: 80px;
    height: 80px;
}

.post-comments .post-comment .image img {
    width: 100%;
    height: 100%;
}

.post-comments .post-comment .desc {
    margin-left: 100px;
    position: relative;
}

.post-comments .post-comment .desc .name {
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
}

.post-comments .post-comment .desc p:first-child {
    margin-top: 0;
}

.post-comments .post-comment .desc p:last-child {
    margin-top: 0;
}

.post-comment.trackback .image,
.post-comment.pingback .image {
    display: none!important;
}

.post-comment.trackback .desc,
.post-comment.pingback .desc {
    margin-left: 0!important;
}

.post-text-bottom {
    margin: 35px 0 0 0;
}

.post-text-bottom .share-btn {
    position: relative;
    display: inline-block;
    top: 1px;
    margin-left: 7px;
    margin-right: 7px;
    font-size: 16px;
}

.social-share a {
    margin-right: 15px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    color: #bbb;
    transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
    -o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.social-share a:last-child {
    margin-right: 0;
}

.social-share a .icon {
    font-size: 16px;
    color: #bbb;
}

.social-share a:hover {
    color: #FFF;
    opacity: 1;
}

.social-share a:hover .icon {
    color: #FFF;
}

.post-text-bottom span.cat-links a {
    color: #68e0cf;
}

.post-text-bottom span.cat-links a:hover {
    text-decoration: none;
}

.post-text-bottom .tags-links {
    margin: 15px 0;
    display: block;
    line-height: 22px;
}

.post-text-bottom .tags-links *:nth-child(1) {
    margin-left: 5px;
}

.post-text-bottom .tags-links a,
.post-text-bottom .tags-links span,
.content-sidebar .tagcloud a,
.wp-block-tag-cloud .tag-cloud-link {
    margin: 0 10px 8px 0;
    display: inline-block;
    vertical-align: top;
    padding: 0 7px;
    height: 22px;
    line-height: 19px;
    font-weight: 500;
    font-size: 14px!important;
    color: #68e0cf;
    text-decoration: none;
    border: 1px solid #68e0cf;
}

.content-sidebar .tagcloud a {
    margin: 0 5px 5px 0;
    font-size: 14px!important;
}

.post-comments ul.children {
    padding: 20px 20px 0 100px;
    border-top: none;
}

.post-comments ul.children ul.children {
    padding: 20px 0 0 40px;
    border-top: none;
}

.comment-info {
    padding: 15px 0 0 0;
}

.comment-info span.comment-time {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.comment-info span.comment-date {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.comment-info span.comment-reply {
    position: absolute;
    top: 0;
    right: 0;
}

a.comment-reply-link {
    font-size: 14px;
    text-decoration: none;
}

.comment-reply-link:after {
    content: '';
    margin-left: 8px;
    content: '\f112';
    display: inline-block;
    vertical-align: middle;
    font-family: 'FontAwesome';
    font-size: 12px;
    line-height: 14px;
    opacity: 0.8;
}

.form-comment {
    margin-top: 70px;
}

.form-comment .group-val,
.comment-form .group-val {
    margin-bottom: 20px;
}

.form-comment .comment-respond {
    margin-top: 0;
}

.comment-respond {
    position: relative;
    margin-top: 40px;
    margin-bottom: 25px;
}

.comment-respond .title_inner small {
    position: absolute;
    top: 10px;
    left: auto;
    right: 0;
    display: block;
    font-size: 14px;
    white-space: nowrap;
}

.comment-respond .title_inner small a {
    text-decoration: none;
    opacity: 0.8;
}

.comment-respond .title_inner small a:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .comment-respond .title_inner small {
        position: relative;
        top: 0;
        left: 0;
    }
    .section .content .description-col .details-list li {
        width: 100%;
    }
}

.section.blog {
    padding-top: 0;
    border: none;
    text-align: inherit;
}

.section .pager,
.page-links,
.nav-links {
    position: relative;
    clear: both;
    padding: 0;
    text-align: center;
}

.section.works .pager {
    padding-bottom: 70px;
}

.nav-links {
    margin-top: 70px;
    min-height: 50px;
}

.page-links {
    margin-top: 30px;
    min-height: 50px;
}

.page-numbers,
.nav-links a,
.page-links a,
.page-links span {
    margin: 0 2px;
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 48px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #585d65;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.page-links a,
.page-links span {
    margin: 0 5px;
}

.page-numbers.dots,
.nav-links a.dots,
.page-links a.dots {
    border-color: transparent;
}

.page-links .current {
    border-color: #68e0cf;
}

form.post-password-form label input {
    margin-top: 10px;
}

span.post-page-numbers {
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

.page-numbers.current,
.page-links a.current {
    opacity: 0.8;
    border: none;
}

.page-numbers.prev,
.nav-links .nav-previous {
    position: absolute;
    top: 0;
    left: -2px;
    width: auto;
    border: none;
}

.page-numbers.prev .post-nav-text,
.nav-links .nav-previous .post-nav-text {
    position: absolute;
    left: 70px;
}

.page-numbers.next .post-nav-text,
.nav-links .nav-next .post-nav-text {
    position: absolute;
    left: auto;
    right: 70px;
}

.page-numbers.next,
.nav-links .nav-next {
    position: absolute;
    top: 0;
    right: -2px;
    width: auto;
    border: none;
}

.page-numbers.prev:before,
.page-numbers.next:after,
.nav-links .nav-previous a:before,
.nav-links .nav-next a:after {
    content: '\f177';
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 14px;
}

.page-numbers.prev:before,
.nav-links .nav-previous a:before {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

@media (max-width: 1160px) {
    .post-comments .post-comment .image {
        width: 60px;
        height: 60px;
    }
    .post-comments .post-comment .desc {
        margin-left: 80px;
    }
    .post-comments .post-comment.pingback .desc {
        margin-left: 0;
    }
    .post-comments ul.children {
        padding: 20px 20px 0 80px;
    }
    .post-comments ul.children ul.children {
        padding: 20px 0 0 20px;
    }
    .post-comments ul.children ul.children ul.children ul.children {
        padding: 20px 0 0 10px;
    }
}

@media (max-width: 840px) {
    .post-comments ul.children {
        padding: 20px 20px 0 20px;
    }
    .post-comments ul.children ul.children {
        padding: 20px 0 0 20px;
    }
    .post-comments ul.children ul.children ul.children {
        padding: 20px 0 0 20px;
    }
    .post-comments ul.children ul.children ul.children ul.children {
        padding: 20px 0 0 10px;
    }
}

@media (max-width: 480px) {
    .section .content .comment-respond .title.comment-reply-title {
        text-align: left;
    }
    .post-comments ul.children {
        padding: 15px 15px 15px 15px;
    }
    .post-comments ul.children ul.children {
        padding: 15px 0 0 10px;
    }
    .post-comments ul.children ul.children ul.children {
        padding: 15px 0 0 5px;
    }
    .post-comments ul.children ul.children ul.children ul.children {
        padding: 15px 0 0 5px;
    }
    .post-comments .post-comment .image {
        width: 40px;
        height: 40px;
    }
    .post-comments .post-comment .desc {
        margin-left: 55px;
    }
    .post-comments .post-comment.pingback .desc {
        margin-left: 0;
    }
    .gallery .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-1 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-2 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-3 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-4 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-5 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-6 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-7 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-8 .gallery-item {
        width: 100%;
    }
    .gallery.gallery-columns-9 .gallery-item {
        width: 100%;
    }
}

/* Sidebar */

.content-sidebar {
    padding: 0 0 0 50px;
    position: relative;
    float: right;
    width: 28%;
}

.content-sidebar .widget {
    margin-bottom: 50px;
}

.content-sidebar .search-form {
    position: relative;
}

.content-sidebar .search-form label {
    display: block;
}

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    -webkit-clip: rect(1px,1px,1px,1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.comment-form-cookies-consent label {display: inline;}

.content-sidebar .search-form input[type=text],
.content-sidebar .search-form input[type=email],
.content-sidebar .search-form input[type=password],
.content-sidebar .search-form input[type=datetime],
.content-sidebar .search-form input[type=date],
.content-sidebar .search-form input[type=month],
.content-sidebar .search-form input[type=time],
.content-sidebar .search-form input[type=week],
.content-sidebar .search-form input[type=search],
.content-sidebar .search-form textarea,
.content-sidebar .search-form textarea.form-control {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    border: none;
    background: 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0!important;
    -webkit-border-radius: 0!important;
}

.content-sidebar .search-form .btn_search,
.search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -20px;
    margin-bottom: 0;
    background-color: transparent;
    border: 0;
    z-index: 2;
}

.search-submit {
    padding: 0;
    width: 14px;
    height: 31px;
    background: url(assets/images/search.svg) no-repeat center center !important;
    background-size: contain !important;
    font-size: 0;
    opacity: .7;
    filter: brightness(0) invert(1);
}

.content-sidebar .widget-title {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    font-size: 20px;
    line-height: normal;
    color: #fff;
}

.content-sidebar .widget-title:before {
    content: '';
    background: rgba(255, 255, 255, 0.07);
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
}

.content-sidebar ul {
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style: none;
}

.content-sidebar ul ul {
    margin-left: 0;
}

.content-sidebar ul li {
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
}

.wp-block-categories-list li ul,
.wp-block-archives-list li ul {
    margin-left: 0;
}

.wp-block-categories-list li,
.wp-block-archives-list li,
.widget.widget_nav_menu ul li,
.widget.widget_pages ul li,
.widget_categories ul li {
    margin-bottom: 10px;
    padding-left: 9px;
    position: relative;
    font-size: 14px;
}

.wp-block-categories-list li ul li:before,
.wp-block-archives-list li ul li:before,
.widget.widget_nav_menu ul li ul li:before,
.widget.widget_pages ul li ul li:before,
.widget_categories ul li ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 1px;
    background: #999;
    opacity: 0.8;
}

a.rsswidget {
    margin-right: 3px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.rss-date, .widget_rss cite {
    margin: 5px 0 10px 0;
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.widget_rss cite {
    margin: 5px 0 20px 0;
    font-style: normal;
}

.post-edit-link {
    text-decoration: underline;
}

.post-edit-link:hover {
    text-decoration: none;
}

.edit-link {
    margin-top: 30px;
    display: block;
}

.sticky {
    position: relative;
}

.sticky:before {
    content: '';
    position: absolute;
    left: -36px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #68e0cf;
}

.title.comment-reply-title, .post-comments .title {
    margin: 40px 0 30px 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.pager .page-numbers.previus,
.pager .page-numbers.prev {
    position: relative;
    margin-left: 20px;
}

.pager .page-numbers.previus:before,
.pager .page-numbers.prev:before {
    margin-left: 10px;
}

.pager .page-numbers.next {
    position: relative;
    margin-right: 20px;
}

.pager .page-numbers.next:after {
    margin-right: 10px;
}

.wp-block-cover, .wp-block-cover-image {
    margin: 30px 0;
}

.wp-block-cover.alignleft,
.wp-block-cover-image.alignleft,
.wp-block-cover.alignright,
.wp-block-cover-image.alignright {
    margin-bottom: 30px!important;
}

.wp-block-cover p a, .wp-block-cover-image p a {
    color: #fff;
    text-decoration: none;
}

.wp-block-cover p a:hover, .wp-block-cover-image p a:hover {
    text-decoration: underline;
}

blockquote p {
    font-style: normal;
}

blockquote p {
    font-size: 16px;
    font-weight: 600;
}

blockquote p:first-child {
    margin-top: 0;
}

blockquote cite {
    color: #fff;
    font-size: 13px;
    font-style: normal;
}

blockquote cite:before {
    margin-right: 5px;
    content: '-';
}

blockquote cite br {
    display: none;
}

blockquote.has-text-align-right {
    padding-left: 0;
    padding-right: 20px;
    border-left: none;
    border-right: 2px solid #68e0cf;
}

blockquote.has-text-align-right cite:before {
    display: none;
}

blockquote.has-text-align-right cite:after {
    margin-left: 5px;
    content: '-';
}

.wp-block-pullquote {
    padding-top: 0;
    padding-bottom: 0;
}

.wp-block-pullquote blockquote {
    padding-bottom: 30px;
    border-left: none;
    border-bottom: 2px solid #68e0cf;
}

.wp-block-pullquote.is-style-solid-color {
    color: #fff;
    background-color: #68e0cf;
    border: none;
}

.wp-block-pullquote.is-style-solid-color p {
    color: #fff;
}

.wp-block-pullquote.is-style-solid-color blockquote {
    border: none;
    color: #fff;
}

.wp-block-calendar, .wp-block-archives, .wp-block-categories {
    max-width: 480px;
}

.wp-block-search .wp-block-search__label {
    display: none;
}

.wp-block-group.has-background {
    padding: 20px;
    color: #101010;
}

.wp-block-group.has-background p:first-child {
    margin-top: 0;
}

.wp-block-group.has-background p:last-child {
    margin-bottom: 0;
}

.wp-block-media-text.has-background {
    color: #101010;
}

.wp-block-media-text.has-background .has-large-font-size {
    line-height: 1.4;
}

hr.wp-block-separator {
    margin: 30px 0;
    border: none;
    border-bottom: 1px solid #585d65;
    max-width: 50px;
}

hr.wp-block-separator.is-style-wide {
    max-width: 100%;
}

.wp-block-separator.is-style-dots:before {
    color: #ccc;
}

.single-post-text h1, .single-post-text h2, .single-post-text h3, .single-post-text h4, .single-post-text h5, .single-post-text h6 {
    line-height: 1.4;
}

.single-post-text table tbody th {
    background: transparent;
}

.single-post-text {
    line-height: 1.8;
}

/* section portfolio tablet */

@media (max-width: 992px) {
    .content-sidebar {
        padding: 0 35px;
        width: 31.5%;
    }
    .sticky:before {
        left: -20px;
        top: 0;
        bottom: 0;
    }
}

/* section portfolio mobile */

@media (max-width: 720px) {
    .content-sidebar {
        margin-top: 70px;
        padding: 0;
        float: none;
        width: 100%;
    }
    .page-numbers.next, .nav-links .nav-next {
        right: -5px;
    }
    .page-numbers.prev, .nav-links .nav-previous {
        left: -5px;
    }
    .content-sidebar .widget-title:before {
        left: 50%;
        width: 40px;
        margin-left: -20px;
    }
}

.fa-images:before {
    content: "\f009";
}

.fa-video:before {
    content: "\f03d";
}

/* -----------------------------------------------------------------
  - 404
----------------------------------------------------------------- */

.parallax-container {
    overflow: hidden;
}

.error-page {
    height: calc(100vh - 82px);
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.error-page .description {
    margin-bottom: 0;
}

.mask-object {
    filter: drop-shadow(0 20px 30px rgba(25, 25, 27, 0.1));
    margin-bottom: 2rem;
    width: 30vw;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}

.error-page__num {
    color: #68e0cf;
    font-size: 20vw;
    display: block;
    height: auto;
    line-height: 20vw;
    font-weight: 900;
}

@media only screen and (max-width: 992px) {
    .mask-object {
        width: 50vw;
    }
}

@media only screen and (max-width: 580px) {
    .mask-object {
        width: 80vw;
    }
}

section.elementor-element:last-child .section {
    border-bottom: none;
}

/* -----------------------------------------------------------------
  - Elementor responsive
----------------------------------------------------------------- */

@media (max-width: 768px) {
    .elementor-element.elementor-widget-myour-gallery-image > .elementor-widget-container,
    .elementor-element.elementor-widget-myour-gallery-image > .elementor-widget-container,
    .elementor-element.elementor-widget-myour-team {
        margin: 0 auto!important;
        padding: 0 15px!important;
        max-width: 720px!important;
    }
    .elementor-widget-wrap .elementor-element.elementor-widget__width-auto,
    .elementor-widget-wrap .elementor-element.elementor-widget__width-initial {
        width: 100%!important;
        max-width: 100%!important;
    }
    .elementor-column.elementor-col-33, .elementor-column[data-col="33"] {
        width: 100%!important;
    }
    .elementor-column.elementor-col-25, .elementor-column[data-col="25"] {
        width: 25%!important;
    }
}

@media (max-width: 580px) {
    .elementor-column.elementor-col-25, .elementor-column[data-col="25"] {
        width: 50%!important;
    }
}



/*#######################*/
@media (max-width: 1280px) {
    .wrapper {
        margin-left: 0 !important;
        right: 0 !important;
    }
}
.owl-item{
    margin-left: 40px;
    margin-right: 0 !important;
}
.owl-carousel .owl-stage-outer{
    float: left;
}
.reviews-item .text::before {
    content: "" !important;
}
.animated-button span{
    transition:0.4s;
}
.animated-button span:hover{
    color: #68e0cf;
}
.resume-item .single-post-text , .owl-carousel.owl-drag .owl-item{
    margin-left: 30px !important;
    margin-right: 10px !important;
}
.fa-chevron-left:before{
    content: "\f053" !important;
}
.group-bts {
    float: right;
}



@media (max-width: 700px) {
    .content-carousel .navs:before , .content-carousel .navs .prev, .content-carousel .navs .next {
        display:none;
    }
    .reviews-item .info{
        margin-right:0;
    }
    .footer .socials{
        left: 50%;
        margin-right: -27px;
    }
    .contact-form .btn{
        margin-bottom: 50px;
        
    }
    .contact-info{
        clear: both;
    }
}


/*#######################################################################*/

i.icon.fas.fa-chevron-right:before {
    content: "\f053";
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    display: inline-block;
    direction: rtl;
    float: right;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output{
    display: inline-block;
    border-color: #ffb900;
    float: right;
	direction: rtl;
}
.fa:before {
    font-size: 30px !important;
}
textarea, input {
	direction:rtl;
}
.group-bts a.btn .icon, .group-bts .btn .icon {
    margin-right: 10px !important;
    margin-left: 0 !important;
}
.header .top-menu ul li.menu-item-has-children > a:after {
    margin-left: 0 !important;
    margin-right: 5px !important;
    position: absolute !important;
    top: 15px !important;
}
.header .top-menu ul li:first-child{
    margin-right: 25px !important;
}