body {
    margin: 0;
}
body * {
    position: relative;
    /* font-family: Poppins,-apple-system,BlinkMacSystemFont,Segoe UI,Ubuntu,Helvetica Neue,Arial,sans-serif; */
    font-family: 'Helvetica', 'Arial', sans-serif;
}
ul {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
a {
    text-decoration: none;
    transition: all .3s;
}
input, button, a {
    outline: none;
}
h1, h2, h3, h4, h5, h6, p, strong {
    margin-top: auto;
    margin-bottom: auto;
}
img {
    width: 100%;
}


/* header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 24px 0px rgb(0 0 0 / 15%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    z-index: 9999999999;
    
}
.site-header.none-shadow {
    box-shadow: unset;
}
body:not(.home, .scrolling) .site-header {
    background-color: #fff;
}
body.scrolling .site-header {
    background-color: rgb(255 255 255 / 80%);
    color: #fff;
}
.site-header .header-contain {
    background-color: #252531;
}
.site-header .header-contain .wrapper {
    display: grid;
    grid-template-columns: 300px auto;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding-left: 100px;
    height: 100px;
    width: calc(100% - 100px);
}
.site-header .logo-block img {
    width: 100%;
    max-width: 135px;
    height: 100%;
    max-height: 80px;
    object-fit: contain;
    object-position: left;
    text-align: center;
}
.site-header .logo-block .custom-logo,
body.scrolling .logo-block .custom-second-logo,
body.scrolling .site-header .logo-block.no-second-logo .custom-logo {
    display: block;
}
body.scrolling .site-header .logo-block .custom-logo,
.site-header .logo-block .custom-second-logo,
body.scrolling .site-header .logo-block.no-second-logo .custom-second-logo {
    display: none;
}
.site-header .header-contain .wrapper .logo-block {
    display: grid;
    grid-template-columns: 135px auto;
    padding-left: 0;
}
.site-header .header-contain .wrapper .logo-block .tagline {
    margin-left: 20px;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}
.site-header .header-contain .wrapper .nav-block {
    padding-right: 0;
}
.site-header .site-navigation ul.menu > li {
    float: left;
    margin: 0 20px;
}
.site-header .site-navigation ul.menu li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.site-header .site-navigation ul.menu li.current-menu-item a,
.site-header .site-navigation ul.menu li.current-menu-parent a,
.site-header .site-navigation ul.menu li ul.sub-menu li.current-menu-item a,
body.scrolling .site-header .site-navigation ul.menu li.current-menu-item a,
body.scrolling .site-header .site-navigation ul.menu li.current-menu-parent a,
body.scrolling .site-header .site-navigation ul.menu li ul.sub-menu li.current-menu-item a {
    color: var(--color-bgtheme);
}
.site-header .site-navigation ul.menu li a:hover,
.site-header .site-navigation ul.menu li ul.sub-menu li a:hover,
body.scrolling .site-header .site-navigation ul.menu li a:hover,
body.scrolling .site-header .site-navigation ul.menu li ul.sub-menu li a:hover {
    color: var(--color-second-bgtheme);
}
body.scrolling .site-header .site-navigation ul.menu li a {
    color: #fff;
}
body.scrolling .site-header .site-navigation ul.menu li ul.sub-menu a {
    color: #fff;
}
.site-header .site-navigation ul.menu li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    margin-left: 5px;
}
.site-header .site-navigation ul.menu li ul.sub-menu {
    position: absolute;
    top: 80px;
    background-color: #121212;
    box-shadow: 0 1px 5px -1px rgb(0 0 0 / 30%);
    padding: 10px 20px;
    min-width: 250px;
    visibility: hidden;
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: 0 0;
    transition: all .2s ease-out;
}
.site-header .site-navigation ul.menu li:hover ul.sub-menu,
.site-header .site-navigation ul.menu li ul.sub-menu:hover {
    visibility: visible;
    opacity: 1;
    transform: rotateX(0);
}
.site-header .site-navigation ul.menu li ul.sub-menu li {
    width: 100%;
}
.site-header .site-navigation ul.menu li ul.sub-menu li a {
    padding: 10px 18px;
    line-height: 30px;
    display: block;
    color: #fff;
    height: unset;
}
.site-header .site-navigation ul.menu li ul.sub-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header .site-cart-toggle,
.site-header .site-navigation-toggle {
    display: none;
}
.site-header .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper {
    justify-content: flex-end;
}
.site-header .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper,
.site-header .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper .nav-order {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-header .header-contain .wrapper .nav-block .nav-order .nav-action {
    display: flex;
}



.site-header .header-contain .wrapper .cart-block .cart-toggle {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper {
    position: absolute;
    top: 55px;
    left: -260px;
    width: 300px;
    background-color: #fff;
    color: #000;
    z-index: 997;
    box-shadow: 0px 2px 16px -10px rgb(0 0 0 / 75%);
    display: none;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper.opened  {
    display: block;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper p.woocommerce-mini-cart__empty-message {
    padding: 15px;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart {
    padding: 20px 20px 10px;
    height: 190px;
    overflow-y: auto;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li {
    padding-right: 25px;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li > a.remove {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    border: 0;
    color: red!important;
    display: block;
    font-weight: 700;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li > a.remove:hover {
    color: #fff!important;
    background: red;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li > a:not(.remove) {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    padding-right: 55px;
    height: 55px;
    margin-bottom: 5px;
    color: #0d5b50;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li > a:not(.remove) img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper ul.woocommerce-mini-cart li .quantity {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper p.woocommerce-mini-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid #eee;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper p.woocommerce-mini-cart__total strong {
    color: #005448;
    font-weight: 500;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper p.woocommerce-mini-cart__buttons {
    display: grid;
    grid-auto-flow: column;
    text-align: center;
}
.site-header .header-contain .wrapper .cart-block .cart-wrapper p.woocommerce-mini-cart__buttons a {
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    background-color: #005448;
    color: #fff;
    padding: 7.5px 5px;
}

.site-header .header-contain .wrapper .search-block form.search-form {
    width: 75px;
    justify-content: center;
}
.site-header .header-contain .wrapper .search-block form.search-form .search-field {
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
    border-radius: 20px;
    transition: all .3s;
}
.site-header .header-contain .wrapper .search-block form.search-form:hover .search-field {
    width: 175px;
    left: -145px;
    opacity: 1;
}
.site-header .header-contain .wrapper .search-block form.search-form .search-submit {
    border-radius: 20px;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.site-header .header-contain .wrapper .search-block form.search-form:hover .search-submit,
.site-header .header-contain .wrapper .search-block form.search-form .search-submit:hover {
    background-color: #000;
    color: #fff;
}

.site-header .header-contain .wrapper .call-number {
    display: block;
    margin-left: 20px;
    height: 100px;
}
.site-header .header-contain .wrapper .call-number > div {
    color: #fff;
    background-color: var(--color-bgtheme);
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}
.site-header .header-contain .wrapper .call-number > div::after {
    content: '';
    background-color: var(--color-bgtheme);
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: -10px;
}
.site-header .header-contain .wrapper .call-number .icon {
    font-size: 32px;
    margin-right: 10px;
}
.site-header .header-contain .wrapper .call-number .info {
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
}
.site-header .header-contain .wrapper .call-number a {
    color: #fff;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}
.site-header .header-contain .wrapper .call-number a:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 1599px) {
    .site-header .site-navigation ul.menu > li {
        margin: 0 15px;
    }
    .site-header .site-navigation ul.menu > li::before {
        left: -15px;
    }
    .site-header .site-navigation ul.menu > li:last-child::after {
        right: -15px;
    }
}
@media only screen and (max-width: 1399px) {
    .site-header .header-contain .wrapper {
        grid-template-columns: 150px auto;
    }
    .site-header .header-contain .wrapper .logo-block {
        grid-template-columns: unset;
    }
    .site-header .header-contain .wrapper .logo-block .tagline {
        display: none;
    }
    .site-header .header-contain .wrapper .call-number > div {
        padding: 0 20px;
    }
    .site-header .header-contain .wrapper .call-number a {
        font-size: 18px;
    }
    .site-header .header-contain .wrapper .nav-block {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 1200px) {
    .site-header .header-contain .wrapper .call-number {
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .site-header .header-contain .wrapper {
        width: 100%;
        padding-left: 10px;
    }
    .site-header .header-contain .wrapper .nav-block {
        padding-right: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .site-header .header-contain .wrapper {
        padding-left: 15px;
    }
    .site-header .header-contain .wrapper .logo-block {
        display: inline-flex;
        justify-content: center;
        margin-top: 10px;
    }
}

/* header-banner */
body .site-header[role="banner"] {
    background-color: transparent;
    position: relative;
}
body.scrolling .site-header[role="banner"] {
    color: #000;
}
.site-header[role="banner"] .header-outfit .wrapper,
.site-header[role="banner"] .header-info .wrapper,
.site-header[role="banner"] .header-contain .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
body.scrolling .site-header[role="banner"] .header-outfit .wrapper,
body.scrolling .site-header[role="banner"] .header-info .wrapper {
    /* display: none; */
}
.site-header[role="banner"] .header-outfit {
    background-color: #16242e;
    color: #898989;
}
.site-header[role="banner"] .header-outfit .wrapper {
    grid-template-columns: repeat(2, 50%);
    height: 50px;
    display: none;
}
.site-header[role="banner"] .header-info {
    background-color: #fff;
}
.site-header[role="banner"] .header-info .wrapper {
    grid-template-columns: 200px auto;
    align-items: center;
    height: 75px;
    padding-bottom: 50px;
    padding-top: 10px;
    margin-bottom: -40px;
}
.site-header[role="banner"] .header-info .wrapper::before {
    content: '';
    background-color: var(--color-bgtheme);
    height: 100%;
    width: calc(50% + 100px);
    position: absolute;
    top: 0;
    left: -30%;
}
.site-header[role="banner"] .header-info .wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(30% - 150px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 155px 130px;
    border-color: transparent transparent #ffffff;
}
.site-header[role="banner"] .header-contain {
    background-color: transparent;
}
.site-header[role="banner"] .header-contain.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    opacity: 0;
    background-color: #16242e;
    transition: all .5s ease;
}
body.scrolling .site-header[role="banner"] .header-contain.sticky {
    transform: translateY(0);
    opacity: 1;
}
.site-header[role="banner"] .header-contain.sticky .wrapper::before {
    content: unset;
}
.site-header[role="banner"] .header-contain .wrapper {
    grid-template-columns: unset;
    width: 100%;
    height: 80px;
    background-color: #16242e;
    padding-left: 0;
    padding-right: 0;
}
.site-header[role="banner"] .header-contain .wrapper .logo-block {
    display: none;
}
.site-header[role="banner"] .header-contain .wrapper .nav-block {
    padding-left: 0;
    padding-right: 0;
}
.site-header[role="banner"] .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper {
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}
.site-header[role="banner"] .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper .nav-menu {
    padding-left: 10px;
    padding-right: 10px;
}
.site-header[role="banner"] .site-navigation ul.menu > li {
    margin: 0 15px;
}
.site-header[role="banner"] .site-navigation ul.menu > li:first-child {
    margin-left: 0;
}
.site-header[role="banner"] .site-navigation ul.menu > li:first-child:before,
.site-header[role="banner"] .site-navigation ul.menu > li:last-child::after {
    content: unset;
}
.site-header[role="banner"] .site-navigation ul.menu li a {
    height: auto;
}
.site-header[role="banner"] .site-navigation ul.menu li ul.sub-menu {
    top: 42.5px;
}
.site-header[role="banner"] .header-contain .wrapper .call-number {
    height: 80px;
    margin-left: 10px;
    margin-right: -10px;
}
.site-header[role="banner"] .header-contain .wrapper .support {
    color: #fff;
    background-color: var(--color-bgtheme);
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}
.site-header[role="banner"] .header-contain .wrapper .support i {
    font-size: 30px;
    line-height: 1;
}
.site-header[role="banner"] .header-contain .wrapper .call-number a:hover {
    text-decoration: unset;
}
@media only screen and (max-width: 1200px) {
    .site-header[role="banner"] .header-info .wrapper::after {
        left: calc(30% - 155px);
        border-width: 0 0 135px 150px;
    }
}
@media only screen and (max-width: 1024px) {
    .site-header[role="banner"] .header-contain .wrapper {
        grid-template-columns: 150px auto;
        padding-left: 0;
        padding-right: 0;
    }
    .site-header[role="banner"] .header-contain .wrapper .logo-block {
        display: block;
        padding-right: 0;
    }
    .site-header[role="banner"] .header-info .wrapper::after {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    body .site-header[role="banner"] {
        position: fixed;
    }
    .site-header[role="banner"] .header-outfit .wrapper,
    .site-header[role="banner"] .header-info .wrapper,
    .site-header[role="banner"] .header-contain.sticky {
        display: none;
    }
    .site-header[role="banner"] .header-info .wrapper,
    .site-header[role="banner"] .header-contain .wrapper {
        grid-template-columns: unset;
    }
    .site-header[role="banner"] .header-info .wrapper > div:first-child {
        display: none;
    }
    .site-header[role="banner"] .header-contain .wrapper .logo-block {
        display: inline-flex;
    }
    .site-header[role="banner"] .site-navigation .site-navigation-toggle,
    .site-header[role="banner"] .site-navigation .site-cart-toggle {
        top: 17.5px;
    }
    .site-header[role="banner"] .site-navigation ul.menu li ul.sub-menu {
        top: 0;
    }
    .site-header[role="banner"] .site-navigation ul.menu > li {
        margin: 0;
    }
    .site-header[role="banner"] .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper {
        justify-content: flex-end;
    }
    .site-header[role="banner"] .site-navigation ul.menu li:first-child:before,
    .site-header[role="banner"] .site-navigation ul.menu li::before,
    .site-header .site-navigation ul.menu li::before {
        content: '';
        width: 5px;
        height: 0;
        background: rgba(255,255,255,.1);
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 0;
        background: #fff;
        transition: all .3s;
    }
    .site-header .site-navigation ul.menu li.current-menu-item::before,
    .site-header .site-navigation ul.menu li.current-menu-parent::before {
        height: 100%;
    }
    .site-header .site-navigation ul.menu li.menu-item-has-children > a::after {
        position: absolute;
        right: 5px;
        background-color: #fff;
        color: #202020;
        padding: 0 10px;
        font-weight: 800;
    }
}

/* end: header */

/* main */
body:not(.home) .site-banner {
    margin-top: -80px;
}
body:not(.home) .site-banner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #e7e7e7;
    opacity: 1;
}
body:not(.home) .site-banner .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
body:not(.home) .site-banner .wrapper .page-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}
body:not(.home) .site-breadcrumbs {
    display: inline-block;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-style: solid none;
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 14%);
    padding: 22px 0 12px;
}
body:not(.home) .site-breadcrumbs .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
@media only screen and (max-width: 767px) {
    body:not(.home) .site-banner .wrapper {
        padding: 0 10px;
        min-height: 250px;
        width: auto;
    }
    body:not(.home) .site-breadcrumbs .wrapper ul#tried-breadcrumbs {
        padding-left: 10px;
        padding-right: 10px;
    }
}

body.home .site-main {
    min-height: 1000px;
    margin-top: -40px;
}
body.error404 .site-main,
body:not(.home) .site-main .wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 10px 60px;
}
body .site-main .about .wrapper {
    max-width: unset;
    margin-bottom: -60px;
}
.site-main {
    min-height: 200px;
}
.site-main .main-contain.contact {
    padding-top: 40px;
}
body.single-dich-vu .site-main .main-contain .wrapper .page-content {
    line-height: 1.8;
}
.site-main .main-contain .wrapper.have-sidebar {
    display: grid;
    grid-template-columns: 75% 25%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.site-main .main-contain .wrapper.have-sidebar .page-content {
    padding-right: 20px;
}
.site-main .main-contain .wrapper.have-sidebar .right-sidebar {
    padding-left: 20px;
    padding-right: 10px;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.site-main .page-block .title {
    margin-bottom: 30px;
}

.site-main .post-pagination {
    margin-top: 40px;
}
.site-main .post-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.site-main .post-pagination * {
    padding: 7.5px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    background-color: #fff;
    color: #005448;
    border: 1px solid #005448;
}
.site-main .post-pagination > *.current,
.site-main .post-pagination > *:hover {
    background-color: #005448;
    color: #fff;
}


/*  */

.site-main .content .woocommerce {
    /* display: grid; */
}
.site-main .content .woocommerce .woocommerce-result-count,
.site-main .content .woocommerce .woocommerce-ordering {
    height: 40px;
}
.site-main .content .woocommerce .woocommerce-result-count {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}
.site-main .content .woocommerce .woocommerce-ordering {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    padding-bottom: 20px;
}
.site-main .content .woocommerce .woocommerce-ordering select {
    background: url(../img/select_arrow.svg) no-repeat right center;
    background-image: url(../img/select_arrow.svg),none;
    background-size: 34px 12px;
    cursor: pointer;
    padding: 10px 30px 10px 12px;
    appearance: none;
    text-indent: 0.01px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    outline: none;
    height: 40px;
}
.site-main .content .woocommerce .contain-product {
    display: grid;
    grid-template-columns: auto 320px;
    grid-column: 1/span 2;
    grid-row: 2;
}
.site-main .content .woocommerce .woocommerce-pagination {
    grid-column: 1/span 2;
    grid-row: 3;
}
.site-main .content .contain-product .sidebar-product {
    padding-left: 10px;
    padding-top: 25px;
}
.site-main .content .contain-product .sidebar-product .block {
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    padding: 30px 20px 25px;
}
.site-main .content .contain-product .sidebar-product .block:not(:last-child) {
    margin-bottom: 40px;
}
.site-main .content .contain-product .sidebar-product .block > h4 {
    padding-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.site-main .content .contain-product .sidebar-product .block > h4::before {
    content: '';
    height: 2px;
    width: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #009ccf;
}
.site-main .content .contain-product .sidebar-product .block > h4::after {
    content: '';
    height: 2px;
    width: 25px;
    position: absolute;
    left: 17px;
    bottom: 0;
    background-color: #009ccf;
}
.site-main .content .contain-product .sidebar-product ul.categories {
    overflow: hidden;
    transition: all .3s;
}
.site-main .content .contain-product .sidebar-product ul.categories li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-main .content .contain-product .sidebar-product ul.categories li:not(:last-child) {
    margin-bottom: 10px;
}
.site-main .content .contain-product .sidebar-product ul.categories li a {
    color: #545454;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.site-main .content .contain-product .sidebar-product ul.categories li a:hover {
    color: #40b4dd;
}
.site-main .content .contain-product .sidebar-product ul.categories li .count {
    min-width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.site-main .content .contain-product .sidebar-product ul.recent-products {
    overflow: hidden;
    transition: all .3s;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li:not(:last-child) {
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li a {
    color: #545454;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li > div {
    display: grid;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li .name {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 35px;
    margin-bottom: 5px;
    color: #000;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li .price * {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.site-main .content .contain-product .sidebar-product ul.recent-products li .price .text-contact {
    color: #de0b0b;
}

.site-main .content .contain-product .result-product {
    padding-right: 10px;
}

body nav.woocommerce-pagination ul.page-numbers {
    margin-top: 20px;
    border: unset;
}
body nav.woocommerce-pagination ul.page-numbers li {
    border-right: unset;
}
body nav.woocommerce-pagination ul.page-numbers li:not(:last-child) {
    margin-right: 5px;
}
body nav.woocommerce-pagination ul.page-numbers li a {
    background-color: #009ccf;
    color: #fff;
}
body nav.woocommerce-pagination ul.page-numbers li a:hover {
    background-color: #009ccf;
    color: #fff;
    opacity: .7;
}
body nav.woocommerce-pagination ul.page-numbers li span.current {
    color: #000;
}

/* end: main */

/* footer */
.site-footer {
    background-color: #171717;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #171717;
    opacity: .75;
}
.site-footer,
.site-footer a {
    color: #9C9C9C;
}
.site-footer .footer-contain .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.site-footer .footer-contain.footer-top {
    display: none;
}
.site-footer .footer-contain.footer-top .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    row-gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.site-header .header-contain .wrapper > *,
.site-footer .footer-contain .wrapper > * {
    padding-left: 15px;
    padding-right: 15px;
}
.site-footer .footer-contain.footer-middle .wrapper {
    display: grid;
    grid-template-columns: 30% 22.5% 22.5% 25%;
    padding-top: 80px;
    padding-bottom: 60px;
}
.site-footer .footer-contain.footer-bottom {
    border-top: 1px solid #f1f0f6;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
}
.site-footer .footer-contain.footer-bottom .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    max-width: 1200px;
    text-align: left;
}

/* end: footer */

.only-desk {
    display: block;
}
.only-mobile {
    display: none;
}
@media only screen and (max-width: 767px) {
    body.home .site-main {
        margin-top: 80px;
        padding-top: 0;
    }
    body:not(.home) .site-banner {
        margin-top: 65px;
    }
    .site-main .content .woocommerce .contain-product {
        grid-template-columns: unset;
    }

    .site-main .content .contain-product .sidebar-product {
        padding-left: 0;
        order: 1;
    }
    .site-main .content .contain-product .result-product {
        padding-right: 0;
        order: 2;
    }
    body.scrolling .site-header .logo-block .custom-logo {
        display: block;
    }
    body.error404 .site-main,
    body:not(.home) .site-main .wrapper {
        padding: 40px 10px 40px;
    }
    body .site-main {
        padding-top: 65px;
    }
    body:not(.home) .site-main {
        padding-top: 0;
    }
    .site-header .header-contain .wrapper {
        background-color: #252531;
        height: 65px;
        padding-top: 0;
        padding-bottom: 0;
    }
    body.scrolling .site-header .header-contain .wrapper {
        box-shadow: 0 10px 50px 0 rgb(46 56 220 / 20%);
    }
    .site-header .logo-block img {
        margin: 0 auto;
        max-width: 125px;
        max-height: 45px;
    }
    .site-footer .footer-contain.footer-top .wrapper > *,
    .site-footer .footer-contain.footer-bottom .wrapper > * {
        margin-bottom: 0;
    }
    .only-mobile {
        display: block;
    }
    .site-header .header-contain.header-bottom .search-form {
        display: flex;
    }
    .only-desk {
        display: none;
    }
    .site-header .site-navigation ul.menu li.menu-item-has-children {
        flex-direction: column;
    }
    .site-header .site-navigation ul.menu li ul.sub-menu {
        opacity: 1;
        padding: 0;
        top: 0;
        position: relative;
        box-shadow: unset;
        border-top: unset;
        visibility: visible;
        transform: rotateX(0);
        background-color: transparent;
    }
    .site-header .site-navigation ul.menu li ul.sub-menu li a {
        padding: 5px 15px 5px 30px;
        color: #fff!important;
        line-height: 40px;
    }
    .site-main .main-contain .wrapper,
    .site-main .main-contain .wrapper.have-sidebar,
    .site-header .header-contain .wrapper,
    .site-footer .footer-contain.footer-top .wrapper,
    .site-footer .footer-contain.footer-middle .wrapper,
    .site-footer .footer-contain.footer-bottom .wrapper {
        grid-template-columns: unset;
        grid-row-gap: 20px;
    }
    .site-header .header-contain .wrapper {
        grid-row-gap: 0;
    }
    .site-footer .footer-contain.footer-middle .wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .site-footer .footer-contain.footer-bottom .wrapper {
        text-align: center;
    }
    .site-footer .footer-contain .wrapper > * {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .site-main .main-contain .wrapper.have-sidebar .right-sidebar,
    .site-main .main-contain .wrapper.have-sidebar .page-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .site-header .site-navigation {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        max-height: 100vh;
        width: 100%;
        max-width: 100vw;
        background-color: rgba(0,0,0,.5);
        transform: translateX(100%);
        transition: all .5s;
    }
    .site-header .site-navigation.opened {
        transform: translateX(0);
    }
    .site-header .header-contain .wrapper .nav-block .site-navigation .site-navigation-wrapper {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        width: 100%;
        max-width: 320px;
        height: calc(100% - 72.5px);
        overflow-y: auto;
    }
    .site-header .site-navigation .site-navigation-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        display: block;
        background-color: #202020;
        padding: 70px 0 20px;
        box-shadow: -5px 0 15px -5px #333;
        overflow: auto;
        transform: translateX(100%);
        transition: all .7s;
    }
    .site-header .site-navigation.opened .site-navigation-wrapper {
        transform: translateX(0);
    }
    .site-header .site-navigation .site-navigation-wrapper .nav-menu {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .site-header .site-navigation .site-navigation-wrapper .nav-menu,
    .site-header .site-navigation[role="menu"] .site-navigation-wrapper .nav-menu,
    .site-header .site-navigation[role="cart"] .site-navigation-wrapper .nav-action,
    .site-header .site-navigation[role="cart"] .site-navigation-wrapper .nav-action .cart-block .cart-wrapper {
        display: block;
        width: 100%;
    }
    .site-header .site-navigation .site-navigation-wrapper .nav-action,
    .site-header .site-navigation[role="menu"] .site-navigation-wrapper .nav-action,
    .site-header .site-navigation[role="cart"] .site-navigation-wrapper .nav-menu,
    .site-header .site-navigation[role="cart"] .site-navigation-wrapper .search-block,
    .site-header .header-contain .wrapper .cart-block .cart-toggle {
        display: none;
    }
    .site-header .site-navigation[role="cart"] .site-navigation-wrapper .nav-action .cart-block .cart-wrapper {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
    }
    .site-header .site-navigation[role="cart"] .site-navigation-wrapper .nav-action .cart-block .cart-wrapper ul.woocommerce-mini-cart {
        height: calc(100vh - 180px);
    }
    .site-header .header-contain .wrapper .site-navigation .search-block form.search-form,
    .site-header .header-contain .wrapper .site-navigation[role="menu"] .search-block form.search-form {
        width: 100%;
    }
    .site-header .header-contain .wrapper .site-navigation .search-block form.search-form .search-field,
    .site-header .header-contain .wrapper .site-navigation[role="menu"] .search-block form.search-form .search-field {
        width: 225px;
        left: unset;
        opacity: 1;
        position: relative;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .site-header .site-navigation ul.menu {
        align-items: flex-start;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 150px);
    }
    .site-header .site-navigation ul.menu li {
        width: 100%;
        float: unset;
        margin-left: 0;
        margin-right: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .site-header .site-navigation ul.menu li a {
        color: #fff;
        text-align: left;
        padding: 5px 15px;
        line-height: 30px;
        font-size: 15px;
        display: block;
        height: auto;
        font-weight: 300;
    }
    .site-header .site-navigation ul.menu li.current-menu-item a {
        color: var(--color-second-bgtheme);
    }
    body.scrolling .site-header .site-navigation ul.menu li a {
        color: #fff;
    }
    .site-header .header-contain .wrapper .site-navigation.opened .search-block form.search-form .search-submit {
        background-color: #eceeef;
        color: #000;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .site-header .site-navigation .site-navigation-toggle,
    .site-header .site-navigation .site-cart-toggle {
        color: #fff;
        font-size: 30px;
        transform: translateX(-100%);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: top .2s, right .5s;
        transition-delay: .075s;
        width: 40px;
        height: 40px;
        top: 10px;
    }
    .site-header .site-navigation .site-navigation-toggle {
        right: calc(100% - 50px);
    }
    .site-header .site-navigation .site-cart-toggle {
        left: -55px;
    }
    .site-header .site-navigation.opened .site-navigation-toggle {
        right: calc(-100% + 10px);
    }
    .site-header .site-navigation.opened .site-cart-toggle .icon-nav.open,
    .site-header .site-navigation .site-cart-toggle .icon-nav.close,
    .site-header .site-navigation.opened .site-navigation-toggle .icon-nav.open,
    .site-header .site-navigation .site-navigation-toggle .icon-nav.close {
        opacity: 0;
        position: absolute;
        z-index: -1;
    }
    .site-header .site-navigation .site-cart-toggle .icon-nav.open,
    .site-header .site-navigation.opened .site-cart-toggle .icon-nav.close,
    .site-header .site-navigation .site-navigation-toggle .icon-nav.open,
    .site-header .site-navigation.opened .site-navigation-toggle .icon-nav.close {
        opacity: 1;
        z-index: 1;
    }
    .site-header .site-navigation .site-cart-toggle i,
    .site-header .site-navigation .site-navigation-toggle i {
        font-weight: 400;
    }
}
@media only screen and (max-width: 480px) {
    .site-main .content .woocommerce .woocommerce-result-count {
        grid-column: 1;
        grid-row: 1;
    }
    .site-main .content .woocommerce .woocommerce-ordering {
        grid-column: 1;
        grid-row: 2;
    }
    .site-main .content .woocommerce .contain-product {
        grid-column: 1;
        grid-row: 3;
    }
    .site-main .content .woocommerce .woocommerce-pagination {
        grid-column: 1;
        grid-row: 4;
    }
}

/* other */
.content img {
    height: auto;
}

#breadcrumb-block {
    border-bottom: 1px solid #eaeaea;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
ul#tried-breadcrumbs {
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}
ul#tried-breadcrumbs li {
    text-transform: uppercase;
    float: left;
    margin-bottom: 10px;
}
ul#tried-breadcrumbs li:not(:first-child) {
    margin-left: 10px;
}
ul#tried-breadcrumbs li:not(:last-child) {
    margin-right: 20px;
}
ul#tried-breadcrumbs li.current,
ul#tried-breadcrumbs li:last-child {
    color: #bfbfbf;
}
ul#tried-breadcrumbs li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -20px;
    font-size: 14px;
    font-weight: 300;
    color: #c5cbd8;
}
ul#tried-breadcrumbs li:not(:last-child),
ul#tried-breadcrumbs li a {
    color: #000;
}


form.search-form {
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 15px;
}
form.search-form > * {
    height: 100%;
    border-radius: 0;
    border: none;
}
form.search-form .search-field {
    width: calc(100% - 40px);
    padding-left: 10px;
    padding-right: 10px;
    color: #666;
    background-color: #eceeef;
}
.site-header form.search-form .search-field {
    padding-left: 12.5px;
    padding-right: 12.5px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
form.search-form .search-submit {
    width: 40px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}
.site-header form.search-form .search-submit {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.site-main .main-contain.contact .wrapper {
    max-width: 100%;
    padding-bottom: 0;
}

/* archive */
.search-block> .title,
.site-main .page-block .title,
.archive-block > .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 52px;
    text-transform: uppercase;
    text-align: center;
    color: #252531;
}
.search-block .blogs,
.archive-block .services {
    display: grid;
    grid-template-columns: repeat(3, 33.33333%);
    grid-row-gap: 40px;
    margin-top: 60px;
}
.search-block .blogs .blog-item,
.archive-block .services .service-item {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
}

.archive-block .projects .project-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: left;
    text-transform: uppercase;
}
.archive-block .projects .project-title::after {
    content: '';
    bottom: -15px;
    height: 3px;
    left: 0;
    position: absolute;
    width: 75px;
    background-color: var(--color-bgtheme);
}
.archive-block .projects .project-description {
    color: #898989;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 50px;
}


.archive-block .wrap-blog {
    display: grid;
    grid-template-columns: auto 300px;
    row-gap: 30px;
}
.archive-block .wrap-blog > div.blogs {
    padding-right: 30px;
}
.archive-block .wrap-blog > div.blogs::after {
    content: '';
    background-color: #e1e2e2;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
}
.archive-block .wrap-blog > div.blogs .blog-item:not(:last-child) {
    margin-bottom: 60px;
}
.archive-block .wrap-blog > div.blogs .blog-item .featured-image {
    height: 400px;
}
.archive-block .wrap-blog > div.sidebar {
    padding-left: 30px;
}

@media only screen and (max-width: 767px) {
    .site-main .page-block .title,
    .archive-block > .title {
        font-size: 20px;
        line-height: 30px;
    }
    .site-main .page-block .title::before,
    .site-main .page-block .title::after,
    .archive-block > .title::before,
    .archive-block > .title::after {
        content: unset;
    }
    .search-block .blogs,
    .archive-block .wrap-blog,
    .archive-block .services {
        grid-template-columns: unset;
    }
    .search-block .blogs .blog-item,
    .archive-block .services .service-item {
        padding-left: 0;
        padding-right: 0;
    }
    
    .archive-block .wrap-blog > div.blogs {
        padding-right: 0;
    }
    .archive-block .wrap-blog > div.blogs .blog-item:not(:last-child) {
        margin-bottom: 40px;
    }
    .archive-block .wrap-blog > div.sidebar {
        padding-left: 0;
    }
}


/* single-blog */
.search-block> .title,
.archive-block > .title,
.single-blog > .title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #252531;
    margin-top: 20px;
    margin-bottom: 40px;
}
.single-blog > .wrap {
    display: grid;
    grid-template-columns: auto 320px;
}
.single-blog > .wrap.service {
    grid-template-columns: 240px auto;
}
.single-blog > .wrap.project {
    grid-template-columns: 40% 60%;
}
.site-main .sidebar .block:not(:last-child) {
    margin-bottom: 40px;
}
.site-main .sidebar .block > h4 {
    padding-bottom: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
}

.site-main .sidebar ul.services li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-main .sidebar ul.services li:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.site-main .sidebar ul.services li a {
    background-color: #fff;;
    color: #898989;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 10px;
    padding-right: 10px;
}
.site-main .sidebar ul.services li a:hover {
    color: #fff;
    background-color: var(--color-bgtheme);;
}

.site-main .sidebar a.file-service {
    background-color: var(--color-bgtheme);
    color: #fff;
    padding: 8px 10px 8px 60px;
    display: block;
    font-size: 14px;
    line-height: 36px;
    font-weight: 400;
    border-radius: 5px;
}
.site-main .sidebar a.file-service::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #82b9de;
    position: absolute;
    top: 0;
    left: 45px;
}
.site-main .sidebar a.file-service i {
    font-size: 18px;
    position: absolute;
    left: 20px;
    top: 17px;
}

.site-main .sidebar ul.contact-services {
    overflow: hidden;
    transition: all .3s;
}
.site-main .sidebar ul.contact-services li {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    row-gap: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    background-color: #f7f7f7;
    color: #898989;
    padding: 10px 10px 10px 20px;
}
.site-main .sidebar ul.contact-services li:not(:last-child) {
    margin-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}
.site-main .sidebar ul.contact-services li i,
.site-main .sidebar ul.contact-services li:hover {
    color: var(--color-bgtheme);
}
.site-main .sidebar ul.contact-services li::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #e5e5e5;
    position: absolute;
    left: 50px;
}

.site-main .sidebar form.search-form {
    height: 54px;
}
.site-main .sidebar form.search-form .search-field {
    background-color: #fff;
    border: 1px solid #e5e5e5;
}
.site-main .sidebar form.search-form .search-submit {
    background-color: var(--color-bgtheme);
    width: 54px;
}
.site-main .sidebar ul.categories {
    overflow: hidden;
    transition: all .3s;
}
.site-main .sidebar ul.categories li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-main .sidebar ul.categories li:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.site-main .sidebar ul.categories li a {
    color: #898989;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.site-main .sidebar ul.categories li a:hover {
    color: var(--color-bgtheme);
}
.site-main .sidebar ul.categories li .count {
    min-width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}
.site-main .sidebar ul.recent-posts {
    overflow: hidden;
    transition: all .3s;
}
.site-main .sidebar ul.recent-posts li:not(:last-child) {
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.site-main .sidebar ul.recent-posts li a {
    color: #545454;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    display: grid;
    grid-template-columns: 72px auto;
    gap: 10px;
}
.site-main .sidebar ul.recent-posts li img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
}
.site-main .sidebar ul.recent-posts li > div {
    display: grid;
}
.site-main .sidebar ul.recent-posts li .date {
    color: #252531;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 10px;
}
.site-main .sidebar ul.recent-posts li .term span {
    display: inline-block;
}
.site-main .sidebar ul.recent-posts li .name {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 20px;
    margin-bottom: 5px;
    color: #000;
}


.single-blog > .wrap .content {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    margin-right: 60px;
}
.single-blog > .wrap .content::after {
    content: '';
    background-color: #e1e2e2;
    position: absolute;
    top: 0;
    right: -30px;
    width: 1px;
    height: 100%;
}
.single-blog > .wrap.service .content {
    margin-right: 0;
    margin-left: 60px;
}
.single-blog > .wrap.project .content {
    margin-right: 20px;
}
.single-blog > .wrap.project .content::after {
    content: unset;
}
.single-blog > .wrap.service .content::after {
    left: -30px;
    right: unset;
}
.single-blog > .wrap.project .content .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: left;
    text-transform: uppercase;
}
.single-blog > .wrap.project .content .title::after {
    content: '';
    bottom: -15px;
    height: 3px;
    left: 0;
    position: absolute;
    width: 75px;
    background-color: var(--color-bgtheme);
}
.single-blog > .wrap.project .info ul.info-projects {
    margin-top: 40px;
    box-shadow: 0 1px 2px 1px rgb(0 0 0 / 12%);
}
.single-blog > .wrap.project .info ul.info-projects li {
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
    row-gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background-color: #fff;
    color: #898989;
    padding: 15px 10px 15px 25px;
}
.single-blog > .wrap.project .info ul.info-projects li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}
.single-blog > .wrap.project .info ul.info-projects li:hover i,
.single-blog > .wrap.project .info ul.info-projects li:hover {
    color: #fff;
    background-color: var(--color-bgtheme);
}
.single-blog > .wrap.project .info ul.info-projects li::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #e5e5e5;
    position: absolute;
    left: 65px;
}
.single-blog > .wrap.project .info ul.info-projects li i {
    font-size: 20px;
    color: var(--color-bgtheme);
}


.single-blog > .wrap .content .gallery-featured {
    margin-bottom: 40px;
}
.single-blog .content .featured-image {
    margin-bottom: 20px;
}
.single-blog .content .featured-image img {
    object-fit: cover;
    max-height: 450px;
}
.single-blog .content .services {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    row-gap: 20px;
    margin-bottom: 10px;
}
.single-blog .content .services .service-item:nth-child(2n) {
    margin-left: 10px;
}
.single-blog .content .services .service-item:nth-child(2n - 1) {
    margin-right: 10px;
}
.single-blog .content ul.meta {
    margin-top: 20px;
    margin-bottom: 10px;
    display: inline-block;
}
.single-blog .content ul.meta li {
    float: left;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.3;
    font-style: 400;
    color: #252531;
}
.single-blog .content ul.meta li.term span:not(:last-child)::after {
    content: ',';
    margin-right: 5px;
}
.single-blog .content ul.meta li i {
    margin-right: 5px;
    font-size: 16px;
}
.single-blog .content .expert {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
}
.single-blog .content .expert > * {
    margin-bottom: 10px;
    margin-top: 10px;
}
.single-blog .content .expert ul {
    list-style-type: square;
    padding-left: 40px;
}
.single-blog .related-blog > .title {
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 600;
    color: #252531;
    margin-top: 40px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .single-blog .content .services {
        grid-template-columns: unset;
    }
    .single-blog .content .services .service-item:nth-child(2n) {
        margin-left: 0;
    }
    .single-blog .content .services .service-item:nth-child(2n - 1) {
        margin-right: 0;
    }
    .single-blog > .wrap,
    .single-blog > .wrap.project,
    .single-blog > .wrap.service {
        grid-template-columns: unset;
        row-gap: 40px;
    }
    .single-blog > .wrap .content {
        margin-right: 0;
        order: 2;
    }
    .single-blog > .wrap.service .content,
    .single-blog > .wrap.project .content {
        margin-left: 0;
    }
    .single-blog > .wrap .content::after,
    .single-blog > .wrap.service .content::after,
    .single-blog > .wrap.project .content::after {
        content: unset;
    }
    .single-blog .content .name {
        font-size: 30px;
    }
    .single-blog .gallery-featured #full-gallery {
        min-height: 300px!important;
        padding-left: 65px;
        width: calc(100% - 130px);
    }
    .single-blog > .wrap .content .gallery-featured .mibreit-thumbview-previous,
    .single-blog > .wrap .content .gallery-featured .mibreit-thumbview-next {
        display: none;
    }
    .single-blog > .wrap .content .gallery-featured .mibreit-thumbview {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        margin: unset;
    }
    .single-blog > .wrap .content .gallery-featured .mibreit-thumbview .mibreit-thumbs .mibreit-thumbs-scroller {
        flex-direction: column;
        height: 300px;
        overflow-y: scroll;
        width: 100%;
        max-width: 60px;
        left: 0!important;
    }
    .single-blog > .wrap .content .gallery-featured .mibreit-thumbview .mibreit-thumbs img {
        width: 90px!important;
        height: 72px!important;
        object-fit: cover;
    }
    .single-blog > .wrap .content .gallery-featured .content-slideshow .mibreit-imageElement img {
        height: 300px!important;
        object-fit: cover;
        margin: unset!important;
    }
}

/* blog-item */
.blog-item a {
    color: #252531;
}
.blog-item .featured-image {
    height: 200px;
    background-color: #edededcc;
    overflow: hidden;
    transition: background-color .7s ease;
}
.blog-item:hover .featured-image {
    background-color: #252531;
}
.blog-item .featured-image img {
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    transition: all .7s ease;
}
.blog-item:hover .featured-image img {
    transform: scale(1.1);
    opacity: .5;
}
.blog-item .box-contain {
    box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
    padding: 20px 30px;
    background-color: #fff;
}
.blog-item .box-contain ul.meta {
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 20px;
    width: 100%;
}
.blog-item .box-contain ul.meta::before,
.blog-item .box-contain ul.meta::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -30px;
    width: calc(100% + 60px);
    height: 1px;
    background-color: #e5e5e5;
}
.blog-item .box-contain ul.meta::after {
    top: unset;
    bottom: -10px;
}
.blog-item .box-contain ul.meta li {
    float: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    color: #252531;
}
.blog-item .box-contain ul.meta li:not(:last-child) {
    margin-right: 15px;
}
.blog-item .box-contain ul.meta li i {
    margin-right: 5px;
    color: var(--color-bgtheme);
    font-size: 14px;
}
.blog-item .box-contain .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 24px;
}
.blog-item .box-contain .content {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 100px;
    color: #898989;
}
.blog-item .box-contain .view {
    height: 30px;
}
.blog-item .box-contain .view a {
    display: inline-block;
    font-size: 13px;
    line-height: 26px;
    font-weight: 500;
    padding: 12.5px 40px;
    text-transform: uppercase;
    background-color: var(--color-bgtheme);
    color: #fff;
    position: absolute;
    bottom: -30px;
}
.blog-item .box-contain .view a::after {
    content: '';
    border-color: #2a6187 transparent transparent transparent;
    border-style: solid;
    border-width: 10px 8px 0 0;
    position: absolute;
    right: -7px;
    bottom: 0px;
    width: 0;
    height: 0;
}


/* blog-item-full */
.blog-item-full {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
}
.blog-item-full .box {
    box-shadow: unset;
    transition: all .7s;
}
.blog-item-full:hover .box {
    box-shadow: 0px 5px 83px 0px rgb(40 40 40 / 11%);
}
.blog-item-full .box::after {
    content: '';
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #40b4dd;
    transition: all 300ms ease-in-out;
}
.blog-item-full:hover .box::after {
    width: calc(100% - 80px);
}
.blog-item-full a {
    color: #0ca0d3;
}
.blog-item-full .featured-image {
    height: 300px;
    background-color: #edededcc;
    overflow: hidden;
    border-radius: 10px;
}
.blog-item-full .featured-image img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}
.blog-item-full .featured-image:hover img {
    transform: scale(1.1);
}
.blog-item-full .box-contain {
    padding-top: 15px;
    color: #000;
}
.blog-item-full .box-contain .wrap {
    padding: 20px 40px 30px;
    border-radius: 10px;
    background-color: #fff;
}
.blog-item-full .box-contain .meta {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #616161;
    margin-bottom: 5px;
}
.blog-item-full .box-contain .meta span:not(:last-child)::after {
    content: '-';
    margin-left: 5px;
}
.blog-item-full .box-contain .terms {
    margin-bottom: 5px;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    background-color: #40b4dd;
    position: absolute;
    top: -35px;
    padding: 7.5px 15px;
    border-radius: 10px;
}
.blog-item-full .box-contain .terms span:not(:last-child)::after {
    content: ',';
}
.blog-item-full .box-contain .title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 60px;
}
.blog-item-full .box-contain .content {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 100px;
    color: #8c8c8c;
}
.blog-item-full .box-contain .view {
    margin-top: 20px;
}
.blog-item-full .box-contain .view::after {
    content: '';
    width: 70px;
    height: 1px;
    background-color: #bfbfbf;
    position: absolute;
    top: 50%;
    margin-left: 15px;
}
.blog-item-full .box-contain .view a {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}

/* service-item */
.service-item .wrap {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
    padding-bottom: 70px;
    background: #fff;
    border: 1px solid #e7e7e7;
    overflow: hidden;
}
.service-item .featured-image {
    height: 200px;
    background-color: #edededcc;
}
.service-item .featured-image img {
    height: 100%;
    object-fit: cover;
}
.service-item .box-contain {
    padding-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
    position: absolute;
    top: calc(100% - 70px);
    width: calc(100% - 50px);
    background-color: #fff;
    border-top: 5px solid var(--color-bgtheme);
    transition: .4s top ease;
}
.service-item:hover .box-contain {
    top: 60px;
}
.service-item .box-contain .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 70px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: 70px;
}
.service-item .box-contain .title::before {
    content: '';
    background-color: var(--color-bgtheme);
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: -25px;
    transition: left .25s;
}
.service-item:hover .box-contain .title::before {
    left: -100px;
}
.service-item .box-contain .title i {
    font-size: 24px;
    font-weight: 700;
    transform: translateY(2.5px);
    color: #fff;
    margin-right: 40px;
    transition: color .5s;
}
.service-item:hover .box-contain .title i {
    color: var(--color-bgtheme);
}
.service-item .box-contain .content {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 72px;
    color: #898989;
    margin-bottom: 20px;
}
.service-item .box-contain .viewmore {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-bgtheme);
}
.service-item .box-contain .viewmore:hover {
    color: #2a76a9;
}

/* project-item */
.project-item {
    margin: 0 15px 40px;
}
.project-item .featured-image {
    height: 250px;
    background-color: #edededcc;
    overflow: hidden;
}
.project-item .featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 25%);
    z-index: 1;
}
.project-item .featured-image img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}
.project-item:hover .featured-image img {
    transform: scale(1.1);
}
.project-item .box-contain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    padding: 30px 20px;
    display: flex;
    align-items: flex-end;
}
.project-item .box-contain .terms {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
}
.project-item .box-contain .terms span:not(:last-child)::after {
    content: ',';
}
.project-item .box-contain .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}
.project-item .box-contain .view {
    margin-top: 30px;
}
.project-item .box-contain .view a {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background-color: #009bd1;
}
@media only screen and (max-width: 767px) {
    .project-item {
        margin: 0 0 20px;
    }
}


/*  */
.section-projects-archive .wrap {
    text-align: left;
}
.section-projects-archive #tabs-filtering {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 1px 2px 1px rgb(0 0 0 / 12%);
}
.section-projects-archive #tabs-filtering li {
    float: left;
}
.section-projects-archive #tabs-filtering li a {
    color: #999;
    padding: 15px 30px;
    border-color: transparent;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}
.section-projects-archive #tabs-filtering li a.active,
.section-projects-archive #tabs-filtering li a:hover {
    color: var(--color-bgtheme);
    background-color: #f8f8f8;
}
.section-projects-archive #tabs-filtering li a::after {
    content: '';
    background-color: #e5e5e5;
    position: absolute;
    z-index: 1;
    height: 100%;
    right: 0;
    top: 0;
    width: 1px;
}

.section-projects-archive #tabs-contain .gallery {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.section-projects-archive #tabs-contain .gallery .item {
    margin-bottom: 30px;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 100%;
}
.section-projects-archive #tabs-contain .item .card {
    background-color: transparent;
    border: none;
    margin-right: 15px;
    margin-left: 15px;
    box-shadow: 0 22px 20px 0 rgb(0 0 0 / 5%);
    background-color: #fff;
    overflow: hidden;
    height: 400px;
    padding-bottom: 100px;
}
.section-projects-archive #tabs-contain .item .card-img-top {
    height: 350px;
    position: relative;
    overflow: hidden;
}
.section-projects-archive #tabs-contain .item .card-img-top .bg-image {
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
    transition: all .5s;
    transform: scale(1);
}
.section-projects-archive #tabs-contain .item:hover .card-img-top .bg-image {
    transform: scale(1.2);
}
.section-projects-archive #tabs-contain .item .card-body {
    padding: 15px 20px 20px;
    text-align: left;
    position: absolute;
    bottom: -14px;
    background-color: #fff;
    transition: all 300ms ease-in-out;
}
.section-projects-archive #tabs-contain .item:hover .card-body {
    bottom: 0;
}
.section-projects-archive #tabs-contain .item .card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 24px;
    margin-bottom: 20px;
}
.section-projects-archive #tabs-contain .item .card-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 100px;
    color: #7A7A7A;
}
.section-projects-archive #tabs-contain .item .card-terms {
    margin-bottom: 15px;
    text-transform: capitalize;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 25px;
}
.section-projects-archive #tabs-contain .item .card-terms span {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    position: relative;
    color: #252531;
    display: inline-block;
}
.section-projects-archive #tabs-contain .item .card-terms span:not(:last-child) {
    margin-right: 5px;
}
.section-projects-archive #tabs-contain .item .card-terms span:not(:last-child)::after {
    content: ',';
}
.section-projects-archive #tabs-contain .item .card-view {
    margin-top: 20px;
}
.section-projects-archive #tabs-contain .item .card-view a {
    padding: 12px 24px;
    text-transform: capitalize;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    background-color: var(--color-bgtheme);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-projects-archive #tabs-contain .item .card-view a i {
    font-size: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-projects-archive #tabs-contain .item .card-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .section-projects-archive #tabs-filtering {
        display: grid;
        grid-template-columns: repeat(2, 50%);    
    }
    .section-projects-archive #tabs-filtering li {
        float: unset;
    }
    .section-projects-archive #tabs-filtering li a::before {
        content: '';
        background-color: #e5e5e5;
        position: absolute;
        z-index: 1;
        height: 1px;
        left: 0;
        bottom: 0;
        width: 100%;
    }
    .section-projects-archive #tabs-contain .gallery {
        margin-left: 0;
        margin-right: 0;
    }
    .section-projects-archive #tabs-contain .item .card-img-top {
        height: 250px;
    }
    .section-projects-archive #tabs-contain .gallery .item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .section-projects-archive #tabs-contain .item .card {
        overflow: visible;
        height: unset;
        margin-right: 5px;
        margin-left: 5px;
    }
    .section-projects-archive #tabs-contain .item .card {
        padding-bottom: 0;
    }
    .section-projects-archive #tabs-contain .item .card-body {
        bottom: 0;
        position: relative;
    }
}
@media only screen and (max-width: 480px) {
    .section-projects-archive #tabs-contain .gallery .item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .section-projects-archive #tabs-contain .item .card-img-top {
        height: 200px;
    }
    .section-projects-archive #tabs-contain .item .card-title {
        font-size: 12px;
        height: 24px;
    }
}
@media only screen and (max-width: 380px) {
    .section-projects-archive #tabs-contain .item .card-img-top {
        height: 200px;
    }
}

form.wpcf7-form {
    display: block;
}
form.wpcf7-form input {
    height: 46px;
}
form.wpcf7-form .form-fields {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
form.wpcf7-form .form-fields .wpcf7-form-control-wrap {
    display: inline-flex;
    float: left;
    width: 100%;
}
form.wpcf7-form .form-fields .wpcf7-form-control-wrap span {
    background-color: #2c3c4a;
    font-size: 12px;
    display: flex;
    align-items: center;
}
form.wpcf7-form .form-fields .wpcf7-email {
    border: none;
    color: #888;
    border: 1px solid #f1f0f6;
    background-color: #f1f0f6;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    font-style: italic;
}
form.wpcf7-form .form-fields .submit-button i {
    position: absolute;
    z-index: 1;
    font-size: 18px;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
    color: #fff;
}
form.wpcf7-form .form-fields .wpcf7-submit {
    padding-left: 30px;
    padding-right: 20px;
    font-size: 0;
    border: none;
    height: 50px;
    background-color: var(--color-bgtheme);
}
form.wpcf7-form .wpcf7-spinner {
    position: absolute;
    right: -10px;
}
@media only screen and (max-width: 767px) {
    form.wpcf7-form .form-fields .wpcf7-email,
    form.wpcf7-form .form-fields .wpcf7-submit {
        border-radius: 0;
        width: 100%;
    }
    form.wpcf7-form .wpcf7-spinner {
        transform: translateY(10px);
    }
}

form.search-form {
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 15px;
}
form.search-form > * {
    height: 100%;
    border-radius: 0;
    border: none;
}
form.search-form .search-field {
    width: calc(100% - 40px);
    padding-left: 10px;
    padding-right: 10px;
    color: #666;
    background-color: #eceeef;
}
form.search-form .search-submit {
    width: 40px;
    background-color: #cc3333;
    color: #fff;
    cursor: pointer;
}


/*  */
#scroll-top {
    width: 55px;
    height: 55px;
    line-height: 55px;
    position: fixed;
    bottom: 105%;
    right: 45px;
    font-size: 20px;
    z-index: 999999999;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background-color: #252531;
    border: unset;
    transition: all 1s ease;
}
#scroll-top:hover {
    background-color: var(--color-bgtheme);
}
body.scrolling #scroll-top {
    bottom: 80px;
}
@media only screen and (max-width: 767px) {
    #scroll-top {
        display: none;
    }
}

.single-blog .gallery-featured #full-gallery {
    min-height: 400px;
}
.single-blog .gallery-featured #full-gallery-title {
    position: absolute;
    top: 10px;
    left: 90px;
    padding: 5px 15px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    width: calc(100% - 180px);
    z-index: 999;
    text-align: center;
}

body #full-gallery-title {
    color: #fff;
}

.single-blog .gallery-featured .mibreit-enter-fullscreen-button {
    right: 10px;
}
body .mibreit-fullscreen {
    z-index: 9999999999;
}
body .mibreit-fullscreen svg {
    fill: #fff;
}
body .mibreit-fullscreen svg {
    z-index: 99999999;
}