/*!
Theme Name: rozit
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: rozit
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

rozit is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/



/* font
-------------------------------------------------------------- */

@font-face {
    font-family: "Oswald";
    font-display: swap;
    src: url("fonts/Oswald-ExtraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Oswald";
    font-display: swap;
    src: url("fonts/Oswald-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Oswald";
    font-display: swap;
    src: url("fonts/Oswald-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Sansation";
    font-display: swap;
    src: url("fonts/Sansation-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Sansation";
    font-display: swap;
    src: url("fonts/Sansation-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'tm-rozit';
    src: url('fonts/tm-rozit.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.tm-rozit {
    font-family: 'tm-rozit' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tm-rozit-icon-telegram2:before {
    content: "\e904";
}

.tm-rozit-icon-linkedin-full:before {
    content: "\e905";
}

.tm-rozit-icon-facebook:before {
    content: "\e906";
}

.tm-rozit-icon-instagram:before {
    content: "\e907";
}

.tm-rozit-icon-whatsapp:before {
    content: "\e908";
}

.tm-rozit-icon-phone-call:before {
    content: "\e900";
}

.tm-rozit-icon-placeholder:before {
    content: "\e901";
}

.tm-rozit-icon-envelope:before {
    content: "\e902";
}

.tm-rozit-icon-right-arrow-angle:before {
    content: "\e903";
}



/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    background: #303030;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Sansation', sans-serif;
}



/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
html,
body {
    height: 100%;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: 700;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}


/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
optgroup,
textarea {
    color: #404040;
    font-family: -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 25px;
}

p:last-child {
    margin-bottom: 0;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 15px;
}

address {
    margin: 0 0 15px;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

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

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 25px;
}

ul,
ol {
    margin: 0 0 15px 25px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 25px;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 25px 25px;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

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

figure {
    margin: 0 0 25px;
}

table {
    margin: 0 0 25px;
    width: 100%;
}

/* Links
--------------------------------------------- */
:active,
:hover,
a:active,
a:hover {
    outline: 0;
}

a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

a:hover,
a:focus,
a:active {
    color: #fff;
    text-decoration: none;
}

a,
a:visited {
    text-decoration: none;
}



/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/



/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
    margin: 0 0 25px;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 25px 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 25px;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 25px;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 25px;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 25px;
    display: grid;
    grid-gap: 25px;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 25px;
    margin-bottom: 25px;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 25px;
    margin-bottom: 25px;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}


/* header
========================================================================== */
.tm-header__logo {
    z-index: 1;
}

.tm-header__logo,
.tm-header__logo a {
    display: flex;
    width: 170px;
}

.tm-header__logo img {
    width: 100%;
}

.tm-header {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #BDBDBD;
    padding: 3px 0;
    background: rgba(48, 48, 48, 1);
    position: absolute;
    z-index: 1000;
}


.tm-header_active {
    animation: slideDown 0.5s;
    position: fixed;
}


.tm-header::after {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    height: 0;
    content: '';
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}




@media (min-width: 1181px) {
    .tm-mob-back {
        display: none;
    }
}

@media (max-width: 1180px) {
    .tm-search__content {
        top: 30px;
    }

    .tm-header__right {
        padding-right: 44px;
        margin-bottom: 3px;
    }

    .tm-header {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .tm-header__logo,
    .tm-header__logo a {
        width: 120px;
    }

}

@media (max-width: 670px) {

    .tm-header__logo,
    .tm-header__logo a {
        width: 110px;
    }

    .tm-primary-navigation {
        position: absolute;
        right: 0;
        top: 0;
    }


}

@media (max-width: 480px) {
    .tm-header {
        background: rgba(48, 48, 48, 1);
    }
}

@media (max-width: 385px) {

    .tm-header__logo,
    .tm-header__logo a {
        max-width: 98px;
    }
}



/* menu
========================================================================== */

/* toggle ----------------- */
.tm-toogle-navigation>label {
    display: flex;
    flex-direction: column;
    width: 16px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 30px;
    top: 20px;
    justify-content: flex-end;
    align-items: flex-end;
}


.tm-toogle-navigation>label span {
    background: #fff;
    height: 2px;
    margin: 2px 0;
    border-radius: 3px;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    z-index: 1;
}

.tm-toogle-navigation>label>span:nth-of-type(1) {
    width: 60%;
}

.tm-toogle-navigation>label>span:nth-of-type(2) {
    width: 100%;
}

.tm-toogle-navigation>label>span:nth-of-type(3) {
    width: 40%;
}

.tm-toogle-navigation>input[type="checkbox"] {
    display: none;
}



.tm-toogle-navigation input[type="checkbox"]:checked~label>span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(-2.9px, 6.5px);
    width: 50%;
}

.tm-toogle-navigation input[type="checkbox"]:checked~label>span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg)
}

.tm-toogle-navigation input[type="checkbox"]:checked~label>span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(-1px, -4px) rotatez(45deg);
}

@media (min-width: 1181px) {
    .tm-toogle-navigation>label {
        display: none;
    }
}

@media (max-width: 1180px) {
    .tm-toogle-navigation {
        height: 60px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .tm-toogle-navigation {
        height: 40px;
        padding: 0;
    }

    .tm-toogle-navigation>label {
        top: 10px;
    }
}

/* comp navigation ----------------- */
.tm-menu-wrapper-header ul,
.tm-menu-wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

.tm-menu-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    width: 250px;
    background: #fff;
    height: 0;
    visibility: hidden;
    display: block;
    flex-wrap: wrap;
    z-index: 100;

}

.tm-menu-wrapper_header>li,
.tm-menu-wrapper_header>li>a {
    line-height: 78px;
}

.tm-menu-wrapper>li:not(:last-child) {
    padding-right: 32px;
}

.tm-menu-wrapper>li.menu-item-has-children {
    padding-right: 42px;
}

.tm-menu-wrapper>li>ul {
    -webkit-transition: opacity 0.6s, -webkit-transform 0.3s;
    transition: opacity 0.6s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.6s;
    transition: transform 0.3s, opacity 0.6s;
    transition: transform 0.3s, opacity 0.6s, -webkit-transform 0.3s;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
    left: -12px;
    box-shadow: 0 7px 8px rgb(0 0 0 / 5%);
    padding-top: 20px;
    padding-bottom: 20px;
}

.tm-menu-wrapper>li>ul li {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.tm-menu-wrapper>li>ul li>ul {
    -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: opacity 0.6s, -webkit-transform 0.6s;
    -o-transition: transform 0.6s, opacity 0.6s;
    transition: transform 0.6s, opacity 0.6s;
    transition: transform 0.6s, opacity 0.6s, -webkit-transform 0.6s;
    -webkit-transform: translateX(10px) translateY(0%);
    -ms-transform: translateX(10px) translateY(0%);
    transform: translateX(10px) translateY(0%);
    opacity: 0;
    height: auto;
    visibility: hidden;
    left: 250px;
    top: 0;
}

.tm-menu-wrapper>li>ul li:hover>ul {
    -webkit-transform: translateX(0) translateY(0%);
    -ms-transform: translateX(0) translateY(0%);
    transform: translateX(0) translateY(0%);
    opacity: 1;
    visibility: visible;
}

.tm-menu-wrapper>li>ul li:hover>ul li {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tm-menu-wrapper>li:hover>ul {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    height: auto;
    visibility: visible;
}

.tm-menu-wrapper>li:hover>ul li {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tm-menu-wrapper li.menu-item-has-children>span>a {
    position: relative;
}

.tm-menu-wrapper>li>ul li.menu-item-has-children>span>a::after,
.tm-menu-wrapper>li.menu-item-has-children>span>a::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 4px;
    border: solid #191A00;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
}

.tm-menu-wrapper>li>ul li.menu-item-has-children>span>a::after {
    right: 5px;
}

.tm-menu-wrapper>li>ul li.menu-item-has-children>span>a::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 14px;
    right: 10px;
}

.tm-menu-wrapper>li.menu-item-has-children>span>a::after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.tm-menu-wrapper>li>ul>li.current-menu-ancestor>span>a::after,
.tm-menu-wrapper>li.current-menu-ancestor>span>a:after,
.tm-menu-wrapper>li.current-menu-item.menu-item-has-children>span>a:after,
.tm-menu-wrapper>li.menu-item-has-children>span>a:hover:after,
.tm-menu-wrapper>li.menu-item-has-children:focus>span>a:after,
.tm-menu-wrapper>li.menu-item-has-children:hover>span>a:after,
.tm-menu-wrapper li li.current-menu-item.menu-item-has-children>span>a::after,
.tm-menu-wrapper li li.menu-item-has-children>span>a:hover::after {
    border: solid #D69700;
    border-width: 0 2px 2px 0;
}

.tm-menu-wrapper li li.current-menu-item.menu-item-has-children>span>a::after {
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

.tm-menu-wrapper li li.menu-item-has-children>span>a {
    padding-right: 25px;
}

.tm-menu-wrapper li li.menu-item-has-children>a::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 16px;
    display: inline-block;
    padding: 2px;
}

.tm-menu-wrapper>li:hover>span>a,
.tm-menu-wrapper>li.current-lang>span>a,
.tm-menu-wrapper>li li.current-menu-ancestor>span>a,
.tm-menu-wrapper>li.current-menu-item>span>a,
.tm-menu-wrapper>li.current-menu-ancestor>span>a {
    color: rgba(255, 255, 255, .8);
}

.tm-menu-wrapper li li a:hover {
    background: #fff;
    color: rgba(255, 255, 255, .8);
}

.tm-menu-wrapper li li.current-menu-item>span>a {
    color: #000;
    background: rgba(255, 255, 255, .8);
    opacity: 1;
}

.tm-menu-wrapper li {
    list-style: none;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}

.tm-menu-wrapper li::before {
    display: none;
}

.tm-menu-wrapper li a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    transition: all 0.3s ease-out;
    opacity: 1;
    font-size: 20px;
    font-family: "Oswald", sans-serif;
}


.tm-menu-wrapper>li>span>a {
    color: #fff;
    opacity: 1;
    position: relative;
}


.tm-menu-wrapper li:hover {
    cursor: pointer;
}

.tm-menu-wrapper li li a {
    line-height: 16px;
    font-size: 16px;
    padding: 10px 18px;
    display: block;
    position: relative;
}

.tm-mob-back::before {
    background: #303030;
    content: '';
    height: 100vh;
    left: 0;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: all .3s;
    top: 0;
}



@media (min-width: 1181px) {
    .tm-mob-back {
        display: none;
    }
}

@media (max-width: 1180px) {


    .tm-menu-wrapper_header>li,
    .tm-menu-wrapper_header>li>a {
        line-height: 40px;
    }

    .tm-primary-menu-container {
        display: none;
        width: 100%;
        padding: 20px;
    }

    .tm-primary-navigation {
        position: absolute;
        z-index: 1;
        width: 100%;
        background: #303030;
        height: 0;
        top: 65px;
        left: 0;
        visibility: hidden;
    }


    [id=main-navigation-toggle]:checked~.tm-header__right .tm-primary-navigation {
        visibility: visible;
        height: calc(100vh - 65px);
        overflow: auto;
    }

    [id=main-navigation-toggle]:checked~.tm-header__right .tm-primary-navigation .tm-header__btn.tm-header__btn_mob,
    [id=main-navigation-toggle]:checked~.tm-header__right .tm-primary-navigation .tm-primary-menu-container {
        display: block;
    }

    [id=main-navigation-toggle]:checked~.tm-header__right .tm-toogle-navigation {
        background: #303030;
    }

    [id=main-navigation-toggle]:checked~.tm-mob-back::before {
        opacity: 1;
        visibility: visible;
    }

    .tm-menu-wrapper>li:not(:last-child) {
        padding-right: 0;
    }

    .tm-menu-wrapper>li,
    .tm-menu-wrapper>li>span,
    .tm-menu-wrapper>li>span>a {
        width: 100%;
        display: block;
    }

    .tm-menu-wrapper>li>span>a::before {
        display: none;
    }

    .tm-menu-wrapper>li.menu-item-has-children>span>a::before,
    .tm-menu-wrapper>li.menu-item-has-children.current-menu-item>span>a::before,
    .tm-menu-wrapper>li.current-menu-ancestor>span>a::before,
    .tm-menu-wrapper>li.menu-item-has-children:hover>span>a::before,
    .tm-menu-wrapper>li.menu-item-has-children>span>a:hover::before {
        width: 23px;
        height: 23px;
        right: 0;
        z-index: 1;
        top: 7px;
        display: block;
    }



    .tm-menu-wrapper>li.current-menu-item>span>a::before {
        display: none;
    }

    .tm-menu-wrapper>li.current-menu-item.menu-item-has-children>span>a::before,
    .tm-menu-wrapper>li.lang-item:hover>span>a::before,
    .tm-menu-wrapper>li.lang-item>span>a:hover::before,
    .tm-menu-wrapper>li.current-lang>span>a:before,
    .tm-menu-wrapper>li:hover>span>a::before,
    .tm-menu-wrapper>li>span>a:hover::before {
        display: block;
    }

    .tm-menu-wrapper>li.current-lang>span>a:before {
        width: 100%;
        height: 3px;
    }

    .tm-menu-wrapper>li.menu-item-has-children>span>a::after {
        content: "";
        position: absolute;
        right: 7px;
        top: 15px;
        display: inline-block;
        z-index: 5;
    }

    .tm-menu-wrapper>li>ul {
        padding-top: 0;
        padding-bottom: 0;
    }

    .tm-menu-wrapper>li.lang-item>span>a:before {
        left: 0;
        top: 0;
    }

    .tm-menu-wrapper>li>ul li>ul,
    .tm-menu-wrapper ul {
        position: relative;
        height: auto;
        visibility: visible;
        width: 100%;
    }

    .tm-menu-wrapper li li a {
        padding: 13px 15px;
    }

    .tm-menu-wrapper li li:not(:last-child) {
        border-bottom: 1px solid #fff;
    }

    .tm-menu-wrapper>li>ul li>ul,
    .tm-menu-wrapper>li>ul {
        opacity: 1;
        box-shadow: 0 0 0 rgb(0 0 0 / 0%);
        left: 0;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    .tm-menu-wrapper>li>ul li>ul {
        left: 20px;
        width: calc(100% - 20px);
    }


    .tm-menu-wrapper>li>ul li {
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
    }
}


/* projects
========================================================================== */
.tm-project__data {
    background: #fff;
    padding: 15px 25px;
}

.tm-project__wrap-data {
    margin-top: -25px;
    z-index: 3;
}

.tm-project__img {
    width: 50px;
}

.tm-project__data,
.tm-project__data .tm-h2,
.tm-project__data .tm-h3 {
    color: #000;
}

.tm-projects-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

@media (max-width: 480px) {
    .tm-project__data.tm-flex-space {
        justify-content: flex-start;
    }

    .tm-project__data .tm-project__meters {
        width: 50%;
        margin-left: -10px;
        padding: 0 10px;
        font-size: 18px;
    }

    .tm-project__img {
        width: 35px;
    }
}

/* search
========================================================================== */
.is-form-style input.is-search-input,
.is-search-icon {
    background: transparent;
    color: #fff;
}

.is-form-style .is-search-submit path {
    fill: #fff;
}

.is-form-style input.is-search-input::-webkit-input-placeholder {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}

/* blog
========================================================================== */
.tm-category__header {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 100px;
    overflow: hidden;
}

.tm-portfolio__header {
    padding: 60px 0;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.tm-cat-link {
    opacity: 0.8;
}

.tm-cat-link:hover {
    opacity: 1;
}

.tm-category__column {
    margin-top: 30px;
}

.tm-category__posts.tm-grid {
    row-gap: 50px;
}

/* .tm-blog-card {
    background: #282828;
    padding: 10px 10px 0;
} */

.tm-blog-card__img {
    overflow: hidden;
}

.tm-blog-card__img img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.tm-blog-card:hover img {
    transform: scale(1.1);
}

.tm-blog-card__title:hover {
    opacity: .6;
    transition: all .3s ease-in-out;
}

.tm-blog-card__date {
    padding-left: 15px;
}

.tm-blog-card__date::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 7px;
}

.tm-blog-card__header {
    background: #282828;
    border: 1px solid #fff;
    padding: 25px 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -45px;
}

.tm-blog-card__line {
    font-size: 14px;
    opacity: .6;
}

.tm-prev-post {
    padding-right: 10px;
}

.tm-next-post {
    padding-left: 10px;
    text-align: right;
}

.tm-prev-post,
.tm-next-post {
    max-width: 50%;
}

.tm-prev-post a,
.tm-next-post a {
    position: relative;
    font-size: 30px;
    font-weight: 300;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.tm-prev-post a:hover,
.tm-next-post a:hover {
    opacity: .6;
}


.tm-prev-post a::before,
.tm-next-post a::after {
    content: '';
    content: "\e903";
    font-family: 'tm-rozit';
    font-size: 25px;
    width: 25px;
    height: 25px;
    display: inline-block;
    top: 11px;
    line-height: 1;
}

.tm-prev-post a::before {
    left: 0;
    transform: rotate(-180deg);
}

.tm-next-post a::after {
    right: 0;
}


@media (max-width: 1440px) {
    .tm-category__header.tm-margin-large-bottom {
        margin-bottom: 40px;
    }

    .tm-category__posts.tm-grid {
        row-gap: 50px;
    }

    .tm-prev-post a,
    .tm-next-post a {
        font-size: 24px;
    }

    .tm-prev-post a::before,
    .tm-next-post a::after {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 767px) {

    .tm-blog-card__left,
    .tm-blog-card__right {
        width: 100%;
    }

    .tm-prev-post a,
    .tm-next-post a {
        font-size: 18px;
    }

    .tm-prev-post a::before,
    .tm-next-post a::after {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }

}

@media (max-width: 480px) {
    .tm-blog-card__header {
        padding: 15px 20px;
    }
}


/* 404
========================================================================== */
.tm-404__content {
    max-width: 750px;
    margin: 80px auto 100px;
}

/* social
========================================================================== */
.tm-social {
    display: flex;
    column-gap: 10px;
}

.tm-social a {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    transition: all .3s ease-out;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-social a:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
    text-decoration: none !important;
}

/* .tm-social a.tm-rozit-icon-youtube:hover {
    background: #f80f1b;
}

.tm-social a.tm-rozit-icon-whatsapp:hover {
    background: #18cf55;
}

.tm-social a.tm-rozit-icon-facebook:hover {
    background: #1675ec;
}

.tm-social a.tm-rozit-icon-telegram2:hover,
.tm-social a.tm-rozit-icon-telegram:hover {
    background: #27a3e2;
}

.tm-social a.tm-rozit-icon-viber:hover {
    background: #774e98;
}

.tm-social a.tm-rozit-icon-instagram:hover {
    background: #ff63e5;
}

.tm-social a.tm-rozit-icon-linkedin-full:hover {
    background: #3f8ed8;
} */


/* lang 
========================================================================== */
.tm-lang .wpml-ls-legacy-dropdown {
    width: 63px;
}

.tm-lang .wpml-ls-legacy-dropdown a {
    background: none;
    border: 0 none;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 19px;
    padding: 5px 25px 11px 10px;
}

.tm-lang .wpml-ls-legacy-dropdown li::before {
    display: none;
}

.tm-lang .wpml-ls-legacy-dropdown a:hover,
.tm-lang .wpml-ls-legacy-dropdown a:focus {
    background: none;
}

.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    border: 0.2em solid transparent;
    border-top: 0.4em solid;
}

.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border-top: 0 none;
}

.tm-lang .wpml-ls-legacy-dropdown:hover a,
.tm-lang .wpml-ls-legacy-dropdown:focus a,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-item:focus a,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a,
.tm-lang .wpml-ls-legacy-dropdown a:focus,
.tm-lang .wpml-ls-legacy-dropdown a:hover {
    background: #2D2D2D;
    color: #e0e0e0;
}

.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu:hover a:hover {
    color: #fff;
}

/* footer
========================================================================== */
.tm-footer {
    border-top: 1px solid #fff;
    padding-top: 30px;
    color: #fff;
}

.tm-footer__text {
    max-width: 330px;
}

.tm-footer a {
    color: #fff;
}

.tm-footer a:hover {
    text-decoration: underline;
}

.tm-footer__mail,
.tm-footer__phone,
.tm-footer__city {
    position: relative;
}

.tm-footer__mail a,
.tm-footer__phone a,
.tm-footer__city {
    padding-left: 25px;
}

.tm-footer__phone a::before,
.tm-footer__city::before,
.tm-footer__mail a::before {
    font-family: 'tm-rozit';
    position: absolute;
    left: 0;
    top: 0;
}

.tm-footer__phone a::before {
    content: "\e900";
}

.tm-footer__mail a::before {
    content: "\e902";
}

.tm-footer__city::before {
    content: "\e901";
}

.tm-footer__secondline {
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding: 15px 0;
}

.tm-footer__policy,
.tm-footer__copyright {
    opacity: 0.6;
}

.tm-footer__form {
    padding-top: 40px;
}

.tm-content-form .tm-grid {
    row-gap: 12px;
    margin-left: -12px;
}

.tm-content-form .tm-grid>* {
    padding-left: 12px;
}


/* popup
========================================================================== */
.form-popup {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
}

.mfp-close-btn-in .mfp-close {
    color: #fff;
}

.form-popup-content__title span {
    color: #000;
}

.form-popup-content__subtitle {
    font-weight: 400;
    margin-bottom: 35px;
}

.form-popup-content {
    background: #303030;
    padding: 40px 50px;
}

.form-popup-content__form {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 1440px) {

    .form-popup-content {
        padding: 60px;
    }
}

@media (max-width: 1180px) {

    .form-popup-content {
        padding: 30px;
    }
}



/* form
========================================================================== */
.iti {
    display: block;
}

.iti__arrow {
    border-left: var(--iti-triangle-border) solid transparent;
    border-right: var(--iti-triangle-border) solid transparent;
    border-top: var(--iti-arrow-height) solid #fff !important;
}

.iti__selected-country {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
}

.iti__dropdown-content {
    background-color: #303030;
}

.tm-form-title {
    font-weight: 300;
    margin-bottom: 15px;
}

.wpcf7-form-control {
    background: rgba(255, 255, 255, .16);
    border-radius: 0;
    width: 100%;
    height: 49px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    padding: 7px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    color: #fff;
    font-weight: 300;
}

.tm-content-form__check .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-response-output {
    display: none;
}

.wpcf7-not-valid {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.wpcf7-form-control::-webkit-input-placeholder {
    color: #fff;
}

.wpcf7-form-control::-moz-placeholder {
    color: #fff;
}

/* Firefox 19+ */
.wpcf7-form-control:-moz-placeholder {
    color: #fff;
}

/* Firefox 18- */
.wpcf7-form-control:-ms-input-placeholder {
    color: #fff;
}

.wpcf7-form-control:focus,
.wpcf7-form-control:active {
    border-color: #808080;
    outline: none;
}

.wpcf7-form-control-wrap,
.wpcf7-textarea {
    display: block;
}

.wpcf7-textarea {
    height: 100px;
    resize: vertical;
}

.tm-form-btn,
.wpcf7-submit {
    width: 100%;
    background: #fff;
    color: #000;
    border-radius: 0;
    height: 49px;
    border: 1px solid #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-out;
    text-transform: uppercase;
}

.tm-form-btn:hover,
.wpcf7-submit:hover {
    background: rgba(255, 255, 255, .8);
    color: #000;
    cursor: pointer;
}

.tm-form-btn span {
    position: relative;
    padding-right: 24px;
}

.tm-form-btn span::after {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 10px;
    content: "\e900";
    font-family: 'tm-rozit';
    bottom: 0;
    margin: auto;
    height: 10px;
    transition: all .3s ease-in-out;
    transform: translateX(0px);
}

.tm-form-btn:hover span::after {
    transform: translateX(10px);
    color: #fff;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 15px;
    bottom: -35px;
    left: 0;
    padding-left: 25px;
}

.wpcf7-list-item {
    display: flex;
    align-items: center;
    position: relative;
}

.tm-content-form__text {
    opacity: 0.6;
}

.tm-footer__form .tm-form-btn {
    background: rgba(255, 255, 255, .36);
    color: #fff;
}

.tm-footer__form .tm-form-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
}


/* page
========================================================================== */
.tm-page-photo {
    background-size: cover;
    background-position: 50% 50%;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}

.tm-portfolio__header::after,
.tm-category__header::after,
.tm-page-photo::after {
    background: rgba(0, 0, 0, 0.20);
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* blocks
========================================================================== */
/* about block
----------------------------------------------------- */
.tm-about__column {
    position: relative;
    z-index: 2;
}

.tm-about__wrap {
    background: rgba(48, 48, 48, 0.9);
    border: 1px solid #fff;
    padding: 30px;
    margin-right: -75%;
}

@media (max-width: 980px) {
    .tm-about__wrap {
        margin-right: 0;
        padding: 20px;
    }
}

/* grids
----------------------------------------------------- */
.tm-grid-with-icon-card__icon {
    max-width: 50px;
    margin: 0 auto;
}

.tm-grid-with-icon-card__title {
    letter-spacing: 2px;
}

.tm-grid-with-icon-card__text {
    line-height: 1.8;
}

.tm-grid-with-bg-card,
.tm-grid-with-icon-card {
    overflow: hidden;
    padding-bottom: 74%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-grid-with-bg-card__link,
.tm-grid-with-bg-card__container,
.tm-grid-with-bg-card__bg,
.tm-grid-with-bg-card__bg::before,
.tm-grid-with-icon-card__link,
.tm-grid-with-icon-card__container,
.tm-grid-with-icon-card__bg,
.tm-grid-with-icon-card__bg::before {
    position: absolute;
}

.tm-grid-with-bg-card__container,
.tm-grid-with-icon-card__container {
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.tm-grid-with-bg-card__link,
.tm-grid-with-icon-card__link {
    z-index: 3;
}

.tm-grid-with-bg-card__link,
.tm-grid-with-bg-card__bg,
.tm-grid-with-icon-card__link,
.tm-grid-with-icon-card__bg {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.tm-grid-with-bg-card__bg,
.tm-grid-with-icon-card__bg {
    transition: all 0.3s ease-in-out;
    z-index: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.tm-grid-with-icon-card__bg {
    opacity: 0;
}

.tm-grid-with-icon-card:hover .tm-grid-with-icon-card__bg {
    opacity: 1;
}

.tm-grid-with-bg-card__bg::before,
.tm-grid-with-icon-card__bg::before {
    background: rgba(0, 0, 0, 0.6);
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.tm-grid-with-bg-card__bg::before {
    transition: all 0.3s ease-in-out;
}

.tm-grid-with-bg-card:hover .tm-grid-with-bg-card__bg::before {
    background: rgba(0, 0, 0, 0.9);
}

/* command
----------------------------------------------------- */
.tm-command-card__content {
    padding: 10px 15px;
    max-width: 315px;
}

.tm-command-card__img {
    max-width: 280px;
}

/* contact block
----------------------------------------------------- */
.tm-contact-with-img__wrap {
    background: rgba(48, 48, 48, .9);
    padding: 40px;
    border: 1px solid #fff;
    margin-right: -40%;
}

.tm-contact-with-img__text {
    text-align: right;
    font-size: 16px;
    padding-left: 15%;
}

.tm-contact-with-img__column {
    position: relative;
    z-index: 2;
}

@media (max-width: 980px) {
    .tm-contact-with-img__wrap {
        margin-right: 0;
        padding: 20px;
    }
}


/* quote
----------------------------------------------------- */
.tm-quote-block {
    padding-left: 110px;
    position: relative;
}

.tm-quote-block::before {
    content: "\e910";
    font-family: 'tm-rozit';
    position: absolute;
    left: 0;
    font-size: 53px;
    top: 0;
    color: #111;
}

@media (max-width: 1180px) {
    .tm-quote-block {
        padding-left: 70px;
    }

    .tm-quote-block::before {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .tm-quote-block {
        padding-left: 40px;
    }

    .tm-quote-block::before {
        font-size: 25px;
    }
}


/* gallery
----------------------------------------------------- */
.tm-projects-slider-wrap {
    position: relative;
    margin: 30px 0;
}


.tm-projects-slider__prev {
    left: -37px;
}

.tm-projects-slider__next {
    right: -37px;
}



@media (max-width: 1480px) {
    .tm-projects-slider__prev {
        left: -27px;
    }

    .tm-projects-slider__next {
        right: -27px;
    }
}

@media (max-width: 480px) {

    .tm-projects-slider-wrap {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
}


/* custom list
----------------------------------------------------- */
.tm-custom-list {
    counter-reset: num;
    padding-left: 65px;
}

.tm-custom-list__item {
    position: relative;
}

.tm-custom-list__item::before {
    content: counter(num)'.';
    counter-increment: num;
    position: absolute;
    width: 35px;
    text-align: right;
    left: -45px;
    top: 1px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
}

@media (max-width: 980px) {
    .tm-custom-list__item::before {
        font-size: 18px;
    }

    .tm-custom-list {
        padding-left: 45px;
    }
}



/* banner
------------------------------------------------------*/
.tm-banner-slider-wrap {
    width: 100vw;
    left: calc(-50vw + 50%);
    position: relative;
    min-height: 750px;
    background: #000;
}

.tm-banner-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.tm-banner-navigation-container,
.tm-banner-slider-container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
}

.tm-banner-navigation-container {
    width: 1100px;
    height: 65px;
    position: relative;
}

.tm-banner-slider-container {
    width: 1100px;
}

.tm-banner-slider__item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tm-banner-slider__card {
    padding-top: 250px;
    padding-bottom: 160px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.tm-banner-slider__column {
    position: relative;
    z-index: 1;
}

.tm-banner-slider__content {
    max-width: 640px;
}

.tm-banner-slider__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.tm-banner-slider__item {
    overflow: hidden;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}



.tm-banner-slider__title {
    font-size: 70px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}

.tm-banner-slider-arrows {
    background: rgba(255, 255, 255, .16);
    padding: 13px 20px 14px;
}

.tm-banner-slider-arrows__prev {
    transform: rotate(-180deg);
}

.tm-banner-slider-arrows__separator {
    background: rgba(255, 255, 255, .16);
    width: 1px;
    height: 30px;
}

.tm-banner-slider-arrows__next,
.tm-banner-slider-arrows__prev {
    font-size: 12px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.tm-banner-slider-arrows__next:hover,
.tm-banner-slider-arrows__prev:hover {
    color: #fff;
}


.tm-banner-slider-arrows {
    width: 144px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.tm-banner-slider-navigation-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 3;
    width: 100%;
}

.tm-banner-btn {
    position: absolute;
    right: 0;
}

@media (max-width: 1440px) {
    .tm-banner-slider-wrap {
        min-height: 550px;
    }
}

@media (max-width: 1320px) {
    .tm-banner-slider-container {
        width: calc(100% - 40px);
    }

    .tm-banner-slider__title {
        font-size: 55px;
    }
}

@media (max-width: 1180px) {
    .tm-banner-slider__title {
        font-size: 45px;
    }
}

@media (max-width: 1140px) {
    .tm-banner-navigation-container {
        width: 100%;
    }

    .tm-banner-slider-arrows {
        left: 20px;
    }

    .tm-banner-btn {
        right: 20px;
    }
}

@media (max-width: 670px) {

    .tm-banner-navigation-container {
        width: 100%;
    }

    .tm-banner-slider__card {
        padding-top: 150px;
        padding-bottom: 140px;
    }

    .tm-banner-slider-wrap {
        min-height: 400px;
    }

    .tm-banner-slider {
        position: relative;
    }
}

@media (max-width: 480px) {
    .tm-banner-slider-arrows.tm-col-gap30 {
        width: 105px;
        column-gap: 20px;
    }

    .tm-banner-btn.tm-content-btn a {
        width: 130px;
    }
}

/* table
========================================================================== */
.single .tablepress {
    border-collapse: collapse;
}

.single .tablepress>:where(thead, tfoot)>tr>* {
    border: 1px solid #fff;
    background: no-repeat;
    color: #fff;
    font-weight: 300;
    font-size: 24px;
    font-family: "Oswald", sans-serif;
}

.single .tablepress>:where(tbody)>tr>* {
    border: 1px solid #fff;
    color: #fff;
}


/* accordion
========================================================================== */
.tm-content-accordion-list {
    position: relative;
    width: 100%;
    height: auto;
}

.tm-content-accordion-list>div {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tm-content-accordion-list>div:not(:last-child) {
    margin-bottom: 20px;
}

.tm-content-accordion-list>div.active {
    border-bottom: 0;
    padding-bottom: 0;
}

.tm-content-accordion-list>div .tm-content-accordion-list__title::after {
    right: 20px;
    top: 18px;
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    content: "\e903";
    font-family: 'tm-rozit';
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #fff;
    font-weight: 400;
    transform: rotate(90deg);
}

.tm-content-accordion-list>div.active .tm-content-accordion-list__title::after {
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    transform: rotate(-90deg);
}

.tm-content-accordion-list__title {
    font-weight: 300;
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    transition: all 0.3s ease-out;
    padding: 14px 52px 14px 25px;
    background: rgba(255, 255, 255, .16);
    font-family: "Oswald", sans-serif;
    border: 1px solid #fff;
}

.tm-content-accordion-list__text {
    padding: 24px 0;
}

.tm-content-accordion-list__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .tm-content-accordion-list__text {
        padding: 18px 0;
    }

    .tm-content-accordion-list>div .tm-content-accordion-list__title::after {
        top: 19px;
    }
}

@media (max-width: 768px) {
    .tm-content-accordion-list__text {
        padding: 18px 0;
    }

    .tm-content-accordion-list>div {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tm-content-accordion-list__title {
        font-size: 16px;
        padding: 14px 40px 14px 25px;
    }

    .tm-content-accordion-list>div .tm-content-accordion-list__title::after {
        font-size: 13px;
        right: 15px;
    }
}

/* object fit
========================================================================== */
/* .tm-blog-card__img img {
    object-fit: cover;
    width: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    height: 100%;
} */



/* breadcrumb
========================================================================== */
.tm-breadcrumb-wrapper {
    font-size: 16px;
}

.tm-breadcrumb {
    color: #626262;
}

.tm-breadcrumb .widget {
    margin: 0;
    display: flex;
}

.tm-breadcrumb a {
    color: #626262;
    text-decoration: none;
    font-weight: 300;
}

.tm-breadcrumb a:hover {
    color: #626262;
    text-decoration: underline;
}

.tm-breadcrumb .current-item {
    color: #000;
}

.tm-breadcrumb .breadcrumbs {
    background: #F5F5F5;
    border-radius: 4px;
    padding: 10px 12px;
}

.tm-breadcrumb .separator::before {
    font-family: 'tm-rozit';
    content: "\e901";
}

.tm-breadcrumb .current-item {
    font-weight: 500;
    color: #FFB300;
}

/* home
========================================================================== */
.home .tm-main {
    padding: 88px 0 120px;
}

@media (max-width: 1180px) {
    .home .tm-main {
        padding: 71px 0 120px;
    }
}

@media (max-width: 480px) {
    .home .tm-main {
        padding: 51px 0 120px;
    }
}

/* gutenberg
========================================================================== */
:where(.wp-block-columns.is-layout-flex) {
    gap: 1.5em;
}

ol+.wp-block-columns,
ul+.wp-block-columns,
p+.wp-block-columns {
    margin-top: 30px;
}

:where(.wp-block-columns.tm-gap-3.is-layout-flex) {
    gap: 3em;
}

@media (max-width: 480px) {
    :where(.wp-block-columns.tm-gap-3.is-layout-flex) {
        gap: 1.5em;
    }
}

/* swiper
========================================================================== */
.swiper-wrapper {
    box-sizing: border-box;
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.6;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: 'tm-rozit';
    font-size: 22px;
    color: #fff;
}

.swiper-button-prev::after {
    content: "\e903";
    transform: rotate(-180deg);
}

.swiper-button-next::after {
    content: "\e903";
}

.swiper-pagination {
    position: relative;
    margin-top: 50px;
}

.swiper-pagination-bullet-active {
    background: #FFB300;
}

.slider__image {
    height: 233px;
    text-align: center;
    overflow: hidden;
}

.slider__image img {
    height: 100%;
}

.tm-projects-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.tm-projects-slider .swiper-slide {
    width: fit-content;
}

@media (max-width: 1480px) {

    .swiper-button-prev,
    .swiper-button-next {
        width: 89px;
    }
}

@media (max-width: 880px) {
    .tm-blog-slider {
        width: calc(100% + 20px);
    }
}

@media (max-width: 570px) {

    .swiper-button-prev,
    .swiper-button-next {
        width: 69px;
        height: 50px;
    }
}

/* pagination
========================================================================== */
.category-pagination {
    margin-top: 70px;
}

.woocommerce-pagination ul.page-numbers span.page-numbers,
.woocommerce-pagination ul.page-numbers a.page-numbers,
.category-pagination .nav-links a.page-numbers,
.category-pagination .nav-links span.page-numbers {
    display: flex;
    min-width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    background: #434343;
    color: #fff;
    transition: all 0.3s ease-out;
    font-family: "Oswald", sans-serif;
}

/* .woocommerce-pagination ul.page-numbers a.page-numbers.current,
.woocommerce-pagination ul.page-numbers span.page-numbers.current,
.category-pagination .nav-links a.page-numbers.current,
.category-pagination .nav-links span.page-numbers.current {
    font-weight: 700;
} */

.woocommerce-pagination ul.page-numbers a.page-numbers,
.category-pagination .nav-links a.page-numbers {
    font-weight: 300;
}

.woocommerce-pagination ul.page-numbers a.page-numbers.prev,
.woocommerce-pagination ul.page-numbers a.page-numbers.next,
.category-pagination .nav-links a.page-numbers.prev,
.category-pagination .nav-links a.page-numbers.next {
    padding: 0 5px;
}



.woocommerce-pagination ul.page-numbers li:not(:last-child),
.category-pagination .nav-links li:not(:last-child),
.category-pagination .nav-links>*:not(:last-child) {
    margin-right: 8px;
}

.woocommerce-pagination ul.page-numbers a.page-numbers.current,
.woocommerce-pagination ul.page-numbers span.page-numbers.current,
.woocommerce-pagination ul.page-numbers a.page-numbers:hover,
.category-pagination .nav-links a.page-numbers.current,
.category-pagination .nav-links span.page-numbers.current,
.category-pagination .nav-links a.page-numbers:hover {
    background: #fff;
    color: #000;
}

.category-pagination .nav-links span.dots {
    background: none;
}

.category-pagination .nav-links {
    display: flex;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul {
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
    border: 0 none;
}

.woocommerce nav.woocommerce-pagination ul li::before {
    display: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 0;
}

/* main style
========================================================================== */
.tm-relative {
    position: relative;
}

.tm-youtube {
    width: 100%;
    position: relative;
    padding: 58% 0 0 0;
}

.tm-youtube iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.tm-fix-body {
    overflow: hidden;
}

.tm-main {
    padding: 154px 0 120px;
    flex: 1 1 auto;
}

.tm-portfolio,
.tm-category,
.tm-main_photo {
    padding: 88px 0 120px;
}

.tm-page {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tm-centered-content {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.tm-padding {
    padding: 90px 0;
}

.tm-padding-small {
    padding: 50px 0;
}

.tm-padding-no-bottom {
    padding-bottom: 0;
}

.tm-flex {
    display: flex;
    flex-wrap: wrap;
}

.tm-flex-nw {
    display: flex;
}

.tm-flex-middle {
    align-items: center;
}

.tm-flex-middle-end {
    align-items: flex-end;
}

.tm-flex-center {
    justify-content: center;
}

.tm-flex-space {
    justify-content: space-between;
}

.tm-flex-end {
    justify-content: flex-end;
}

.tm-flex-column {
    flex-direction: column;
}

.tm-grid-right {
    order: 2;
}

.tm-gap20 {
    gap: 20px;
}

.tm-col-gap8 {
    column-gap: 8px;
}

.tm-col-gap10 {
    column-gap: 10px;
}

.tm-col-gap20 {
    column-gap: 20px;
}

.tm-col-gap30 {
    column-gap: 30px;
}

.tm-col-gap35 {
    column-gap: 35px;
}

.tm-row-gap20 {
    row-gap: 20px;
}


.tm-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    row-gap: 30px;
}

.tm-grid>* {
    padding-left: 30px;
    box-sizing: border-box;
}

.tm-grid__width-1-1 {
    width: 100%;
}

.tm-grid__width-1-2 {
    width: 50%;
}

.tm-grid__width-5-20 {
    width: 55%;
}

.tm-grid__width-1-3 {
    width: 33.333%;
}

.tm-grid__width-2-3 {
    width: 35%;
}

.tm-grid__width-1-4 {
    width: 25%;
}

.tm-grid__width-1-5 {
    width: 20%;
}

.tm-grid__width-1-6 {
    width: 16.666%;
}

.tm-grid__width-1-8 {
    width: 80%;
}

.tm-grid__width-1-7 {
    width: 70%;
}

.tm-grid__width-7-10 {
    width: 75%;
}

.tm-grid__width-6-10 {
    width: 60%;
}

.tm-grid__width-6-20 {
    width: 65%;
}

.tm-grid__width-6-30 {
    width: 66.666%;
}

.tm-grid__width-4-10 {
    width: 40%;
}

.tm-grid__width-4-20 {
    width: 45%;
}

.tm-grid__width-3-10 {
    width: 30%;
}

.tm-grid__width-3-20 {
    width: 35%;
}

.tm-grid__width-3-30 {
    width: 33.333%;
}

@media (max-width: 1180px) {
    .tm-grid {
        margin-left: -20px;
    }

    .tm-grid>* {
        padding-left: 20px;
    }

    .tm-grid__width-1-6 {
        width: 33.333%;
    }
}

@media (max-width: 980px) {

    .tm-grid-right {
        order: inherit;
    }

    .tm-grid__width-1-3,
    .tm-grid__width-1-4 {
        width: 50%;
    }

    .tm-grid__width-2-3,
    .tm-grid__width-5-20,
    .tm-grid__width-6-20,
    .tm-grid__width-4-20,
    .tm-grid__width-1-2,
    .tm-grid__width-2-3,
    .tm-grid__width-1-5,
    .tm-grid__width-1-8,
    .tm-grid__width-1-7,
    .tm-grid__width-7-10,
    .tm-grid__width-6-10,
    .tm-grid__width-6-20,
    .tm-grid__width-4-10,
    .tm-grid__width-3-10,
    .tm-grid__width-4-20,
    .tm-grid__width-3-20,
    .tm-grid__width-6-30,
    .tm-grid__width-3-30 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tm-grid__width-1-6 {
        width: 50%;
    }
}

@media (max-width: 767px) {

    .tm-grid__width-1-3,
    .tm-grid__width-1-4 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tm-grid__width-1-6 {
        width: 100%;
    }

    .tm-grid>*:last-child {
        margin-bottom: 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.tm-h1,
.tm-h2,
.tm-h3,
.tm-h4,
.tm-h5,
.tm-h6,
.tm-hero-title {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

h1,
.tm-h1,
h2,
.tm-h2 {
    font-size: 30px;
}

h3,
.tm-h3 {
    font-size: 22px;
}

h4,
.tm-h4 {
    font-size: 20px;
}

h5,
.tm-h5,
h6,
.tm-h6 {
    font-size: 18px;
}

.tm-hero-title {
    font-size: 65px;
}

.size40,
.size42 {
    font-family: "Oswald", sans-serif;
    line-height: 1.2;
}

.size40 {
    font-size: 40px;
}

.size42 {
    font-size: 42px;
}

.tm-uniq-font {
    font-family: "Oswald", sans-serif;
}


.extrabold {
    font-weight: 800;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.regular {
    font-weight: 400;
}

.light {
    font-weight: 300;
}

.extralight {
    font-weight: 200;
}

.color-white {
    color: #fff;
}

.color-yellow {
    color: #FFB300;
}

.color-black {
    color: #111;
}

.bg-black {
    background: #000;
}

.bg-grey {
    background: #F6F6F6;
}

.text-center {
    text-align: center;
}

.trans {
    text-transform: uppercase;
}

.notrans {
    text-transform: inherit;
}

.maxcenter {
    margin-left: auto;
    margin-right: auto;
}

.max960 {
    max-width: 960px;
}

.tm-content-btn_centered,
.tm-content-btn_centered a {
    margin: 0 auto;
}


.tm-content-btn a {
    width: 200px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    display: flex;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    height: 55px;
    font-weight: 300;
    font-size: 20px;
    transition: all 0.3s ease-out;
    text-decoration: none;
    position: relative;
    border: 1px solid #fff;
    padding: 5px;
    font-family: "Oswald", sans-serif;
}

.tm-content-btn a:hover,
.tm-content-btn a:active,
.tm-content-btn a:focus {
    color: #000;
    text-decoration: none;
    background: #fff;
}

.tm-content-btn_big a {
    width: 280px;
}

.tm-content-btn_small a {
    width: 130px;
}

.tm-content-btn_full-width a {
    width: 100%;
}

.tm-content-btn a span {
    position: relative;
    padding-right: 16px;
}

.tm-content-btn a span::after {
    font-family: 'tm-rozit';
    content: "\e903";
    font-size: 10px;
    color: #fff;
    position: absolute;
    right: -3px;
    top: 3px;
    bottom: 0;
    margin: auto;
    height: 8px;
    line-height: 5px;
    transition: all .3s ease-out;
}

.tm-content-btn a:hover span::after {
    color: #000;
}



@media (max-width: 1440px) {
    .tm-padding {
        padding: 100px 0;
    }

    .tm-padding-no-bottom {
        padding-bottom: 0;
    }

    h1,
    .tm-h1 {
        font-size: 45px;
    }

    .size40,
    .size42 {
        font-size: 38px;
    }

    .tm-hero-title {
        font-size: 55px;
    }

}

@media (max-width: 1180px) {

    h1,
    .tm-h1 {
        font-size: 38px;
    }

    .tm-hero-title {
        font-size: 40px;
    }

    .size40,
    .size42 {
        font-size: 35px;
    }

    .tm-main {
        padding: 71px 0 90px;
    }

    .tm-padding {
        padding: 90px 0;
    }

    .tm-padding-no-bottom {
        padding-bottom: 0;
    }

}

@media (max-width: 980px) {

    h1,
    .tm-h1 {
        font-size: 35px;
    }

    h2,
    .tm-h2,
    h3,
    .tm-h3 {
        font-size: 24px;
    }

    h4,
    .tm-h4 {
        font-size: 22px;
    }

    .size40,
    .size42 {
        font-size: 28px;
    }

    .tm-padding {
        padding: 60px 0;
    }

    .tm-padding-no-bottom {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .tm-content-btn a {
        font-size: 16px;
    }

    .tm-content-btn a::after {
        font-size: 6px;
        right: -16px;
    }
}

@media (max-width: 350px) {

    .tm-content-btn,
    .tm-content-btn a,
    .tm-content-btn_big a {
        width: 100%;
    }
}



/* margins
========================================================================== */
.tm-margin-xxsmall-bottom {
    margin-bottom: 8px;
}

.tm-margin-small-bottom {
    margin-bottom: 15px;
}

.tm-margin-xstandart-bottom {
    margin-bottom: 20px;
}

.tm-margin-standart-bottom {
    margin-bottom: 25px;
}

.tm-margin-default-bottom {
    margin-bottom: 30px;
}

.tm-margin-xdefault-bottom {
    margin-bottom: 40px;
}

.tm-margin-medium-bottom {
    margin-bottom: 50px;
}

.tm-margin-large-bottom {
    margin-bottom: 60px;
}

.tm-margin-xlarge-bottom {
    margin-bottom: 80px;
}

.tm-margin-2xlarge-bottom {
    margin-bottom: 100px;
}

.tm-margin-3xlarge-bottom {
    margin-bottom: 120px;
}

.tm-margin-4xlarge-bottom {
    margin-bottom: 140px;
}

@media (max-width: 1440px) {
    .tm-margin-2xlarge-bottom {
        margin-bottom: 80px;
    }

    .tm-margin-3xlarge-bottom {
        margin-bottom: 90px;
    }

    .tm-margin-4xlarge-bottom {
        margin-bottom: 120px;
    }
}

@media (max-width: 980px) {

    .tm-margin-xlarge-bottom {
        margin-bottom: 60px;
    }

    .tm-margin-3xlarge-bottom {
        margin-bottom: 80px;
    }

    .tm-margin-4xlarge-bottom {
        margin-bottom: 90px;
    }
}

@media (max-width: 767px) {

    .tm-margin-3xlarge-bottom,
    .tm-margin-4xlarge-bottom {
        margin-bottom: 60px;
    }

    .tm-margin-xdefault-bottom,
    .tm-margin-medium-bottom,
    .tm-margin-large-bottom,
    .tm-margin-xlarge-bottom,
    .tm-margin-2xlarge-bottom {
        margin-bottom: 30px;
    }

}

.tm-margin-no-bottom {
    margin-bottom: 0;
}