/*
Theme Name: emwtpro
Author: I
Author URI: https:123.45
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Ubuntu', sans-serif;
    color: #444444;
}

.wp-block-image img {
    height: auto;
}

:root {
    --accent-color: #e73c7e;
    --accent2-color: #ffd6d5;
    --border-radius1: 3px;
    --font-color: #29313a;
    --trans: all .2s ease;
}

body p {
    font-size: 16px;
    color: #757575;
    line-height: 26px;
}

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

section {
    max-width: 100%;
}

h1, h2, h3 {
    font-family: "Roboto Slab";
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--font-color);
}


/*layout*/


.wrapper {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 10px;

}

.wrapper-sidebar {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
            "content"
            "sidebar"
}

.content-area {
    grid-area: content;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

#sidebar {
    grid-area: sidebar;
}

.page-template-default .wrapper {
    margin: 70px auto 0;
}

.wrapper-full {
    width: 100%;
    padding: 0;
}

.narrow {
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width: 600px) {
    .narrow {
        padding: 0 10px;
    }
}

@media (min-width: 1000px) {

    .wrapper-sidebar {
        grid-template-columns: 8fr 3fr;
        grid-template-areas:
                "content sidebar"
    }

}

.com-block {
    margin: 10px 0;
}




/* #Navigation START ================================================== */
.nav img {
    max-width: inherit;
}

.logo-wrap img {
    max-width: 150px;
    height: auto;
    max-height: 52px;
}

@media screen and (min-width: 800px) {

    .cd-header {
        background: transparent;
    }

    .cd-header .header-wrapper {
        max-width: 1200px;
    }

    .header-wrapper .logo-wrap {
        position: relative;
        left: 0;
        top: 0;

    }

    .header-wrapper .nav-but-wrap {
        display: none;
    }

    .header-wrapper .nav {
        position: relative;
        display: flex;
    }

    .nav .nav__content {
        visibility: visible;
        position: relative;
        top: 0;
        right: 0px;
        width: 100%;
        display: flex;
        align-self: center;
    }

    .nav .nav__content .nav__list{
        display: flex;
    }

    .nav .nav__content .menu-item {
        opacity: 1;
        display: inline-block;
        letter-spacing: inherit;
        -webkit-transform: translate(0, 0%);
        transform: translate(0, 0%);
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 20px;
    }

    .nav .nav__content .menu-item .mnu-a{
        font-size: 17px;
        font-weight: 200;
        padding-left: 0;
        margin-left: 10px;
        display: block;
        white-space: nowrap;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .nav .nav__content .menu-item:first-child .mnu-a {
        margin-left: 0;
    }

    .menu-item .mnu-a:after {
        display: none;
    }

    .sub-menu {
        opacity: 0;
        background-color: #616161e3;
        display: flex;
        flex-direction: column;
        visibility: hidden;
        position: absolute;
        padding: 10px 20px;
        border: 1px solid #fff;
        left: -25%;
        transition: all 0.15s ease-in;
        -webkit-transform-origin: center top;
        -moz-transform-origin: center top;
        -ms-transform-origin: center top;
        -o-transform-origin: center top;
        transform-origin: center top;
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }

    .nav .nav__content .menu-item .sub-menu .menu-item {
        margin-left: 0;
    }

    .nav .nav__content .menu-item .sub-menu .mnu-a {
        margin-left: 0;
        padding: 8px;
    }

    .menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

}


.cd-header {
    position: fixed;
    width:100%;
    top:0;
    left:0;
    z-index:100;
    background-color: #0000006e;
}
.header-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    padding: 0 10px;
}
.logo-wrap {
    z-index: 100;
}
.logo-wrap a {
    display: block;
    cursor: pointer;
    margin: 5px 0 0;
    transition : all 0.3s ease-out;
}

.logo-wrap a:hover {
    opacity: 0.9;
}
.nav-but-wrap{
    position: relative;
    display: inline-block;
    float: right;
    right: 0;
    margin-top: 15px;
    transition : all 0.3s ease-out;
    z-index: 100;
}
.menu-icon {
    height: 30px;
    width: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
}
.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #fff;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, background-color .5s ease;
    transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
    width: 16.5px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.menu-icon__line-right {
    width: 16.5px;
    float: right;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
    width: 30px;
}
.nav {
    position: fixed;
    z-index: 98;
}
.nav:before, .nav:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    opacity: .75;
    background: linear-gradient(45deg, #460c1a 5%, #43194a 95%);
    transform: translateZ(0);
    z-index: -1;
    will-change: border-radius;
    transition: width cubic-bezier(0.77, 0, 0.175, 1) 0.5s, height cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}
.nav:after {
    background-color: rgba(9,9,12,0.9);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.nav:before {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.nav__content {
    position: fixed;
    visibility: hidden;
    top: 50px;
    text-align: left;
}
.nav__list {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 2;
}
.nav__content .menu-item {
    position: relative;
    display: block;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 0;
    text-align: left;
    -webkit-transform: translate(30px, 0%);
    transform: translate(30px, 0%);
    -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, transform .2s ease;
    transition: opacity .2s ease, transform .2s ease, -webkit-transform .2s ease;
    margin-top: 2px;
    margin-bottom: 2px;
}
.nav__content .menu-item .mnu-a{
    font-family: 'Ubuntu', sans-serif;
     position: relative;
     text-decoration: none;
     color: #f7f7f7;
     overflow: hidden;
     z-index: 2;
     padding-left: 10px;
     padding-top: 3px;
     padding-bottom: 3px;
    font-size: 17px;
     display: inline-block;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
 }

.sub-menu .menu-item .mnu-a{
    font-weight: 200;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}

.menu-item .mnu-a:after{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 5px;
    height: 0;
    opacity: 0;
    background-color: #8167a9;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.menu-item .mnu-a:hover:after{
    height: 100%;
    opacity: 1;
    top: 0;
}
.menu-item .mnu-a:hover{
    color: #ababab;
}
.menu-item.active-nav .mnu-a{
    color: #a8a8a8;
}
.menu-item.active-nav .mnu-a:after{
    height: 100%;
    opacity: 1;
    top: 0;
}
body.nav-active .nav__content {
    visibility: visible;
}
body.nav-active .menu-icon__line {
    background-color: #fff;
    -webkit-transform: translate(0px, 0px) rotate(-45deg);
    transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
    width: 15px;
    -webkit-transform: translate(2px, 4px) rotate(45deg);
    transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
    width: 15px;
    float: right;
    -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
    transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
    width: 15px;
}
body.nav-active .nav {
    visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
    width: 100%;
    height: 600px;
    will-change: width, height;
}
body.nav-active .nav:after {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
body.nav-active .nav:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
body.nav-active .menu-item {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .menu-item:nth-child(0) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
body.nav-active .menu-item:nth-child(1) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
body.nav-active .menu-item:nth-child(2) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
body.nav-active .menu-item:nth-child(3) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
body.nav-active .menu-item:nth-child(4) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
body.nav-active .menu-item:nth-child(5) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
body.nav-active .menu-item:nth-child(6) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
body.nav-active .menu-item:nth-child(7) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
body.nav-active .menu-item:nth-child(8) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}
body.nav-active .menu-item:nth-child(9) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
body.nav-active .menu-item:nth-child(10) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

/* #Navigation END ================================================== */

/* */
/*search form*/

.menu-search-form {
    align-self: center;
    order: 2;
}


.form-wrap {
    margin: 0;
    padding: 0;
    display: flex;
    height: 40px;
    flex-direction: row;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    overflow: hidden;
}

.form-wrap svg {
    height: 28px;
    fill: #ff9a86;
}

.form-wrap input {
    -webkit-appearance: textfield;
    background-color: transparent;
    padding: 5px 10px 5px 20px;
    border: none;
    width: 100%;
    height: auto;
    color: #c3c3c3;
    font-size: 16px;
}

.form-wrap input[type="submit"] {
    opacity: .8;
    height: 25px;
    width: 25px;
    align-self: center;
    margin-right: 10px;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    border: none;
    background-image: url(/wp-content/themes/emwtpro/images/search-white.svg);
    background-repeat: no-repeat;
    background-position: center;
}


.form-wrap input[type="submit"]:hover {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .top-head .menu-search-form {
        position: absolute;
        top: 61px;
        left: 14px;
        z-index: 110;

    }
    .form-wrap input {
        color: rgb(210, 210, 210);
    }
    .form-wrap input[type="submit"] {
        background-image: url(/wp-content/themes/emwtpro/images/search-white.svg);
    }
}



/* WP Multilang */

@media screen and (max-width: 800px) {

    body.nav-active .nav__content .wpm-languages, body.nav-active .nav__content .wpm-languages .sub-menu{
        display: flex;
    }
    .wpm-languages.menu-item>a img {
        display: inline-block;
        margin-right: 15px;
        width: 30px;
    }

}



/**/




img.wp-smiley, img.emoji {
    height: 3em !important;
    width: 3em !important;
    margin: .5em !important;
    padding: 0 !important;
}


/**/



/* Common START */

.wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
}

.wp-post-image, .aligncenter, .size-full {
    max-width: 100%;
    height: auto;
}

.wp-block-cover-text {
    font-family: "Roboto Slab", sans-serif;
    margin-top: 0;
    margin-right: 30px;
}

.wp-block-cover, .wp-block-cover-image {
    background-size: cover;
    background-position: 100%;
    min-height: 300px;
    width: 100%;
    margin: 0 0 0.5em;
}


.wp-block-columns {
    align-items: center;
}

.wp-block-column {
    margin-bottom: 0;
}

.wp-block-separator {
    border: 2px solid #ffe469;
    margin: 0 auto;
    height: 5px;
    border-radius: 5px;
    max-width: 500px;
}

.wp-block-separator.is-style-wide {
    border-bottom-width: 2px;
}



.schema-faq-section {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 10px;
    border: 1px solid #ded3dc;
    padding: 15px 25px 0;
    margin-bottom: 15px;
    transition: all ease .15s;
}

.schema-faq-section:hover {
    background-color: #f3f3f3;
}

.schema-faq-question {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 3px;
}

.schema-faq-answer {
    margin: 5px;
}

.symbol {
    font-size: 3em;
    color: #000;
    line-height: normal;
}

/* yoast faq */

.wp-block-yoast-faq-block {

}

.wp-block-yoast-faq-block a {
    text-decoration: underline;
    color: var(--accent-color);
    font-weight: 600;
}

.wp-block-yoast-faq-block p.schema-faq-answer {
    margin: 0;
    padding: 12px;
    border-bottom: none;
    display: none;
}

.wp-block-yoast-faq-block .schema-faq-section {
    padding: 15px 25px;
}

.wp-block-yoast-faq-block .schema-faq-section:hover {
    background-color: #fff;
}


/* Common END ------------------------------------------------------------------*/


/*copy to clipboard*/
.copy-block {
    display: inline-block;
    background-color: var(--accent2-color);
    padding: 5px 15px;
    margin: 0 0 15px;
    border-radius: var(--border-radius1);
}
.copy-txt {
    font-weight: bold;
}
.smile-item-copy {
    padding: 3px 9px;
    font-size: 20px;
    margin: 4px 8px 5px 0px;
    line-height: 25px;
    width: 46px;
    border: 1px solid var(--accent-color);
    border-radius: 3px;
}

.copyEmoji {
    cursor: pointer;
    font-size: 16px;
    padding: 5px 12px;
    color: #fff;
    border: none;
    -webkit-border-radius: var(--border-radius1);
    -moz-border-radius: var(--border-radius1);
    border-radius: var(--border-radius1);
    background-color: var(--accent-color);
    transition: var(--trans);
}
.copyEmoji p{
    font-size: 16px;
    margin: 0;
    color: #fff;
    border: none;
    -webkit-border-radius: var(--border-radius1);
    -moz-border-radius: var(--border-radius1);
    border-radius: var(--border-radius1);
    background-color: var(--accent-color);
    transition: var(--trans);
}

.copyEmoji:hover {
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.09);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}


.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--accent-color) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.hide {
    margin-bottom: 10px;
}


.hd-box .hd-btn {
    display: inline;
    padding: 7px 13px;
    font-size: 14px;
    text-decoration: none;
    vertical-align: middle;
    height: 36px;
    background: #fff;
    border-radius: 3px;
}

.hd-box p {
    margin: 0;
}

.hd-box {
    max-height: 120px;
    position: relative;
    overflow: hidden;
}
.hd-box .read-more {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 20px 0 15px 0;
    background-image: linear-gradient(to top, #383348, transparent);
}


/***Blog***/

@media screen and (min-width: 800px) {
    .blogposts_box {
        display: grid;
        grid-gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.blogposts_box .smile-block-wrap {
    background-color: #fff;
    border-radius: var(--border-radius1);
    transition: var(--trans);
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
}

.blogposts_box .smile-block-wrap:hover {
    box-shadow: 0 8px 11px rgba(0,0,0,.2);
}


.bp-name {
    padding: 10px 15px;
    font-size: 14px;
}


.wp-block-columns.new-emoji {
    margin-bottom: 0;
}

.wp-block-columns.new-emoji p a {
    font-size: 0.8em;
    font-weight: normal;
    border-bottom: 2px solid transparent;
    transition: var(--trans);
}



.wp-block-columns.new-emoji p a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.wp-block-columns.new-emoji .wp-block-image {
    margin-bottom: 0;
}

.wp-block-columns.new-emoji .wp-block-image .aligncenter {
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: var(--trans);
    text-align: center;
}

.wp-block-columns.new-emoji .wp-block-image img {
    max-width: 70%;
}


.wp-block-columns.new-emoji .wp-block-image:hover .aligncenter {
    background-color: var(--accent2-color);
}

@media screen and (max-width: 800px) {

    .wp-block-columns.new-emoji .wp-block-image .aligncenter {
        margin-bottom: 0px;
    }

    .wp-block-columns.new-emoji {
        margin-bottom: 10px;
        border-bottom: 1px solid var(--accent2-color);
    }

    .wp-block-columns.new-emoji p {
        text-align: center;
    }
}



/***Blog***/

/*platforms*/

.platforms-wrap {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.pf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;

}

.pf-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.pf-item span {
    padding: 10px 15px;
    background-color: #fff;
    border-radius: var(--border-radius1);
    transition: var(--trans);
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
}


/* Footer START */

#colophon {
    color: #ffffff;
    margin-top: 20px;
}

#colophon a {
    color: #ffffff;
}

#colophon.site-footer .footer-block a:hover {
    text-decoration: underline;
    opacity: .6;
    transition: all .1s ease;
}

.t-container {
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.footer-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2em;
    border-bottom: 1px solid #ffffff85;
}

#colophon {
    background: linear-gradient(45deg, rgb(212, 2, 119) 0%, #9c0884 100%);
}

#colophon {
    padding: 30px 5px;
}

#colophon.site-footer .footer-block a {
    display: block;
    font-size: 14px;
    margin: 10px 0;
    text-decoration: none;
    opacity: .8;
    transition: all .2s ease;
}

#colophon.site-footer .footer-block a:hover {
    text-decoration: underline;
    opacity: .6;
    transition: all .1s ease;
}

#colophon.site-footer .f-head {
    font-size: 1.3em;
    padding-bottom: 5px;
    text-align: center;
    border-bottom: 2px solid #e6e6e6;
}

.footer-block {
    padding: 0 10px;
}

.footer-block ul {
    margin: 0;
}

.footer-block ul li{
    list-style-type: none;
}

.social {
    list-style-type: none;
    margin: auto;

}

.social li{
    display: inline-block;
    width: 30px;
    margin: 0 10px;
}

.social li a {
    transition: all .2s ease;
}

.social li a:hover{
    transform: rotate(20deg);
}

.footer-block .social li a svg{
    fill: #fff
}

@media screen and (max-width: 800px) {
    .footer-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1em;
    }
}

/* Footer END ---------------------------------------- */