@import url('../fonts/stylesheet.css');

body,
html {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Praktika Rounded Regular';
}

* {
    outline: none;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

video {
    display: block;
    width: 100%;
    height: auto;
}

input[type="submit"],
input[type="text"],
input[type="email"],
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

::-moz-selection { /* Code for Firefox */
    color: var(--black);
    background: var(--gray-high);
}
::selection {
    color: var(--black);
    background: var(--gray-high);
}

/* global variables */
:root {
    --white: #ffffff;
    --black: #0E0E0E;
    --gray-high: #c4c4c4;
    --gray-medium: #e0e0e0;
    --black-medium: #636363;
}

/* row */
.row {
    display: block;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}
.row .inner {
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
}

/* cf7 */
.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    line-height: 35px;
    border: none;
    background-color: rgb(247, 57, 57);
    color: var(--white);
    z-index: 1;
}
.wpcf7-response-output {
    display: none;
}

/* topbar */
.topbar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    display: block;
    width: 100%;
    font-size: 0;
    background-color: var(--black);
    padding: 10px 0;
    z-index: 9;
}
.topbar .col {
    display: inline-block;
    vertical-align: middle;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.topbar .col.logo {
    width: 285px;
}
.topbar .col.menu {
    width: calc(88% - 285px);
}
.topbar .col.networks {
    width: calc(12%);
}
.topbar .col.menu,
.topbar .col.networks {
    text-align: right;
}
.topbar .col.menu ul,
.topbar .col.networks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.topbar .col.menu ul li,
.topbar .col.networks ul li {
    display: inline-block;
    vertical-align: middle;
}
.topbar .col.menu ul li {
    margin: 0 10px;
}
.topbar .col.menu ul li a {
    font-family: 'Praktika Rounded Medium';
    text-transform: uppercase;
    color: var(--white);
    font-size: 0.875em;
}
.topbar .col.networks ul li {
    margin-left: 20px;
}
.topbar .col.networks ul li a {
    display: block;
    width: 20px;
    height: auto;
}
.topbar .col.networks ul li a img {
    display: block;
    width: 100%;
    height: auto;
}
.topbar .menu-toggle {
    display: none;
    vertical-align: middle;
    font-size: initial;
    width: calc(100% - 285px);
    text-align: right;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.topbar .menu-toggle a {
    display: block;
    color: var(--white);
    font-size: 2em;
    line-height: 0;
}

/* menu-sidebar */
.menu-sidebar {
    position: fixed;
    right: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    background-color: #CE3D3D;
    z-index: 9999999;
    padding: 30px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;

    visibility: hidden;
    opacity: 0;

    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.menu-sidebar a.close {
    position: relative;
    color: var(--white);
    margin-bottom: 40px;
    right: -200px;
    font-size: 2em;
}
.menu-sidebar ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.menu-sidebar ul.nav li {
    display: block;
}
.menu-sidebar ul.nav li a {
    font-family: 'Praktika Rounded Medium';
    display: block;
    color: var(--white);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.menu-sidebar ul.networks {
    margin-top: 80px;
}
.menu-sidebar ul.networks li {
    display: inline-block;
    width: 30px;
    vertical-align: middle;
    margin-right: 15px;
}
.menu-sidebar ul.networks li:last-child {
    margin-right: 0;
}
.menu-sidebar ul.networks li a img {
    display: block;
    width: 100%;
    height: auto;
}

/* hero-banner */
.hero-banner {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
}
.hero-banner .bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}
.hero-banner .bg.mobile {
    display: none;
}
.hero-banner .container {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    max-width: 1170px;
    z-index: 2;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.hero-banner .container .body {
    width: 100%;
    max-width: 490px;
}
.hero-banner .container .title h1 {
    font-size: 4.25em;
    line-height: 59px;
    color: var(--white);
    font-weight: 400;
}
.hero-banner .container .title h1 strong {
    font-family: 'Praktika Rounded Bold';
    letter-spacing: -0.05em;
}
.hero-banner .container .desc {
    margin: 60px 0 60px 0;
}
.hero-banner .container .desc p {
    margin: 0;
    font-size: 1em;
    line-height: 20px;
    color: #858585;
}
.hero-banner .form span.wpcf7-form-control-wrap,
.hero-banner .form input[type="submit"] {
    display: inline-block;
    vertical-align: middle;
}
.hero-banner .form input[type="submit"],
.hero-banner .form input[type="email"] {
    font-size: 1em;
    border-radius: 5px;
    height: 50px;
    color: var(--white);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.hero-banner .form input[type="email"] {
    width: 235px;
    border: solid 1px var(--white);
    font-size: 1em;
    background-color: transparent;
    padding: 10px;
}
.hero-banner .form input[type="submit"] {
    font-family: 'Praktika Rounded Bold';
    padding: 8px 20px;
    outline: none;
    background: #C54949;
    border: none;
    cursor: pointer;
    margin-left: 20px;
}
.hero-banner .form ::-webkit-input-placeholder { /* Edge */
    color: var(--white);
    opacity: 1;
}
.hero-banner .form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--white);
    opacity: 1;
}
.hero-banner .form ::placeholder {
    color: var(--white);
    opacity: 1;
}
.hero-banner .wpcf7-not-valid-tip {
    border-radius: 5px;
    line-height: 45px;
}

/* btn */
.btn {
    font-family: 'Praktika Rounded Bold';
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn.red {
    background: linear-gradient(135deg, #C54949, #A83737, #D84B4B);
    color: #fff;
}
.btn.red:hover {
    background: linear-gradient(135deg, #A83737, #C54949, #D84B4B);
}

/* title-section */
.title-section {
    display: block;
    text-align: center;
    padding: 0 30px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.title-section h2 {
    position: relative;
    font-size: 2.3125em;
    line-height: 37px;
    color: var(--white);
    font-weight: normal;
}
.title-section h2::after {
    position: absolute;
    content: '';
    width: 10%;
    height: 5px;
    background-color: #F73939;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.title-section.medium h2 {
    font-size: 1.75em;
}
.title-section.medium h2::after {
    display: none;
}

/* section-cases */
.section-cases {
    display: block;
    background: linear-gradient(126.3deg, #2C3147 12.52%, #030612 88.14%);
    padding: 80px 0 350px 0;
}
.section-cases .boxes {
    display: block;
    width: 100%;
    font-size: 0;
    margin-top: 80px;
}
.section-cases .boxes .col {
    display: inline-block;
    vertical-align: middle;
    width: 33.33333333%;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-cases .boxes .col .box {
    border: solid 1px #F73939;
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.25);
    background: rgba(51, 51, 51, 0.2);
    border-radius: 10px;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-cases .boxes .col .box .icon {
    display: block;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    margin: 0 auto 40px auto;
    background: #2C3147;
    border: 4px solid #4A4E64;
    padding: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-cases .boxes .col .box .icon img {
    display: block;
    width: 100%;
    height: 55px;
}
.section-cases .boxes .col .box h3 {
    font-family: 'Praktika Rounded Bold';
    font-size: 1.25em;
    color: var(--white);
    padding-bottom: 15px;
    border-bottom: solid 2px #92949c;
    margin-bottom: 40px;
}
.section-cases .boxes .col .box h3.mb-20 {
    margin-bottom: 20px;
}
.section-cases .boxes .col .box p {
    display: block;
    font-family: 'Praktika Rounded Medium';
    font-size: 1em;
    margin: 0 0 25px 0;
    color: #898989;
}
.section-cases .boxes .col .box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.section-cases .boxes .col .box ul li {
    font-family: 'Praktika Rounded Medium';
    display: block;
    width: 100%;
    margin-top: 15px;
}
.section-cases .boxes .col .box ul li:first-child {
    margin-top: 0;
}
.section-cases .boxes .col .box ul li span.tag,
.section-cases .boxes .col .box ul li a.cta {
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-cases .boxes .col .box ul li span.tag {
    display: block;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}
.section-cases .boxes .col .box ul li a.cta {
    display: block;
    background: rgba(44, 49, 71, 0.35);
    color: #898989;
    border-radius: 10px;
    transition: ease all .3s;
    -webkit-transition: ease all .3s;
}
.section-cases .boxes .col .box ul li a.cta:hover,
.section-cases .boxes .col .box ul li a.cta:focus {
    background: #2C3147;
    color: var(--white);
}
.section-cases .actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* section-skills */
.section-skills {
    position: relative;
    display: block;
    width: 100%;
    padding: 80px 0;
    margin-top: -280px;
}
.section-skills::before {
    position: absolute;
    content: '';
    top: 0;
    max-width: 1170px;
    left: 30px;
    right: 30px;
    height: 2px;
    margin: auto;
    background-color: rgba(196, 196, 196, 0.4);
}
.section-skills .boxes {
    display: block;
    width: 100%;
    font-size: 0;
    margin-top: 60px;
}
.section-skills .boxes .col {
    display: inline-block;
    font-size: initial;
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-skills .boxes .col .box {
    position: relative;
    display: block;
    width: 100%;
    height: 310px;
    box-shadow: 5px 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;

    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.section-skills .boxes .col .box:hover {
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.25);
}
.section-skills .boxes .col .box a::before,
.section-skills .boxes .col .box .bg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.section-skills .boxes .col .box a::before {
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 2;
}
.section-skills .boxes .col .box .bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;

    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.section-skills .boxes .col .box:hover .bg {
    transform: scale(1.030);
}
.section-skills .boxes .col .box .info {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    text-align: center;
    z-index: 3;

    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.section-skills .boxes .col .box .info img,
.section-skills .boxes .col .box .info h3 {
    display: inline-block;
    vertical-align: middle;
}
.section-skills .boxes .col .box .info h3 {
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Praktika Rounded MediumCnd';
    font-size: 4em;
    font-weight: 500;
    margin-left: 20px;
    line-height: 60px;
}
.section-skills .actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* section-testimonials */
.section-testimonials {
    display: block;
    width: 100%;
    background: #DFDFDF;
    padding: 80px 0;
}
.section-testimonials .slick-list {
    padding-top: 25px;
}
.section-testimonials .title-section h2 {
    color: #333333;
    font-family: 'Praktika Rounded Bold';
    text-transform: uppercase;
    font-size: 1.4375em;
}
.section-testimonials .boxes {
    display: block;
    width: 100%;
    font-size: 0;
    margin-top: 60px;
}
.section-testimonials .boxes .col {
    display: inline-block;
    vertical-align: middle;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-testimonials .boxes .col .box {
    background: #FFFFFF;
    box-shadow: 1px 2px 15px rgba(37, 37, 37, 0.1);
    border-radius: 5px;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-testimonials .boxes .col .box .avatar {
    position: relative;
    display: block;
    width: 82px;
    height: 82px;
    margin: -70px auto 10px auto;
    border-radius: 50%;
    overflow: hidden;
    background: #333333;
    border: 4px solid #FFFFFF;
    box-sizing: border-box;
    z-index: 2;
}
.section-testimonials .boxes .col .box .avatar img {
    display: block;
    width: 100%;
    height: auto;
}
.section-testimonials .boxes .col .box span.name {
    font-family: 'Praktika Rounded Bold';
    color: #F73939;
    display: block;
    font-size: 1.25em;
}
.section-testimonials .boxes .col .box small.role {
    display: block;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9e8e8;
}
.section-testimonials .boxes .col .box p {
    font-family: 'Praktika Rounded Medium';
    color: #6C6C6C;
    font-size: 1em;
}
.section-testimonials ul.slick-dots {
    display: block;
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0;
}
.section-testimonials ul.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 13px;
}
.section-testimonials ul.slick-dots li button {
    display: none;
}
.section-testimonials ul.slick-dots li::before {
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    background-color: transparent;
    border: solid 1px #0E0E0E;
    border-radius: 50%;
    cursor: pointer;
}
.section-testimonials ul.slick-dots li.slick-active::before {
    background-color: #0E0E0E;
}

/* section-about */
.section-about {
    display: block;
    width: 100%;
    font-size: 0;
    background: #060608;
}
.section-about .col {
    display: inline-block;
    vertical-align: middle;
    font-size: initial;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-about .col.midias {
    width: 550px;
}
.section-about .col.info {
    width: calc(100% - 550px);
    padding: 0 15px 0 100px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-about .col.info.mobile {
    display: none;
}
.section-about .col.info h2 {
    font-size: 2.3125em;
    font-weight: normal;
    color: var(--white);
    margin-bottom: 40px;
}
.section-about .col.info p {
    font-size: 1em;
    color: #AAAAAA;
    line-height: 25px;
}
.section-about .col.info p:last-child {
    margin-bottom: 0;
}
.section-about .col.midias {
    position: relative;
}
.section-about .col.midias img {
    display: block;
    width: 100%;
    height: auto;
}
.section-about .col.midias ul.slick-dots {
    position: absolute;
    list-style: none;
    top: 50%;
    right: 0;
    width: 15px;
    margin: 0;
    padding: 0;

    transform: translateY(-50%);
}
.section-about .col.midias ul.slick-dots li {
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
}
.section-about .col.midias ul.slick-dots li button {
    display: none;
}
.section-about .col.midias ul.slick-dots li::before {
    position: absolute;
    width: 13px;
    height: 13px;
    content: '';
    background-color: transparent;
    border: solid 1px var(--white);
    border-radius: 50%;
    cursor: pointer;
}
.section-about .col.midias ul.slick-dots li.slick-active::before {
    background-color: var(--white);
}
.section-about .col .actions {
    display: flex;
    margin-top: 30px;
}
.section-about .col.midias .actions {
    display: none;
    width: 100%;
    border-top: solid 2px #202433;
    border-bottom: solid 2px #202433;
    justify-content: center;
    margin-top: 0;
    padding: 12px;
    box-sizing: border-box;
}

/* section-forms */
.section-forms {
    display: block;
    width: 100%;
    font-size: 0;
    background: #DFDFDF;
    padding: 80px 0;
}
.section-forms .col {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-forms .col .box {
    display: block;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 5px 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 80px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-forms .col .box h2 {
    font-size: 1.75em;
    color: #6c6c6c;
    margin-bottom: 30px;
}
.section-forms .col .box h2 strong {
    font-family: 'Praktika Rounded Bold';
    color: #0E0E0E;
}
.section-forms .col .box form,
.section-forms .col .box form span.wpcf7-form-control-wrap {
    display: block;
}
.section-forms .col .box form label {
    position: relative;
    font-weight: bold;
    font-size: 0.95em;
    color: #0E0E0E;
}
.section-forms .col .box form span.wpcf7-form-control-wrap {
    margin-bottom: 30px;
}
.section-forms .col .box form input[type="text"],
.section-forms .col .box form input[type="email"],
.section-forms .col .box form select,
.section-forms .col .box form textarea {
    font-family: 'Praktika Rounded Medium';
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid #AAAAAA;
    background-color: var(--white);
    color: #898989;
    border-radius: 10px;
    font-size: 1em;
    padding: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-forms .col .box form textarea {
    height: 140px;
    resize: none;
}
.section-forms .col .box form input[type="submit"] {
    font-family: 'Praktika Rounded Bold';
    font-size: 1em;
    text-transform: uppercase;
    outline: none;
    background: #EB4545;
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 15px 30px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.section-forms form ::-webkit-input-placeholder { /* Edge */
    color: #919191;
    opacity: 1;
}
.section-forms form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #919191;
    opacity: 1;
}
.section-forms form ::placeholder {
    color: #919191;
    opacity: 1;
}
.section-forms .wpcf7-not-valid-tip {
    border-radius: 10px;
}

/* footer */
.footer {
    display: block;
    width: 100%;
    font-size: 0;
    background-color: var(--black);
    padding: 60px 0 40px 0;
}
.footer .col {
    display: inline-block;
    vertical-align: top;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.footer .col:nth-child(1) {
    width: 40%;
}
.footer .col:nth-child(2) {
    width: 40%;
}
.footer .col:nth-child(3) {
    width: 20%;
}
.footer .col a.logo {
    display: block;
    width: 175px;
    margin-bottom: 30px;
}
.footer .col a.logo img {
    width: 100%;
    height: auto;
}
.footer .col h3 {
    font-family: 'Praktika Rounded Bold';
    color: var(--white);
    font-size: 1em;
}
.footer .col p {
    color: var(--gray-high);
    font-size: 1em;
}
.footer .col .networks {
    display: block;
    font-size: 0;
    text-align: right;
}
.footer .col .networks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .col .networks ul li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}
.footer .col .networks ul li a {
    display: block;
    width: 20px;
    height: auto;
}
.footer .col .networks ul li a img {
    display: block;
    width: 100%;
    height: auto;
}

/* copy */
.copy {
    display: block;
    width: 100%;
    background-color: var(--black);
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.copy span {
    position: relative;
    display: block;
    color: var(--white);
    font-size: 0.75em;
    text-transform: uppercase;
}
.copy span::before {
    position: absolute;
    content: '';
    top: -20px;
    left: 15px;
    right: 15px;
    height: 1px;
    max-width: 1170px;
    margin: auto;
    background-color: rgba(170, 170, 170, 0.3);
}

/* blog-catalog */
.blog-catalog {
    display: block;
    width: 100%;
    margin: 40px 0;
}
.blog-catalog .boxes {
    font-size: 0;
}
.blog-catalog .boxes .col {
    font-size: initial;
    display: inline-block;
    vertical-align: top;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.blog-catalog .boxes .col.posts {
    width: calc(100% - 300px);
}
.blog-catalog .boxes .col.sidebar {
    position: sticky;
    position: -webkit-sticky;
    width: 300px;
    top: 90px;
    transition: top .2s ease;
    -webkit-transition: top .2s ease;
}
.blog-catalog .boxes .col.posts .box {
    display: block;
    font-size: 0;
}
.blog-catalog .boxes .col .box {
    margin-bottom: 30px;
}
.blog-catalog .boxes .col .box:last-child {
    margin-bottom: 0;
}
.blog-catalog .boxes .col .box a {
    display: block;
}
/* posts */
.blog-catalog .boxes .col.posts .box .thumb,
.blog-catalog .boxes .col.posts .box .details {
    display: inline-block;
    vertical-align: middle;
    font-size: initial;
}
.blog-catalog .boxes .col.posts .box .thumb {
    width: 275px;
    margin-right: 30px;
}
.blog-catalog .boxes .col.posts .box .details {
    width: calc(100% - 305px);
}
.blog-catalog .boxes .col.posts .box .thumb img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 3px;
}
.blog-catalog .boxes .col.posts .box .details h2 {
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    color: var(--black);
}
.blog-catalog .boxes .col.posts .box .details p.author,
.blog-catalog .boxes .col.posts .box .details p.excerpt {
    margin: 10px 0 0 0;
}
.blog-catalog .boxes .col.posts .box .details p.author {
    color: var(--black-medium);
    font-size: 13px;
}
.blog-catalog .boxes .col.posts .box .details p.excerpt {
    color: var(--black);
    font-size: 15px;
}
.blog-catalog .boxes .col.sidebar .banners,
.blog-catalog .boxes .col.sidebar .banners a,
.blog-catalog .boxes .col.sidebar .banners a img {
    display: block;
    width: 100%;
}
/* sidebar */
.blog-catalog .boxes .col.sidebar .banners a {
    margin-bottom: 30px;
}
.blog-catalog .boxes .col.sidebar .banners a:last-child {
    margin-bottom: 0;
}
.blog-catalog .boxes .col.sidebar .banners a img {
    height: auto;
    border-radius: 3px;
}

/* blog-single */
.blog-single {
    display: block;
    width: 100%;
    margin: 40px 0;
}
.blog-single .wrap {
    display: block;
    font-size: 0;
}
.blog-single .wrap > .col {
    display: inline-block;
    vertical-align: top;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.blog-single .wrap > .col.about-author {
    width: 230px;
}
.blog-single .wrap > .col.post-area {
    width: calc(100% - 230px);
}
.blog-single .wrap > .col.about-author {
    text-align: center;
}
.blog-single .wrap > .col.about-author .thumb {
    display: block;
    margin: 10px 0;
}
.blog-single .wrap > .col.about-author .thumb img {
    border-radius: 50%;
    width: 70px;
    height: auto;
}
.blog-single .wrap > .col.about-author a.name {
    display: block;
    width: 100%;
    color: var(--black-medium);
    font-weight: bold;
    font-size: 16px;
}
.blog-single .wrap > .col.about-author .time,
.blog-single .wrap > .col.about-author p.reading-time {
    font-size: 13px;
    color: var(--black-medium);
}
.blog-single .wrap > .col.about-author p.reading-time {
    margin: 0;
}
.blog-single .wrap > .col.post-area .heading,
.blog-single .wrap > .col.post-area .container {
    display: block;
    width: 100%;
}
.blog-single .wrap > .col.post-area .heading {
    border-bottom: solid 1px var(--gray-medium);
    padding-bottom: 30px;
    margin-bottom: 10px;
}
.blog-single .wrap > .col.post-area .heading h1 {
    font-size: 45px;
    line-height: 55px;
}
.blog-single .wrap > .col.post-area .heading h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 300;
    margin-top: 30px;
}
.blog-single .wrap > .col.post-area .heading h1,
.blog-single .wrap > .col.post-area .heading h2 {
    color: var(--font-dark-black);
}
.blog-single .wrap > .col.post-area .container {
    font-size: 0;
    width: calc(100% + 30px);
    margin-left: -15px;
}
.blog-single .wrap > .col.post-area .container .col {
    display: inline-block;
    vertical-align: top;
    font-size: initial;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.blog-single .wrap > .col.post-area .container .col.content {
    width: calc(100% - 300px);
}
.blog-single .wrap > .col.post-area .container .col.sidebar {
    position: sticky;
    position: -webkit-sticky;
    width: 300px;
    top: 90px;
    transition: top .2s ease;
    -webkit-transition: top .2s ease;
}
.blog-single .wrap > .col.post-area .container .col.content > :first-child {
    margin-top: 0;
}
.blog-single .wrap > .col.post-area .container .col.content > :last-child {
    margin-bottom: 0;
}
.blog-single .wrap > .col.post-area .container .col.content {
    color: var(--font-dark-black);
}
.blog-single .wrap > .col.post-area .container .col.content ul,
.blog-single .wrap > .col.post-area .container .col.content ol,
.blog-single .wrap > .col.post-area .container .col.content p {
    display: block;
    font-size: 18px;
    line-height: 26px;
}
.blog-single .wrap > .col.post-area .container .col.content p img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}
.blog-single .wrap > .col.post-area .container .col.content .wp-caption {
    display: block;
    width: 100% !important;
}
.blog-single .wrap > .col.post-area .container .col.content .wp-caption img {
    display: block;
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.blog-single .wrap > .col.post-area .container .col.content .wp-caption p.wp-caption-text {
    display: block;
    width: 100%;
    background-color: var(--gray-light);
    font-size: 12px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.blog-single .wrap > .col.post-area .container .col.content .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.blog-single .wrap > .col.post-area .container .col.content .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blog-single .wrap > .col.post-area .container .col.content ul,
.blog-single .wrap > .col.post-area .container .col.content ol {
    margin: 15px 0;
    padding: 0 0 0 30px;
}
.blog-single .wrap > .col.post-area .container .col.content ul li,
.blog-single .wrap > .col.post-area .container .col.content ol li {
    margin-bottom: 15px;
}
.blog-single .wrap > .col.post-area .container .col.content h1,
.blog-single .wrap > .col.post-area .container .col.content h2,
.blog-single .wrap > .col.post-area .container .col.content h3,
.blog-single .wrap > .col.post-area .container .col.content h4,
.blog-single .wrap > .col.post-area .container .col.content h5,
.blog-single .wrap > .col.post-area .container .col.content h6 {
    margin: 15px 0;
    display: block;
}
.blog-single .wrap > .col.post-area .container .col.content h1 {
    font-size: 37px;
}
.blog-single .wrap > .col.post-area .container .col.content h2 {
    font-size: 30px;
}
.blog-single .wrap > .col.post-area .container .col.content h3 {
    font-size: 25px;
}
.blog-single .wrap > .col.post-area .container .col.content h4 {
    font-size: 20px;
}
.blog-single .wrap > .col.post-area .container .col.content h5 {
    font-size: 17px;
}
.blog-single .wrap > .col.post-area .container .col.content h6 {
    font-size: 13px;
}

/* empty-catalog */
.empty-catalog {
    margin: 0;
    color: var(--black);
}

/* social-share */
.social-share {
    display: block;
    width: 100%;
    margin-top: 15px;
}
.social-share ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0;
}
.social-share ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: initial;
}
.social-share ul li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: var(--black);
    color: #fff;
    margin: 3px;
    border-radius: 50%;
}
.social-share ul li a.facebook {
    background-color: #1877f2; 
}
.social-share ul li a.twitter {
    background-color: #1da1f2; 
}
.social-share ul li a.linkedin {
    background-color: #0a66c2; 
}
.social-share ul li a.whatsapp {
    background-color: #00e676; 
}

/* sidebar box */
.sidebar .box,
.sidebar .box .heading,
.sidebar .posts {
    display: block;
    width: 100%;
}
.sidebar .box .heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark-high);
    padding: 0  !important;
    margin: 0 0 15px 0 !important;
    border: none !important;
}
.sidebar .posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}
.sidebar .posts ul li {
    display: block;
    margin-bottom: 15px;
}
.sidebar .posts ul li:last-child {
    margin-bottom: 0;
}
.sidebar .posts ul li a span.thumb,
.sidebar .posts ul li a p.title {
    display: inline-block;
    vertical-align: middle;
    font-size: initial;
}
.sidebar .posts ul li a span.thumb {
    width: 50px;
}
.sidebar .posts ul li a span.thumb img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}
.sidebar .posts ul li a p.title {
    width: calc(100% - 60px);
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 0 10px;
    padding: 0;
    color: var(--black);
}