/* 
Theme Name:		Hello Elementor Child
Theme URI:		https://elementor.com/
Description:	Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author:			Elementor Team
Author URI:		https://elementor.com/
Template:		hello-elementor
Version:		1.0.0
Text Domain:	hello-elementor-child
Tags:           flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


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

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

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

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



/* base
========================================================================== */
html,
body {
    color: #000;
    font-family: 'Raleway', sans-serif;
	font-variant-numeric: lining-nums proportional-nums;
    background: #fff;
    height: 100%;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: #017EB1;
    transition: all .3s ease-in-out;
}

a:active,
a:hover {
    color: #333;
}

/* header
========================================================================== */
.tm-header {
    padding-top: 4px;
    padding-bottom: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;

}

.tm-header_active {
    position: fixed;
    z-index: 1000;
    animation: slideDown 0.5s;
    background: #cceff3;
}

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

    to {
        transform: translateY(0);
    }
}

.tm-header__logo {
    z-index: 1;
    width: 186px;
}

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

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

.tm-header__contacts {

    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
}

@media (max-width: 1180px) {
    .tm-header {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .tm-header__contacts-wrap {
        display: none;
    }

    .tm-header__contacts {
        padding: 10px 20px;
    }

    .tm-header__contacts .tm-content-btn a {
        height: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .tm-header__logo {
        max-width: 118px;
        height: 44px;
    }

}



/* menu
========================================================================== */
/* toggle ----------------- */
.tm-toogle-navigation label {
    display: flex;
    flex-direction: column;
    width: 26px;
    height: 28px;
    cursor: poRaleway;
    position: absolute;
    z-index: 1001;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.tm-toogle-navigation label span {
    background: #333;
    height: 3px;
    margin: 3px 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: 50%;
}

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

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

.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(4px, 1px)
}

.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(12px, -5px) rotatez(45deg);
}

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



/* 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: #caebef;
    height: 0;
    visibility: hidden;
    backdrop-filter: blur(5px);
}

.tm-header_active .tm-menu-wrapper ul {
    background: #caebef;
}


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

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

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

.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;
}

.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(195px) translateY(0%);
    -ms-transform: translateX(195px) translateY(0%);
    transform: translateX(195px) translateY(0%);
    opacity: 0;
    height: auto;
    visibility: visible;
    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;
}

.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>a {
    position: relative;
}

.tm-menu-wrapper li.menu-item-has-children>span>a::after {
    content: "\e90c";
    font-family: 'tm-master';
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 3px;
    margin: auto;
    font-size: 7px;
    height: 7px;
    width: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

.tm-menu-wrapper>li.menu-item-has-children>span>a::after {
    right: -14px;
    top: -1px;
    bottom: 0;
}


.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 {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease-out;
    font-weight: 500;
    font-size: 16px;
}

.tm-menu-wrapper li.current-menu-ancestor>span>a,
.tm-menu-wrapper li.current-menu-item>span a,
.tm-header_active .tm-menu-wrapper li a:hover,
.tm-menu-wrapper li a:hover {
    color: #017EB1;
}


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

.tm-menu-wrapper li li a {
    line-height: 18px;
    padding: 14px 11px;
    display: block;
    position: relative;
    color: #fff;
    text-transform: none;
}

.menu-image-title-after img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 11px;
    top: 7px;
}

span.menu-image-title-after.menu-image-title {
    display: block;
    padding-left: 35px;
}

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

.tm-mob-back::after {
    background: #caebef;
    content: '';
    height: 57px;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: width .3s ease;
    z-index: 0;
}

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

@media (max-width: 1640px) {
    .tm-menu-wrapper>li:not(:last-child) {
        padding-right: 44px;
    }

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

@media (max-width: 1440px) {
    .tm-menu-wrapper>li:not(:last-child) {
        padding-right: 24px;
    }

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

@media (max-width: 1366px) {
    .tm-menu-wrapper li a {
        font-size: 15px !important;
    }
}

@media (max-width: 1180px) {
    .tm-menu-wrapper li a {
        font-size: 18px !important;
    }

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

    .tm-primary-menu-container {
        display: none;
        width: 100%;
        padding: 0 20px 10px;
        max-height: calc(100vh - 48px);
        overflow: auto;
    }

    .tm-primary-navigation {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 0;
        top: 78px;
        left: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .tm-primary-menu-container {
        flex-grow: 1;
    }

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

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

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

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

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

    [id=main-navigation-toggle]:checked~.tm-primary-navigation .tm-header__contacts .tm-content-btn a {
        height: 45px;
    }

    .tm-mob-back::after {
        top: -5px;
    }

    .tm-mob-back::before {
        top: 50px;
    }

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

    .tm-menu-wrapper>li {
        width: 100%;
    }

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

    .tm-menu-wrapper ul li {
        display: block;
        width: 100%;
    }

    .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 {
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
    }

}


/* archive
========================================================================== */
.tm-archive,
.tm-single,
.tm-search,
.privacy-policy .site-main {
    position: relative;
    padding-top: 180px;
}

.tm-search::before,
.tm-archive::before,
.tm-single::before,
.privacy-policy .site-main::before {
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(0deg, #FFFFFF, #C2E9F2) !important;
    z-index: 0;
    content: '';
}

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

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

.tm-blog-card__content {
    font-size: 14px;
}

.tm-blog-card__title a {
    color: #333;
}

.tm-blog-card__img {
    position: relative;
    padding-bottom: 57%;
    overflow: hidden;
}

.tm-blog-card__img img {
    transition: all .3s ease-in-out;
    transform: scale(1);
    object-fit: cover;
    width: 100%;
    position: absolute;
    height: 100%;
}

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

@media (max-width: 1440px) {

    .tm-archive,
    .tm-single,
    .tm-search {
        position: relative;
        padding-top: 120px;
    }
}


/* single
========================================================================== */
.tm-single h1 {
    margin-top: 0;
    line-height: 1.1;
}

.tm-single__center {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}

.tm-sticky-content {
    position: sticky;
}

.tm-single__column {
    display: flex;
    flex: 1;
}

.tm-single__column .sticky {
    position: fixed;
}

.tm-single__column .stop {
    position: relative;
    bottom: 50px;
}

.tm-blog-btns {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.elementor .tm-blog-btns .tm-content-btn a,
.tm-blog-btns .tm-content-btn a {
    width: auto;
    padding: 10px 40px;
    height: 54px;
}

/* sidebar
========================================================================== */
.widget_search label,
.widget_search input[type=search] {
    width: 100%;
}

.widget_search input[type=search] {
    outline: none;
    padding-left: 45px !important;
    border: 1px solid #e6e9ec;
}

.widget_search .search-form {
    position: relative;
}

.widget_search input[type="submit"] {
    width: 24px !important;
    height: 24px !important;
    background: url(img/loupe.svg) no-repeat center center;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0) !important;
    position: absolute;
    left: 10px;
    top: 9px;
    display: flex;
    padding: 0 !important;
    border: 0 none;
}

.tm-single__column .widget {
    margin-bottom: 30px;
}

.widget_recent_entries ul {
    padding-left: 0;
}

.widget_recent_entries ul li {
    display: block;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.widget_recent_entries ul li::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #333;
    content: '';
    position: absolute;
    left: 1px;
    top: 10px;
}

.widget_recent_entries ul li a {
    color: #333333;
    font-size: 14px;
    line-height: 1.1;
}

.widget_recent_entries ul li a:hover {
    color: #017EB1;
}

#block-14 .wp-element-button {
	padding: 15px 30px;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    transition: all 0.3s ease-out;
    text-align: center;
    text-transform: uppercase;
}

#block-14 .wp-element-button:hover {
	background-color: #132C4A !important;	
}


@media (max-width: 980px) {
    .tm-single__column {
        order: 2;
    }
}





/* search form & results
========================================================================== */

.search-bar .search-field {
	background-color: #E6F2F7;
    border-color: #E6E9EC;
    border-radius: 6px 6px 6px 6px;
    padding: .9rem 1.4rem;
}

.search-results.products-brands img {
	border-radius: 7px !important;
    border: 1px solid #DDD !important;
}

.search-results.products-brands h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4em;
}
.search-results-brands a {
	width: 100%;
    height: 200px;
    display: inline-block;
}
.search-results-brands img {
	height: 100%;
    width: auto;
    object-fit: contain;
    padding: 20px;
}

/* Style for the search icon */
.search-icon {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-icon:hover i:before {
    color: rgba(1, 126, 177, 0) !important;
}

.search-icon i:before {
	content: "";
    width: 24px !important;
    height: 24px !important;
    background: url(img/loupe.svg) no-repeat center center;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0) !important;
    position: absolute;
    left: -50px;
    top: 9px;
    display: flex;
    padding: 0 !important;
    border: 0 none;
}

.e-search-results-container {
	box-shadow: rgba(0, 0, 0, 0.4) 0 10px 20px;
}

/* Initially hide the search bar */
.header-search-bar {
    position: absolute;
	width: 650px;
    right: 280px;
    top: -14px;
    background: white;
    padding: 10px;
    border: 1px solid #E6E9EC;
	border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(10px);
	z-index: 1;
	pointer-events: none; /* Prevent interaction when hidden */
}

.header-search-bar.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
	pointer-events: auto;
}

.header-search-bar form {
	display: flex;
}

.header-search-bar input {
    padding: 10px;
    width: 100%;
	flex-grow: 1;
	margin-right: 5px;
	background-color: #E6F2F7;
	border-color: #E6E9EC;
    border-radius: 6px 6px 6px 6px;
}

@media (max-width: 980px) {
    .header-search-bar {
		width: 100%;
		left: 0;
		top: 30px;
	}
}







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

/* form
========================================================================== */
input[type=text].wpcf7-form-control,
input[type=email].wpcf7-form-control,
textarea.wpcf7-form-control,
.elem-form input[type=text],
.elem-form input[type=email] {
    border-radius: 3px;
    width: 100%;
    height: 59px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 16px;
    margin-bottom: 18px;
    padding: 14px 24px;
    border: 0 none;
    background: #E6F2F7;
    color: #000;
    outline: none;
    border: 1px solid #e6e9ec;
}

.elem-form textarea {
    border-radius: 3px;
    width: 100%;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 16px;
    margin-bottom: 18px;
    padding: 14px 24px;
    border: 0 none;
    background: #E6F2F7;
    color: #000;
    outline: none;
    border: 1px solid #e6e9ec;
}



select.wpcf7-form-control,
.elem-form select {
    margin-bottom: 18px;
}

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

.wpcf7-not-valid {
    box-shadow: 0 0 15px #dc323257;
}

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

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

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

.wpcf7-form-control:-ms-input-placeholder {
    color: #454545;
}

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

.tm-form-btn-wrap {
    position: relative;
}

.tm-form-btn-wrap>.wpcf7-form-control-wrap {
    position: absolute;
    left: 240px;
    top: 2px;
}

.wpcf7-acceptance input {
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.wpcf7-acceptance .wpcf7-list-item-label {
    padding-left: 35px;
    position: relative;
    width: 100%;
    display: block;
}

.wpcf7-acceptance .wpcf7-list-item-label::after {
    width: 20px;
    height: 20px;
    border: 2px solid #A6C24D;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: -3px;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
    top: 1px;
    width: 5px;
    height: 11px;
    content: '';
    position: absolute;
    left: 8px;
}

.wpcf7-acceptance input:checked~.wpcf7-list-item-label::before {
    border: solid #A6C24D;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tm-form-btn,
.wpcf7-submit {
    outline: none;
    width: 224px;
    background: #FF7018;
    color: #fff;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    height: 52px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease-out;
    text-decoration: none;
    border: 0 none;
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
}

.tm-form-btn:focus,
.wpcf7-submit:focus,
.tm-form-btn:active,
.wpcf7-submit:active {
    outline: none;
}

.tm-content-form__files .cd-upload-btn {
    background: #D15A11;
    color: #fff;
}

.tm-form-btn:hover,
.wpcf7-submit:hover {
    background: #A6C24D;
    color: #1E1E1E;
    cursor: poRaleway;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    top: -16px;
    font-size: 12px;
}

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


.wpcf7-form select {
    font-family: "Raleway", sans-serif;
}

.wpcf7-form .custom-contact div {
    margin-top: 0;
}

.wpcf7-form .custom-contact .elementor-column.elementor-col-100 .mf-input-wrapper {
    width: 100%;
}

.wpcf7-form .custom-contact .elementor-column.elementor-col-50 {
    width: calc(50% - 10px);
}

.wpcf7-form .custom-contact .elementor-column.elementor-col-50:first-of-type {
    margin-right: 20px;
}

.wpcf7-form .custom-contact .wpcf7-list-item {
    margin: 0;
}

.wpcf7-form .custom-contact .wpcf7-form-control.wpcf7-acceptance {
    display: inline-block;
}

.wpcf7-form .custom-contact .custom-submit {
    justify-content: end;
    width: 45%;
}

.wpcf7-form .custom-contact .custom-agree {
    width: 55%;
}

.wpcf7-form .custom-contact .custom-submit .mf-btn-wraper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.wpcf7-form .custom-contact .custom-submit .wpcf7-spinner {
    margin: 25px 10px 0 0;
}




@media (max-width:980px) {
    .wpcf7-form-control {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .wpcf7-textarea {
        height: 100px;
    }

    .wpcf7-submit {
        height: 50px;
        margin-top: 30px;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .wpcf7-form .custom-contact .custom-submit,
    .wpcf7-form .custom-contact .custom-agree,
    .wpcf7-form .custom-contact .elementor-column.elementor-col-50 {
        width: 100%;
    }

    .wpcf7-form .custom-contact .elementor-column.elementor-col-50:first-of-type {
        margin-right: 0px;
    }

    .wpcf7-form .custom-contact .custom-submit {
        justify-content: center;
    }

    .wpcf7-form .custom-contact .custom-submit .mf-btn-wraper {
        flex-direction: column;
    }

    .wpcf7-form .custom-contact .custom-submit .wpcf7-spinner {
        margin: 10px 0 0 0;
    }

}

@media (max-width: 530px) {
    .tm-content-form__files-text {
        position: relative;
        left: 0;
        margin-top: 10px;
    }

    .tm-form-btn-wrap {
        display: flex;
        flex-direction: column;
    }

    .tm-form-btn-wrap>.wpcf7-form-control-wrap {
        position: relative;
        left: 0;
        margin-top: 0;
        margin-bottom: 16px;
        order: 1;
    }

    .tm-form-btn-wrap>button {
        order: 2;
    }

}


/* FILTERED PRODUCTS GRID 
========================================================================== */
.filtered-products .bdt-post-gallery .bdt-gallery-item-link span {
    display: none;
}

.filtered-products .bdt-post-gallery .bdt-gallery-item-link.bdt-link-text,
.filtered-products .bdt-gallery-item-link-wrapper,
.filtered-products .bdt-gallery-content-inner,
.filtered-products .bdt-post-gallery-content {
    height: 100%;
}

.filtered-products .bdt-gallery-item .bdt-overlay {
    padding: 0px;
}

.filtered-products .bdt-gallery-item-link-wrapper {
    display: flex;
}

.filtered-products .bdt-post-gallery .bdt-gallery-item-link.bdt-link-text,
.filtered-products .bdt-post-gallery .bdt-gallery-thumbnail {
    border-radius: 7px !important;
    border: 1px solid #DDD !important;
}

.filtered-products .bdt-post-gallery.bdt-post-gallery-skin-abetis .bdt-gallery-item-link:hover {
    border-color: #DDD !important;
}

@media (max-width: 768px) {

    .filtered-products .bdt-gallery-thumbnail img {
        height: 150px !important;
    }

}

/* CUSTOM css
========================================================================== */
.pdf-cover a {
	background: rgba(1, 126, 177, 1);
    border-radius: 7px;
}

.wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
    border: none;
}

.widget_search .blog-sidebar-search input[type=search] {
    padding-left: 1rem !important;
}
.elementor-kit-5 .blog-sidebar-search .wp-block-search__button {
    padding: 10px !important;
	border: 1px solid #e6e9ec;
}

.widget_polylang {
	
}

/* Base container - ensure spacing and horizontal alignment */
.widget_polylang ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.3em; /* space between languages */
  align-items: center;
  justify-content: flex-start;
}

/* List items reset */
.widget_polylang li {
  margin: 0;
  padding: 0;
}

/* Language links style */
.widget_polylang a {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: #666;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Optional: flag spacing */
.widget_polylang a img {
  margin-right: 0.35em;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.widget_polylang a:hover {
  background-color: #f5f2e2;
  color: #000;
}

/* Active language styling */
.widget_polylang .current-lang a {
  background-color: #b9dde7;
  font-weight: 600;
  color: #000;
  cursor: default;
  pointer-events: none; /* prevents reloading current language */
}

@media (max-width: 768px) {

	.widget_polylang ul {
	  justify-content: center;
	}
	
}


/* ======================================================================= */
/* CUSTOM BLOCKS
========================================================================== */


/* swiper
========================================================================== */
/* .tm-swiper-navigation {
    column-gap: 12px;
}
.tm-swiper-left,
.tm-swiper-right {
    width: 48px;
    height: 48px;
    background: #1E1E1E;
    color: #fff;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    cursor: poRaleway;
    transition: all .3s ease-out;
}
.tm-swiper-left:hover,
.tm-swiper-right:hover {
    background: #A6C24D;
}
.tm-swiper-left::before,
.tm-swiper-right::before {
    width: 0;
	height: 0;
    content: '';
}
.tm-swiper-left::before {
    border-top: 5px solid transparent;
	border-right: 8px solid #fff;
	border-bottom: 5px solid transparent;
}
.tm-swiper-right::before {
    border-top: 5px solid transparent;
	border-left: 8px solid #fff;
	border-bottom: 5px solid transparent;
}
.tm-swiper-left_white, 
.tm-swiper-right_white {
    background: #fff;
    color: #000;
}
.tm-swiper-left_white:hover,
.tm-swiper-right_white:hover {
    background: #000;
    color: #fff;
} */

.home-articles-carousel .swiper-carousel {
    overflow: hidden;
}

.home-articles-carousel .bdt-ep-carousel-desc .pc-category a {
    display: block;
}


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

.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: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: #f9f7f7;
    color: #929292;
    transition: all 0.3s ease-out;
    border-radius: 2px;
    font-size: 14px;
}



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

.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,
.woocommerce-pagination ul.page-numbers a.page-numbers:hover,
.category-pagination .nav-links a.page-numbers:hover {
    background: #e6e6e6;
    color: #636363;
}

.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;
}

.category-pagination .nav-links a.page-numbers.prev,
.category-pagination .nav-links a.page-numbers.next {
    font-size: 0;
}

.category-pagination .prev::before,
.category-pagination .next::before {
    font-size: 12px;
}

.category-pagination .prev::before {
    content: '«';
}

.category-pagination .next::before {
    content: '»';
}

@media (max-width: 1440px) {
    .category-pagination .pagination {
        margin-top: 90px;
        margin-bottom: 60px;
    }

    .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 {
        min-width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

@media (max-width: 1180px) {
    .category-pagination .pagination {
        margin-top: 50px;
        margin-bottom: 30px;
    }
}


/* 404
========================================================================== */
.tm-404__content {
    max-width: 550px;
    margin: 180px auto 180px;
}
.tm-404__img {
    max-width: 267px;
    margin-left: auto;
    margin-right: auto;
}

/* footer
========================================================================== */
.tm-footer {
    background: #CAEBEF;
    padding: 30px 0;
}

.tm-footer .menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 40px;
}

.tm-footer .widget.widget_nav_menu {
    margin-bottom: 60px;
}

.tm-footer a,
.tm-footer .menu li a {
    color: #333333;
}

.tm-footer a:hover,
.tm-footer .menu li a:hover {
    color: #017EB1;
}

.tm-footer .footer-sub-btn {
	padding: 15px 30px ;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    background-color: rgb(1, 126, 177);
    border-style: none;
    border-radius: 5px 5px 5px 5px;
}

.tm-footer #block-13 {
	display: flex;
    justify-content: end;
}
.tm-footer #block-8 .has-text-align-right {
	margin-bottom: 5px;
}

@media (max-width: 1080px) {
    .tm-footer .menu {
        column-gap: 20px;
    }
}

@media (max-width: 980px) {
    .tm-footer .tm-grid__width-1-4 {
        width: 100%;
    }

    .tm-footer .has-text-align-right,
    .tm-footer .widget_block {
        text-align: center;
    }

    .tm-footer .widget.widget_nav_menu {
        margin-bottom: 30px;
    }
	
	.tm-footer #block-13 {
		justify-content: center;
	}
}

@media (max-width: 480px) {
    .tm-footer .menu {
        flex-wrap: wrap;
        row-gap: 12px;
    }
}

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

.tm-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 50%;
    transition: all .3s ease-out;
    font-size: 28px !important;
    color: #fff;
}

.tm-social a:hover {
    opacity: .5;
}

/* .tm-social a.tm-kadatec-icon-facebook:hover {
    background: #1773ea;
}
.tm-social a.tm-kadatec-icon-youtube:hover,
.tm-social a.tm-kadatec-icon-google:hover {
    background: #f70000;
}

.tm-social a.tm-kadatec-icon-linkedin:hover {
    background: #0073ae;
}

.tm-social a.tm-kadatec-icon-viber:hover {
    background: #6f5cea;
}

.tm-social a.tm-kadatec-icon-telegram:hover {
    background: #2ba0d9;
}

.tm-social a.tm-kadatec-icon-instagram:hover {
    background: #ea5ccb;
} */

@media (max-width: 480px) {
    .tm-social {
        flex-wrap: wrap;
    }
}

/*somehow, part of wp-block-library*/
.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block;height:auto;transition:transform 0.1s ease}@media (prefers-reduced-motion:reduce){.wp-block-social-link{transition-delay:0s;transition-duration:0s}}.wp-block-social-link a{align-items:center;display:flex;line-height:0;transition:transform 0.1s ease}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#ff4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{stroke:#000;background-color:#fefc00;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-threads,.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none}.wp-block-social-links.is-style-logos-only .wp-social-link a{padding:0}.wp-block-social-links.is-style-logos-only .wp-social-link svg{height:1.25em;width:1.25em}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#ff4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{stroke:#000;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-threads,.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp{color:#25d366}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-x{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{color:#d32422}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:.66667em;padding-right:.66667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}

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

.form-popup-content__title {
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 30px;
}

.form-popup-content__subtitle {
    font-family: var(--e-global-typography-secondary-font-family), sans-serif;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 24px;
    font-weight: 500;
}

.form-popup-content {
    background: #fff;
    padding: 30px 30px 40px !important;
}

.mfp-close-btn-in .form-popup .mfp-close {
    transition: all 0.3s ease-out;
    right: 25px;
    top: 20px;
    font-size: 40px;
    outline: none;
    background: none;
    padding: 0;
}

.mfp-close-btn-in .form-popup .mfp-close:hover {
    color: #E94F1C;
    border: 0 none;
}

.form-popup-content .wpcf7-form-control {
    background: #fff;
    color: #35494C;
}

.form-popup-content .tm-footer-form__title {
    color: #35494C;
    font-size: 21px;
}



.form-popup-content label {
    display: block;
}

body button.tm-popup-form__btn {
    display: flex;
    width: 355px;
    height: 70px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    background: #E94F1C;
    align-items: center;
    justify-content: center;
    border: 0 none;
    border-radius: 0;
}

body button.tm-popup-form__btn:hover {
    background: #C73606;
    color: #fff;
    border: 0 none;
}

body select.wpcf7-form-control {
    border-width: 0 0 2px 0;
    border-color: #35494C;
    border-style: solid;
    height: 54px;
    padding-left: 0;
    border-radius: 0;
}

.form-popup-content .wpcf7-form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .3);
}

.form-popup-content .wpcf7-form-control::-moz-placeholder {
    color: rgba(0, 0, 0, .3);
}

.form-popup-content .wpcf7-form-control:-moz-placeholder {
    color: rgba(0, 0, 0, .3);
}

.form-popup-content .wpcf7-form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, .3);
}

.form-popup-content__title_download {
    padding-right: 60px;
    position: relative;
}

.form-popup-content__title_download img {
    position: absolute;
    right: -30px;
    bottom: -100px;
}

.form-popup-content__danke {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(img/logo-back.svg) no-repeat center center;
    margin-bottom: 0;
}


@media (max-width: 1440px) {
    .form-popup-content__title {
        font-size: 35px;
        line-height: 38px;
    }

    .form-popup-content__subtitle {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .form-popup-content__title {
        font-size: 28px;
        line-height: 30px;
    }

    .form-popup-content .tm-footer-form__title {
        font-size: 18px;
    }

    body button.tm-popup-form__btn {
        height: 53px;
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 670px) {
    .form-popup-content__title_download img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .form-popup-content__title_download img {
        max-width: 120px;
        right: 0;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        top: 0;
    }

    .form-popup-content__title_download {
        padding-right: 0;
        padding-top: 120px;
        text-align: center;
    }
}

/* elementor
========================================================================== */
body {
    --uicore-typography--h1-f: "Raleway";
    --uicore-typography--h1-w: 600;
    --uicore-typography--h1-h: 1.2;
    --uicore-typography--h1-ls: -.027em;
    --uicore-typography--h1-t: None;
    --uicore-typography--h1-st: normal;
    --uicore-typography--h1-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h1-s: 60px;
    --uicore-typography--h2-f: "Raleway";
    --uicore-typography--h2-w: 600;
    --uicore-typography--h2-h: 1.175;
    --uicore-typography--h2-ls: -.027em;
    --uicore-typography--h2-t: None;
    --uicore-typography--h2-st: normal;
    --uicore-typography--h2-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h2-s: 55px;
    --uicore-typography--h3-f: "Raleway";
    --uicore-typography--h3-w: 600;
    --uicore-typography--h3-h: 1.2;
    --uicore-typography--h3-ls: -.027em;
    --uicore-typography--h3-t: None;
    --uicore-typography--h3-st: normal;
    --uicore-typography--h3-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h3-s: 45px;
    --uicore-typography--h4-f: "Raleway";
    --uicore-typography--h4-w: 600;
    --uicore-typography--h4-h: 1.4;
    --uicore-typography--h4-ls: -.027em;
    --uicore-typography--h4-t: None;
    --uicore-typography--h4-st: normal;
    --uicore-typography--h4-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h4-s: 32px;
    --uicore-typography--h5-f: "Raleway";
    --uicore-typography--h5-w: 600;
    --uicore-typography--h5-h: 1.187;
    --uicore-typography--h5-ls: -.015em;
    --uicore-typography--h5-t: None;
    --uicore-typography--h5-st: normal;
    --uicore-typography--h5-c: var(--e-global-color-uicore_accent);
    --uicore-typography--h5-s: 22px;
    --uicore-typography--h6-f: "Raleway";
    --uicore-typography--h6-w: 600;
    --uicore-typography--h6-h: 1.2;
    --uicore-typography--h6-ls: 0em;
    --uicore-typography--h6-t: none;
    --uicore-typography--h6-st: normal;
    --uicore-typography--h6-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h6-s: 18px;
    --uicore-typography--p-f: "Raleway";
    --uicore-typography--p-w: 500;
    --uicore-typography--p-h: 1.6;
    --uicore-typography--p-ls: 0em;
    --uicore-typography--p-t: None;
    --uicore-typography--p-st: normal;
    --uicore-typography--p-c: var(--e-global-color-uicore_body);
    --uicore-typography--p-s: 16px
}

.tm-single__content {
    --uicore-typography--h1-f: var(--e-global-typography-uicore_primary-font-family);
    --uicore-typography--h1-w: 500;
    --uicore-typography--h1-h: 1.2;
    --uicore-typography--h1-ls: -0.027em;
    --uicore-typography--h1-t: none;
    --uicore-typography--h1-st: normal;
    --uicore-typography--h1-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h1-s: 60px;
    --uicore-typography--h2-f: var(--e-global-typography-uicore_primary-font-family);
    --uicore-typography--h2-w: 500;
    --uicore-typography--h2-h: 1.2;
    --uicore-typography--h2-ls: -0.027em;
    --uicore-typography--h2-t: None;
    --uicore-typography--h2-st: normal;
    --uicore-typography--h2-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h2-s: 40px;
    --uicore-typography--h3-f: var(--e-global-typography-uicore_primary-font-family);
    --uicore-typography--h3-w: 500;
    --uicore-typography--h3-h: 1.25;
    --uicore-typography--h3-ls: 0em;
    --uicore-typography--h3-t: None;
    --uicore-typography--h3-st: normal;
    --uicore-typography--h3-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h3-s: 34px;
    --uicore-typography--h4-f: var(--e-global-typography-uicore_primary-font-family);
    --uicore-typography--h4-w: 500;
    --uicore-typography--h4-h: 1.1;
    --uicore-typography--h4-ls: 0em;
    --uicore-typography--h4-t: None;
    --uicore-typography--h4-st: normal;
    --uicore-typography--h4-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h4-s: 20px;
    --uicore-typography--h5-f: var(--e-global-typography-uicore_primary-font-family);
    --uicore-typography--h5-w: 500;
    --uicore-typography--h5-h: 1.1;
    --uicore-typography--h5-ls: 0em;
    --uicore-typography--h5-t: None;
    --uicore-typography--h5-st: normal;
    --uicore-typography--h5-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h5-s: 16px;
    --uicore-typography--h6-f: var(--e-global-typography-uicore_text-font-family);
    --uicore-typography--h6-w: normal;
    --uicore-typography--h6-h: 1.1;
    --uicore-typography--h6-ls: 0em;
    --uicore-typography--h6-t: Uppercase;
    --uicore-typography--h6-st: normal;
    --uicore-typography--h6-c: var(--e-global-color-uicore_headline);
    --uicore-typography--h6-s: 14px;
    --uicore-typography--p-f: var(--e-global-typography-uicore_text-font-family);
    --uicore-typography--p-w: normal;
    --uicore-typography--p-h: 1.875;
    --uicore-typography--p-ls: 0em;
    --uicore-typography--p-t: None;
    --uicore-typography--p-st: normal;
    --uicore-typography--p-c: var(--e-global-color-uicore_body);
    --uicore-typography--p-s: 16px;
}

.elementor-section.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container {
    width: 90%;
}

.bdt-accordion-container .bdt-accordion h1.bdt-accordion-title,
.elementor-widget-bdt-advanced-icon-box h1.bdt-ep-advanced-icon-box-title,
.elementor-widget-heading h1.elementor-heading-title,
.uicore-title.h1,
h1 {
    font-family: var(--uicore-typography--h1-f, "Raleway");
    font-weight: var(--uicore-typography--h1-w, "600");
    line-height: var(--uicore-typography--h1-h, "1.2");
    letter-spacing: var(--uicore-typography--h1-ls, "-0.027em");
    text-transform: var(--uicore-typography--h1-t, "none");
    font-style: var(--uicore-typography--h1-st, "normal");
    color: var(--uicore-typography--h1-c, "#070707");
    font-size: var(--uicore-typography--h1-s, "10px")
}

.bdt-accordion-container .bdt-accordion h2.bdt-accordion-title,
.elementor-widget-heading h2.elementor-heading-title,
.uicore-title.h2,
h2,
h2.elementor-widget-bdt-advanced-icon-box h2.bdt-ep-advanced-icon-box-title {
    font-family: var(--uicore-typography--h2-f, "Raleway");
    font-weight: var(--uicore-typography--h2-w, "600");
    line-height: var(--uicore-typography--h2-h, "1.2");
    letter-spacing: var(--uicore-typography--h2-ls, "-0.027em");
    text-transform: var(--uicore-typography--h2-t, "none");
    font-style: var(--uicore-typography--h2-st, "normal");
    color: var(--uicore-typography--h2-c, "#070707");
    font-size: var(--uicore-typography--h2-s, "10px")
}

.bdt-accordion-container .bdt-accordion h3.bdt-accordion-title,
.elementor-widget-bdt-advanced-icon-box h3.bdt-ep-advanced-icon-box-title,
.elementor-widget-heading h3.elementor-heading-title,
.uicore-title.h3,
h3 {
    font-family: var(--uicore-typography--h3-f, "Raleway");
    font-weight: var(--uicore-typography--h3-w, "600");
    line-height: var(--uicore-typography--h3-h, "1.2");
    letter-spacing: var(--uicore-typography--h3-ls, "-0.027em");
    text-transform: var(--uicore-typography--h3-t, "none");
    font-style: var(--uicore-typography--h3-st, "normal");
    color: var(--uicore-typography--h3-c, "#070707");
    font-size: var(--uicore-typography--h3-s, "10px")
}

.bdt-accordion-container .bdt-accordion h4.bdt-accordion-title,
.elementor-widget-bdt-advanced-icon-box h4.bdt-ep-advanced-icon-box-title,
.elementor-widget-heading h4.elementor-heading-title,
.uicore-title.h4,
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3,
h4 {
    font-family: var(--uicore-typography--h4-f, "Raleway");
    font-weight: var(--uicore-typography--h4-w, "600");
    line-height: var(--uicore-typography--h4-h, "1.2");
    letter-spacing: var(--uicore-typography--h4-ls, "-0.027em");
    text-transform: var(--uicore-typography--h4-t, "none");
    font-style: var(--uicore-typography--h4-st, "normal");
    color: var(--uicore-typography--h4-c, "#070707");
    font-size: var(--uicore-typography--h4-s, "10px")
}

.bdt-accordion-container .bdt-accordion h5.bdt-accordion-title,
.elementor-widget-bdt-advanced-icon-box h5.bdt-ep-advanced-icon-box-title,
.elementor-widget-heading h5.elementor-heading-title,
.uicore-title.h5,
h5 {
    font-family: var(--uicore-typography--h5-f, "Raleway");
    font-weight: var(--uicore-typography--h5-w, "600");
    line-height: var(--uicore-typography--h5-h, "1.2");
    letter-spacing: var(--uicore-typography--h5-ls, "-0.027em");
    text-transform: var(--uicore-typography--h5-t, "none");
    font-style: var(--uicore-typography--h5-st, "normal");
    color: var(--uicore-typography--h5-c, "#070707");
    font-size: var(--uicore-typography--h5-s, "10px")
}

.bdt-accordion-container .bdt-accordion h6.bdt-accordion-title,
.elementor-widget-bdt-advanced-icon-box h6.bdt-ep-advanced-icon-box-title,
.elementor-widget-heading h6.elementor-heading-title,
.uicore-title.h6,
h6 {
    font-family: var(--uicore-typography--h6-f, "Raleway");
    font-weight: var(--uicore-typography--h6-w, "600");
    line-height: var(--uicore-typography--h6-h, "1.2");
    letter-spacing: var(--uicore-typography--h6-ls, "-0.027em");
    text-transform: var(--uicore-typography--h6-t, "none");
    font-style: var(--uicore-typography--h6-st, "normal");
    color: var(--uicore-typography--h6-c, "#070707");
    font-size: var(--uicore-typography--h6-s, "10px")
}

.elementor-element .mf-input-wrapper .mf-input,
.elementor-element .mf-input-wrapper .mf-input-label,
.elementor-element .mf-input-wrapper input,
.elementor-element .mf-repeater-field-label,
.tags-links a,
.uicore-blog .uicore-post-content article .entry-content,
.uicore-body,
.uicore-body-content input,
.uicore-single-header .uicore-entry-meta,
body,
body .uicore-body-content {
    font-family: var(--uicore-typography--p-f, "Raleway");
    font-weight: var(--uicore-typography--p-w, "600");
    line-height: var(--uicore-typography--p-h, "1.2");
    letter-spacing: var(--uicore-typography--p-ls, "-0.027em");
    text-transform: var(--uicore-typography--p-t, "none");
    font-style: var(--uicore-typography--p-st, "normal");
    color: var(--uicore-typography--p-c, "#070707");
    font-size: var(--uicore-typography--p-s, "10px")
}

.bdt-ep-advanced-icon-box-icon-wrap img {
	font-size: 12px;
}



.tm-header__logo,
.tm-menu-wrapper>li,
.tm-header__contacts-wrap {
    animation-delay: 200ms;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1), cubic-bezier(0, 0, .2, 1);
    animation-play-state: running;
}


.fadeInUp {
    -webkit-animation-name: uicoreFadeInUp !important;
    animation-name: uicoreFadeInUp !important;
    -webkit-animation-timing-function: cubic-bezier(.29, .41, .08, 1.14);
    animation-timing-function: cubic-bezier(.29, .41, .08, 1.14)
}

@keyframes uicoreFadeInUp {
    0% {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes uicoreFadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


@media (max-width: 1024px) {
    body {
        --uicore-typography--h1-s: 60px;
        --uicore-typography--h2-s: 48px;
        --uicore-typography--h3-s: 36px;
        --uicore-typography--h4-s: 24px;
        --uicore-typography--h5-s: 18px;
        --uicore-typography--h6-s: 17px;
        --uicore-typography--p-s: 17px
    }

    .uicore-single-header h1.entry-title {
        --uicore-typography--h1-s: 48px
    }

    .uicore-blog .uicore-post-content:not(.uicore-archive) .entry-content {
        --uicore-typography--h1-s: 48px;
        --uicore-typography--h2-s: 34px;
        --uicore-typography--h3-s: 26px;
        --uicore-typography--h4-s: 18px;
        --uicore-typography--h5-s: 15px;
        --uicore-typography--h6-s: 13px;
        --uicore-typography--p-s: 18px
    }

    .uicore-blog-grid {
        --uicore-typography--blog_title-s: 18px;
        --uicore-typography--p-s: 13px
    }
}

@media (max-width: 767px) {
    body {
        --uicore-typography--h1-s: 36px;
        --uicore-typography--h2-s: 28px;
        --uicore-typography--h3-s: 24px;
        --uicore-typography--h4-s: 20px;
        --uicore-typography--h5-s: 16px;
        --uicore-typography--h6-s: 16px;
        --uicore-typography--p-s: 16px
    }

    .uicore-single-header h1.entry-title {
        --uicore-typography--h1-s: 34px
    }

    .uicore-blog .uicore-post-content:not(.uicore-archive) .entry-content {
        --uicore-typography--h1-s: 34px;
        --uicore-typography--h2-s: 26px;
        --uicore-typography--h3-s: 20px;
        --uicore-typography--h4-s: 16px;
        --uicore-typography--h5-s: 14px;
        --uicore-typography--h6-s: 12px;
        --uicore-typography--p-s: 16px
    }

    .uicore-blog-grid {
        --uicore-typography--blog_title-s: 16px;
        --uicore-typography--p-s: 13px
    }
}


/* main style
========================================================================== */
#response.loaded {
    opacity: 0.3;
}

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

.tm-main {
    flex: 1 1 auto;
}

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

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

.tm-centered-content_small {
    max-width: 1220px;
}

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

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

.tm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

.tm-flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tm-flex-space {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

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

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

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

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

.tm-gap20 {
    gap: 20px;
}

.tm-gap10 {
    gap: 10px;
}

.tm-grid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -24px;
    row-gap: 24px;
}

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

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

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

.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-5-20 {
    width: 55%;
}

.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%;
}

@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__width-1-3,
    .tm-grid__width-1-4 {
        width: 50%;
    }

    .tm-grid__width-5-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-3-20 {
        width: 100%;
    }
}

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

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

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


.tm-h1,
.tm-h2,
.tm-h3,
.tm-h4,
.tm-h5,
.tm-h6 {
    font-weight: normal;
    line-height: 160%;
    font-weight: 700;
}


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


.tm-h3 {
    font-size: 28px;
}


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


.tm-h5 {
    font-size: 20px;
}


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

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.lightmedium {
    font-weight: 500;
}

.normal {
    font-weight: 400;
}

.color-white {
    color: #fff;
}

.color-green {
    color: #A6C24D;
}


.trans {
    text-transform: uppercase;
}

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



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

.elementor .tm-content-btn a,
.tm-content-btn a,
.search-bar .search-submit,
.header-search-bar .tm-content-btn {
    width: 175px;
    background: #017EB1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    transition: all 0.3s ease-out;
    position: relative;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.elementor .tm-content-btn a:hover,
.elementor .tm-content-btn a:active,
.elementor .tm-content-btn a:focus,
.tm-content-btn a:hover,
.tm-content-btn a:active,
.tm-content-btn a:focus {
    color: #fff;
    background: #132C4A;
}

.search-bar .search-form .search-submit,
.header-search-bar .tm-content-btn {
	width: auto;
    padding: 10px 40px;
    height: 54px;
	border: none;
}
.search-form {
	display: flex;
    flex-direction: row;
}
.search-form label {
	flex-grow: 1;
    margin-right: 5px;
}



@media (max-width: 1520px) {


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


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

}

@media (max-width: 980px) {

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

    .tm-h3 {
        font-size: 20px;
    }

    .tm-h4 {
        font-size: 18px;
    }

    .tm-h5 {
        font-size: 16px;
    }

    .tm-content-btn a {
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {

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

    .elementor .tm-content-btn a::after,
    .tm-content-btn a::after {
        top: 17px;
    }
}

@media (max-width: 375px) {

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

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

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

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

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

.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-xxlarge-bottom {
    margin-bottom: 100px;
}

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

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

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

@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,
    .tm-margin-2xlarge-bottom,
    .tm-margin-3xlarge-bottom,
    .tm-margin-4xlarge-bottom {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {

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