/*
||===================================================||
||                                                   ||
||          Table of Contents                        ||
||                                                   ||
||          1. 	Mixins                               ||
||          2. 	Reset Styles                         ||
||          3. 	Page Preloader                       ||
||          4. 	Menu                                 ||
||          5. 	Header                               ||
||          6. 	Header search                        ||
||          7. 	Header Login Form                    ||
||          8. 	Blog                                 ||
||          9. 	Blog Single                          ||
||          10. Comments                             ||
||          11. Auto Single Page                     ||
||          12. Auto Vehicle Listings                ||
||          13. Pagination                           ||
||          14. Footer                               ||
||          15. Contact Form                         ||
||          16. Widget                               ||
||          17. Load More Button Style               ||
||          18. Widget Autos                         ||
||          19. Mobile Menu                          ||
||          20. Empty Search Page                    ||
||          21. 404  Page                            ||
||          22. Responsive                           ||
||                                                   ||
==================================================== ||
*/
/*-------------------------------------------------------------------

==  Jelect

-------------------------------------------------------------------*/
html .jelect-current {
  height: auto;
}

.vc-auto-search .jelect-current, .vc-auto-search div.select {
  background: #fff !important;
  text-align: left;
  color: #222;
}

.jelect {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
}
.jelect.select_mod-a {
  width: 190px;
}

.jelect, .media-middle {
  vertical-align: middle;
}

.jelect_state_active .jelect-current:after {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.jelect-current {
  border: 1px solid #dddddd;
  line-height: 1;
  font-size: 13px;
  color: #222222;
  padding: 15px 70px 15px 20px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-wrap: normal;
}
.jelect-current:after {
  transition: transform 0.3s ease;
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
}

.jelect-option:hover, .jelect-option_state_active {
  color: #fff !important;
}

.jelect-option {
  position: relative;
  overflow: hidden;
  margin-bottom: 1px;
  padding: 8px 16px !important;
  display: block;
  height: 38px;
  font-size: 13px;
  line-height: 22px;
  color: #222;
  overflow-wrap: normal;
  transition: 125ms ease-out;
}

.jelect-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2000;
  margin-top: 1px;
  display: none;
  max-height: 194px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 0;
  background: #fff;
  box-shadow: 1px 1px 4px 1px #eee;
}

.jelect-input {
  display: none !important;
}

.jelect-options_state_active {
  display: block !important;
}

/*-------------------------------------------------------------------

==  Mixins

-------------------------------------------------------------------*/
/*-------------------------------------------------------------------

==  Reset Styles

-------------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
  word-wrap: break-word;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

a:focus, a:active, a:visited {
  outline: none !important;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit], button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: none; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

label {
  display: block;
  margin-bottom: 10px;
}

b,
strong {
  font-weight: 700;
}

/*-------------------------------------------------------------------

==  Theme Custom Styles

-------------------------------------------------------------------*/
.tag-columns .wp-block-columns {
  margin-top: 0 !important;
}

.vbox-child {
  box-shadow: unset !important;
}

.tm_view_details_content {
  background: #fff;
  padding: 30px;
  margin: 30px;
  box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);
}

#modal-search-full .uk-modal-dialog {
  background: rgba(34, 34, 34, 0.8);
}

@media only screen and (max-width: 780px) {
  .logged-in #modal-search-full button.uk-icon:not(:disabled).uk-close {
    margin-top: 46px !important;
  }
}
.media-modal-content select.attachment-filters, .media-modal-content input.search {
  padding: 5px 20px !important;
  min-height: unset;
  width: 161px !important;
  height: fit-content;
}
.media-modal-content input, .media-modal-content select {
  padding: 5px 20px !important;
  height: fit-content;
}

.uk-lightbox iframe, .uk-lightbox figure {
  width: 720px;
}

input.uk-search-input {
  padding-left: 0px;
  width: 99%;
}

.single-page-wrapper, .post-inner_content, .blog__comments_wrap {
  /* Lists ------------------------------------- */
  /* VANILLA GALLERIES */
}
.single-page-wrapper code, .post-inner_content code, .blog__comments_wrap code {
  white-space: break-spaces;
  display: block;
}
.single-page-wrapper .wp-block-archives-list li, .post-inner_content .wp-block-archives-list li, .blog__comments_wrap .wp-block-archives-list li {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.single-page-wrapper .wp-block-archives-list li:hover, .post-inner_content .wp-block-archives-list li:hover, .blog__comments_wrap .wp-block-archives-list li:hover {
  color: #490083;
}
.single-page-wrapper .wp-block-archives-list li .fl-archive-post-count:before, .post-inner_content .wp-block-archives-list li .fl-archive-post-count:before, .blog__comments_wrap .wp-block-archives-list li .fl-archive-post-count:before {
  content: "(";
}
.single-page-wrapper .wp-block-archives-list li .fl-archive-post-count:after, .post-inner_content .wp-block-archives-list li .fl-archive-post-count:after, .blog__comments_wrap .wp-block-archives-list li .fl-archive-post-count:after {
  content: ")";
}
.single-page-wrapper .wp-block-search__input, .post-inner_content .wp-block-search__input, .blog__comments_wrap .wp-block-search__input {
  padding: 0.5px;
}
.single-page-wrapper .wp-block-archives-dropdown select, .single-page-wrapper .wp-block-categories select, .post-inner_content .wp-block-archives-dropdown select, .post-inner_content .wp-block-categories select, .blog__comments_wrap .wp-block-archives-dropdown select, .blog__comments_wrap .wp-block-categories select {
  font-size: 14px;
  background: url(../../css/images/arrow-dropdown.png) #fff 98.5% 55%;
  padding: 16px 25px;
  background-repeat: no-repeat;
  margin-bottom: 0px;
}
.single-page-wrapper .wp-block-latest-comments li, .single-page-wrapper .wp-block-latest-posts li, .post-inner_content .wp-block-latest-comments li, .post-inner_content .wp-block-latest-posts li, .blog__comments_wrap .wp-block-latest-comments li, .blog__comments_wrap .wp-block-latest-posts li {
  margin: 15px 0 0 0px;
}
.single-page-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-author, .single-page-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-link, .single-page-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-author, .single-page-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-link, .post-inner_content .wp-block-latest-comments li a.wp-block-latest-comments__comment-author, .post-inner_content .wp-block-latest-comments li a.wp-block-latest-comments__comment-link, .post-inner_content .wp-block-latest-posts li a.wp-block-latest-comments__comment-author, .post-inner_content .wp-block-latest-posts li a.wp-block-latest-comments__comment-link, .blog__comments_wrap .wp-block-latest-comments li a.wp-block-latest-comments__comment-author, .blog__comments_wrap .wp-block-latest-comments li a.wp-block-latest-comments__comment-link, .blog__comments_wrap .wp-block-latest-posts li a.wp-block-latest-comments__comment-author, .blog__comments_wrap .wp-block-latest-posts li a.wp-block-latest-comments__comment-link {
  font-weight: 600;
  color: #490083;
  transition: all 0.3s ease-in-out;
}
.single-page-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-author:hover, .single-page-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-link:hover, .single-page-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-author:hover, .single-page-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-link:hover, .post-inner_content .wp-block-latest-comments li a.wp-block-latest-comments__comment-author:hover, .post-inner_content .wp-block-latest-comments li a.wp-block-latest-comments__comment-link:hover, .post-inner_content .wp-block-latest-posts li a.wp-block-latest-comments__comment-author:hover, .post-inner_content .wp-block-latest-posts li a.wp-block-latest-comments__comment-link:hover, .blog__comments_wrap .wp-block-latest-comments li a.wp-block-latest-comments__comment-author:hover, .blog__comments_wrap .wp-block-latest-comments li a.wp-block-latest-comments__comment-link:hover, .blog__comments_wrap .wp-block-latest-posts li a.wp-block-latest-comments__comment-author:hover, .blog__comments_wrap .wp-block-latest-posts li a.wp-block-latest-comments__comment-link:hover {
  color: #ff006c !important;
}
.single-page-wrapper .wp-block-latest-comments li a, .single-page-wrapper .wp-block-latest-posts li a, .post-inner_content .wp-block-latest-comments li a, .post-inner_content .wp-block-latest-posts li a, .blog__comments_wrap .wp-block-latest-comments li a, .blog__comments_wrap .wp-block-latest-posts li a {
  font-weight: 600;
  color: #490083;
  transition: all 0.3s ease-in-out;
}
.single-page-wrapper .wp-block-latest-comments li a:hover, .single-page-wrapper .wp-block-latest-posts li a:hover, .post-inner_content .wp-block-latest-comments li a:hover, .post-inner_content .wp-block-latest-posts li a:hover, .blog__comments_wrap .wp-block-latest-comments li a:hover, .blog__comments_wrap .wp-block-latest-posts li a:hover {
  color: #ff006c !important;
}
.single-page-wrapper table a, .post-inner_content table a, .blog__comments_wrap table a {
  color: #490083 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}
.single-page-wrapper table a:hover, .post-inner_content table a:hover, .blog__comments_wrap table a:hover {
  color: #ff006c !important;
}
.single-page-wrapper .blocks-gallery-grid .blocks-gallery-item figcaption, .post-inner_content .blocks-gallery-grid .blocks-gallery-item figcaption, .blog__comments_wrap .blocks-gallery-grid .blocks-gallery-item figcaption {
  margin-bottom: 0;
}
.single-page-wrapper .wp-block-column blockquote, .post-inner_content .wp-block-column blockquote, .blog__comments_wrap .wp-block-column blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 25px;
  background: rgba(236, 108, 35, 0.08);
  padding-top: 30px !important;
  padding-right: 30px !important;
  padding-bottom: 30px !important;
  padding-left: 30px !important;
  margin-bottom: 30px !important;
  font-size: 16px;
  font-style: normal;
  position: relative;
  border-left: 5px solid #ff006c;
}
.single-page-wrapper .wp-block-column blockquote p, .post-inner_content .wp-block-column blockquote p, .blog__comments_wrap .wp-block-column blockquote p {
  font-style: normal;
}
.single-page-wrapper .wp-block-column blockquote:before, .post-inner_content .wp-block-column blockquote:before, .blog__comments_wrap .wp-block-column blockquote:before {
  content: none;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #490083;
  border-radius: 100px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 45px;
  margin: auto;
}
.single-page-wrapper .wp-block-column blockquote:after, .post-inner_content .wp-block-column blockquote:after, .blog__comments_wrap .wp-block-column blockquote:after {
  content: none;
  background-repeat: no-repeat;
  background-image: url(../images/bloquote.svg);
  position: relative;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 18px;
  height: 13px;
  z-index: 99;
  background-size: contain;
}
.single-page-wrapper .wp-block-column p, .post-inner_content .wp-block-column p, .blog__comments_wrap .wp-block-column p {
  margin-top: 0 !important;
}
.single-page-wrapper > p:first-child, .post-inner_content > p:first-child, .blog__comments_wrap > p:first-child {
  margin-top: 0 !important;
}
.single-page-wrapper p, .post-inner_content p, .blog__comments_wrap p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-page-wrapper a, .post-inner_content a, .blog__comments_wrap a {
  color: inherit;
  transition: 0.3s ease;
}
.single-page-wrapper a:hover, .post-inner_content a:hover, .blog__comments_wrap a:hover {
  transition: 0.3s ease;
}
.single-page-wrapper a.wp-block-button__link, .post-inner_content a.wp-block-button__link, .blog__comments_wrap a.wp-block-button__link {
  color: #fff;
}
.single-page-wrapper ul,
.single-page-wrapper ol, .post-inner_content ul,
.post-inner_content ol, .blog__comments_wrap ul,
.blog__comments_wrap ol {
  margin: 0 0 25px 0;
}
.single-page-wrapper ul, .post-inner_content ul, .blog__comments_wrap ul {
  list-style: disc;
}
.single-page-wrapper ul ul, .post-inner_content ul ul, .blog__comments_wrap ul ul {
  list-style: circle;
}
.single-page-wrapper ul ul ul, .post-inner_content ul ul ul, .blog__comments_wrap ul ul ul {
  list-style: square;
}
.single-page-wrapper ol, .post-inner_content ol, .blog__comments_wrap ol {
  list-style: decimal;
}
.single-page-wrapper ol ol, .post-inner_content ol ol, .blog__comments_wrap ol ol {
  list-style: lower-alpha;
}
.single-page-wrapper ol ol ol, .post-inner_content ol ol ol, .blog__comments_wrap ol ol ol {
  list-style: lower-roman;
}
.single-page-wrapper li, .post-inner_content li, .blog__comments_wrap li {
  margin: 15px 0 0 25px;
}
.single-page-wrapper li > ul,
.single-page-wrapper li > ol, .post-inner_content li > ul,
.post-inner_content li > ol, .blog__comments_wrap li > ul,
.blog__comments_wrap li > ol {
  margin: 0 0 0 0;
}
.single-page-wrapper .reset-list-style,
.single-page-wrapper .reset-list-style ul,
.single-page-wrapper .reset-list-style ol, .post-inner_content .reset-list-style,
.post-inner_content .reset-list-style ul,
.post-inner_content .reset-list-style ol, .blog__comments_wrap .reset-list-style,
.blog__comments_wrap .reset-list-style ul,
.blog__comments_wrap .reset-list-style ol {
  list-style: none;
  margin: 0;
}
.single-page-wrapper .reset-list-style li, .post-inner_content .reset-list-style li, .blog__comments_wrap .reset-list-style li {
  margin: 0;
}
.single-page-wrapper dt,
.single-page-wrapper dd, .post-inner_content dt,
.post-inner_content dd, .blog__comments_wrap dt,
.blog__comments_wrap dd {
  line-height: 1.5;
}
.single-page-wrapper dt, .post-inner_content dt, .blog__comments_wrap dt {
  font-weight: 700;
}
.single-page-wrapper dt + dd, .post-inner_content dt + dd, .blog__comments_wrap dt + dd {
  margin-top: 15px;
}
.single-page-wrapper dd + dt, .post-inner_content dd + dt, .blog__comments_wrap dd + dt {
  margin-top: 20px;
}
.single-page-wrapper ul ul, .post-inner_content ul ul, .blog__comments_wrap ul ul {
  margin-top: 0;
}
.single-page-wrapper .wp-block-archives:not(.alignwide):not(.alignfull), .single-page-wrapper .wp-block-categories:not(.alignwide):not(.alignfull), .single-page-wrapper .wp-block-code, .single-page-wrapper .wp-block-columns:not(.alignwide):not(.alignfull), .single-page-wrapper .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .single-page-wrapper .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .single-page-wrapper .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .single-page-wrapper .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull), .single-page-wrapper .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .single-page-wrapper .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright), .single-page-wrapper .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright), .single-page-wrapper .wp-block-media-text:not(.alignwide):not(.alignfull), .single-page-wrapper .wp-block-preformatted, .single-page-wrapper .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .single-page-wrapper .wp-block-quote, .single-page-wrapper .wp-block-quote.is-large, .single-page-wrapper .wp-block-quote.is-style-large, .single-page-wrapper .wp-block-verse, .single-page-wrapper .wp-block-video:not(.alignwide):not(.alignfull), .post-inner_content .wp-block-archives:not(.alignwide):not(.alignfull), .post-inner_content .wp-block-categories:not(.alignwide):not(.alignfull), .post-inner_content .wp-block-code, .post-inner_content .wp-block-columns:not(.alignwide):not(.alignfull), .post-inner_content .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .post-inner_content .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .post-inner_content .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .post-inner_content .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull), .post-inner_content .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .post-inner_content .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright), .post-inner_content .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright), .post-inner_content .wp-block-media-text:not(.alignwide):not(.alignfull), .post-inner_content .wp-block-preformatted, .post-inner_content .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .post-inner_content .wp-block-quote, .post-inner_content .wp-block-quote.is-large, .post-inner_content .wp-block-quote.is-style-large, .post-inner_content .wp-block-verse, .post-inner_content .wp-block-video:not(.alignwide):not(.alignfull), .blog__comments_wrap .wp-block-archives:not(.alignwide):not(.alignfull), .blog__comments_wrap .wp-block-categories:not(.alignwide):not(.alignfull), .blog__comments_wrap .wp-block-code, .blog__comments_wrap .wp-block-columns:not(.alignwide):not(.alignfull), .blog__comments_wrap .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .blog__comments_wrap .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .blog__comments_wrap .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .blog__comments_wrap .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull), .blog__comments_wrap .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .blog__comments_wrap .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright), .blog__comments_wrap .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright), .blog__comments_wrap .wp-block-media-text:not(.alignwide):not(.alignfull), .blog__comments_wrap .wp-block-preformatted, .blog__comments_wrap .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .blog__comments_wrap .wp-block-quote, .blog__comments_wrap .wp-block-quote.is-large, .blog__comments_wrap .wp-block-quote.is-style-large, .blog__comments_wrap .wp-block-verse, .blog__comments_wrap .wp-block-video:not(.alignwide):not(.alignfull) {
  margin-bottom: 25px;
  margin-top: 25px;
}
.single-page-wrapper .wp-block-image .alignleft, .post-inner_content .wp-block-image .alignleft, .blog__comments_wrap .wp-block-image .alignleft {
  float: left;
  margin-right: 25px;
}
.single-page-wrapper .wp-block-image .alignright, .post-inner_content .wp-block-image .alignright, .blog__comments_wrap .wp-block-image .alignright {
  float: right;
  margin-left: 25px;
}
.single-page-wrapper .wp-block-image, .post-inner_content .wp-block-image, .blog__comments_wrap .wp-block-image {
  margin-top: 25px;
  margin-bottom: 25px;
}
.single-page-wrapper .wp-block-image figcaption, .post-inner_content .wp-block-image figcaption, .blog__comments_wrap .wp-block-image figcaption {
  margin-top: 10px;
  margin-bottom: 10px;
}
.single-page-wrapper .wp-block-button, .post-inner_content .wp-block-button, .blog__comments_wrap .wp-block-button {
  margin: 15px 0;
}
.single-page-wrapper .wp-block-button a, .post-inner_content .wp-block-button a, .blog__comments_wrap .wp-block-button a {
  color: inherit;
}
.single-page-wrapper .wp-block-button a.wp-block-button__link, .post-inner_content .wp-block-button a.wp-block-button__link, .blog__comments_wrap .wp-block-button a.wp-block-button__link {
  color: #fff;
}
.single-page-wrapper .wp-block-pullquote, .post-inner_content .wp-block-pullquote, .blog__comments_wrap .wp-block-pullquote {
  padding: 0;
}
.single-page-wrapper .wp-block-quote.has-text-align-right:after, .post-inner_content .wp-block-quote.has-text-align-right:after, .blog__comments_wrap .wp-block-quote.has-text-align-right:after {
  text-align: left;
}
.single-page-wrapper .wp-block-pullquote.has-background, .post-inner_content .wp-block-pullquote.has-background, .blog__comments_wrap .wp-block-pullquote.has-background {
  padding: 20px;
}
.single-page-wrapper .wp-block-pullquote.is-style-solid-color blockquote, .post-inner_content .wp-block-pullquote.is-style-solid-color blockquote, .blog__comments_wrap .wp-block-pullquote.is-style-solid-color blockquote {
  margin-bottom: 0px;
}
.single-page-wrapper .wp-block-quote.is-large p, .single-page-wrapper .wp-block-quote.is-style-large p, .post-inner_content .wp-block-quote.is-large p, .post-inner_content .wp-block-quote.is-style-large p, .blog__comments_wrap .wp-block-quote.is-large p, .blog__comments_wrap .wp-block-quote.is-style-large p {
  line-height: 40px;
  font-size: 30px;
}
.single-page-wrapper .has-large-font-size, .post-inner_content .has-large-font-size, .blog__comments_wrap .has-large-font-size {
  line-height: 1.5;
}
.single-page-wrapper .has-medium-font-size, .post-inner_content .has-medium-font-size, .blog__comments_wrap .has-medium-font-size {
  line-height: 1.5;
}
.single-page-wrapper .has-drop-cap:not(:focus)::first-letter, .post-inner_content .has-drop-cap:not(:focus)::first-letter, .blog__comments_wrap .has-drop-cap:not(:focus)::first-letter {
  color: #222;
  font-size: 5.1em;
  font-weight: 800;
  margin: 0.05em 0.1em 0 0;
}
.single-page-wrapper .has-drop-cap:not(:focus)::first-letter::after, .post-inner_content .has-drop-cap:not(:focus)::first-letter::after, .blog__comments_wrap .has-drop-cap:not(:focus)::first-letter::after {
  content: "";
  display: table;
  clear: both;
}
.single-page-wrapper .has-drop-cap:not(:focus)::after, .post-inner_content .has-drop-cap:not(:focus)::after, .blog__comments_wrap .has-drop-cap:not(:focus)::after {
  padding: 0;
}
.single-page-wrapper .wp-block-cover, .single-page-wrapper .wp-block-cover-image, .post-inner_content .wp-block-cover, .post-inner_content .wp-block-cover-image, .blog__comments_wrap .wp-block-cover, .blog__comments_wrap .wp-block-cover-image {
  margin-bottom: 25px;
}
.single-page-wrapper .wp-block-cover-image .wp-block-subhead:not(.has-text-color), .single-page-wrapper .wp-block-cover-image h1:not(.has-text-color), .single-page-wrapper .wp-block-cover-image h2:not(.has-text-color), .single-page-wrapper .wp-block-cover-image h3:not(.has-text-color), .single-page-wrapper .wp-block-cover-image h4:not(.has-text-color), .single-page-wrapper .wp-block-cover-image h5:not(.has-text-color), .single-page-wrapper .wp-block-cover-image h6:not(.has-text-color), .single-page-wrapper .wp-block-cover-image p:not(.has-text-color), .single-page-wrapper .wp-block-cover .wp-block-subhead:not(.has-text-color), .single-page-wrapper .wp-block-cover h1:not(.has-text-color), .single-page-wrapper .wp-block-cover h2:not(.has-text-color), .single-page-wrapper .wp-block-cover h3:not(.has-text-color), .single-page-wrapper .wp-block-cover h4:not(.has-text-color), .single-page-wrapper .wp-block-cover h5:not(.has-text-color), .single-page-wrapper .wp-block-cover h6:not(.has-text-color), .single-page-wrapper .wp-block-cover p:not(.has-text-color), .post-inner_content .wp-block-cover-image .wp-block-subhead:not(.has-text-color), .post-inner_content .wp-block-cover-image h1:not(.has-text-color), .post-inner_content .wp-block-cover-image h2:not(.has-text-color), .post-inner_content .wp-block-cover-image h3:not(.has-text-color), .post-inner_content .wp-block-cover-image h4:not(.has-text-color), .post-inner_content .wp-block-cover-image h5:not(.has-text-color), .post-inner_content .wp-block-cover-image h6:not(.has-text-color), .post-inner_content .wp-block-cover-image p:not(.has-text-color), .post-inner_content .wp-block-cover .wp-block-subhead:not(.has-text-color), .post-inner_content .wp-block-cover h1:not(.has-text-color), .post-inner_content .wp-block-cover h2:not(.has-text-color), .post-inner_content .wp-block-cover h3:not(.has-text-color), .post-inner_content .wp-block-cover h4:not(.has-text-color), .post-inner_content .wp-block-cover h5:not(.has-text-color), .post-inner_content .wp-block-cover h6:not(.has-text-color), .post-inner_content .wp-block-cover p:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image .wp-block-subhead:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image h1:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image h2:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image h3:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image h4:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image h5:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image h6:not(.has-text-color), .blog__comments_wrap .wp-block-cover-image p:not(.has-text-color), .blog__comments_wrap .wp-block-cover .wp-block-subhead:not(.has-text-color), .blog__comments_wrap .wp-block-cover h1:not(.has-text-color), .blog__comments_wrap .wp-block-cover h2:not(.has-text-color), .blog__comments_wrap .wp-block-cover h3:not(.has-text-color), .blog__comments_wrap .wp-block-cover h4:not(.has-text-color), .blog__comments_wrap .wp-block-cover h5:not(.has-text-color), .blog__comments_wrap .wp-block-cover h6:not(.has-text-color), .blog__comments_wrap .wp-block-cover p:not(.has-text-color) {
  color: #fff;
}
.single-page-wrapper .wp-block-cover-image .wp-block-subhead:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image h1:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image h2:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image h3:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image h4:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image h5:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image h6:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover-image p:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover .wp-block-subhead:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover h1:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover h2:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover h3:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover h4:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover h5:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover h6:not(.has-text-color) a:hover, .single-page-wrapper .wp-block-cover p:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image .wp-block-subhead:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image h1:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image h2:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image h3:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image h4:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image h5:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image h6:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover-image p:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover .wp-block-subhead:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover h1:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover h2:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover h3:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover h4:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover h5:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover h6:not(.has-text-color) a:hover, .post-inner_content .wp-block-cover p:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image .wp-block-subhead:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image h1:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image h2:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image h3:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image h4:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image h5:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image h6:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover-image p:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover .wp-block-subhead:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover h1:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover h2:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover h3:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover h4:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover h5:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover h6:not(.has-text-color) a:hover, .blog__comments_wrap .wp-block-cover p:not(.has-text-color) a:hover {
  color: #fff;
}
.single-page-wrapper .wp-block-group.has-background, .post-inner_content .wp-block-group.has-background, .blog__comments_wrap .wp-block-group.has-background {
  padding: 35px;
}
.single-page-wrapper .alignnone, .single-page-wrapper .aligncenter, .single-page-wrapper .alignleft, .single-page-wrapper .alignright, .single-page-wrapper .alignwide, .post-inner_content .alignnone, .post-inner_content .aligncenter, .post-inner_content .alignleft, .post-inner_content .alignright, .post-inner_content .alignwide, .blog__comments_wrap .alignnone, .blog__comments_wrap .aligncenter, .blog__comments_wrap .alignleft, .blog__comments_wrap .alignright, .blog__comments_wrap .alignwide {
  margin-top: 25px;
  margin-right: auto;
  margin-bottom: 25px;
  margin-left: auto;
}
.single-page-wrapper > .alignfull, .post-inner_content > .alignfull, .blog__comments_wrap > .alignfull {
  margin-bottom: 25px;
  margin-top: 25px;
}
.single-page-wrapper pre, .post-inner_content pre, .blog__comments_wrap pre {
  padding: 25px;
  border: 0;
  background-color: #f9f9f9;
}
.single-page-wrapper .wp-block-table table, .post-inner_content .wp-block-table table, .blog__comments_wrap .wp-block-table table {
  width: 100%;
}
.single-page-wrapper table, .post-inner_content table, .blog__comments_wrap table {
  border-collapse: collapse;
  margin-bottom: 25px;
  margin-top: 25px;
  border: 1px solid;
}
.single-page-wrapper th, .single-page-wrapper td, .post-inner_content th, .post-inner_content td, .blog__comments_wrap th, .blog__comments_wrap td {
  border: 1px solid;
  line-height: 1.4;
  margin: 0;
  overflow: visible;
  padding: 10px;
}
.single-page-wrapper .wp-block-table.is-style-stripes td, .single-page-wrapper .wp-block-table.is-style-stripes th, .post-inner_content .wp-block-table.is-style-stripes td, .post-inner_content .wp-block-table.is-style-stripes th, .blog__comments_wrap .wp-block-table.is-style-stripes td, .blog__comments_wrap .wp-block-table.is-style-stripes th {
  border: 1px solid;
}
.single-page-wrapper p + h1, .single-page-wrapper p + h2, .single-page-wrapper p + h3, .single-page-wrapper p + h4, .single-page-wrapper p + h5, .single-page-wrapper p + h6, .post-inner_content p + h1, .post-inner_content p + h2, .post-inner_content p + h3, .post-inner_content p + h4, .post-inner_content p + h5, .post-inner_content p + h6, .blog__comments_wrap p + h1, .blog__comments_wrap p + h2, .blog__comments_wrap p + h3, .blog__comments_wrap p + h4, .blog__comments_wrap p + h5, .blog__comments_wrap p + h6 {
  margin-top: 25px;
}
.single-page-wrapper .gallery + h1, .single-page-wrapper .gallery + h2, .single-page-wrapper .gallery + h3, .single-page-wrapper .gallery + h4, .single-page-wrapper .gallery + h5, .single-page-wrapper .gallery + h6, .post-inner_content .gallery + h1, .post-inner_content .gallery + h2, .post-inner_content .gallery + h3, .post-inner_content .gallery + h4, .post-inner_content .gallery + h5, .post-inner_content .gallery + h6, .blog__comments_wrap .gallery + h1, .blog__comments_wrap .gallery + h2, .blog__comments_wrap .gallery + h3, .blog__comments_wrap .gallery + h4, .blog__comments_wrap .gallery + h5, .blog__comments_wrap .gallery + h6 {
  margin-top: 25px;
}
.single-page-wrapper .gallery, .post-inner_content .gallery, .blog__comments_wrap .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.single-page-wrapper .gallery .gallery-item, .post-inner_content .gallery .gallery-item, .blog__comments_wrap .gallery .gallery-item {
  text-align: center;
}
.single-page-wrapper .gallery .gallery-item img, .post-inner_content .gallery .gallery-item img, .blog__comments_wrap .gallery .gallery-item img {
  display: inline-block;
}
.single-page-wrapper .gallery-item, .post-inner_content .gallery-item, .blog__comments_wrap .gallery-item {
  margin: 15px 0;
  padding: 15px;
  width: 100%;
}
.single-page-wrapper .gallery-columns-2 .gallery-item, .post-inner_content .gallery-columns-2 .gallery-item, .blog__comments_wrap .gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.single-page-wrapper .gallery-columns-3 .gallery-item, .post-inner_content .gallery-columns-3 .gallery-item, .blog__comments_wrap .gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.single-page-wrapper .gallery-columns-4 .gallery-item, .post-inner_content .gallery-columns-4 .gallery-item, .blog__comments_wrap .gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.single-page-wrapper .gallery-columns-5 .gallery-item, .post-inner_content .gallery-columns-5 .gallery-item, .blog__comments_wrap .gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.single-page-wrapper .gallery-columns-6 .gallery-item, .post-inner_content .gallery-columns-6 .gallery-item, .blog__comments_wrap .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.single-page-wrapper .gallery-columns-7 .gallery-item, .post-inner_content .gallery-columns-7 .gallery-item, .blog__comments_wrap .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.single-page-wrapper .gallery-columns-8 .gallery-item, .post-inner_content .gallery-columns-8 .gallery-item, .blog__comments_wrap .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.single-page-wrapper .gallery-columns-9 .gallery-item, .post-inner_content .gallery-columns-9 .gallery-item, .blog__comments_wrap .gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.single-page-wrapper img, .post-inner_content img, .blog__comments_wrap img {
  display: block;
}
.single-page-wrapper figure figcaption, .post-inner_content figure figcaption, .blog__comments_wrap figure figcaption {
  text-align: center;
}
.single-page-wrapper .alignleft, .post-inner_content .alignleft, .blog__comments_wrap .alignleft {
  float: left;
  margin: 0 25px 10px 0;
}
.single-page-wrapper .alignright, .post-inner_content .alignright, .blog__comments_wrap .alignright {
  float: right;
  margin: 0 0 10px 25px;
}
.single-page-wrapper .wp-block-image figure, .post-inner_content .wp-block-image figure, .blog__comments_wrap .wp-block-image figure {
  width: auto;
  max-width: none;
  margin-bottom: 15px !important;
}
.single-page-wrapper .wp-block-button, .post-inner_content .wp-block-button, .blog__comments_wrap .wp-block-button {
  transition: 0.3s ease;
}
.single-page-wrapper .wp-block-button:hover, .post-inner_content .wp-block-button:hover, .blog__comments_wrap .wp-block-button:hover {
  transition: 0.3s ease;
}
.single-page-wrapper .wp-block-button .wp-block-button__link:hover, .post-inner_content .wp-block-button .wp-block-button__link:hover, .blog__comments_wrap .wp-block-button .wp-block-button__link:hover {
  color: #ffffff !important;
}
.single-page-wrapper .wp-block-button.is-style-outline .wp-block-button__link, .post-inner_content .wp-block-button.is-style-outline .wp-block-button__link, .blog__comments_wrap .wp-block-button.is-style-outline .wp-block-button__link {
  color: #32373c !important;
}
.single-page-wrapper .wp-block-cover, .post-inner_content .wp-block-cover, .blog__comments_wrap .wp-block-cover {
  margin-bottom: 25px;
}
.single-page-wrapper dl, .post-inner_content dl, .blog__comments_wrap dl {
  margin-bottom: 25px;
}
.single-page-wrapper select, .post-inner_content select, .blog__comments_wrap select {
  background: url("../../css/images/arrow-dropdown.png") 98% 45% #fff;
  background-repeat: no-repeat;
}
.single-page-wrapper .wp-block-calendar, .post-inner_content .wp-block-calendar, .blog__comments_wrap .wp-block-calendar {
  margin-top: 25px;
  margin-bottom: 25px;
}
.single-page-wrapper .wp-block-calendar table caption, .post-inner_content .wp-block-calendar table caption, .blog__comments_wrap .wp-block-calendar table caption {
  caption-side: top;
  font-weight: 600;
  color: #222;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.single-page-wrapper .wp-block-calendar table th, .post-inner_content .wp-block-calendar table th, .blog__comments_wrap .wp-block-calendar table th {
  background: none;
  font-weight: 600;
  color: #222;
}
.single-page-wrapper .wp-block-calendar table td, .post-inner_content .wp-block-calendar table td, .blog__comments_wrap .wp-block-calendar table td {
  padding-top: 15px;
  padding-bottom: 15px;
}
.single-page-wrapper .wp-block-calendar table tfoot td a, .post-inner_content .wp-block-calendar table tfoot td a, .blog__comments_wrap .wp-block-calendar table tfoot td a {
  color: #222222;
  text-decoration: none;
  font-weight: 500;
}
.single-page-wrapper .wp-block-calendar nav, .post-inner_content .wp-block-calendar nav, .blog__comments_wrap .wp-block-calendar nav {
  display: flex;
  justify-content: space-between;
}
.single-page-wrapper .wp-block-latest-comments li, .post-inner_content .wp-block-latest-comments li, .blog__comments_wrap .wp-block-latest-comments li {
  list-style: none;
  margin-left: 0;
  margin-top: 25px;
}
.single-page-wrapper .wp-block-latest-comments li .wp-block-latest-comments__comment-author, .post-inner_content .wp-block-latest-comments li .wp-block-latest-comments__comment-author, .blog__comments_wrap .wp-block-latest-comments li .wp-block-latest-comments__comment-author {
  font-weight: 500;
  color: #222222;
}
.single-page-wrapper .wp-block-latest-comments li time, .post-inner_content .wp-block-latest-comments li time, .blog__comments_wrap .wp-block-latest-comments li time {
  margin-top: 3px;
  margin-bottom: 5px;
  color: #7b7d7f;
  font-size: 13px;
}
.single-page-wrapper .wp-block-latest-posts li, .post-inner_content .wp-block-latest-posts li, .blog__comments_wrap .wp-block-latest-posts li {
  margin-top: 25px;
  margin-left: 0;
}
.single-page-wrapper .wp-block-latest-posts li time, .post-inner_content .wp-block-latest-posts li time, .blog__comments_wrap .wp-block-latest-posts li time {
  margin-top: 3px;
  margin-bottom: 5px;
  color: #7b7d7f;
  font-size: 13px;
}
.single-page-wrapper .wp-block-latest-posts.is-grid li, .post-inner_content .wp-block-latest-posts.is-grid li, .blog__comments_wrap .wp-block-latest-posts.is-grid li {
  margin-top: 15px;
}
.single-page-wrapper .wp-block-search, .post-inner_content .wp-block-search, .blog__comments_wrap .wp-block-search {
  position: relative;
}
.single-page-wrapper .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input, .post-inner_content .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input, .blog__comments_wrap .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  height: 62px;
  padding-left: 30px;
}
.single-page-wrapper .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input:hover, .post-inner_content .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input:hover, .blog__comments_wrap .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input:hover {
  -webkit-box-shadow: unset;
  border-radius: 2px;
  background-color: white;
  box-shadow: unset;
}
.single-page-wrapper .wp-block-search .wp-block-search__input, .post-inner_content .wp-block-search .wp-block-search__input, .blog__comments_wrap .wp-block-search .wp-block-search__input {
  max-width: calc(100% - 157px);
}
.single-page-wrapper .wp-block-search button, .post-inner_content .wp-block-search button, .blog__comments_wrap .wp-block-search button {
  flex-grow: 0;
  height: 65px;
  width: 105px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  border-color: #222;
  color: #fff;
  font-weight: 700;
  background-color: #490083;
  transition: 0.3s ease-in-out;
}
.single-page-wrapper .wp-block-search button:hover, .post-inner_content .wp-block-search button:hover, .blog__comments_wrap .wp-block-search button:hover {
  border-color: #f0a837;
  color: #fff;
  background-color: #f0a837;
}
.single-page-wrapper .wp-block-tag-cloud a, .post-inner_content .wp-block-tag-cloud a, .blog__comments_wrap .wp-block-tag-cloud a {
  margin-right: 5px;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  box-sizing: border-box;
  display: inline-block;
  padding: 0 20px;
  border: 2px solid #dddddd;
  background-color: #ffffff;
  color: #222222;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 2.86;
  white-space: nowrap;
  transition: 0.3s;
}
.single-page-wrapper .wp-block-tag-cloud a:hover, .post-inner_content .wp-block-tag-cloud a:hover, .blog__comments_wrap .wp-block-tag-cloud a:hover {
  border-color: #490083;
  background-color: #490083;
  color: #ffffff;
  text-decoration: none;
}
.single-page-wrapper .wp-block-rss li, .post-inner_content .wp-block-rss li, .blog__comments_wrap .wp-block-rss li {
  list-style: none;
  margin-left: 0;
  color: #490083;
  transition: all 0.3s ease-in-out;
}
.single-page-wrapper .wp-block-rss li:hover, .post-inner_content .wp-block-rss li:hover, .blog__comments_wrap .wp-block-rss li:hover {
  color: #ff006c;
}
.single-page-wrapper figcaption a, .post-inner_content figcaption a, .blog__comments_wrap figcaption a {
  color: inherit;
  transition: 0.3s ease;
}
.single-page-wrapper figcaption a:hover, .post-inner_content figcaption a:hover, .blog__comments_wrap figcaption a:hover {
  transition: 0.3s ease;
}

.single-page-wrapper blockquote a {
  color: inherit;
  transition: 0.3s ease;
}
.single-page-wrapper blockquote a:hover {
  transition: 0.3s ease;
}
.single-page-wrapper table a {
  color: inherit;
  transition: 0.3s ease;
}
.single-page-wrapper table a:hover {
  transition: 0.3s ease;
}
.single-page-wrapper dd a {
  color: inherit;
  transition: 0.3s ease;
}
.single-page-wrapper dd a:hover {
  transition: 0.3s ease;
}
.single-page-wrapper p a {
  color: inherit;
  transition: 0.3s ease;
}
.single-page-wrapper p a:hover {
  transition: 0.3s ease;
}

.plugin-disable p {
  margin-bottom: 25px;
}
.plugin-disable .comment-moderation img {
  margin-bottom: 10px !important;
}

iframe, figure {
  max-width: 100%;
  width: 100%;
}

address {
  padding: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
}

code {
  margin: 3px;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 90%;
  padding: 3px 10px;
  color: #222 !important;
  margin-top: 25px;
  margin-bottom: 25px;
}

select {
  cursor: pointer;
  position: relative;
  max-width: 100%;
  appearance: none;
  outline: 0;
  width: 100%;
  color: #aaaaaa;
  line-height: 1;
  padding: 16px 35px;
  border: 1px solid;
  margin-bottom: 20px;
  transition: 0.3s ease;
  background: url("../../css/images/arrow-dropdown.png") 95% 45% #fff;
  background-repeat: no-repeat;
}

em {
  color: inherit;
}

p + p {
  margin-top: 20px;
  margin-bottom: 0 !important;
}

figcaption {
  font-size: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

a:hover {
  text-decoration: none;
}

.fl-page-padding {
  height: 100px;
}

#fl-main-holder {
  overflow: hidden;
}

.fl-main-container {
  overflow: hidden;
}

.uk-modal-dialog {
  overflow: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 23px;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:focus, button:active,
[type=button]:focus,
[type=button]:active,
[type=reset]:focus,
[type=reset]:active,
[type=submit]:focus,
[type=submit]:active {
  outline: none;
}

.sticky .article-intro__title a {
  padding-left: 25px;
  position: relative;
}
.sticky .article-intro__title a:after {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 25px;
  content: "\f08d";
  font-family: FontAwesome;
  color: #490083;
}

input {
  display: block;
  width: 100%;
  padding: 20px;
  line-height: 1.5;
  height: 49px;
  box-shadow: 0;
  border-radius: 2px;
  border: 1px solid #eee;
  color: #222;
  font-size: 14px;
  box-shadow: none;
  opacity: 1;
}
input[type=checkbox] {
  width: auto;
  height: 10px;
  display: inline-flex;
  margin-right: 4px;
  margin-top: 8px;
}
textarea {
  display: block;
  width: 100%;
  padding: 20px;
  line-height: 1.5;
  height: 49px;
  box-shadow: 0;
  border-radius: 2px;
  border: 1px solid #eee;
  color: #222;
  font-size: 14px;
  box-shadow: none;
  opacity: 1;
}
button {
  border: none;
}

.slick-slider {
  overflow: hidden;
}
.slick-slider .slick-track:after {
  content: "";
  clear: both;
  display: table;
}
.slick-slider .slider-image {
  float: left;
}

.cf::after {
  content: "";
  clear: both;
  display: table;
}

.hidden {
  display: none;
}

.trackback .blog-comments__inner .blog-comments__img, .pingback .blog-comments__inner .blog-comments__img {
  display: none;
}

.fl-form-password-protected .fl-input-group {
  display: flex;
  flex-wrap: wrap;
}
.fl-form-password-protected .fl-input-group input {
  flex-grow: 1;
  max-width: 70%;
  width: 100%;
  color: #aaaaaa;
  border-radius: 0;
  line-height: 1;
  padding: 13px 35px;
  transition: 0.3s ease;
  margin-right: -1px;
  margin-bottom: 0;
  max-width: calc(100% - 157px);
}
.fl-form-password-protected .fl-input-group button {
  flex-grow: 0;
  width: 120px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  background-color: #222;
  transition: 0.3s ease-in-out;
  border: 1px solid #222;
  padding: 0px;
  margin-left: 0px;
  word-break: normal;
  justify-content: center;
  align-items: center;
}
.fl-form-password-protected .fl-input-group button:hover {
  border-color: #490083;
  color: #fff;
  background-color: #490083;
}

.comment-moderation p {
  margin-bottom: 25px;
}
.comment-moderation h1, .comment-moderation h2, .comment-moderation h3, .comment-moderation h4, .comment-moderation h5, .comment-moderation h6 {
  margin-top: 25px;
}
.comment-moderation img {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px !important;
}

.trackback .comments--reply-wrapper {
  flex-wrap: wrap;
}
.trackback .comment-author-name {
  display: block;
}

/* 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; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.gallery-caption {
  box-sizing: border-box;
}

.bypostauthor {
  box-sizing: border-box;
}

.fl-story-page-inner > a {
  transition: 0.3s ease;
  color: inherit;
}
.fl-story-page-inner > a:hover {
  transition: 0.3s ease;
}

.single-post-wrapper img.alignleft, .single-post-wrapper img.alignright, .single-page-wrapper img.alignleft, .single-page-wrapper img.alignright {
  clear: both;
}

.wp-block-latest-comments__comment-meta {
  background-color: transparent;
  line-height: 30px;
}

.post-inner-pagination, .page-inner-pagination {
  padding-top: 25px;
}
.post-inner-pagination .pagination-text, .page-inner-pagination .pagination-text {
  color: #222222;
  margin-right: 5px;
}
.post-inner-pagination .post-page-numbers, .page-inner-pagination .post-page-numbers {
  height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  line-height: 1;
  width: 40px;
  transition: 0.3s ease;
  cursor: pointer;
  margin-right: 10px;
  font-size: 16px;
  justify-content: center;
  color: #222;
}
.post-inner-pagination .post-page-numbers.current, .post-inner-pagination .post-page-numbers:hover, .page-inner-pagination .post-page-numbers.current, .page-inner-pagination .post-page-numbers:hover {
  color: #fff;
  border: 1px solid #490083;
  background-color: #490083;
}

.plugin-disable .comment-form-cookies-consent {
  margin-top: 20px;
}
.plugin-disable form.fl-comment-form .comment-form-cookies-consent input[type=checkbox]:before {
  top: 3px;
}
.plugin-disable form.fl-comment-form .comment-form-cookies-consent input[type=checkbox]:after {
  top: 6px !important;
  left: 3px !important;
}
.plugin-disable .blocks-gallery-grid {
  margin-bottom: 0 !important;
}
.plugin-disable .blocks-gallery-grid .blocks-gallery-item {
  margin-bottom: 20px !important;
}
.plugin-disable blockquote cite {
  margin-top: 0;
}
.plugin-disable blockquote cite em {
  margin-top: 0;
}
.plugin-disable .wp-block-gallery.columns-3 .blocks-gallery-caption {
  display: flex;
  margin-bottom: 20px !important;
  margin-top: 0;
}
.plugin-disable .wp-block-gallery.columns-2 figcaption {
  margin-top: 0;
}
.plugin-disable figure + p {
  margin-top: 0;
}
.plugin-disable figure.wp-block-gallery {
  margin-bottom: 0 !important;
}
.plugin-disable .wp-block-spacer + p {
  margin-top: 0;
}
.plugin-disable .wp-block-columns ol li:first-child {
  margin-top: 0;
}
.plugin-disable .wp-block-columns .wp-block-quote {
  margin-top: 0;
}

.post-inner_content .wp-block-pullquote.is-style-solid-color blockquote {
  margin-top: 0px;
}

body.logged-in .plugin-disable form.fl-comment-form .submit-btn-container {
  margin-top: 20px;
}

.logged-in button.uk-icon:not(:disabled).uk-close {
  margin-top: 0px;
}
.logged-in button.uk-icon:not(:disabled) {
  margin-top: 32px;
}
.logged-in .uk-offcanvas-reveal .uk-offcanvas-bar {
  margin-top: 32px;
}
.logged-in #modal-search-full button.uk-icon:not(:disabled).uk-close {
  margin-top: 32px;
}
.logged-in button.uk-icon:not(:disabled).uk-search-icon {
  margin-top: 0px;
}

.rev-slider-mobile-bg {
  min-height: 100% !important;
  opacity: 0.9;
}

.helping-plugin-not-found .wp-block-button .wp-block-button__link {
  color: #fff !important;
}
.helping-plugin-not-found .wp-block-button .wp-block-button__link:hover {
  opacity: 1 !important;
}
.helping-plugin-not-found .wp-block-button.is-style-outline .wp-block-button__link {
  color: #32373c !important;
}
.helping-plugin-not-found .wp-block-button.is-style-outline .wp-block-button__link:hover {
  opacity: 1 !important;
  color: #fff !important;
}
.helping-plugin-not-found form.fl-comment-form input, .helping-plugin-not-found form.fl-comment-form textarea {
  margin-bottom: 20px !important;
}
.helping-plugin-not-found .comment-moderation cite {
  margin-bottom: 0 !important;
}

#booking_car_info .rb_field:last-child input {
  margin-bottom: 0 !important;
}

#booking_car_info .booking_form {
  padding-top: 0 !important;
}

.sidebar_container .widget:last-child {
  margin-bottom: 0;
}

.single-post-wrapper .wp-block-archives-list li {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.single-post-wrapper .wp-block-archives-list li:hover {
  color: #490083;
}
.single-post-wrapper .wp-block-archives-list li .fl-archive-post-count:before {
  content: "(";
}
.single-post-wrapper .wp-block-archives-list li .fl-archive-post-count:after {
  content: ")";
}
.single-post-wrapper .wp-block-search__input {
  padding: 0.5px;
}
.single-post-wrapper .wp-block-archives-dropdown select, .single-post-wrapper .wp-block-categories select {
  font-size: 14px;
  background: url(../../css/images/arrow-dropdown.png) #fff 98.5% 55%;
  padding: 16px 25px;
  background-repeat: no-repeat;
  margin-bottom: 0px;
}
.single-post-wrapper .wp-block-latest-comments li, .single-post-wrapper .wp-block-latest-posts li {
  margin: 15px 0 0 0px;
}
.single-post-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-author, .single-post-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-link, .single-post-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-author, .single-post-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-link {
  font-weight: 600;
  color: #490083;
  transition: all 0.3s ease-in-out;
}
.single-post-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-author:hover, .single-post-wrapper .wp-block-latest-comments li a.wp-block-latest-comments__comment-link:hover, .single-post-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-author:hover, .single-post-wrapper .wp-block-latest-posts li a.wp-block-latest-comments__comment-link:hover {
  color: #ff006c !important;
}
.single-post-wrapper .wp-block-latest-comments li a, .single-post-wrapper .wp-block-latest-posts li a {
  font-weight: 600;
  color: #490083;
  transition: all 0.3s ease-in-out;
}
.single-post-wrapper .wp-block-latest-comments li a:hover, .single-post-wrapper .wp-block-latest-posts li a:hover {
  color: #ff006c !important;
}
.single-post-wrapper table a {
  color: #490083 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}
.single-post-wrapper table a:hover {
  color: #ff006c !important;
}

.tm-helping-plugin-not-found .widget-title:after {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  border-width: 7px;
  border-style: solid;
  border-right-color: transparent;
  border-bottom-color: transparent;
  content: "";
  border-top-color: #490083;
  border-left-color: #490083;
  height: auto;
}
.tm-helping-plugin-not-found .b-post-full .entry-link {
  margin-top: 25px;
}
.tm-helping-plugin-not-found .fl-comment-form .row .comment-author {
  width: 48%;
  margin-right: 2%;
}
.tm-helping-plugin-not-found .fl-comment-form .row .comment-email {
  width: 50%;
}
.tm-helping-plugin-not-found .comment-form-cookies-consent label {
  font-size: 12px;
}
.tm-helping-plugin-not-found .section-comment.comment-without-back {
  padding-top: 45px;
}
.tm-helping-plugin-not-found p {
  line-height: 1.5;
}

.fl-content {
  line-height: 30px;
}
.fl-content blockquote p {
  margin-top: 0;
}

.youzify-hdr-v1 .youzify-profile-photo .avatar {
  height: 150px;
  width: 150px;
  object-fit: cover;
  position: absolute;
  top: -3px;
  min-width: 150px;
  left: -3px;
}

.daterangepicker .btn-primary.disabled, .daterangepicker .btn-primary:disabled {
  color: #fff;
}
.daterangepicker .btn-primary {
  color: #222;
  transition: all 0.3s ease-in-out;
}
.daterangepicker .btn-primary:hover {
  color: #fff;
}

/*-------------------------------------------------------------------

==  Preloader Page

-------------------------------------------------------------------*/
#fl-page--preloader {
  padding: 0 15px;
  z-index: 1999;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#fl-page--preloader .save_loader_bugs {
  display: none;
}
#fl-page--preloader .fl-top-progress {
  position: absolute;
  width: 100%;
  top: 0;
}
#fl-page--preloader .fl-top-progress .fl-loader_right {
  opacity: 0.8;
  position: absolute;
  right: 100%;
  z-index: 999;
  height: 7px;
  display: inline-block;
  left: 50%;
  width: 0;
  transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
}
#fl-page--preloader .fl-top-progress .fl-loader_left {
  opacity: 0.8;
  position: absolute;
  z-index: 999;
  height: 7px;
  display: inline-block;
  right: 50%;
  width: 0;
  transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
}
#fl-page--preloader .fl--preloader-progress-bar {
  height: 8px;
  max-width: 650px;
  padding: 3px 0;
  display: block;
  width: 100%;
  margin: 0 auto;
  background-color: #eee;
}
#fl-page--preloader .fl--preloader-progress-bar span {
  float: left;
  width: 0;
  height: 100%;
  display: inline-block;
}
#fl-page--preloader .fl-preloader--text-percent {
  margin-top: 45px;
  font-size: 23px;
}
#fl-page--preloader .fl-preloader--text-percent .fl--preloader-percent {
  font-size: 26px;
  color: #222;
}
#fl-page--preloader.fl-preloader-close {
  transform: translateY(-1000%);
  opacity: 0;
  transition: opacity 0s ease-in, transform 0s ease-in;
  display: none;
}
#fl-page--preloader .fl-top-background-preloader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}
#fl-page--preloader .fl-bottom-background-preloader {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}

/*-------------------------------------------------------------------

==  Menu

-------------------------------------------------------------------*/
.big-container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 15px;
}

.menu {
  margin-left: 50px;
}

.header-content__menu .uk-navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.header-content__menu.menu > ul > li.has-submenu {
  padding-bottom: 21px;
  padding-top: 21px;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu a:after {
  content: none;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu > li.has-submenu > a {
  width: 100%;
  display: inline-block;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu > li.has-submenu > a:after {
  content: none;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu > li.has-submenu .sub-menu {
  padding: 0px;
  right: -301px;
  top: 0;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu li:last-child > a {
  border-bottom: 0px;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu li:last-child > a:before {
  content: none;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu > li a {
  width: 100%;
  display: inline-block;
  padding: 15px 25px 15px 25px;
  font-weight: 300 !important;
  font-size: 16px !important;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu > li a:hover {
  color: #DE0A89;
}
.header-content__menu.menu > ul > li.has-submenu > .sub-menu > li a:before {
  content: "";
  position: absolute;
  width: 85%;
  margin: auto;
  height: 1px;
  background-color: #d9d9d9;
  bottom: 0;
  bottom: -2px;
}

.has-submenu {
  position: relative;
}
.has-submenu:hover > .menu-linksss:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: -4px;
  margin-left: 16px;
}
.has-submenu > .menu-link:after {
  content: "\f107";
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  font: normal normal normal 15px/1 FontAwesome;
  position: relative;
  margin-left: 6px;
  bottom: 6px;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 11px;
  transition: none;
}

.menu-list__item {
  padding-bottom: 25px;
  padding-top: 25px;
}

.has-submenu:hover > .sub-menu {
  display: block;
}

.menu-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #202020;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.menu-list__btn svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header-content__menu .menu-link:not(.sub-menu-link) {
  color: #202020;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: unset;
  padding: 0;
}
.header-content__menu .menu-link:not(.sub-menu-link) span {
  word-break: keep-all;
}

.tm_navigation_style_two .header-content__menu .menu-link:not(.sub-menu-link)::before {
  content: none;
}

.header-content__menu .menu-link:not(.sub-menu-link)::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #202020;
  right: 0;
  top: 102%;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.header-content__menu .menu-link:hover::before {
  width: 100%;
}

.sub-menu {
  padding: 20px;
  padding-right: 0px;
  padding-top: unset;
  padding-bottom: unset;
  top: 99%;
  position: absolute;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
  display: none;
}

.sub-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.has-submenu .sub-nav-item {
  padding-right: 20px;
}

.sub-nav-item:first-child .sub-menu-link {
  padding: 15px 0 15px 0;
}

.sub-nav-item:last-child .sub-menu-link {
  padding: 15px 0 15px 0;
  border-bottom: unset;
}

.sub-menu .sub-menu-link {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  width: 100%;
  display: inline-block;
}

.sub-menu .sub-menu-link:hover {
  color: #de0a89;
}

.sub-menu > .has-submenu:hover .double-sub-menu {
  display: flex;
}
.sub-menu .has-submenu .sub-menu-link:after {
  content: none;
}
.sub-menu .has-submenu .double-sub-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: calc(100% + 2px);
  padding: 20px;
  padding-top: 0;
  padding-bottom: 0;
  top: 0;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
}
.sub-menu .has-submenu:after {
  content: "\f107";
  width: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  background-repeat: no-repeat;
  color: #DE0A89;
  font: normal normal normal 15px/0px FontAwesome;
  transform: rotate(-90deg);
  display: block;
}

.tm_navigation_style_two .sub-menu .has-submenu:after {
  color: #ed2222;
}

.tm_navigation_style_three .sub-menu .has-submenu:after {
  color: #490083;
}

.tm_navigation_style_four .sub-menu .has-submenu:after {
  color: #f5ab1a;
}
.tm_navigation_style_four ul > li.current-menu-ancestor > a.menu-link:before {
  content: "";
  left: -18px;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f5ab1a;
  opacity: 1;
}

.menu-list-submenu_inner::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  background-repeat: no-repeat;
  background-image: url(../images/select-arrow.svg);
}

.menu-list-submenu__btn--active {
  color: #de0a89;
}

.menu-list-submenu_inner::after {
  background-image: url(../images/select-arrow-pink.svg);
}

.menu-list-submenu__items {
  display: none;
}

.menu-list-submenu__items--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: 108%;
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  top: 0;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
}

.menu-list-submenu__items-item {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
}

.menu-list-submenu__items-item:first-child {
  padding: 0 0 15px 0;
}

.menu-list-submenu__items-item:last-child {
  padding: 15px 0 0 0;
  border-bottom: unset;
}

.menu-list-submenu__items-btn {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.menu-list-submenu__items-btn:hover {
  color: #de0a89;
}

.menu--categiries .menu-list__btn svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.menu--categiries .sub-menu {
  display: block;
}

@media (max-width: 1650px) {
  .menu {
    margin-left: 0;
  }
  .body-menu--active .menu {
    display: none;
  }
}
@media (max-width: 1250px) {
  .header-content__menu .uk-navbar-nav {
    gap: 25px;
  }
}
@media (max-width: 1000px) {
  .header-content__menu .uk-navbar-nav {
    display: none;
  }
}
@media (max-width: 1000px) {
  .body-menu--active .menu {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .body-menu--active .header-content__menu .uk-navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .sub-menu {
    position: unset;
    margin-top: 20px;
  }
}
@media (max-width: 1000px) {
  .menu-list__btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1000px) {
  .menu-list-submenu__btn--active::after {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    top: 21px !important;
  }
}
@media (max-width: 1000px) {
  .menu-list-submenu__items--active {
    position: relative;
    left: 0;
    width: 100%;
    z-index: 101;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    padding-left: 0;
    padding-right: 0;
  }
}
/*-------------------------------------------------------------------

==  Header

-------------------------------------------------------------------*/
body {
  background-color: transparent;
}

html,
body {
  height: 100%;
  background: #fff;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 300;
}

body.not-logged-in .header {
  z-index: 1;
}

.header {
  position: relative;
}

.tm_navigation_style_one .header-top {
  background: #202020;
}
.tm_navigation_style_one .header-top__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  padding: 20px 45px;
}
.tm_navigation_style_one .header-top__deal {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tm_navigation_style_one .header-top__deal svg {
  margin-right: 15px;
}
.tm_navigation_style_one .header-top__deal-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #fff;
}
@media (max-width: 1920px) {
  .tm_navigation_style_one .header-top__deal-text {
    font-size: calc(12px + 3 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_navigation_style_one .header-top__deal-text {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_navigation_style_one .header-top__deal-text span {
  font-weight: 400;
}
.tm_navigation_style_one .header-top__entrance-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #fff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_one .header-top__entrance-link:hover {
  color: #de0a89;
}
.tm_navigation_style_one .header-top__entrance-link:hover svg {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.tm_navigation_style_one .header-top__entrance-link:hover svg path {
  stroke: #de0a89;
}
.tm_navigation_style_one .header-top__entrance-link svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tm_navigation_style_one .header-top__entrance-link svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.tm_navigation_style_one .header-top__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.tm_navigation_style_one .header-top__socials-link:hover svg path {
  stroke: #de0a89;
}
.tm_navigation_style_one .header-top__socials-link svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.tm_navigation_style_one .header-top__socials svg path {
  stroke: #fff;
}
.tm_navigation_style_one .article-bottom__share:hover .header-top__socials {
  opacity: 1;
  right: 75px;
}
.tm_navigation_style_one .article-bottom__share .header-top__socials {
  position: absolute;
  right: 60px;
  z-index: 3;
  gap: 10px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.tm_navigation_style_one .header-top-working-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.tm_navigation_style_one .header-top-working-time__text {
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #fff;
}
.tm_navigation_style_one .header-top__deal .header-top__deal-text {
  margin-bottom: 0px;
}
@media (max-width: 1650px) {
  .tm_navigation_style_one .header-top-working-time {
    display: none;
  }
}
@media (max-width: 1150px) {
  .tm_navigation_style_one .header-top__entrance-link {
    display: none;
  }
}
@media (max-width: 900px) {
  .tm_navigation_style_one .header-top__inner {
    display: inline-block !important;
  }
  .tm_navigation_style_one .header-top__socials {
    padding: 15px 0 0;
    text-align: center;
  }
  .tm_navigation_style_one .header-top__inner {
    gap: unset;
  }
}
@media (max-width: 700px) {
  .tm_navigation_style_one html .header-top__inner {
    padding: 20px 0;
  }
}
.tm_navigation_style_one .header-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1920px) {
  .tm_navigation_style_one .header-content {
    padding-top: calc(30px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_navigation_style_one .header-content {
    padding-bottom: calc(30px + 10 * (100vw - 360px) / 1560);
  }
}
@media (min-width: 1600px) {
  .tm_navigation_style_one .header-content__inner {
    padding: 0 45px;
  }
}
.tm_navigation_style_one .header-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tm_navigation_style_one .header-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  position: relative;
}
.tm_navigation_style_one .header-content__wrapper .header-content__logo h3.logotype-text {
  margin: 0;
  color: #490083;
  font-weight: 800;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
}
.tm_navigation_style_one .header-content__wrapper .header-content__logo h3.logotype-text:hover {
  color: #ff006c;
}
.tm_navigation_style_one .header-content__entrance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
.tm_navigation_style_one .header-content__entrance-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  color: #202020;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_one .header-content__entrance-link:hover {
  color: #490083;
}
.tm_navigation_style_one .header-content__entrance-link:hover svg path {
  fill: #490083;
}
.tm_navigation_style_one .header-content__entrance-link svg path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}
.tm_navigation_style_one .header-content__entrance-link:last-child {
  position: relative;
}
.tm_navigation_style_one .header-content__entrance-link:last-child::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 50px;
  background: #202020;
  right: 0;
  top: 102%;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.tm_navigation_style_one .not-logged-in .header-content__entrance-link:last-child::before {
  left: 0;
}
.tm_navigation_style_one .not-logged-in .header-content__entrance-link:last-child:hover::before {
  width: 100%;
}
.tm_navigation_style_one .header-content__entrance-link:last-child:hover {
  color: #202020;
}
.tm_navigation_style_one .header-content__entrance-link:last-child:hover::before {
  width: 50%;
}
.tm_navigation_style_one .logged.header-content__entrance-link:last-child:hover::before {
  width: 68%;
}
.tm_navigation_style_one .header-content__purshace {
  margin-left: 35px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #de0a89;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: border 0.3s, background 0.3s;
  -o-transition: border 0.3s, background 0.3s;
  transition: border 0.3s, background 0.3s;
}
.tm_navigation_style_one .header-content__purshace:hover {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #de0a89;
}
.tm_navigation_style_one .header-content__purshace:hover svg path {
  stroke: #de0a89;
}
.tm_navigation_style_one .header-content__purshace svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.tm_navigation_style_one .header-content-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}
.tm_navigation_style_one .header-content-call:nth-child(2) {
  display: none;
}
.tm_navigation_style_one .header-content-call__box {
  position: relative;
}
.tm_navigation_style_one .header-content-call__box::before {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #d9d9d9;
}
.tm_navigation_style_one .header-content-call__box-text {
  color: #515151;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
}
.tm_navigation_style_one .header-content-call__box .header-content-call__box-text {
  margin-bottom: 0px;
}
.tm_navigation_style_one .header-content-call__box-link {
  color: #202020;
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-transform: capitalize;
  position: relative;
}
.tm_navigation_style_one .header-content-call__box-link:hover {
  color: #202020;
}
.tm_navigation_style_one .header-content-call__box-link::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #202020;
  right: 0;
  top: 102%;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.tm_navigation_style_one .header-content-call__box-link:hover::before {
  width: 100%;
}
@media (max-width: 1440px) {
  .tm_navigation_style_one html .header-content__inner {
    padding: 0;
  }
}
@media (max-width: 1650px) {
  .tm_navigation_style_one .header-content__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #de0a89;
    margin-left: 20px;
    border-radius: 100%;
    gap: 7px;
    z-index: 101;
  }
  .tm_navigation_style_one .header-content__burger span {
    width: 24px;
    height: 3px;
    background: #fff;
  }
  .tm_navigation_style_one .body-menu--active .header-content {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100;
  }
  .tm_navigation_style_one .body-menu--active .header-content__purshace {
    margin-left: 0;
    z-index: 101;
    margin-left: 20px;
  }
  .tm_navigation_style_one .body-menu--active .header-content__purshace:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tm_navigation_style_one .body-menu--active .header-content-call:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    z-index: 101;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #de0a89;
    border-radius: 100%;
  }
  .tm_navigation_style_one .body-menu--active .header-content-call:nth-child(2) svg {
    width: 27px;
    height: 27px;
  }
  .tm_navigation_style_one .body-menu--active .header-content-call:nth-child(2) svg path {
    stroke: #fff;
  }
  .tm_navigation_style_one .body-menu--active .header-content__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  }
  .tm_navigation_style_one .body-menu--active .header-content__entrance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: unset;
  }
  .tm_navigation_style_one .body-menu--active .header-content__entrance-link:nth-child(1) svg {
    display: none;
  }
}
@media (max-width: 1750px) {
  .tm_navigation_style_one html .header-content-call__box-link {
    font-size: 23px;
  }
}
@media (max-width: 1550px) {
  .tm_navigation_style_one html .header-content__wrapper {
    justify-content: space-between;
  }
  .tm_navigation_style_one .header-content__entrance, .tm_navigation_style_one .header-content__call {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .tm_navigation_style_one html .header-content__wrapper {
    justify-content: start;
  }
  .tm_navigation_style_one .header-content-call {
    display: none !important;
  }
}
@media (max-width: 1000px) {
  .tm_navigation_style_one .header-content__logo {
    padding-left: 100px;
  }
}
@media (max-width: 700px) {
  .tm_navigation_style_one .header-content__purshace {
    display: none;
  }
}
@media (max-width: 550px) {
  .tm_navigation_style_one .body-menu--active .header-content__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tm_navigation_style_one .body-menu--active .header-content__burger {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    min-width: unset;
    min-height: unset;
    margin-left: 10px;
    gap: 2px;
  }
  .tm_navigation_style_one .body-menu--active .header-content__burger span {
    width: 50%;
    height: 3px;
  }
  .tm_navigation_style_one .body-menu--active .header-content__purshace {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  .tm_navigation_style_one .body-menu--active .header-content__purshace svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  .tm_navigation_style_one .body-menu--active .header-content-call:nth-child(2) {
    width: 40px;
    height: 40px;
    min-width: unset;
    min-height: unset;
  }
  .tm_navigation_style_one .body-menu--active .header-content-call:nth-child(2) svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}

.tm_navigation_style_two .logotype-text {
  color: #ed2222;
}
.tm_navigation_style_two .header__menu {
  margin-left: 0px;
}
.tm_navigation_style_two .header__menu ul.uk-navbar-nav li.nav-item ul.sub-menu li a {
  color: #202020;
  font-size: 16px;
}
.tm_navigation_style_two .header__menu ul.uk-navbar-nav li.nav-item ul.sub-menu li a:hover {
  color: #ed2222;
}
.tm_navigation_style_two .header__menu ul.uk-navbar-nav li.nav-item > a {
  min-height: unset;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.18px;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  padding-top: 25px;
  padding-bottom: 25px;
}
.tm_navigation_style_two .header__menu ul.uk-navbar-nav li.nav-item > a:hover {
  color: #ed2222;
}
.tm_navigation_style_two .header__menu ul.uk-navbar-nav li.nav-item.current-menu-item > a {
  color: #ed2222;
}
.tm_navigation_style_two.header {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.tm_navigation_style_two.header.fixed-enable {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 35px;
  padding-bottom: 35px;
  width: 100%;
  z-index: 100;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  padding: 20px;
}
@media (max-width: 1720px) {
  .tm_navigation_style_two .header {
    padding-top: calc(20px + 15 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_navigation_style_two .header {
    padding-bottom: calc(20px + 15 * (100vw - 360px) / 1360);
  }
}
.tm_navigation_style_two.header .container {
  max-width: 1750px;
}
.tm_navigation_style_two .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
.tm_navigation_style_two .header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tm_navigation_style_two .logo {
  display: block;
  width: 161px;
  min-width: 161px;
  min-height: 50px;
}
@media (max-width: 1720px) {
  .tm_navigation_style_two .logo {
    width: calc(140px + 21 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_navigation_style_two .logo {
    height: fit-content;
  }
}
@media (max-width: 1720px) {
  .tm_navigation_style_two .logo {
    min-width: calc(140px + 21 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_navigation_style_two .logo {
    min-height: calc(45px + 5 * (100vw - 360px) / 1360);
  }
}
.tm_navigation_style_two .logo__img {
  width: 100%;
  height: 100%;
}
.tm_navigation_style_two .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.tm_navigation_style_two .menu-list__link {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.18px;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_two .menu-list__link:hover {
  color: #ed2222;
}
.tm_navigation_style_two .menu-list__item--categories {
  position: relative;
}
.tm_navigation_style_two .menu-list__item--categories::before {
  content: "";
  position: absolute;
  width: 300px;
  top: 20px;
  height: 30px;
  opacity: 0;
  z-index: -1;
}
.tm_navigation_style_two .menu-list__item--categories:hover .menu-list-submenu {
  display: block;
}
.tm_navigation_style_two .menu-list__item--categories:hover::before {
  z-index: 0;
}
.tm_navigation_style_two .menu-list__item--categories:hover .menu-list__btn svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.tm_navigation_style_two .menu-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.18px;
  text-transform: capitalize;
  color: #ed2222;
}
.tm_navigation_style_two .menu-list__btn svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tm_navigation_style_two .menu-list-submenu {
  padding: 20px;
  padding-top: unset;
  padding-bottom: unset;
  top: 200%;
  position: absolute;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
  display: none;
}
.tm_navigation_style_two .menu-list-submenu__item {
  position: relative;
}
.tm_navigation_style_two .menu-list-submenu__item:first-child .menu-list-submenu__btn {
  padding: 15px 0 15px 0;
}
.tm_navigation_style_two .menu-list-submenu__item:last-child .menu-list-submenu__btn {
  padding: 15px 0 15px 0;
  border-bottom: unset;
}
.tm_navigation_style_two .menu-list-submenu__btn {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_two .menu-list-submenu__btn:hover {
  color: #ed2222;
}
.tm_navigation_style_two .menu-list-submenu__btn::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  background-repeat: no-repeat;
  background-image: url(../images/select-arrow.svg);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.2;
  -webkit-transition: opacity 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, -webkit-filter 0.3s;
  -o-transition: opacity 0.3s, filter 0.3s;
  transition: opacity 0.3s, filter 0.3s;
  transition: opacity 0.3s, filter 0.3s, -webkit-filter 0.3s;
}
.tm_navigation_style_two .menu-list-submenu__btn--active {
  color: #ed2222;
}
.tm_navigation_style_two .menu-list-submenu__btn--active::after {
  -webkit-transform: translateY(-50%) rotate(270deg);
  -ms-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg);
  opacity: 1;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.tm_navigation_style_two .menu-list-submenu__items {
  display: none;
}
.tm_navigation_style_two .menu-list-submenu__items--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: 104%;
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  top: 0;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
}
.tm_navigation_style_two .menu-list-submenu__items-item {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
}
.tm_navigation_style_two .menu-list-submenu__items-item:first-child {
  padding: 0 0 15px 0;
}
.tm_navigation_style_two .menu-list-submenu__items-item:last-child {
  padding: 15px 0 0 0;
  border-bottom: unset;
}
.tm_navigation_style_two .menu-list-submenu__items-btn {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_two .menu-list-submenu__items-btn:hover {
  color: #ed2222;
}
.tm_navigation_style_two .header-call {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  margin-right: 45px;
}
.tm_navigation_style_two .header-call__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.tm_navigation_style_two .header-call__box::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: -19px;
  background: #fff;
  top: 0;
  bottom: 0;
}
.tm_navigation_style_two .header-call__box-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.14px;
}
.tm_navigation_style_two .header-call__box-link {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  -webkit-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}
.tm_navigation_style_two .header-call__box-link:hover {
  color: #ed2222;
}
.tm_navigation_style_two .user-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.tm_navigation_style_two .user-nav__link {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
}
.tm_navigation_style_two .user-nav__link:nth-child(1) {
  border: 1px solid #fff;
}
.tm_navigation_style_two .user-nav__link:nth-child(2) {
  background: #ed2222;
}
.tm_navigation_style_two .burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 30px;
  min-width: 30px;
  height: 20px;
  z-index: 11;
  position: relative;
}
.tm_navigation_style_two .burger span {
  width: 100%;
  background: #fff;
  height: 2px;
}
.tm_navigation_style_two.header--active {
  background: #fff;
}
.tm_navigation_style_two.header--active .header__menu ul.uk-navbar-nav li.nav-item > a.menu-link {
  color: #202020;
}
.tm_navigation_style_two.header--active .header__menu ul.uk-navbar-nav li.nav-item > a.menu-link:hover, .tm_navigation_style_two.header--active .header__menu ul.uk-navbar-nav li.nav-item.current-menu-item > a.menu-link {
  color: #ed2222;
}
.tm_navigation_style_two.header--active .menu-list__btn {
  color: #ed2222;
}
.tm_navigation_style_two.header--active .header-call__box-text {
  color: #202020;
}
.tm_navigation_style_two.header--active .header-call__box-link {
  color: #202020;
}
.tm_navigation_style_two.header--active .header-call__box-link:hover {
  color: #ed2222;
}
.tm_navigation_style_two.header--active .header-call__box::before {
  background: #d9d9d9;
}
.tm_navigation_style_two.header--active .user-nav__link:nth-child(1) {
  border: 1px solid #202020;
}
.tm_navigation_style_two.header--active .user-nav__link:nth-child(1) svg path {
  fill: #202020;
}
.tm_navigation_style_three.header--active {
  box-shadow: unset !important;
}
.tm_navigation_style_three .header__logo.logo {
  max-width: 191px;
  width: 100%;
}
.tm_navigation_style_three .user-nav__link_btn {
  background: #f5ab1a;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 23px;
  padding-left: 70px;
  border: 1px solid #fff;
  width: 100%;
  min-width: 225px;
  position: relative;
  transition: padding-left 0.3s, border 0.3s;
}
.tm_navigation_style_three .user-nav__link_btn:hover {
  padding-left: 30px;
}
.tm_navigation_style_three .user-nav__link_btn:hover span:first-child {
  width: 100%;
  position: absolute;
}
.tm_navigation_style_three .user-nav__link_btn:hover span:first-child svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 80%;
}
.tm_navigation_style_three .user-nav__link_btn:hover span:first-child svg path {
  stroke: #fff;
}
.tm_navigation_style_three .user-nav__link_btn:hover span:first-child:before {
  background: rgba(0, 0, 0, 0);
}
.tm_navigation_style_three .user-nav__link_btn span:first-child svg {
  width: 20px;
  height: 20px;
  z-index: 1;
  margin-right: 8px;
  left: 50%;
  -webkit-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}
.tm_navigation_style_three .user-nav__link_btn span:first-child svg path {
  stroke: #515151;
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.tm_navigation_style_three .user-nav__link_btn span:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.tm_navigation_style_three .user-nav__link_btn span:first-child::after {
  content: "";
  width: 20px;
  height: 120%;
  position: absolute;
  top: -10px;
  right: -9px;
  bottom: -10px;
  -webkit-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  transform: rotate(-17deg);
  -webkit-transition: right 0.3s, -webkit-transform 0.3s;
  transition: right 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, right 0.3s;
  transition: transform 0.3s, right 0.3s;
  transition: transform 0.3s, right 0.3s, -webkit-transform 0.3s;
  background: #f5ab1a;
}
.tm_navigation_style_three .user-nav__link_btn span:first-child {
  position: absolute;
  height: 59px;
  width: 58px;
  min-width: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  left: 0;
  z-index: 1;
  top: 0;
}
.tm_navigation_style_three .user-nav__link_btn span:last-child {
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu {
  margin-left: 0px;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li ul.sub-menu li a {
  color: #202020;
  font-size: 16px;
  padding: 15px 25px 15px 25px;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li ul.sub-menu li a:hover {
  color: #490083;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li ul.sub-menu li:last-child a:before {
  content: none;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li > a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  min-height: unset;
  padding: 0;
  padding-bottom: 25px;
  padding-top: 25px;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li > a:before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #fff;
  right: 0;
  top: 65%;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li > a:hover:before {
  width: 100%;
}
.tm_navigation_style_three.header {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  margin-top: 0 !important;
}
.tm_navigation_style_three.header.fixed-enable {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.tm_navigation_style_three.header .container {
  max-width: 1950px;
  padding: 0;
}
.tm_navigation_style_three .header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 165px;
  padding-left: 120px;
}
.tm_navigation_style_three .header__wrapper {
  background: #490083;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 120px 20px 80px;
}
.tm_navigation_style_three .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.tm_navigation_style_three .menu-list__item--categories {
  position: relative;
}
.tm_navigation_style_three .menu-list__item--categories::before {
  content: "";
  position: absolute;
  width: 300px;
  top: 20px;
  height: 30px;
  opacity: 0;
  z-index: -1;
}
.tm_navigation_style_three .menu-list__item--categories:hover .menu-list-submenu {
  display: block;
}
.tm_navigation_style_three .menu-list__item--categories:hover::before {
  z-index: 0;
}
.tm_navigation_style_three .menu-list__item--categories:hover .menu-list__btn svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.tm_navigation_style_three .menu-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
.tm_navigation_style_three .menu-list__btn svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tm_navigation_style_three .menu-list__link {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
}
.tm_navigation_style_three .menu-list__link::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #202020;
  right: 0;
  top: 102%;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.tm_navigation_style_three .menu-list__link:hover::before {
  width: 100%;
}
.tm_navigation_style_three .menu-list-submenu {
  padding: 20px;
  padding-top: unset;
  padding-bottom: unset;
  top: 200%;
  position: absolute;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
  display: none;
}
.tm_navigation_style_three .menu-list-submenu__item {
  position: relative;
}
.tm_navigation_style_three .menu-list-submenu__item:first-child .menu-list-submenu__btn {
  padding: 15px 0 15px 0;
}
.tm_navigation_style_three .menu-list-submenu__item:last-child .menu-list-submenu__btn {
  padding: 15px 0 15px 0;
  border-bottom: unset;
}
.tm_navigation_style_three .menu-list-submenu__btn {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_three .menu-list-submenu__btn:hover {
  color: #490083;
}
.tm_navigation_style_three .menu-list-submenu__btn::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  background-repeat: no-repeat;
  background-image: url(../images/select-arrow.svg);
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
  opacity: 0.2;
  -webkit-transition: opacity 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, -webkit-filter 0.3s;
  -o-transition: opacity 0.3s, filter 0.3s;
  transition: opacity 0.3s, filter 0.3s;
  transition: opacity 0.3s, filter 0.3s, -webkit-filter 0.3s;
}
.tm_navigation_style_three .menu-list-submenu__btn--active {
  color: #490083;
}
.tm_navigation_style_three .menu-list-submenu__btn--active::after {
  -webkit-transform: translateY(-50%) rotate(270deg);
  -ms-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg);
  opacity: 1;
  -webkit-filter: invert(1);
  filter: invert(1);
}
.tm_navigation_style_three .menu-list-submenu__items {
  display: none;
}
.tm_navigation_style_three .menu-list-submenu__items--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: 104%;
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  top: 0;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 300px;
}
.tm_navigation_style_three .menu-list-submenu__items-item {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
}
.tm_navigation_style_three .menu-list-submenu__items-item:first-child {
  padding: 0 0 15px 0;
}
.tm_navigation_style_three .menu-list-submenu__items-item:last-child {
  padding: 15px 0 0 0;
  border-bottom: unset;
}
.tm_navigation_style_three .menu-list-submenu__items-btn {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_three .menu-list-submenu__items-btn:hover {
  color: #490083;
}
.tm_navigation_style_three .menu-list-submenu__items-btn svg {
  min-width: 18px;
  min-height: 18px;
}
.tm_navigation_style_three .user-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.tm_navigation_style_three .user-nav__link:nth-child(1) {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}
.tm_navigation_style_three .user-nav__link:nth-child(2) {
  background: #f5ab1a;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 23px;
  padding-left: 70px;
  max-width: 230px;
  border: 1px solid #fff;
  width: 100%;
  max-width: 225px;
  min-width: 225px;
}
.tm_navigation_style_three .user-nav__link:nth-child(2) span:first-child {
  height: 100%;
}
.tm_navigation_style_three .user-nav__link:nth-child(2) span:first-child svg path {
  stroke: #515151;
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.tm_navigation_style_three .user-nav__link:nth-child(2) span:first-child::before {
  background: #fff;
}
.tm_navigation_style_three .user-nav__link:nth-child(2) span:first-child::after {
  background: #f5ab1a;
}
.tm_navigation_style_three .user-nav__link:nth-child(2) span:last-child {
  color: #fff;
}
.tm_navigation_style_three .user-nav__link:nth-child(2):hover {
  padding-left: 30px;
}
.tm_navigation_style_three .user-nav__link:nth-child(2):hover span:first-child::before {
  background: rgba(0, 0, 0, 0);
}
.tm_navigation_style_three .user-nav__link:nth-child(2):hover span:first-child svg path {
  stroke: #fff;
}
.tm_navigation_style_three.header--active {
  background: #fff;
}
.tm_navigation_style_three .header--active .logo img {
  content: url(../images/colored-logo.svg);
}
.tm_navigation_style_three.header--active .burger span {
  background: #202020;
}
.tm_navigation_style_three .burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 20px;
  min-width: 30px;
  min-height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 11;
  margin-right: 15px;
}
.tm_navigation_style_three .burger span {
  width: 100%;
  background: #fff;
  height: 2px;
}
@media (max-width: 1550px) {
  .tm_navigation_style_three .header__wrapper {
    gap: 15px;
    background: unset;
  }
  .tm_navigation_style_three .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tm_navigation_style_three .user-nav {
    margin-left: auto;
  }
  .body--active .tm_navigation_style_three.header {
    height: 100%;
  }
  .tm_navigation_style_three .body--active .menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tm_navigation_style_three .body--active .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_navigation_style_three .body--active .menu__list-item--active .menu__list-link::after {
    content: "";
    right: -18px;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #f5ab1a;
    opacity: 1;
  }
  .tm_navigation_style_three .body--active .menu-list__link {
    color: #202020;
  }
  .tm_navigation_style_three .body--active .burger span {
    background: #202020;
  }
  .tm_navigation_style_three .body--active .header-call {
    position: relative;
    z-index: 11;
  }
  .tm_navigation_style_three .body--active .header-call__box::before {
    background: #202020;
  }
  .tm_navigation_style_three .body--active .user-nav {
    position: relative;
    z-index: 11;
  }
  .body--active .tm_navigation_style_three.header .logo {
    position: relative;
    z-index: 11;
  }
  .body--active .tm_navigation_style_three.header .logo img {
    content: url(../images/colored-logo.svg);
  }
  .tm_navigation_style_three .body--active .header-call__box-text {
    color: #202020;
  }
  .tm_navigation_style_three .body--active .header-call__box-link {
    color: #202020;
  }
  .tm_navigation_style_three .body--active .user-nav__link:nth-child(1) {
    border: 1px solid #202020;
  }
  .tm_navigation_style_three .body--active .user-nav__link:nth-child(1) svg path {
    fill: #202020;
  }
  .tm_navigation_style_three .body--active .menu-list-submenu {
    position: unset;
    margin-top: 30px;
  }
  .tm_navigation_style_three .body--active .menu-list__btn {
    margin-left: auto;
    margin-right: auto;
  }
  .tm_navigation_style_three .body--active .menu-list-submenu__items {
    position: relative;
    left: -20px;
    right: -20px;
    top: 15px;
  }
  .tm_navigation_style_three .body--active .menu-list__btn {
    color: #202020;
  }
  .tm_navigation_style_three .body--active .menu-list__btn svg path {
    stroke: #202020;
  }
  .tm_navigation_style_three .header__inner {
    gap: 0;
  }
}
@media (max-width: 700px) {
  .tm_navigation_style_three .categories__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .tm_navigation_style_three .user-nav {
    display: none;
  }
  .tm_navigation_style_three .header__inner {
    padding: 15px;
  }
  .tm_navigation_style_three .header__wrapper {
    background: rgba(0, 0, 0, 0);
    padding-left: 0;
  }
  .tm_navigation_style_three .burger {
    margin-left: auto;
  }
  .tm_navigation_style_three .body--active .header__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 0;
  }
  .tm_navigation_style_three .body--active .header-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tm_navigation_style_three .body--active .menu {
    position: unset;
    width: unset;
    height: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .tm_navigation_style_three .body--active .header__wrapper {
    margin-right: unset;
  }
  .tm_navigation_style_three .body--active .header-call {
    margin-left: auto;
    margin-right: auto;
  }
  .tm_navigation_style_three .body--active .user-nav {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tm_navigation_style_three .body--active .burger {
    margin-left: auto;
  }
}

.tm_navigation_style_four .header__inner .header__wrapper .header__menu {
  margin-left: 0;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) li ul.sub-menu li a {
  padding: 15px 25px 15px 25px;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) li ul.sub-menu li a:before {
  content: none !important;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) li a:not(.sub-menu-link) {
  color: #202020;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  transition: color 0.3s;
  padding: 0;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) li a:not(.sub-menu-link):hover {
  color: #f5ab1a;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) li.current-menu-item a:not(.sub-menu-link):before {
  content: "";
  left: -18px;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f5ab1a;
  opacity: 1;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__menu ul:not(.sub-menu) li .sub-menu-link:hover {
  color: #f5ab1a;
}
.tm_navigation_style_four .header__inner .header__wrapper .header__call svg path {
  stroke: #f5ab1a;
}
.tm_navigation_style_four .container {
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 15px;
}
.tm_navigation_style_four.header {
  padding-top: 50px;
  background: #f5f5f5;
  padding-bottom: 50px;
}
@media (max-width: 1510px) {
  .tm_navigation_style_four.header {
    padding-top: calc(25px + 25 * (100vw - 360px) / 1150);
  }
}
.tm_navigation_style_four .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tm_navigation_style_four .header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 155px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tm_navigation_style_four .logo {
  display: block;
  width: 235px;
  line-height: 61px;
  position: relative;
  z-index: 11;
}
@media (max-width: 1510px) {
  .tm_navigation_style_four .logo {
    width: calc(200px + 35 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_navigation_style_four .logo {
    line-height: calc(55px + 6 * (100vw - 360px) / 1150);
  }
}
.tm_navigation_style_four .logo__img {
  width: 100%;
  height: 100%;
}
.tm_navigation_style_four .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
.tm_navigation_style_four .menu__list-item--active .menu__list-link::before {
  opacity: 1;
}
.tm_navigation_style_four .menu__list-link {
  color: #202020;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  transition: color 0.3s;
}
.tm_navigation_style_four .menu__list-link::before {
  content: "";
  left: -18px;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f5ab1a;
  opacity: 0;
}
.tm_navigation_style_four .menu__list-link:hover {
  color: #f5ab1a;
}
.tm_navigation_style_four .header-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 11;
}
.tm_navigation_style_four .header-call__box {
  padding-left: 15px;
  position: relative;
}
.tm_navigation_style_four .header-call__box::before {
  content: "";
  height: 50px;
  width: 1px;
  position: absolute;
  left: 0;
  background: #515151;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tm_navigation_style_four .header-call__box-text {
  color: #515151;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: -5px;
  display: block;
}
.tm_navigation_style_four .header-call__box-link {
  color: #202020;
  font-size: 28px;
  font-weight: 700;
  line-height: 46px;
  text-transform: capitalize;
  margin-top: -5px;
  display: block;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_navigation_style_four .header-call__box-link:hover {
  color: #f5ab1a;
}
.tm_navigation_style_four .burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 11;
}
.tm_navigation_style_four .burger span {
  height: 2px;
  width: 100%;
  background: #202020;
}
@media (max-width: 1500px) {
  .tm_navigation_style_four .header__wrapper {
    gap: 50px;
  }
}
@media (max-width: 1350px) {
  .tm_navigation_style_four .header__wrapper {
    margin-left: auto;
    margin-right: 15px;
  }
}
@media (max-width: 750px) {
  .tm_navigation_style_four .header-call {
    display: none;
  }
  .tm_navigation_style_four .body--active .header__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tm_navigation_style_four .body--active .header-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tm_navigation_style_four .body--active .menu {
    position: unset;
    width: unset;
    height: unset;
  }
  .tm_navigation_style_four .body--active .header__wrapper {
    margin-right: unset;
  }
}
@media (max-width: 750px) {
  .tm_navigation_style_four .header-call {
    display: none;
  }
}

.tm_nav_style_two .main__section-top {
  padding-top: 200px;
  max-height: 500px;
}

.tm_nav_style_three.header--active .logo__img {
  display: none;
}
.tm_nav_style_three.header--active .logo__img_dark {
  display: block;
}
.tm_nav_style_three .main__section-top {
  padding-top: 215px;
  min-height: 450px;
}

.logotype-text {
  margin-bottom: 0px;
}

.wrapper {
  position: relative;
  z-index: 0;
}

.section-top {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  max-height: 348px;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-top.tm-plugin-disable {
  max-height: unset;
  min-height: 348px;
  align-items: center;
  display: flex;
}
.section-top.no_breadcrumbs .section-top__title {
  margin-bottom: 0;
}

@media (max-width: 1920px) {
  .section-top {
    padding-top: calc(50px + 55 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .section-top {
    padding-bottom: calc(50px + 60 * (100vw - 360px) / 1560);
  }
}
.section-top__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.section-top::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
}

.section-top__img-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-top__title {
  font-weight: 800;
  font-size: 64px;
  line-height: 68px;
  margin-bottom: 35px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 1920px) {
  .section-top__title {
    font-size: calc(30px + 34 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .section-top__title {
    line-height: calc(40px + 28 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .section-top__title {
    margin-bottom: calc(20px + 15 * (100vw - 360px) / 1560);
  }
}
.breadcrumbs__list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  gap: 40px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1920px) {
  .breadcrumbs__list {
    gap: calc(30px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .breadcrumbs__list {
    row-gap: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
.breadcrumbs__list-item {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #fff;
}
.breadcrumbs__list-item.is_last_page {
  display: none;
}
.breadcrumbs__list-item.active {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #fff;
}
.breadcrumbs__list-item.active:hover {
  text-decoration-line: unset;
  color: #fff !important;
}
.breadcrumbs__list-item a {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #fff;
}
.breadcrumbs__list-item a:hover {
  text-decoration-line: unset;
  color: #fff !important;
}

.breadcrumbs__list-item::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/link-arrow.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1920px) {
  .breadcrumbs__list-item::after {
    right: calc(-23px + -5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .breadcrumbs__list-item::after {
    width: calc(14px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .breadcrumbs__list-item::after {
    height: calc(14px + 4 * (100vw - 360px) / 1560);
  }
}
.breadcrumbs__list-item:last-child::after {
  content: unset;
}

.breadcrumbs__list-link {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #fff;
}

@media (max-width: 1920px) {
  .breadcrumbs__list-link {
    font-size: calc(14px + 3 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .breadcrumbs__list-link {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.section-top__breadcrumbs {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .tm_nav_style_one .nojq.mobile, .tm_nav_style_two .nojq.mobile, .tm_nav_style_three .nojq.mobile, .tm_nav_style_four .nojq.mobile {
    position: fixed !important;
  }
}
.wrapper.tm_nav_style_two #youzify-membership {
  padding-top: 192px;
  background: #cbcbcb;
}

.wrapper.tm_nav_style_three #youzify-membership {
  padding-top: 162px;
  background: #fff;
}

.header.plugin-disable .header-content__wrapper {
  justify-content: space-between;
}
.header.fixed-navbar {
  background: #fff;
  width: 100%;
  z-index: 9;
}
.header.fixed-navbar.fixed-enable.header--active {
  box-shadow: 0 1px 1px 0 #ddd;
  transition: 0.1s ease;
  position: fixed;
  background: #fff;
  z-index: 99;
  animation: enable_fixed_nav_bar 0.3s ease;
}
.header.fixed-navbar.fixed-enable.header--active .header__top.header-top {
  display: none;
}
.header.tm_navigation_style_two, .header.tm_navigation_style_three {
  background: transparent;
}
.header.tm_navigation_style_four {
  background: #f5f5f5;
}

.not-logged-in .header.tm_navigation_style_two:not(.header--active.fixed-enable) {
  padding-top: 35px;
  padding-bottom: 35px;
}

@keyframes enable_fixed_nav_bar {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.tm_navigation_style_two.fixed-enable .header__logo.logo img.logo__img, .tm_navigation_style_three.fixed-enable .header__logo.logo img.logo__img {
  display: none;
}
.tm_navigation_style_two.fixed-enable .header__logo.logo img.logo__img_dark, .tm_navigation_style_three.fixed-enable .header__logo.logo img.logo__img_dark {
  display: block;
}
.tm_navigation_style_two .header__logo.logo img.logo__img_dark, .tm_navigation_style_three .header__logo.logo img.logo__img_dark {
  display: none;
}

.tm_navigation_style_three.header--active .logo__img_dark {
  display: block !important;
}
.tm_navigation_style_three.header--active .logo__img {
  display: none !important;
}

@media (max-width: 700px) {
  .tm_navigation_style_one .header-content__wrapper {
    justify-content: flex-end;
    gap: 0;
  }
}
@media (max-width: 500px) {
  .tm_navigation_style_one .header-top {
    display: none;
  }
  .tm_navigation_style_one .logo img {
    max-height: 40px;
  }
  .tm_navigation_style_one .dl-menuwrapper button {
    width: 40px;
    height: 40px;
  }
  .tm_navigation_style_one .dl-menuwrapper button:after {
    top: 9px;
    height: 2px;
  }
}
@media only screen and (max-width: 781px) {
  .logged-in.admin-bar .header.tm_navigation_style_two.header--active.fixed-enable {
    margin-top: 46px !important;
  }
  body.logged-in.admin-bar .header.tm_navigation_style_three.fixed-enable.fixed-navbar.header--active {
    margin-top: 46px !important;
  }
}
@media only screen and (max-width: 600px) {
  .tm_navigation_style_two.header .container {
    padding: 0;
  }
}
@media only screen and (max-width: 555px) {
  .tm_navigation_style_two .header__wrapper {
    display: none;
  }
  .tm_navigation_style_two .header__inner {
    justify-content: flex-end;
  }
}
@media (max-width: 1100px) {
  .tm_navigation_style_three .header__wrapper .header__menu.menu ul:not(.sub-menu) li > a {
    font-size: 16px;
  }
}
@media (max-width: 1350px) {
  .tm_navigation_style_three .user-nav {
    display: none;
  }
  .tm_navigation_style_three .header__wrapper {
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .tm_navigation_style_three .header__wrapper {
    display: none;
  }
  .header.tm_navigation_style_three {
    border-bottom: 0px solid #ddd;
  }
  .tm_navigation_style_three .header__inner {
    justify-content: flex-end;
  }
  .tm_navigation_style_three .header__logo.logo {
    text-align: right;
  }
  .tm_navigation_style_three .header__inner {
    padding: 15px;
  }
}
@media only screen and (max-width: 1365px) {
  .tm_navigation_style_four .logo img {
    max-height: fit-content;
  }
}
@media only screen and (max-width: 670px) {
  .tm_navigation_style_four .header__wrapper {
    display: none;
  }
  .tm_navigation_style_four .header__inner {
    justify-content: flex-end;
    width: 100%;
  }
  .tm_navigation_style_four.header {
    padding: 25px 0;
  }
  header.header.tm_navigation_style_four .dl-menuwrapper {
    top: 30px;
  }
}
@media only screen and (max-width: 470px) {
  .tm_navigation_style_four .dl-menuwrapper button {
    width: 40px;
    height: 40px;
  }
  .tm_navigation_style_four .dl-menuwrapper button:after {
    top: 9px;
  }
  .tm_navigation_style_four .logo {
    text-align: right;
  }
  .tm_navigation_style_four .logo img {
    width: 100px;
  }
}
.tm_navigation_style_four .dl-menuwrapper ul > li.current-menu-ancestor > a.menu-link:before {
  content: none;
}

@media only screen and (max-width: 900px) {
  .tm_footer_style_style_one .footer-bottom__copy {
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .tm_footer_subscribe_style_one.main__subscribe .subscribe__inner form .mc4wp-form-fields {
    flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .tm_footer_style_style_one .footer-content-box, .tm_footer_style_style_one .footer-content__list {
    margin: 0 auto;
    text-align: center;
  }
  .tm_footer_style_style_one .footer-content-box {
    margin-left: auto !important;
  }
  .tm_footer_style_style_one .footer-bottom__socials {
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_two .footer-box {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 500px) {
  .tm_footer_style_style_two .footer__top.footer-top .mc4wp-form .mc4wp-form-fields {
    flex-direction: column;
  }
  .tm_footer_style_style_two .footer__top.footer-top .mc4wp-form .mc4wp-form-fields button.subscribe__form-btn {
    max-width: unset !important;
  }
  .tm_footer_subscribe_style_three .mc4wp-form .mc4wp-form-fields {
    flex-direction: column;
  }
}
/*-------------------------------------------------------------------

==  Blog Archive

-------------------------------------------------------------------*/
.right-sidebar .blog-grid-style-two, .left-sidebar .blog-grid-style-two {
  grid-template-columns: 1fr 1fr;
}

.blog-grid {
  padding-top: 120px;
  margin-bottom: 75px;
}

@media (max-width: 1920px) {
  .blog-grid {
    padding-top: calc(30px + 90 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid {
    margin-bottom: calc(0px + 75 * (100vw - 360px) / 1560);
  }
}
.blog-grid__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 1920px) {
  .blog-grid__inner {
    -webkit-column-gap: calc(15px + 15 * (100vw - 360px) / 1560);
    -moz-column-gap: calc(15px + 15 * (100vw - 360px) / 1560);
    column-gap: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid__inner {
    row-gap: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid__inner {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1560);
  }
}
.blog-grid__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 1920px) {
  .blog-grid__box {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item__inner {
  padding: 0 10px;
}

.blog-grid-item__title {
  color: #202020;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  display: block;
}

@media (max-width: 1920px) {
  .blog-grid-item__title {
    font-size: calc(14px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item__title {
    line-height: calc(20px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item__title {
    margin-bottom: calc(10px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item__title-link {
  color: #202020;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.blog-grid-item__title-link:hover {
  color: #ff006c;
}

.blog-grid-item__text {
  color: #515151;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 25px;
  letter-spacing: 0.01em;
  display: block;
}

@media (max-width: 1920px) {
  .blog-grid-item__text {
    font-size: calc(13px + 3 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item__text {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item__text {
    margin-bottom: calc(20px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1920px) {
  .blog-grid-item__bottom {
    gap: calc(10px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item__bottom span {
  width: 140px;
  background: #d9d9d9;
  height: 1px;
}

.blog-grid-item__bottom-text {
  margin-left: auto;
  color: #515151;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (max-width: 1920px) {
  .blog-grid-item__bottom-text {
    font-size: calc(13px + 1 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item__bottom-text {
    line-height: calc(24px + 2 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item__bottom-link {
  color: #515151;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 1920px) {
  .blog-grid-item__bottom-link {
    font-size: calc(13px + 1 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item__bottom-link {
    line-height: calc(24px + 2 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item__bottom-link:hover {
  color: #490083;
}

.blog-grid-item-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

@media (max-width: 1920px) {
  .blog-grid-item-box {
    margin-bottom: calc(25px + 15 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item-box__img {
  width: 100%;
  max-width: 370px;
  height: 300px;
  max-height: 300px;
  overflow: hidden;
}

.blog-grid-item-box__img-image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.blog-grid-item-box__img-image:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-grid-item-box__text {
  width: 65px;
  height: 65px;
  background: #ff006c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
  position: absolute;
  bottom: -15px;
}

@media (max-width: 1920px) {
  .blog-grid-item-box__text {
    width: calc(45px + 20 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item-box__text {
    height: calc(45px + 20 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item-box__text {
    margin-left: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item-box__text span:first-child {
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: -3px;
}

@media (max-width: 1920px) {
  .blog-grid-item-box__text span:first-child {
    font-size: calc(18px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item-box__text span:first-child {
    line-height: calc(24px + 11 * (100vw - 360px) / 1560);
  }
}
.blog-grid-item-box__text span:last-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: -3px;
}

@media (max-width: 1920px) {
  .blog-grid-item-box__text span:last-child {
    font-size: calc(12px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-grid-item-box__text span:last-child {
    line-height: calc(20px + 6 * (100vw - 360px) / 1560);
  }
}
.tm_blog {
  padding-top: 120px;
  margin-bottom: 75px;
}

@media (max-width: 1920px) {
  .tm_blog {
    padding-top: calc(30px + 90 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_blog {
    margin-bottom: 75px;
  }
}
.blog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media (max-width: 959px) {
  .tm_blog .blog-aside {
    margin-top: 0px;
  }
}
@media (max-width: 1000px) {
  .article blockquote:before, .blog-comments__content blockquote:before, .article blockquote:after, .blog-comments__content blockquote:after {
    content: none !important;
  }
  .tm_blog .article blockquote {
    padding-left: 50px;
  }
}
@media (max-width: 768px) {
  .blog__inner {
    display: block;
  }
  .tm_blog .blog-aside {
    max-width: unset;
  }
}
@media (max-width: 1920px) {
  .blog__inner {
    gap: 50px;
  }
}
.blog-list {
  max-width: 770px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 70px;
}
.blog-list.col-lg-12 {
  max-width: 800px;
  margin: auto;
}
.blog-list .blog-list__item.sticky .blog-list-item__content-title {
  padding-left: 30px;
  position: relative;
}
.blog-list .blog-list__item.sticky .blog-list-item__content-title:after {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 30px;
  content: "\f08d";
  font-family: FontAwesome;
  color: #490481;
}

@media (max-width: 1920px) {
  .blog-list {
    gap: calc(30px + 40 * (100vw - 360px) / 1560);
  }
}
.blog-list .blog-grid__links {
  margin-top: 10px;
}

.blog-list-item__content-title {
  color: #000;
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

@media (max-width: 1920px) {
  .blog-list-item__content-title {
    font-size: calc(24px + 14 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item__content-title {
    line-height: calc(32px + 16 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item__content-title {
    margin-bottom: calc(20px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-list-item__content-text {
  margin-bottom: 45px;
  color: #515151;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
}

@media (max-width: 1920px) {
  .blog-list-item__content-text {
    margin-bottom: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item__content-text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item__content-text {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-list-item__link:hover span:last-child {
  color: #fff;
}

.blog-list-box {
  margin-bottom: 65px;
  display: block;
  position: relative;
}

@media (max-width: 1920px) {
  .blog-list-box {
    margin-bottom: calc(40px + 25 * (100vw - 360px) / 1560);
  }
}
.blog-list-box:hover .blog-list-box__image {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.blog-list-box__img {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  max-height: 500px;
  height: fit-content;
}

@media (max-width: 1920px) {
  .blog-list-box__img {
    max-height: calc(300px + 200 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-box__img {
    height: fit-content;
  }
}
.blog-list-box__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.blog-list-box__text {
  width: 75px;
  height: 75px;
  background: #ff006c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
  margin-left: 55px;
  position: absolute;
  bottom: -20px;
}

@media (max-width: 1920px) {
  .blog-list-box__text {
    width: calc(45px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-box__text {
    height: calc(45px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-box__text {
    margin-left: calc(15px + 40 * (100vw - 360px) / 1560);
  }
}
.blog-list-box__text span:first-child {
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: -3px;
}

@media (max-width: 1920px) {
  .blog-list-box__text span:first-child {
    font-size: calc(18px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-box__text span:first-child {
    line-height: calc(24px + 11 * (100vw - 360px) / 1560);
  }
}
.blog-list-box__text span:last-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: -3px;
}

@media (max-width: 1920px) {
  .blog-list-box__text span:last-child {
    font-size: calc(12px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-box__text span:last-child {
    line-height: calc(20px + 6 * (100vw - 360px) / 1560);
  }
}
.blog-list-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
  row-gap: 20px;
}

@media (max-width: 1920px) {
  .blog-list-item-info {
    row-gap: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-list-item-info__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #515151;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
}

.blog-list-item-info__author-img {
  min-width: 45px;
  width: 45px;
  max-height: 45px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
}

.blog-list-item-info__author-text {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  -webkit-transition: color;
  -o-transition: color;
  transition: color;
}

.blog-list-item-info__author-text::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #490083;
  right: 0;
  top: 102%;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.blog-list-item-info__author-text:hover {
  color: #490083;
}

.blog-list-item-info__author-text:hover::before {
  width: 100%;
}

.blog-list-item-info__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #515151;
  font-weight: 500;
  gap: 10px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 1920px) {
  .blog-list-item-info__link {
    gap: calc(5px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item-info__link {
    font-size: calc(13px + 1 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item-info__link {
    line-height: calc(24px + 2 * (100vw - 360px) / 1560);
  }
}
.blog-list-item-info__link:hover {
  color: #490083;
}

.blog-list-item-info__link:hover svg path {
  stroke: #490083;
}

.blog-list-item__link, .comment-form__btn span {
  font-family: Lexend Deca;
}

.blog-list-item-info__link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1920px) {
  .blog-list-item-info__link svg {
    width: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-list-item-info__link svg {
    height: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-list-item-info__link svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.blog-aside {
  max-width: 350px;
}

.blog-aside__title {
  color: #202020;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

@media (max-width: 1920px) {
  .blog-aside__title {
    font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__title {
    line-height: calc(24px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__title {
    margin-bottom: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-aside__form {
  background: #fff;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 1920px) {
  .blog-aside__form {
    margin-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
.blog-aside__form-input {
  width: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  padding-top: 20px;
  padding-right: 60px;
  padding-bottom: 20px;
  padding-left: 30px;
}

@media (max-width: 1920px) {
  .blog-aside__form-input {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-input {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-input {
    padding-top: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-input {
    padding-right: calc(45px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-input {
    padding-bottom: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-input {
    padding-left: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
.blog-aside__form-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.blog-aside__form-input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.blog-aside__form-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.blog-aside__form-input::-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.blog-aside__form-input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

@media (max-width: 1920px) {
  .blog-aside__form-input::-webkit-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input::-moz-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input:-ms-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input::-ms-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input::placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-input::-webkit-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input::-moz-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input:-ms-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input::-ms-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .blog-aside__form-input::placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-aside__form-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
  right: 25px;
}

@media (max-width: 1920px) {
  .blog-aside__form-btn {
    right: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-aside__form-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1920px) {
  .blog-aside__form-btn svg {
    width: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside__form-btn svg {
    height: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-aside-categories {
  background: #f5f5f5;
  padding-top: 45px;
  padding-right: 45px;
  padding-left: 45px;
  padding-bottom: 45px;
  margin-bottom: 60px;
}

@media (max-width: 1920px) {
  .blog-aside-categories {
    padding-top: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories {
    padding-right: calc(15px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories {
    padding-left: calc(15px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories {
    padding-bottom: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories {
    margin-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
.blog-aside-categories__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 35px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

@media (max-width: 1920px) {
  .blog-aside-categories__title {
    font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories__title {
    line-height: calc(24px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories__title {
    margin-bottom: calc(25px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-aside-categories__title::after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}

@media (max-width: 1920px) {
  .blog-aside-categories__title::after {
    height: calc(3px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories__title::after {
    bottom: calc(-5px + -2 * (100vw - 360px) / 1560);
  }
}
.blog-aside-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1920px) {
  .blog-aside-categories__list {
    gap: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-aside-categories__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.blog-aside-categories__list-item:hover .blog-aside-categories__list-link {
  color: #de0a89;
}

.blog-aside-categories__list-item:hover svg path {
  stroke: #de0a89;
}

.blog-aside-categories__list-item svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.blog-aside-categories__list-item svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1920px) {
  .blog-aside-categories__list-item svg {
    width: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories__list-item svg {
    height: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-aside-categories__list-link {
  color: #515151;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 1920px) {
  .blog-aside-categories__list-link {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-categories__list-link {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent {
  background: #f5f5f5;
  padding-top: 45px;
  padding-right: 45px;
  padding-left: 45px;
  padding-bottom: 45px;
  margin-bottom: 60px;
}

@media (max-width: 1920px) {
  .blog-aside-recent {
    padding-top: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent {
    padding-right: calc(15px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent {
    padding-left: calc(15px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent {
    padding-bottom: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent {
    margin-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

@media (max-width: 1920px) {
  .blog-aside-recent__title {
    font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent__title {
    line-height: calc(24px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent__title {
    margin-bottom: calc(25px + 15 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent__title::after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}

@media (max-width: 1920px) {
  .blog-aside-recent__title::after {
    height: calc(3px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent__title::after {
    bottom: calc(-5px + -2 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1920px) {
  .blog-aside-recent__inner {
    gap: calc(20px + 20 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media (max-width: 1920px) {
  .blog-aside-recent-item {
    gap: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent-item__img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  min-width: 80px;
  min-height: 80px;
  overflow: hidden;
}

.blog-aside-recent-item__img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-aside-recent-item__img-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.blog-aside-recent-item__box-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  display: block;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 1920px) {
  .blog-aside-recent-item__box-text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent-item__box-text {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent-item__box-text {
    margin-bottom: calc(10px + 2 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent-item__box-text:hover {
  color: #490083;
}

.blog-aside-recent-item__box-comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: #515151;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 1920px) {
  .blog-aside-recent-item__box-comments {
    font-size: calc(12px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent-item__box-comments {
    line-height: calc(18px + 8 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent-item__box-comments span {
  display: inline-block;
}

.blog-aside-recent-item__box-comments svg {
  height: 20px;
  bottom: 20px;
  margin-right: 5px;
}

@media (max-width: 1920px) {
  .blog-aside-recent-item__box-comments svg {
    height: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent-item__box-comments svg {
    bottom: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-recent-item__box-comments svg {
    margin-right: calc(0px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-aside-recent-item__box-comments svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.blog-aside-recent-item__box-comments:hover {
  color: #490083;
}

.blog-aside-recent-item__box-comments:hover svg {
  margin-right: 5px;
}

.blog-aside-recent-item__box-comments:hover svg path {
  stroke: #490083;
}

.blog-aside-tags {
  background: #f5f5f5;
  padding-top: 45px;
  padding-right: 45px;
  padding-left: 45px;
  padding-bottom: 45px;
}

@media (max-width: 1920px) {
  .blog-aside-tags {
    padding-top: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags {
    padding-right: calc(15px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags {
    padding-left: calc(15px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags {
    padding-bottom: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
.blog-aside-tags__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

@media (max-width: 1920px) {
  .blog-aside-tags__title {
    font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags__title {
    line-height: calc(24px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags__title {
    margin-bottom: calc(25px + 15 * (100vw - 360px) / 1560);
  }
}
.blog-aside-tags__title::after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}

@media (max-width: 1920px) {
  .blog-aside-tags__title::after {
    height: calc(3px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags__title::after {
    bottom: calc(-5px + -2 * (100vw - 360px) / 1560);
  }
}
.blog-aside-tags__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 10px;
}

.blog-aside-tags__tag {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #515151;
  letter-spacing: -0.01em;
  padding: 6px 15px;
  border: 1px solid #d9d9d9;
  -webkit-transition: color 0.3s, border 0.3s, background 0.3s;
  -o-transition: color 0.3s, border 0.3s, background 0.3s;
  transition: color 0.3s, border 0.3s, background 0.3s;
}

@media (max-width: 1920px) {
  .blog-aside-tags__tag {
    font-size: calc(12px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-aside-tags__tag {
    line-height: calc(18px + 8 * (100vw - 360px) / 1560);
  }
}
.blog-aside-tags__tag:hover {
  background: #f5ab1a;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
}

.blog-comments {
  border-top: 1px solid #d9d9d9;
  margin-bottom: 60px;
  padding-bottom: 60px;
  padding-top: 60px;
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1920px) {
  .blog-comments {
    margin-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments {
    padding-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments {
    padding-top: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
.blog-comments__title {
  margin-right: auto;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 50px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

@media (max-width: 1920px) {
  .blog-comments__title {
    font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments__title {
    line-height: calc(24px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments__title {
    margin-bottom: calc(25px + 25 * (100vw - 360px) / 1560);
  }
}
.blog-comments__title::after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}

@media (max-width: 1920px) {
  .blog-comments__title::after {
    height: calc(3px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments__title::after {
    bottom: calc(-5px + -2 * (100vw - 360px) / 1560);
  }
}
.blog-comments__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media (max-width: 1920px) {
  .blog-comments__inner {
    gap: calc(20px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-comments__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  gap: 10px;
  font-size: 15px;
  line-height: 19px;
  color: #202020;
  margin-left: auto;
  text-transform: uppercase;
}

@media (max-width: 1920px) {
  .blog-comments__link {
    gap: calc(5px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments__link {
    font-size: calc(14px + 1 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments__link {
    line-height: calc(18px + 1 * (100vw - 360px) / 1560);
  }
}
.blog-comments__link:hover {
  color: #490083;
}

.blog-comments__link:hover svg {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.blog-comments__link:hover svg path {
  stroke: #490083;
}

.blog-comments__link svg {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (max-width: 1920px) {
  .blog-comments__link svg {
    width: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments__link svg {
    height: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-comments__link svg path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.blog-comments-content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1920px) {
  .blog-comments-content__top {
    gap: calc(20px + 5 * (100vw - 360px) / 1560);
  }
}
.blog-comments-content__top-text {
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #000;
  text-transform: uppercase;
}

@media (max-width: 1920px) {
  .blog-comments-content__top-text {
    font-size: calc(14px + 1 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments-content__top-text {
    line-height: calc(18px + 1 * (100vw - 360px) / 1560);
  }
}
.blog-comments-content__top-info {
  font-weight: 300;
  font-size: 13px;
  line-height: 26px;
  color: #515151;
  letter-spacing: -0.01em;
}

@media (max-width: 1920px) {
  .blog-comments-content__top-info {
    font-size: calc(12px + 1 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments-content__top-info {
    line-height: calc(24px + 2 * (100vw - 360px) / 1560);
  }
}
.blog-comments-content__text {
  max-width: 665px;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}

@media (max-width: 1920px) {
  .blog-comments-content__text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments-content__text {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .blog-comments-content__text {
    margin-bottom: calc(20px + 5 * (100vw - 360px) / 1560);
  }
}
.index-main .blog-grid-item:last-child {
  margin-bottom: 0;
}

.index-main .blog-grid__inner {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .blog-grid-item__bottom span {
    width: 50px;
  }
  .blog-grid-item__bottom .blog-grid-item__bottom-text {
    margin-left: unset;
  }
}
@media (max-width: 950px) {
  .blog-grid__inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid-item-box__img {
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  .blog__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .blog-aside {
    max-width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 600px) {
  .blog-grid__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .blog-grid-item-box__text {
    margin-left: 10px;
  }
}
@media (max-width: 500px) {
  .blog-comments__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.btn {
  background: #fff;
  border: 1px solid #490083;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 225px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 80px;
  -webkit-transition: padding-left 0.3s;
  -o-transition: padding-left 0.3s;
  transition: padding-left 0.3s;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2;
}

.btn span:first-child {
  position: absolute;
  height: 63px;
  width: 60px;
  min-width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  left: 0;
  z-index: 1;
}

.btn span:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #490083;
}

.btn span:first-child::after {
  content: "";
  width: 20px;
  height: 120%;
  position: absolute;
  top: -10px;
  right: -9px;
  bottom: -10px;
  background: #fff;
  -webkit-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  transform: rotate(-17deg);
  -webkit-transition: right 0.3s, -webkit-transform 0.3s;
  transition: right 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, right 0.3s;
  transition: transform 0.3s, right 0.3s;
  transition: transform 0.3s, right 0.3s, -webkit-transform 0.3s;
}

.btn span:first-child svg {
  width: 20px;
  height: 20px;
  z-index: 1;
  margin-right: 8px;
  left: 50%;
  -webkit-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}

.btn span:last-child {
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #202020;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  font-family: Lexend Deca;
}

.btn:hover {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

.btn:hover span:last-child {
  justify-content: center;
}

.btn:hover span:first-child {
  width: 100%;
  position: absolute;
}

.btn:hover span:first-child::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  right: -20px;
}

.btn:hover span:first-child svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 80%;
}

.dokan-store .wrapper.tm_nav_style_one .main__section-top.section-top {
  padding-bottom: 85px;
}

/*-------------------------------------------------------------------

==  Blog Single

-------------------------------------------------------------------*/
.post-inner_content.col-lg-12 {
  max-width: 800px;
  margin: auto;
}
.post-inner_content .blog-list-item-info__author-text {
  margin: 0;
}
.post-inner_content .blog-list-item-info {
  gap: unset;
  row-gap: unset;
}
.post-inner_content .blog-list-item-info .blog-list-item-info__author {
  margin-right: 20px;
}
.post-inner_content .blog-list-item-info .blog-list-item-info__link {
  margin-right: 5px;
}
.post-inner_content .blog-list-item-info .blog-list-item-info__link:last-child {
  margin-left: 20px;
}

.article__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000;
}

@media (max-width: 1920px) {
  .article__title {
    font-size: calc(22px + 16 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article__title {
    line-height: calc(30px + 18 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article__title {
    margin-bottom: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
.article p {
  margin-bottom: 30px;
  color: #515151;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
}

@media (max-width: 1920px) {
  .article p {
    margin-bottom: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article p {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article p {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.article blockquote, .blog-comments__content blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 25px;
  background: rgba(236, 108, 35, 0.08);
  padding-top: 45px !important;
  padding-right: 80px !important;
  padding-bottom: 45px !important;
  padding-left: 120px !important;
  margin-bottom: 45px;
  font-size: 16px;
  font-style: normal;
  position: relative;
  flex-wrap: wrap;
  flex-direction: column;
}
.article blockquote p, .blog-comments__content blockquote p {
  font-style: normal;
}
.article blockquote:before, .blog-comments__content blockquote:before {
  content: "";
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #490083;
  border-radius: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45px;
  margin: auto;
}
.article blockquote:after, .blog-comments__content blockquote:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../images/bloquote.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 18px;
  height: 13px;
  z-index: 99;
  background-size: contain;
}

blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 25px;
  background: rgba(236, 108, 35, 0.08);
  padding-top: 45px;
  padding-right: 80px;
  padding-bottom: 45px;
  padding-left: 120px;
  margin-bottom: 45px;
  font-size: 16px;
  font-style: normal;
  position: relative;
}
blockquote p {
  font-style: normal;
}
blockquote:before {
  content: "";
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #490083;
  border-radius: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45px;
  margin: auto;
}
blockquote:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../images/bloquote.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 18px;
  height: 13px;
  z-index: 99;
  background-size: contain;
}

.blog-comments__content blockquote {
  padding-top: 45px;
  padding-right: 45px;
  padding-bottom: 45px;
  padding-left: 120px;
}

@media (max-width: 1920px) {
  .article blockquote {
    gap: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote {
    padding-top: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote {
    padding-right: calc(15px + 65 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote {
    padding-bottom: calc(30px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote {
    padding-left: 150px;
  }
}
@media (max-width: 1920px) {
  .article blockquote {
    margin-bottom: calc(25px + 20 * (100vw - 360px) / 1560);
  }
}
.article blockquote div {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #490083;
  border-radius: 100px;
}

@media (max-width: 1920px) {
  .article blockquote div {
    width: calc(40px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote div {
    height: calc(40px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote div {
    min-width: calc(40px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote div {
    min-height: calc(40px + 10 * (100vw - 360px) / 1560);
  }
}
.article blockquote p {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  margin-bottom: 0;
}

@media (max-width: 1920px) {
  .article blockquote p {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article blockquote p {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.article-box {
  margin-bottom: 50px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 1920px) {
  .article-box {
    margin-bottom: calc(30px + 20 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article-box {
    padding-top: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article-box {
    gap: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
.article-box__img {
  height: 300px;
  width: 100%;
  max-height: 300px;
  max-width: 100%;
}

.article-box__img-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article-bottom {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 1920px) {
  .article-bottom {
    padding-top: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article-bottom {
    margin-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
.article-bottom__share {
  height: 40px;
  width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ec6c23;
  position: relative;
}

.article-bottom__share svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.article-bottom__share::after {
  content: "";
  width: 20px;
  height: 120%;
  position: absolute;
  top: -5px;
  left: -9px;
  bottom: -5px;
  background: #fff;
  -webkit-transform: rotate(17deg);
  -ms-transform: rotate(17deg);
  transform: rotate(17deg);
}

.article-bottom-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  row-gap: 20px;
}

@media (max-width: 1920px) {
  .article-bottom-tags {
    row-gap: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
.article-bottom-tags__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #515151;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

@media (max-width: 1920px) {
  .article-bottom-tags__text {
    font-size: calc(16px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article-bottom-tags__text {
    line-height: calc(22px + 6 * (100vw - 360px) / 1560);
  }
}
.article-bottom-tags__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  gap: 10px;
  flex-wrap: wrap;
}

.article-bottom-tags__inner a {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #515151;
  padding: 6px 16px;
  border: 1px solid #d9d9d9;
  -webkit-transition: border 0.3s, background 0.3s, color 0.3s;
  -o-transition: border 0.3s, background 0.3s, color 0.3s;
  transition: border 0.3s, background 0.3s, color 0.3s;
}

@media (max-width: 1920px) {
  .article-bottom-tags__inner a {
    font-size: calc(12px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .article-bottom-tags__inner a {
    line-height: calc(18px + 8 * (100vw - 360px) / 1560);
  }
}
.article-bottom-tags__inner a:hover {
  background: #ec6c23;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
}

@media (max-width: 550px) {
  .article-bottom__share::after {
    content: unset;
  }
  .article-bottom__share svg {
    margin-left: 0;
  }
}
/*-------------------------------------------------------------------

==  Comments

-------------------------------------------------------------------*/
.comment-reply-title {
  margin-right: auto;
  margin-bottom: 60px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

@media (max-width: 1920px) {
  .comment-reply-title {
    margin-bottom: calc(30px + 30 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-reply-title {
    font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-reply-title {
    line-height: calc(26px + 6 * (100vw - 360px) / 1560);
  }
}
.comment-reply-title::after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}

@media (max-width: 1920px) {
  .comment-reply-title::after {
    height: calc(3px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-reply-title::after {
    bottom: calc(-5px + -2 * (100vw - 360px) / 1560);
  }
}
.comment__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  margin-bottom: 15px;
}

@media (max-width: 1920px) {
  .comment__text {
    font-size: calc(14px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment__text {
    line-height: calc(20px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment__text {
    margin-bottom: calc(10px + 5 * (100vw - 360px) / 1560);
  }
}
.comment-form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 60px;
}

@media (max-width: 1920px) {
  .comment-form__box {
    gap: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box {
    margin-bottom: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
.comment-form__box-input {
  background: #fff;
  border: 1px solid #d9d9d9;
  width: 100%;
  font-weight: 300;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

@media (max-width: 1920px) {
  .comment-form__box-input {
    padding-top: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box-input {
    padding-right: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box-input {
    padding-bottom: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box-input {
    padding-left: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box-input {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box-input {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.comment-form__box-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__box-input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__box-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__box-input::-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__box-input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

@media (max-width: 1920px) {
  .comment-form__box-input::-webkit-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input::-moz-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input:-ms-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input::-ms-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input::placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__box-input::-webkit-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input::-moz-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input:-ms-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input::-ms-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .comment-form__box-input::placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.comment-form__textarea {
  margin-bottom: 45px;
  background: #fff;
  border: 1px solid #d9d9d9;
  width: 100%;
  font-weight: 300;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  resize: unset;
  height: 150px;
}

@media (max-width: 1920px) {
  .comment-form__textarea {
    margin-bottom: calc(20px + 25 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__textarea {
    padding-top: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__textarea {
    padding-right: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__textarea {
    padding-bottom: calc(15px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__textarea {
    padding-left: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__textarea {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .comment-form__textarea {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.comment-form__textarea::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__textarea:-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__textarea::-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__textarea::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
}

.comment-form__btn {
  max-width: 245px;
  width: 245px;
  border: 1px solid #ec6c23;
}

.comment-form__btn span:first-child::before {
  background: #ec6c23;
}

.comment-form__btn:hover span:last-child {
  color: #fff;
}

.main__send-message .comment-reply-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 58px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 80px;
}

@media (max-width: 1920px) {
  .main__send-message .comment-reply-title {
    font-size: calc(30px + 16 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .main__send-message .comment-reply-title {
    line-height: calc(36px + 22 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .main__send-message .comment-reply-title {
    margin-bottom: calc(40px + 40 * (100vw - 360px) / 1560);
  }
}
.main__send-message .comment-reply-title::after {
  content: unset;
}

.main__send-message .comment-reply-title span {
  position: relative;
  color: #ec6c23;
}

.main__send-message .comment-reply-title span::after {
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  position: absolute;
  bottom: -7px;
  background: #ec6c23;
}

@media (max-width: 1920px) {
  .main__send-message .comment-reply-title span::after {
    height: calc(3px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .main__send-message .comment-reply-title span::after {
    bottom: calc(-5px + -2 * (100vw - 360px) / 1560);
  }
}
.main__send-message .comment-form__box {
  margin-bottom: 25px;
}

@media (max-width: 1920px) {
  .main__send-message .comment-form__box {
    margin-bottom: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
.main__send-message .comment-form__btn {
  margin-left: auto;
  margin-right: auto;
}

.comment-form-cookies-consent {
  position: absolute;
  bottom: 0;
  display: flex;
  left: 0;
  padding-left: 0;
  margin: 0px !important;
}
.comment-form-cookies-consent #wp-comment-cookies-consent {
  margin-top: 5px;
}

.logged-in-as a {
  color: #490083;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
.logged-in-as a:hover {
  color: #ff006c;
}

.blog-comments__inner .blog-comments__img {
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  display: inline-block;
  padding: 40px;
  border-radius: 100%;
}
.blog-comments__inner .blog-comments__content {
  width: calc(100% - 80px);
  line-height: calc(20px + 10 * (100vw - 360px) / 1560);
}

#cancel-comment-reply-link {
  margin-left: 10px;
}

.blog__comment {
  width: 100%;
}

.comment {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
}
.comment:first-child {
  padding-top: 0px;
}
.comment:last-child {
  padding-bottom: 0px;
}
.comment.depth-2 {
  position: relative;
  padding-left: 30px;
}
.comment.depth-2:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #c7cdd8;
  border-left: 1px solid #c7cdd8;
  content: none;
}
.comment.depth-3 {
  position: relative;
  padding-left: 60px;
}
.comment.depth-3:before {
  display: block;
  position: absolute;
  top: 0;
  left: 50px;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #c7cdd8;
  border-left: 1px solid #c7cdd8;
  content: none;
}
.comment.depth-4, .comment.depth-5, .comment.depth-6, .comment.depth-7, .comment.depth-8 {
  position: relative;
  padding-left: 80px;
}
.comment.depth-4:before, .comment.depth-5:before, .comment.depth-6:before, .comment.depth-7:before, .comment.depth-8:before {
  display: block;
  position: absolute;
  top: 0;
  left: 100px;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #c7cdd8;
  border-left: 1px solid #c7cdd8;
  content: none;
}

.comment-reply-link {
  font-weight: 600;
  gap: 10px;
  font-size: 15px;
  line-height: 19px;
  color: #202020;
  margin-left: auto;
  text-transform: uppercase;
  display: block;
  text-align: right;
  transition: all 0.3s ease-in-out;
}
.comment-reply-link:before {
  content: "\f061";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  transition: all 0.3s ease-in-out;
  margin-right: 7px;
  color: rgb(236, 108, 35);
}
.comment-reply-link:hover {
  color: #490083;
}
.comment-reply-link:hover:before {
  margin-right: 1px;
  color: #490083;
}

/*-------------------------------------------------------------------

==  Button

-------------------------------------------------------------------*/
.fl-button {
  padding: 14px 25px;
  display: inline-flex;
  color: #fff;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
.fl-button.size-small {
  padding: 11px 20px;
  font-size: 12px;
}
.fl-button.size-large {
  padding: 17px 35px;
  font-size: 15px;
}
.fl-button:before, .fl-button:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fl-button:after {
  width: 140%;
  left: -20%;
  z-index: -1;
  transform-origin: 0 50%;
  transform: skew(-35deg) scaleX(0);
  transition: transform 0.5s ease;
}
.fl-button:before {
  z-index: -2;
}
.fl-button:hover {
  color: #fff !important;
}
.fl-button:hover:after {
  transform: skew(-35deg) scaleX(1);
}

.preview-btn {
  display: flex;
  align-items: center;
}
.preview-btn .fl-button {
  margin-right: 25px;
}

/*-------------------------------------------------------------------

==  Share

-------------------------------------------------------------------*/
.share-post {
  margin-right: 0 !important;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
.share-post:hover {
  transition: color 0.3s ease;
}
.share-post .fl-flipper-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  width: 20px;
  height: 15px;
  line-height: 15px;
  perspective: 40px;
  position: relative;
  margin-right: 5px !important;
}
.share-post .fl-flipper-icon i {
  margin-right: 0 !important;
}
.share-post .fl-flipper-icon i.icon-close {
  top: 1px;
  position: relative;
}
.share-post .fl-flipper-icon .fl-front-content {
  backface-visibility: hidden;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.share-post .fl-flipper-icon .fl-back-content {
  align-items: center;
  backface-visibility: hidden;
  position: absolute;
  top: -1px;
  left: 0;
  transform: rotateY(180deg);
  width: 100%;
}
.share-post.opened .fl-flipper-icon {
  transition: transform 0.6s;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/*-------------------------------------------------------------------

==  Post Share Icon

-------------------------------------------------------------------*/
.section-sidebar {
  margin-bottom: 45px;
}

.widget-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}
.widget-title:after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}

.widget-title .ic {
  float: right;
  font-size: 30px;
  font-weight: normal;
  opacity: 0.5;
  color: #ccdaea;
}

.widget-inner {
  padding: 35px 26px;
}

.widget-search {
  margin-bottom: 35px;
}

.widget-search .form-sidebar {
  position: relative;
}

.widget-search .form-sidebar__input {
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding: 8px 50px 7px 20px;
  text-transform: none;
}

.widget-search .form-sidebar__input::-webkit-input-placeholder {
  color: #222;
}

.widget-search .form-sidebar__input::-moz-placeholder {
  color: #222;
}

.widget-search .form-sidebar__input:-ms-input-placeholder {
  color: #222;
}

.widget-search .form-sidebar__btn {
  position: absolute;
  top: 0;
  right: 5px;
  width: 40px;
  height: 100%;
  line-height: 1;
  color: #222;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

.widget-search .form-sidebar__btn:focus {
  outline: none;
}

.widget-search .form-sidebar__btn .ic {
  font-size: 16px;
}

.widget-list {
  max-width: 250px;
  margin-bottom: 0;
  padding-top: 0;
}

.widget-list__item {
  padding-left: 25px;
}

.widget-list__item:before {
  color: #ccc;
}

.widget-list__link {
  display: block;
  font: 14px/1 Montserrat;
  color: #253241;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.widget-list .widget-list__link {
  color: #253241;
}

.widget-list .widget-list__item {
  margin-bottom: 15px;
}

.widget-list .widget-list__item:before {
  top: 0;
}

.widget-list .widget-list__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-widget {
  padding-bottom: 30px;
}

.post-widget:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.post-widget__media {
  float: left;
  width: 65px;
}

.post-widget__inner {
  padding-left: 82px;
}

.post-widget__title {
  display: block;
  font: 700 13px/20px Montserrat;
}

.post-widget__title a {
  color: #253241;
}

.post-widget__date {
  font-size: 12px;
  color: #555;
}

.list-tags {
  margin-right: -4px;
  margin-bottom: -8px;
  margin-left: -4px;
}

.list-tags:before,
.list-tags:after {
  display: table;
  content: "";
}

.list-tags:after {
  clear: both;
}

.lt-ie8 .list-tags {
  zoom: 1;
}

.list-tags__item {
  float: left;
  margin-right: 4px;
  margin-bottom: 8px;
  margin-left: 4px;
}

.list-tags__link {
  display: block;
  padding: 8px 15px;
  font-family: Montserrat;
  font-size: 13px;
  color: #253241;
  border: 1px solid #eee;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.list-tags__link:hover {
  color: #fff;
  text-decoration: none;
}

.widget + .widget {
  margin-top: 60px;
}

.widget {
  background-color: #f5f5f5;
  padding-top: 45px;
  padding-right: 45px;
  padding-left: 45px;
  padding-bottom: 45px;
}
.widget.widget_search {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.widget.widget_search .uk-search-default {
  width: 100%;
}
.widget.widget_search .uk-search-input {
  height: 70px !important;
}
.widget.widget_nav_menu .menu {
  margin-left: 0px;
}
.widget.widget_nav_menu .menu .menu-link:after {
  content: none;
}
.widget.widget_nav_menu .menu .uk-navbar-dropdown .sub-menu-link {
  border-bottom: 0px;
  line-height: 24px;
}
.widget .wp-block-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
  color: #202020;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}
.widget .wp-block-heading:after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  height: 5px;
  bottom: -7px;
  background: #ec6c23;
}
.widget .wp-block-latest-posts select#cat, .widget .wp-block-latest-comments select#cat, .widget .wp-block-archives select#cat, .widget .wp-block-categories select#cat, .widget .calendar_wrap select#cat, .widget.widget_search .uk-search select#cat, .widget .textwidget select#cat, .widget .tagcloud select#cat, .widget.widget_categories form select#cat {
  margin-bottom: 0px;
}
.widget .wp-calendar-table {
  width: 100%;
}
.widget.widget_block.widget_search {
  padding: 0;
}
.widget.widget_block.widget_search .wp-block-search .wp-block-search__label {
  display: none;
}
.widget.widget_block.widget_search .wp-block-search .wp-block-search__inside-wrapper {
  position: relative;
}
.widget.widget_block.widget_search .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  width: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  padding-top: 20px;
  padding-right: 60px;
  padding-bottom: 20px;
  padding-left: 30px;
  height: 30px;
  border: 0px;
}
.widget.widget_block.widget_search .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  position: absolute;
  top: 0;
  right: 15px;
  width: 40px;
  height: 100%;
  line-height: 60px;
  color: transparent;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.widget.widget_block.widget_search .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/search_widget_black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}
.widget.widget_search form {
  position: relative;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
}
.widget.widget_search form .uk-search-input {
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding: 0px 50px 0px 20px;
  text-transform: none;
  display: block;
  line-height: 1.5;
  border-radius: 2px;
  border: 1px solid #eee;
  color: #222;
  font-size: 14px;
  opacity: 1;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background: #ffffff;
}
.widget.widget_search form .uk-search-icon, .widget.widget_search form .wp-block-search__button {
  position: absolute;
  top: 0;
  right: 10px;
  width: 40px;
  height: 100%;
  line-height: 45px;
  color: transparent;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.widget.widget_search form .uk-search-icon:before, .widget.widget_search form .wp-block-search__button:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/search_widget_black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}
.widget.widget_text .textwidget img {
  margin: 5px 0;
}
.widget.widget_tag_cloud .tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 10px;
}
.widget.widget_tag_cloud .tagcloud a {
  font-weight: 500;
  font-size: 14px !important;
  line-height: 26px;
  color: #515151;
  letter-spacing: -0.01em;
  padding: 6px 15px;
  border: 1px solid #d9d9d9;
  -webkit-transition: color 0.3s, border 0.3s, background 0.3s;
  -o-transition: color 0.3s, border 0.3s, background 0.3s;
  transition: color 0.3s, border 0.3s, background 0.3s;
}
.widget.widget_tag_cloud .tagcloud a:hover {
  background: #f5ab1a;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
}
.widget.widget_calendar .calendar_wrap #wp-calendar {
  width: 100%;
  position: relative;
  background: transparent;
  margin: 0;
  border: none;
  border-collapse: collapse;
}
.widget.widget_calendar .calendar_wrap #wp-calendar caption {
  background: transparent;
  caption-side: top;
  text-align: center;
  height: 30px;
  line-height: 35px;
  font-size: 16px;
  padding: 0;
  margin-bottom: 15px;
  color: #222222;
  font-weight: 500;
}
.widget.widget_calendar .calendar_wrap #wp-calendar thead th,
.widget.widget_calendar .calendar_wrap #wp-calendar tbody td {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding: 0;
  vertical-align: middle;
}
.widget.widget_calendar .calendar_wrap #wp-calendar thead th {
  font-size: 12px;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody td {
  font-size: 11px;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody td#today {
  color: #ff006c;
}
.widget.widget_calendar .calendar_wrap #wp-calendar thead {
  background: transparent;
}
.widget.widget_calendar .calendar_wrap #wp-calendar thead th {
  color: #222;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody tr {
  background: transparent;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody tr td {
  border: 1px solid;
  position: relative;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody tr td a {
  display: block;
  position: relative;
  z-index: 2;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody tr td a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  transition: background 0.3s ease;
  z-index: -1;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody tr td a:hover {
  color: #ff006c !important;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tbody tr td.pad {
  border: none;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  height: 36px;
  line-height: 36px;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next {
  position: absolute;
  width: 36px;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev a,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next a {
  border: 1px solid #ddd;
  background-color: #fff;
  display: block;
  position: relative;
  margin: 0 auto;
  color: transparent !important;
  width: 35px;
  height: 35px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev a:before,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next a:before {
  font-family: FontAwesome;
  color: #222;
  transition: all 0.3s ease-in;
  font-size: 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev a:hover,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next a:hover {
  transition: all 0.3s ease-in;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev a:hover:before,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next a:hover:before {
  transition: all 0.3s ease-in;
  color: #fff;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev.pad,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next.pad {
  text-align: center;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev.pad:before,
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next.pad:before {
  color: #f1f1f1;
  font-family: FontAwesome;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev {
  left: 0;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev a:before {
  content: "\f104";
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #prev.pad:before {
  content: "\f104";
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next {
  right: 0;
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next a:before {
  content: "\f105";
}
.widget.widget_calendar .calendar_wrap #wp-calendar tfoot #next.pad:before {
  content: "\f105";
}
.widget.widget_calendar .calendar_wrap a {
  color: #ff006c;
}
.widget.widget_rss ul li {
  margin-bottom: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.widget.widget_rss ul li:last-child {
  margin-bottom: 0px;
}
.widget.widget_nav_menu ul li {
  padding-left: 15px !important;
}
.widget .wp-block-latest-posts li, .widget .wp-block-archives li, .widget .wp-block-categories li, .widget.widget_archive ul li, .widget.widget_categories ul li, .widget.widget_pages ul li, .widget.widget_meta ul li, .widget.widget_recent_entries ul li, .widget.widget_nav_menu ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 21px;
  font-size: 16px;
  line-height: 35px;
}
.widget .wp-block-latest-posts li.sub-nav-item, .widget .wp-block-archives li.sub-nav-item, .widget .wp-block-categories li.sub-nav-item, .widget.widget_archive ul li.sub-nav-item, .widget.widget_categories ul li.sub-nav-item, .widget.widget_pages ul li.sub-nav-item, .widget.widget_meta ul li.sub-nav-item, .widget.widget_recent_entries ul li.sub-nav-item, .widget.widget_nav_menu ul li.sub-nav-item {
  margin-bottom: 0px;
}
.widget .wp-block-latest-posts li a, .widget .wp-block-archives li a, .widget .wp-block-categories li a, .widget.widget_archive ul li a, .widget.widget_categories ul li a, .widget.widget_pages ul li a, .widget.widget_meta ul li a, .widget.widget_recent_entries ul li a, .widget.widget_nav_menu ul li a {
  transition: all 0.3s ease-in-out;
}
.widget .wp-block-latest-posts li a:hover, .widget .wp-block-archives li a:hover, .widget .wp-block-categories li a:hover, .widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover, .widget.widget_pages ul li a:hover, .widget.widget_meta ul li a:hover, .widget.widget_recent_entries ul li a:hover, .widget.widget_nav_menu ul li a:hover {
  color: #ff006c;
}
.widget .wp-block-latest-posts li.has-sub-category, .widget .wp-block-latest-posts li.page_item_has_children, .widget .wp-block-latest-posts li.has-submenu, .widget .wp-block-archives li.has-sub-category, .widget .wp-block-archives li.page_item_has_children, .widget .wp-block-archives li.has-submenu, .widget .wp-block-categories li.has-sub-category, .widget .wp-block-categories li.page_item_has_children, .widget .wp-block-categories li.has-submenu, .widget.widget_archive ul li.has-sub-category, .widget.widget_archive ul li.page_item_has_children, .widget.widget_archive ul li.has-submenu, .widget.widget_categories ul li.has-sub-category, .widget.widget_categories ul li.page_item_has_children, .widget.widget_categories ul li.has-submenu, .widget.widget_pages ul li.has-sub-category, .widget.widget_pages ul li.page_item_has_children, .widget.widget_pages ul li.has-submenu, .widget.widget_meta ul li.has-sub-category, .widget.widget_meta ul li.page_item_has_children, .widget.widget_meta ul li.has-submenu, .widget.widget_recent_entries ul li.has-sub-category, .widget.widget_recent_entries ul li.page_item_has_children, .widget.widget_recent_entries ul li.has-submenu, .widget.widget_nav_menu ul li.has-sub-category, .widget.widget_nav_menu ul li.page_item_has_children, .widget.widget_nav_menu ul li.has-submenu {
  margin-bottom: 0px;
}
.widget .wp-block-latest-posts li.has-sub-category .children, .widget .wp-block-latest-posts li.has-sub-category .uk-navbar-dropdown, .widget .wp-block-latest-posts li.page_item_has_children .children, .widget .wp-block-latest-posts li.page_item_has_children .uk-navbar-dropdown, .widget .wp-block-latest-posts li.has-submenu .children, .widget .wp-block-latest-posts li.has-submenu .uk-navbar-dropdown, .widget .wp-block-archives li.has-sub-category .children, .widget .wp-block-archives li.has-sub-category .uk-navbar-dropdown, .widget .wp-block-archives li.page_item_has_children .children, .widget .wp-block-archives li.page_item_has_children .uk-navbar-dropdown, .widget .wp-block-archives li.has-submenu .children, .widget .wp-block-archives li.has-submenu .uk-navbar-dropdown, .widget .wp-block-categories li.has-sub-category .children, .widget .wp-block-categories li.has-sub-category .uk-navbar-dropdown, .widget .wp-block-categories li.page_item_has_children .children, .widget .wp-block-categories li.page_item_has_children .uk-navbar-dropdown, .widget .wp-block-categories li.has-submenu .children, .widget .wp-block-categories li.has-submenu .uk-navbar-dropdown, .widget.widget_archive ul li.has-sub-category .children, .widget.widget_archive ul li.has-sub-category .uk-navbar-dropdown, .widget.widget_archive ul li.page_item_has_children .children, .widget.widget_archive ul li.page_item_has_children .uk-navbar-dropdown, .widget.widget_archive ul li.has-submenu .children, .widget.widget_archive ul li.has-submenu .uk-navbar-dropdown, .widget.widget_categories ul li.has-sub-category .children, .widget.widget_categories ul li.has-sub-category .uk-navbar-dropdown, .widget.widget_categories ul li.page_item_has_children .children, .widget.widget_categories ul li.page_item_has_children .uk-navbar-dropdown, .widget.widget_categories ul li.has-submenu .children, .widget.widget_categories ul li.has-submenu .uk-navbar-dropdown, .widget.widget_pages ul li.has-sub-category .children, .widget.widget_pages ul li.has-sub-category .uk-navbar-dropdown, .widget.widget_pages ul li.page_item_has_children .children, .widget.widget_pages ul li.page_item_has_children .uk-navbar-dropdown, .widget.widget_pages ul li.has-submenu .children, .widget.widget_pages ul li.has-submenu .uk-navbar-dropdown, .widget.widget_meta ul li.has-sub-category .children, .widget.widget_meta ul li.has-sub-category .uk-navbar-dropdown, .widget.widget_meta ul li.page_item_has_children .children, .widget.widget_meta ul li.page_item_has_children .uk-navbar-dropdown, .widget.widget_meta ul li.has-submenu .children, .widget.widget_meta ul li.has-submenu .uk-navbar-dropdown, .widget.widget_recent_entries ul li.has-sub-category .children, .widget.widget_recent_entries ul li.has-sub-category .uk-navbar-dropdown, .widget.widget_recent_entries ul li.page_item_has_children .children, .widget.widget_recent_entries ul li.page_item_has_children .uk-navbar-dropdown, .widget.widget_recent_entries ul li.has-submenu .children, .widget.widget_recent_entries ul li.has-submenu .uk-navbar-dropdown, .widget.widget_nav_menu ul li.has-sub-category .children, .widget.widget_nav_menu ul li.has-sub-category .uk-navbar-dropdown, .widget.widget_nav_menu ul li.page_item_has_children .children, .widget.widget_nav_menu ul li.page_item_has_children .uk-navbar-dropdown, .widget.widget_nav_menu ul li.has-submenu .children, .widget.widget_nav_menu ul li.has-submenu .uk-navbar-dropdown {
  margin: 10px 0;
  display: block;
  position: unset;
  background: unset;
  box-shadow: none;
  width: unset;
  padding: unset;
  color: inherit;
  box-sizing: unset;
}
.widget .wp-block-latest-posts li.has-sub-category .children li a, .widget .wp-block-latest-posts li.has-sub-category .uk-navbar-dropdown li a, .widget .wp-block-latest-posts li.page_item_has_children .children li a, .widget .wp-block-latest-posts li.page_item_has_children .uk-navbar-dropdown li a, .widget .wp-block-latest-posts li.has-submenu .children li a, .widget .wp-block-latest-posts li.has-submenu .uk-navbar-dropdown li a, .widget .wp-block-archives li.has-sub-category .children li a, .widget .wp-block-archives li.has-sub-category .uk-navbar-dropdown li a, .widget .wp-block-archives li.page_item_has_children .children li a, .widget .wp-block-archives li.page_item_has_children .uk-navbar-dropdown li a, .widget .wp-block-archives li.has-submenu .children li a, .widget .wp-block-archives li.has-submenu .uk-navbar-dropdown li a, .widget .wp-block-categories li.has-sub-category .children li a, .widget .wp-block-categories li.has-sub-category .uk-navbar-dropdown li a, .widget .wp-block-categories li.page_item_has_children .children li a, .widget .wp-block-categories li.page_item_has_children .uk-navbar-dropdown li a, .widget .wp-block-categories li.has-submenu .children li a, .widget .wp-block-categories li.has-submenu .uk-navbar-dropdown li a, .widget.widget_archive ul li.has-sub-category .children li a, .widget.widget_archive ul li.has-sub-category .uk-navbar-dropdown li a, .widget.widget_archive ul li.page_item_has_children .children li a, .widget.widget_archive ul li.page_item_has_children .uk-navbar-dropdown li a, .widget.widget_archive ul li.has-submenu .children li a, .widget.widget_archive ul li.has-submenu .uk-navbar-dropdown li a, .widget.widget_categories ul li.has-sub-category .children li a, .widget.widget_categories ul li.has-sub-category .uk-navbar-dropdown li a, .widget.widget_categories ul li.page_item_has_children .children li a, .widget.widget_categories ul li.page_item_has_children .uk-navbar-dropdown li a, .widget.widget_categories ul li.has-submenu .children li a, .widget.widget_categories ul li.has-submenu .uk-navbar-dropdown li a, .widget.widget_pages ul li.has-sub-category .children li a, .widget.widget_pages ul li.has-sub-category .uk-navbar-dropdown li a, .widget.widget_pages ul li.page_item_has_children .children li a, .widget.widget_pages ul li.page_item_has_children .uk-navbar-dropdown li a, .widget.widget_pages ul li.has-submenu .children li a, .widget.widget_pages ul li.has-submenu .uk-navbar-dropdown li a, .widget.widget_meta ul li.has-sub-category .children li a, .widget.widget_meta ul li.has-sub-category .uk-navbar-dropdown li a, .widget.widget_meta ul li.page_item_has_children .children li a, .widget.widget_meta ul li.page_item_has_children .uk-navbar-dropdown li a, .widget.widget_meta ul li.has-submenu .children li a, .widget.widget_meta ul li.has-submenu .uk-navbar-dropdown li a, .widget.widget_recent_entries ul li.has-sub-category .children li a, .widget.widget_recent_entries ul li.has-sub-category .uk-navbar-dropdown li a, .widget.widget_recent_entries ul li.page_item_has_children .children li a, .widget.widget_recent_entries ul li.page_item_has_children .uk-navbar-dropdown li a, .widget.widget_recent_entries ul li.has-submenu .children li a, .widget.widget_recent_entries ul li.has-submenu .uk-navbar-dropdown li a, .widget.widget_nav_menu ul li.has-sub-category .children li a, .widget.widget_nav_menu ul li.has-sub-category .uk-navbar-dropdown li a, .widget.widget_nav_menu ul li.page_item_has_children .children li a, .widget.widget_nav_menu ul li.page_item_has_children .uk-navbar-dropdown li a, .widget.widget_nav_menu ul li.has-submenu .children li a, .widget.widget_nav_menu ul li.has-submenu .uk-navbar-dropdown li a {
  font-size: 14px;
  padding: 0px;
}
.widget .wp-block-latest-posts li:last-child, .widget .wp-block-archives li:last-child, .widget .wp-block-categories li:last-child, .widget.widget_archive ul li:last-child, .widget.widget_categories ul li:last-child, .widget.widget_pages ul li:last-child, .widget.widget_meta ul li:last-child, .widget.widget_recent_entries ul li:last-child, .widget.widget_nav_menu ul li:last-child {
  margin-bottom: 0px;
}
.widget .wp-block-latest-posts li:before, .widget .wp-block-archives li:before, .widget .wp-block-categories li:before, .widget.widget_archive ul li:before, .widget.widget_categories ul li:before, .widget.widget_pages ul li:before, .widget.widget_meta ul li:before, .widget.widget_recent_entries ul li:before, .widget.widget_nav_menu ul li:before {
  top: 8px;
  content: "";
  position: absolute;
  left: -8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background-image: url(../images/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.widget .wp-block-latest-posts li.sub-nav-item:before, .widget .wp-block-archives li.sub-nav-item:before, .widget .wp-block-categories li.sub-nav-item:before, .widget.widget_archive ul li.sub-nav-item:before, .widget.widget_categories ul li.sub-nav-item:before, .widget.widget_pages ul li.sub-nav-item:before, .widget.widget_meta ul li.sub-nav-item:before, .widget.widget_recent_entries ul li.sub-nav-item:before, .widget.widget_nav_menu ul li.sub-nav-item:before {
  top: 4px;
  content: "";
  position: absolute;
  left: -8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background-image: url(../images/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
.widget .wp-block-latest-posts li ul li:before, .widget .wp-block-archives li ul li:before, .widget .wp-block-categories li ul li:before, .widget.widget_archive ul li ul li:before, .widget.widget_categories ul li ul li:before, .widget.widget_pages ul li ul li:before, .widget.widget_meta ul li ul li:before, .widget.widget_recent_entries ul li ul li:before, .widget.widget_nav_menu ul li ul li:before {
  top: 12px;
  content: "";
  position: absolute;
  left: -3px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background-image: url(../images/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
.widget .wp-block-latest-posts li a, .widget .wp-block-archives li a, .widget .wp-block-categories li a, .widget.widget_archive ul li a, .widget.widget_categories ul li a, .widget.widget_pages ul li a, .widget.widget_meta ul li a, .widget.widget_recent_entries ul li a, .widget.widget_nav_menu ul li a {
  color: #253241;
}
.widget .wp-block-latest-posts li .fl-archive-post-count, .widget .wp-block-latest-posts li .fl-categories-post-count, .widget .wp-block-archives li .fl-archive-post-count, .widget .wp-block-archives li .fl-categories-post-count, .widget .wp-block-categories li .fl-archive-post-count, .widget .wp-block-categories li .fl-categories-post-count, .widget.widget_archive ul li .fl-archive-post-count, .widget.widget_archive ul li .fl-categories-post-count, .widget.widget_categories ul li .fl-archive-post-count, .widget.widget_categories ul li .fl-categories-post-count, .widget.widget_pages ul li .fl-archive-post-count, .widget.widget_pages ul li .fl-categories-post-count, .widget.widget_meta ul li .fl-archive-post-count, .widget.widget_meta ul li .fl-categories-post-count, .widget.widget_recent_entries ul li .fl-archive-post-count, .widget.widget_recent_entries ul li .fl-categories-post-count, .widget.widget_nav_menu ul li .fl-archive-post-count, .widget.widget_nav_menu ul li .fl-categories-post-count {
  position: absolute;
  top: 10px;
  right: 0;
  min-width: 23px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
  color: #777777;
  border-radius: 3px;
  transition: 0.3s ease-in;
  font-size: 16px;
}
.widget .wp-block-latest-posts li .fl-archive-post-count:before, .widget .wp-block-latest-posts li .fl-categories-post-count:before, .widget .wp-block-archives li .fl-archive-post-count:before, .widget .wp-block-archives li .fl-categories-post-count:before, .widget .wp-block-categories li .fl-archive-post-count:before, .widget .wp-block-categories li .fl-categories-post-count:before, .widget.widget_archive ul li .fl-archive-post-count:before, .widget.widget_archive ul li .fl-categories-post-count:before, .widget.widget_categories ul li .fl-archive-post-count:before, .widget.widget_categories ul li .fl-categories-post-count:before, .widget.widget_pages ul li .fl-archive-post-count:before, .widget.widget_pages ul li .fl-categories-post-count:before, .widget.widget_meta ul li .fl-archive-post-count:before, .widget.widget_meta ul li .fl-categories-post-count:before, .widget.widget_recent_entries ul li .fl-archive-post-count:before, .widget.widget_recent_entries ul li .fl-categories-post-count:before, .widget.widget_nav_menu ul li .fl-archive-post-count:before, .widget.widget_nav_menu ul li .fl-categories-post-count:before {
  content: "(";
}
.widget .wp-block-latest-posts li .fl-archive-post-count:after, .widget .wp-block-latest-posts li .fl-categories-post-count:after, .widget .wp-block-archives li .fl-archive-post-count:after, .widget .wp-block-archives li .fl-categories-post-count:after, .widget .wp-block-categories li .fl-archive-post-count:after, .widget .wp-block-categories li .fl-categories-post-count:after, .widget.widget_archive ul li .fl-archive-post-count:after, .widget.widget_archive ul li .fl-categories-post-count:after, .widget.widget_categories ul li .fl-archive-post-count:after, .widget.widget_categories ul li .fl-categories-post-count:after, .widget.widget_pages ul li .fl-archive-post-count:after, .widget.widget_pages ul li .fl-categories-post-count:after, .widget.widget_meta ul li .fl-archive-post-count:after, .widget.widget_meta ul li .fl-categories-post-count:after, .widget.widget_recent_entries ul li .fl-archive-post-count:after, .widget.widget_recent_entries ul li .fl-categories-post-count:after, .widget.widget_nav_menu ul li .fl-archive-post-count:after, .widget.widget_nav_menu ul li .fl-categories-post-count:after {
  content: ")";
}
.widget.widget_recent_comments #recentcomments .recentcomments {
  margin-bottom: 1em;
}
.widget.widget_recent_comments #recentcomments .recentcomments:last-child {
  margin-bottom: 0px;
}
.widget .wp-block-latest-comments .wp-block-latest-comments__comment-meta a, .widget .wp-block-latest-comments .recentcomments a, .widget.widget_recent_comments .wp-block-latest-comments__comment-meta a, .widget.widget_recent_comments .recentcomments a {
  color: #222;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.widget .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover, .widget .wp-block-latest-comments .recentcomments a:hover, .widget.widget_recent_comments .wp-block-latest-comments__comment-meta a:hover, .widget.widget_recent_comments .recentcomments a:hover {
  color: #ff006c;
}
.widget.widget_rss a {
  transition: all 0.3s ease-in-out;
  color: #490083;
  font-weight: 600;
}
.widget.widget_rss a:hover {
  text-decoration: underline;
  color: #ff006c;
}

/*-------------------------------------------------------------------

==  Post Share Icon

-------------------------------------------------------------------*/
.fl-contact-form label {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
}
.fl-contact-form input:hover, .fl-contact-form input:focus, .fl-contact-form input:active {
  border-color: transparent !important;
}
.fl-contact-form .textarea-container textarea {
  border-radius: 0;
}
.fl-contact-form .textarea-container textarea:hover, .fl-contact-form .textarea-container textarea:focus, .fl-contact-form .textarea-container textarea:active {
  border-color: transparent !important;
}
.fl-contact-form .submit-btn-container {
  margin-top: 10px;
}

/*-------------------------------------------------------------------

==  Post Share Icon

-------------------------------------------------------------------*/
.post-share-icon a.vk:after {
  background: #4a76a8;
}
.post-share-icon a.pin:after {
  background: #e60023;
}
.post-share-icon a.red:after {
  background: #ff4502;
}
.post-share-icon a.lin:after {
  background: #1785b0;
}
.post-share-icon a.goglp:after {
  background: #d44132;
}
.post-share-icon a.twi:after {
  background: #41abe1;
}
.post-share-icon a.fb:after {
  background: #4267b2;
}

.post-share-icon {
  display: inline-flex;
  z-index: -1;
  position: absolute;
  bottom: 45px;
  right: 15px;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}
.post-share-icon a {
  opacity: 0;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 4px 0;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  transform: translateY(7px);
  transition: opacity 0.1s ease 0s, transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, color 0.3s ease;
}
.post-share-icon a i {
  z-index: 2;
}
.post-share-icon a:hover {
  transition: color 0.3s ease;
  color: #fff !important;
}
.post-share-icon a:hover:after {
  transform: translate(0) scale(1.2);
}
.post-share-icon a:after {
  transition: transform 0.3s ease 0s;
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  transform: translate(0, 35px);
  content: "";
}
.post-share-icon a:nth-child(1) {
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.post-share-icon a:nth-child(2) {
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
}
.post-share-icon a:nth-child(3) {
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, -webkit-transform 0.3s ease 0.2s;
}
.post-share-icon a:nth-child(4) {
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
}
.post-share-icon a:nth-child(5) {
  transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s, -webkit-transform 0.3s ease 0.3s;
}
.post-share-icon a:nth-child(6) {
  transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s, -webkit-transform 0.3s ease 0.3s;
}
.post-share-icon a:nth-child(7) {
  transition: opacity 0.3s ease 0.6s, transform 0.3s ease 0.6s, -webkit-transform 0.3s ease 0.3s;
}
.post-share-icon.opened {
  z-index: 1;
}
.post-share-icon.opened a {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------------------------------------

==  Pagination

-------------------------------------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 58px;
  height: 58px;
  background: #fff;
  border: 1px solid #d9d9d9;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #515151;
  -webkit-transition: color 0.3s, border 0.3s, background 0.3s;
  -o-transition: color 0.3s, border 0.3s, background 0.3s;
  transition: color 0.3s, border 0.3s, background 0.3s;
}
.pagination .page-numbers svg.tm_pagination_prev {
  transform: rotateY(180deg);
}
.pagination .page-numbers.current {
  background: #ec6c23;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
}
.pagination .page-numbers:hover {
  background: #ec6c23;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
}
.pagination .page-numbers:hover svg path {
  stroke: #fff;
}

/*-------------------------------------------------------------------

==  Footer

-------------------------------------------------------------------*/
nav,
footer,
header,
aside {
  display: block;
}

footer .widget.widget_templines_theme_helper_social_profiles ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
footer .widget.widget_templines_theme_helper_social_profiles ul li a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(81, 81, 81, 0.4);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
footer .widget.widget_templines_theme_helper_social_profiles ul li a:hover {
  background-color: #f5ab1a !important;
}

.tm_footer_subscribe_style_three + .tm_footer_style_style_two .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item .footer-content__list-link:hover, .tm_footer_subscribe_style_three + .tm_footer_style_style_two .widget ul li a:hover span {
  color: #f5ab1a;
}

footer.no_top_footer.tm_footer_style_style_one.footer {
  padding-top: 0;
}

.tm_footer_style_style_one .footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tm_footer_style_style_one .biggest-container {
  max-width: 1950px;
  margin: 0 auto;
  padding: 0 0px;
}
.tm_footer_style_style_one .footer-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}
.tm_footer_style_style_one.footer {
  background: #202020;
  padding-top: 140px;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one.footer {
    padding-top: calc(80px + 60 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer__support {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  margin-bottom: 80px;
  font-size: 120px;
  line-height: 131px;
  text-align: center;
  display: block;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer__support {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer__support {
    font-size: calc(40px + 80 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer__support {
    line-height: calc(50px + 81 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content {
  padding-bottom: 80px;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content {
    padding-bottom: calc(30px + 50 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 110px;
}
.tm_footer_style_style_one .footer-content__inner .widget {
  background-color: transparent;
}
.tm_footer_style_style_one .footer-content__inner .widget .widget--title {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #fff;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_media_image {
  max-width: 163px;
  margin-bottom: 30px;
  padding: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_text {
  padding: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_text .textwidget {
  padding: 0;
  margin: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_text .textwidget p {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 330px;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu {
  padding: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul {
  padding: 0;
  margin: 0;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  max-width: 255px;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li {
  margin-bottom: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li:before {
  content: none;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link:after {
  content: none;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link span {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link span:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 100%;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link:hover {
  color: #ff006c;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link:hover span {
  color: #ff006c;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li .uk-navbar-dropdown {
  left: -15px;
  position: relative;
  margin: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li .uk-navbar-dropdown ul li {
  margin-bottom: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li .uk-navbar-dropdown ul li a {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li .uk-navbar-dropdown ul li a:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 100%;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_templines_theme_helper_contact_phone_number {
  padding: 0;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_templines_theme_helper_contact_phone_number .widget--title {
  margin-bottom: 30px;
}
.tm_footer_style_style_one .footer-content__inner .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item__contact {
  margin-bottom: 20px;
}
.tm_footer_style_style_one .footer-content__inner .widget + .widget {
  margin-top: 0;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__inner {
    gap: calc(30px + 80 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content__list {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 255px;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__list {
    gap: calc(10px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content__list:last-child .footer-content__list-link {
  font-weight: 300;
}
.tm_footer_style_style_one .footer-content__list-title {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #fff;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__list-title {
    font-size: calc(16px + 8 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__list-title {
    line-height: calc(22px + 14 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__list-title {
    margin-bottom: calc(5px + 5 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content__list-link {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
.tm_footer_style_style_one .footer-content__list_with_dots .footer-content__list-link {
  margin-left: 15px;
}
.tm_footer_style_style_one .footer-content__list_with_dots .footer-content__list-link::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 100%;
}
.tm_footer_style_style_one .footer-content__list-item i {
  font-size: 20px;
  margin-left: 0;
  position: absolute;
  color: #fff;
  left: 0;
  top: 3px;
}
.tm_footer_style_style_one .footer-content__contacts .footer-content__list-item__contact {
  position: relative;
  padding-left: 37px;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__list-link {
    font-size: calc(14px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content__list-link {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content__list-link:hover {
  color: #ff006c;
}
.tm_footer_style_style_one .footer-content-box {
  margin-right: auto;
}
.tm_footer_style_style_one .footer-content-box__logo {
  margin-bottom: 30px;
  display: inline-block;
  display: block;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content-box__logo {
    margin-bottom: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-content-box__text {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 330px;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content-box__text {
    font-size: calc(14px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-content-box__text {
    line-height: calc(20px + 16 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(217, 217, 217, 0.2);
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-bottom {
    padding-top: calc(30px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-bottom {
    padding-bottom: calc(30px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tm_footer_style_style_one .footer-bottom__copy {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-bottom__copy {
    font-size: calc(12px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-bottom__copy {
    line-height: calc(18px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-bottom__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.tm_footer_style_style_one .footer-bottom__socials-link {
  width: 40px;
  height: 40px;
  background: rgba(81, 81, 81, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.tm_footer_style_style_one .footer-bottom__socials-link i {
  color: #fff;
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-bottom__socials-link {
    width: calc(35px + 5 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_style_style_one .footer-bottom__socials-link {
    height: calc(35px + 5 * (100vw - 360px) / 1560);
  }
}
.tm_footer_style_style_one .footer-bottom__socials-link:hover {
  background: #ff006c;
}
@media (max-width: 900px) {
  .tm_footer_style_style_one .footer-content__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .tm_footer_style_style_one .footer-content-box {
    margin-left: auto;
    margin-right: auto;
  }
  .tm_footer_style_style_one .footer-content__list {
    padding-top: 0;
  }
}
@media (max-width: 550px) {
  .tm_footer_style_style_one .footer-bottom__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .tm_footer_style_style_one .footer-content__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
  .tm_footer_style_style_one .footer-content-box {
    margin-left: unset;
  }
  .tm_footer_style_style_one .footer-bottom__socials {
    margin-right: auto;
  }
  .tm_footer_style_style_one .footer__support {
    text-align: left;
  }
  .tm_footer_style_style_one .footer__support {
    display: none;
  }
}

.tm_footer_style_style_two .footer__top.footer-top .mc4wp-form {
  width: 100%;
  max-width: 735px;
}
.tm_footer_style_style_two .footer__top.footer-top .mc4wp-form .mc4wp-form-fields {
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  width: 100%;
  max-width: 735px;
}
.tm_footer_style_style_two .footer__top.footer-top .mc4wp-form .mc4wp-form-fields input.subscribe__form-input {
  width: 100%;
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
  border: 1px solid #d9d9d9;
  border-right: unset;
  padding-top: 25px;
  padding-right: 35px;
  padding-bottom: 25px;
  padding-left: 35px;
  height: auto;
}
.tm_footer_style_style_two .footer__top.footer-top .mc4wp-form .mc4wp-form-fields button.subscribe__form-btn {
  padding-top: 28px;
  padding-right: 34px;
  padding-bottom: 28px;
  padding-left: 34px;
  background: #ed2222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 82px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  width: 100%;
  max-width: 205px;
}
.tm_footer_style_style_two .footer__top.footer-top .mc4wp-form .mc4wp-form-fields button.subscribe__form-btn:hover {
  background: #1a99f5;
}
.tm_footer_style_style_two .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item .footer-content__list-link {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.16px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  line-height: 30px;
}
.tm_footer_style_style_two .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item .footer-content__list-link:hover {
  color: #ed2222;
}
.tm_footer_style_style_two .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item i {
  display: none;
}
.tm_footer_style_style_two .widget ul li {
  padding-left: 0px !important;
}
.tm_footer_style_style_two .widget ul li:before {
  content: none;
}
.tm_footer_style_style_two .widget ul li a {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.16px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  line-height: 30px;
}
.tm_footer_style_style_two .widget ul li a:hover {
  color: #ed2222 !important;
}
.tm_footer_style_style_two .widget--title {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-size: 20px;
  line-height: 28px;
}
.tm_footer_style_style_two.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tm_footer_style_style_two .container {
  margin: 0 auto;
  padding: 0 15px;
}
.tm_footer_style_style_two .big-container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 15px;
}
.tm_footer_style_style_two .heading__text {
  color: #ed2222;
  font-weight: 300;
  letter-spacing: 0.16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .heading__text {
    gap: calc(10px + 10 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .heading__text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .heading__text {
    line-height: calc(26px + 4 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .heading__text {
    margin-bottom: calc(10px + 5 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .heading__text span {
  width: 100px;
  background: #d9d9d9;
  height: 1px;
}
.tm_footer_style_style_two .heading__title {
  color: #202020;
  font-weight: 700;
  letter-spacing: -0.92px;
  text-transform: capitalize;
  font-size: 46px;
  line-height: 50px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .heading__title {
    font-size: calc(32px + 14 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .heading__title {
    line-height: calc(38px + 12 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .btn {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 205px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 60px;
  -webkit-transition: padding-left 0.3s, border 0.3s;
  -o-transition: padding-left 0.3s, border 0.3s;
  transition: padding-left 0.3s, border 0.3s;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 2;
}
.tm_footer_style_style_two .btn span:first-child {
  position: absolute;
  height: 49px;
  width: 58px;
  min-width: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  left: 0;
  z-index: 1;
}
.tm_footer_style_style_two .btn span:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
}
.tm_footer_style_style_two .btn span:first-child::after {
  content: "";
  width: 20px;
  height: 120%;
  position: absolute;
  top: -10px;
  right: -9px;
  bottom: -10px;
  background: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  transform: rotate(-17deg);
  -webkit-transition: right 0.3s, width 0.3s, background 0.3s, -webkit-transform 0.3s;
  transition: right 0.3s, width 0.3s, background 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, right 0.3s, width 0.3s, background 0.3s;
  transition: transform 0.3s, right 0.3s, width 0.3s, background 0.3s;
  transition: transform 0.3s, right 0.3s, width 0.3s, background 0.3s, -webkit-transform 0.3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
}
.tm_footer_style_style_two .btn span:first-child svg {
  width: 20px;
  height: 20px;
  z-index: 1;
  margin-right: 12px;
  left: 50%;
  -webkit-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}
.tm_footer_style_style_two .btn span:first-child svg path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}
.tm_footer_style_style_two .btn span:last-child {
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_footer_style_style_two .btn:hover {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #ed2222;
}
.tm_footer_style_style_two .btn:hover span:first-child {
  width: 100%;
  position: absolute;
}
.tm_footer_style_style_two .btn:hover span:first-child::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  right: -20px;
  background: #ed2222;
  width: 115px;
}
.tm_footer_style_style_two .btn:hover span:first-child svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 82%;
}
.tm_footer_style_style_two .btn:hover span:first-child svg path {
  stroke: #fff;
}
.tm_footer_style_style_two .btn:hover span:first-child::before {
  background: #ed2222;
}
.tm_footer_style_style_two .btn:hover span:last-child {
  color: #fff;
}
.tm_footer_style_style_two .section-top {
  background: url(../images/section-top-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 800px;
  background-size: cover;
  padding-top: 260px;
  padding-bottom: 280px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .section-top {
    min-height: calc(500px + 300 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .section-top {
    padding-top: calc(160px + 100 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .section-top {
    padding-bottom: calc(100px + 180 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .section-top .container {
  max-width: 1200px;
}
.tm_footer_style_style_two .section-top__title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.92px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-size: 46px;
  line-height: 50px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .section-top__title {
    margin-bottom: calc(25px + 10 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .section-top__title {
    font-size: calc(32px + 14 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .section-top__title {
    line-height: calc(40px + 10 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two.footer {
  padding-top: 70px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer {
    padding-top: calc(40px + 30 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two.footer .container {
  max-width: 1350px;
}
.tm_footer_style_style_two .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 90px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer__inner {
    margin-bottom: calc(30px + 60 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer__inner {
    gap: calc(30px + 95 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two.footer .heading {
  min-width: 40%;
}
.tm_footer_style_style_two.footer .heading__text {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer .heading__text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer .heading__text {
    line-height: calc(26px + 4 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two.footer .heading__title {
  color: #fff;
  font-size: 38px;
  line-height: 40px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer .heading__title {
    font-size: calc(28px + 10 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer .heading__title {
    line-height: calc(32px + 8 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer__copy {
  border-top: 1px solid rgba(217, 217, 217, 0.1);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.16px;
  padding-top: 44px;
  padding-bottom: 44px;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer__copy {
    padding-top: calc(20px + 24 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer__copy {
    padding-bottom: calc(20px + 24 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer__copy {
    font-size: calc(14px + 2 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer__copy {
    line-height: calc(26px + 4 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-top {
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
  margin-bottom: 85px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 70px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-top {
    margin-bottom: calc(50px + 35 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-top {
    padding-bottom: calc(30px + 40 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-top {
    gap: calc(30px + 40 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-top .heading {
  max-width: 520px;
}
.tm_footer_style_style_two .footer-form {
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  width: 100%;
  max-width: 735px;
}
.tm_footer_style_style_two .footer-form__input {
  width: 100%;
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
  border: 1px solid #d9d9d9;
  border-right: unset;
  padding-top: 25px;
  padding-right: 35px;
  padding-bottom: 25px;
  padding-left: 35px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__input {
    padding-top: calc(15px + 10 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__input {
    padding-right: calc(20px + 15 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__input {
    padding-bottom: calc(15px + 10 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__input {
    padding-left: calc(20px + 15 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-form__input::-webkit-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_two .footer-form__input::-moz-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_two .footer-form__input:-ms-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_two .footer-form__input::-ms-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_two .footer-form__input::placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_two .footer-form__button {
  padding-top: 28px;
  padding-right: 34px;
  padding-bottom: 28px;
  padding-left: 34px;
  background: #ed2222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 82px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__button {
    padding-top: calc(15px + 13 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__button {
    padding-right: calc(20px + 14 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__button {
    padding-bottom: calc(15px + 13 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__button {
    padding-left: calc(20px + 14 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-form__button {
    height: calc(62px + 20 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-form__button:hover {
  background: #1a99f5;
}
.tm_footer_style_style_two .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
  max-width: 325px;
  width: 100%;
}
.tm_footer_style_style_two .footer-box__text {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.16px;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-box__text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-box__text {
    line-height: calc(24px + 6 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-menu {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  display: block;
}
.tm_footer_style_style_two .footer-menu__list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.tm_footer_style_style_two .footer-menu__list-item:last-child .footer-menu__list-link {
  margin-bottom: 0;
}
.tm_footer_style_style_two .footer-menu__list-title {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-menu__list-title {
    margin-bottom: calc(15px + 20 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-menu__list-title {
    font-size: calc(18px + 2 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-menu__list-title {
    line-height: calc(24px + 4 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-menu__list-link {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.16px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-menu__list-link {
    font-size: calc(14px + 2 * (100vw - 360px) / 1360);
  }
}
@media (max-width: 1720px) {
  .tm_footer_style_style_two .footer-menu__list-link {
    line-height: calc(26px + 4 * (100vw - 360px) / 1360);
  }
}
.tm_footer_style_style_two .footer-menu__list-link:hover {
  color: #ed2222;
}
@media (max-width: 1200px) {
  .tm_footer_style_style_two .footer-menu {
    padding-right: 0;
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_two .footer-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tm_footer_style_style_two .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .tm_footer_style_style_two.footer .heading__text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tm_footer_style_style_two .footer__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_style_style_two .footer-menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_style_style_two .footer-menu__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .tm_footer_style_style_two .footer-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_style_style_two .footer-form__button {
    width: 100%;
  }
}
.tm_footer_style_style_two .footer__inner .footer__box {
  margin-right: 125px;
}
.tm_footer_style_style_two .footer__inner .widget {
  background-color: transparent;
  padding: 0;
}
.tm_footer_style_style_two .footer__inner .widget.widget_media_image {
  max-width: 161px;
}
.tm_footer_style_style_two .footer__inner .widget.widget_text .textwidget {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.16px;
  font-size: 16px;
  line-height: 30px;
}
.tm_footer_style_style_two .footer__inner .widget + .widget {
  margin-top: 0;
}

.tm_footer_style_style_three.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tm_footer_style_style_three.footer {
  padding-top: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three.footer {
    padding-top: calc(60px + 40 * (100vw - 360px) / 1320);
  }
}
.tm_footer_style_style_three.footer .container {
  max-width: 1350px;
}
.tm_footer_style_style_three .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 125px;
  margin-bottom: 80px;
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer__inner {
    gap: calc(30px + 95 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer__inner {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1320);
  }
}
.tm_footer_style_style_three.footer .heading__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 12px;
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three.footer .heading__text {
    font-size: calc(14px + 2 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three.footer .heading__text {
    line-height: calc(26px + 4 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three.footer .heading__text {
    margin-bottom: calc(10px + 2 * (100vw - 360px) / 1320);
  }
}
.tm_footer_style_style_three.footer .heading__title {
  color: #fff;
  font-size: 38px;
  line-height: 40px;
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three.footer .heading__title {
    font-size: calc(24px + 14 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three.footer .heading__title {
    line-height: calc(30px + 10 * (100vw - 360px) / 1320);
  }
}
.tm_footer_style_style_three .footer__copy {
  border-top: 1px solid rgba(217, 217, 217, 0.1);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.16px;
  padding-top: 44px;
  padding-bottom: 44px;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer__copy {
    padding-top: calc(22px + 22 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer__copy {
    padding-bottom: calc(22px + 22 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer__copy {
    font-size: calc(14px + 2 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer__copy {
    line-height: calc(26px + 4 * (100vw - 360px) / 1320);
  }
}
.tm_footer_style_style_three .footer-top {
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
  margin-bottom: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tm_footer_style_style_three .footer-form {
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  width: 100%;
  max-width: 735px;
}
.tm_footer_style_style_three .footer-form__input {
  width: 100%;
  padding: 25px 35px;
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
  border: 1px solid #d9d9d9;
  border-right: unset;
}
.tm_footer_style_style_three .footer-form__input::-webkit-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_three .footer-form__input::-moz-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_three .footer-form__input:-ms-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_three .footer-form__input::-ms-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_three .footer-form__input::placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_three .footer-form__button {
  padding: 28px 34px;
  background: #ed2222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 82px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
}
.tm_footer_style_style_three .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
  max-width: 325px;
}
.tm_footer_style_style_three .footer-box__text {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_style_style_three .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding-right: 95px;
}
.tm_footer_style_style_three .footer-menu__list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 230px;
}
.tm_footer_style_style_three .footer-menu__list-item:last-child .footer-menu__list-link {
  margin-bottom: 0;
}
.tm_footer_style_style_three .footer-menu__list-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  margin-bottom: 35px;
}
.tm_footer_style_style_three .footer-menu__list-link {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 15px;
  display: block;
}
.tm_footer_style_style_three .footer-menu__list-link:hover {
  color: #ed2222;
}
.tm_footer_style_style_three .footer-subscribe {
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 30px;
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer-subscribe {
    padding-top: calc(30px + 40 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_style_style_three .footer-subscribe {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1320);
  }
}
.tm_footer_style_style_three .footer-subscribe .heading__text {
  color: #f5ab1a;
}
.tm_footer_style_style_three .footer-subscribe .footer-form__button {
  background: #490083;
}
.tm_footer_style_style_three .footer-subscribe .heading {
  max-width: 400px;
}
.tm_footer_style_style_three .footer-subscribe .footer-form__button {
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.tm_footer_style_style_three .footer-subscribe .footer-form__button:hover {
  background: #f5ab1a;
}
@media (max-width: 1200px) {
  .tm_footer_style_style_three .footer-menu {
    padding-right: unset;
  }
  .tm_footer_style_style_three .footer-subscribe__form {
    max-width: 600px;
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_three .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .tm_footer_style_style_three .footer-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tm_footer_style_style_three .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1050px) {
  .tm_footer_style_style_three .footer-subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_style_style_three.footer .heading__title {
    text-align: center;
  }
  .tm_footer_style_style_three .footer-subscribe .heading {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .tm_footer_style_style_three .subscribe__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_style_style_three .subscribe__form-btn {
    width: 100%;
  }
  .tm_footer_style_style_three .footer-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_style_style_three .footer-form__button {
    width: 100%;
  }
  .tm_footer_style_style_three .subscribe__form-input {
    padding: 15px;
  }
  .tm_footer_style_style_three .subscribe__form-btn {
    padding: 20px;
    height: unset;
  }
  .tm_footer_style_style_three .footer-form__input {
    padding: 15px;
  }
  .tm_footer_style_style_three .footer-form__button {
    padding: 20px;
    height: unset;
  }
}

.tm_footer_subscribe_style_one.main__subscribe .container {
  padding-right: 0px;
  padding-left: 0px;
}
.tm_footer_subscribe_style_one.main__subscribe .subscribe__inner form {
  max-width: 600px;
  width: 100%;
}
.tm_footer_subscribe_style_one.main__subscribe .subscribe__inner form .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  max-width: 600px;
  width: 100%;
  background: #fff;
}
.tm_footer_subscribe_style_one.main__subscribe .subscribe__inner form .mc4wp-form-fields .subscribe__form-input {
  height: 85px;
}
.tm_footer_subscribe_style_one.main__subscribe .subscribe__inner form .mc4wp-form-fields .subscribe__form-btn {
  height: 85px;
}
.tm_footer_subscribe_style_one.main__subscribe .subscribe__inner form .mc4wp-form-fields .subscribe__form-btn span {
  font-size: 19px;
}
.tm_footer_subscribe_style_one.subscribe {
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
}
.tm_footer_subscribe_style_one .subscribe-with-map {
  margin-top: -200px;
}
.tm_footer_subscribe_style_one .subscribe__inner {
  background: #490083;
  padding-top: 55px;
  padding-right: 60px;
  padding-bottom: 55px;
  padding-left: 65px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__inner {
    padding-top: calc(30px + 25 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__inner {
    padding-right: calc(15px + 45 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__inner {
    padding-bottom: calc(30px + 25 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__inner {
    padding-left: calc(15px + 50 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__inner {
    gap: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__box-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__box-text {
    font-size: calc(14px + 4 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__box-text {
    line-height: calc(20px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__box-text {
    margin-bottom: calc(10px + 5 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  display: inline-block;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__title {
    font-size: calc(25px + 13 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__title {
    line-height: calc(32px + 16 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__title span {
  color: #ec6c23;
}
.tm_footer_subscribe_style_one .subscribe__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  max-width: 600px;
  width: 100%;
  background: #fff;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form {
    padding: calc(10px + 2 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__form-input {
  width: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
  padding-top: 25px;
  padding-right: 35px;
  padding-bottom: 25px;
  padding-left: 35px;
  border: 1px solid #d9d9d9;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input {
    padding-top: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input {
    padding-right: calc(15px + 20 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input {
    padding-bottom: calc(15px + 10 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input {
    padding-left: calc(15px + 20 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__form-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
}
.tm_footer_subscribe_style_one .subscribe__form-input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
}
.tm_footer_subscribe_style_one .subscribe__form-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
}
.tm_footer_subscribe_style_one .subscribe__form-input::-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
}
.tm_footer_subscribe_style_one .subscribe__form-input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #515151;
  letter-spacing: 0.01em;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input::-webkit-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input::-moz-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input:-ms-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input::-ms-input-placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input::placeholder {
    font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-input::-webkit-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input::-moz-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input:-ms-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input::-ms-input-placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
  .tm_footer_subscribe_style_one .subscribe__form-input::placeholder {
    line-height: calc(20px + 10 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__form-btn {
  padding-top: 30px;
  padding-right: 35px;
  padding-bottom: 30px;
  padding-left: 35px;
  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;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  color: #fff;
  background: #de0a89;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 205px;
}
.tm_footer_subscribe_style_one .single-btn {
  padding-top: 27px;
  padding-right: 35px;
  padding-bottom: 27px;
  padding-left: 35px;
  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;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 11px;
  text-transform: capitalize;
  color: #fff;
  background: #de0a89;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
}
.tm_footer_subscribe_style_one .single-btn:hover {
  color: #fff;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    padding-top: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    padding-right: calc(15px + 20 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    padding-bottom: calc(15px + 15 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    padding-left: calc(15px + 20 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    font-size: calc(14px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    line-height: calc(0px + 25 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__form-btn svg {
  min-width: 27px;
  min-height: 19px;
  width: 27px;
  height: 19px;
  margin-right: 4px;
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn svg {
    min-width: calc(20px + 7 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn svg {
    min-height: calc(13px + 6 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn svg {
    width: calc(20px + 7 * (100vw - 360px) / 1560);
  }
}
@media (max-width: 1920px) {
  .tm_footer_subscribe_style_one .subscribe__form-btn svg {
    height: calc(13px + 6 * (100vw - 360px) / 1560);
  }
}
.tm_footer_subscribe_style_one .subscribe__form-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #490083;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tm_footer_subscribe_style_one .single-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #490083;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tm_footer_subscribe_style_one .single-btn:hover::before {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.tm_footer_subscribe_style_one .subscribe__form-btn:hover::before {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
@media (max-width: 800px) {
  .tm_footer_subscribe_style_one .subscribe__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .tm_footer_subscribe_style_one .subscribe__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_subscribe_style_one .subscribe__form-btn {
    width: 100%;
    max-width: 100%;
  }
  .tm_footer_subscribe_style_one .subscribe__form {
    gap: 15px;
  }
}

.tm_footer_subscribe_style_three .subscribe__inner .subscribe__heading .heading__title {
  margin-bottom: 0;
}
.tm_footer_subscribe_style_three .mc4wp-form {
  width: 100%;
  max-width: 600px;
}
.tm_footer_subscribe_style_three .mc4wp-form .mc4wp-form-fields {
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  width: 100%;
  max-width: 600px;
}
.tm_footer_subscribe_style_three .mc4wp-form .mc4wp-form-fields .subscribe__form-input {
  height: fit-content;
}
.tm_footer_subscribe_style_three.subscribe {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 45px;
  padding-bottom: 55px;
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe {
    padding-top: calc(30px + 15 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe {
    padding-bottom: calc(30px + 25 * (100vw - 360px) / 1320);
  }
}
.tm_footer_subscribe_style_three.subscribe .container {
  max-width: 1200px;
}
.tm_footer_subscribe_style_three.subscribe .heading {
  max-width: 470px;
}
.tm_footer_subscribe_style_three.subscribe .heading__text {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe .heading__text {
    margin-bottom: calc(10px + 2 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe .heading__text {
    font-size: calc(16px + 2 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe .heading__text {
    line-height: calc(18px + 2 * (100vw - 360px) / 1320);
  }
}
.tm_footer_subscribe_style_three.subscribe .heading__title {
  color: #fff;
  font-size: 38px;
  line-height: 42px;
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe .heading__title {
    font-size: calc(28px + 10 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three.subscribe .heading__title {
    line-height: calc(32px + 10 * (100vw - 360px) / 1320);
  }
}
.tm_footer_subscribe_style_three .subscribe__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three .subscribe__inner {
    gap: calc(30px + 70 * (100vw - 360px) / 1320);
  }
}
.tm_footer_subscribe_style_three .subscribe__form {
  background: #fff;
  -webkit-box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 50px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  width: 100%;
  max-width: 600px;
}
.tm_footer_subscribe_style_three .subscribe__form-input {
  width: 100%;
  padding: 25px 35px;
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
  border: 1px solid #d9d9d9;
  border-right: unset;
}
.tm_footer_subscribe_style_three .subscribe__form-input::-webkit-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_subscribe_style_three .subscribe__form-input::-moz-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_subscribe_style_three .subscribe__form-input:-ms-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_subscribe_style_three .subscribe__form-input::-ms-input-placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_subscribe_style_three .subscribe__form-input::placeholder {
  color: #515151;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.16px;
}
.tm_footer_subscribe_style_three .subscribe__form-btn {
  padding: 28px 34px;
  background: #f5ab1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 82px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  min-width: 210px;
}
.tm_footer_subscribe_style_three .subscribe__form-btn:hover {
  background: #490083;
}
@media (max-width: 1100px) {
  .tm_footer_subscribe_style_three .subscribe__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .tm_footer_subscribe_style_three .subscribe__heading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.tm_footer_subscribe_style_three .footer-subscribe {
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 30px;
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three .footer-subscribe {
    padding-top: calc(30px + 40 * (100vw - 360px) / 1320);
  }
}
@media (max-width: 1680px) {
  .tm_footer_subscribe_style_three .footer-subscribe {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1320);
  }
}
.tm_footer_subscribe_style_three .footer-subscribe .heading__text {
  color: #f5ab1a;
}
.tm_footer_subscribe_style_three .footer-subscribe .footer-form__button {
  background: #490083;
}
.tm_footer_subscribe_style_three .footer-subscribe .heading {
  max-width: 400px;
}
.tm_footer_subscribe_style_three .footer-subscribe .footer-form__button {
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.tm_footer_subscribe_style_three .footer-subscribe .footer-form__button:hover {
  background: #f5ab1a;
}
@media (max-width: 1050px) {
  .tm_footer_subscribe_style_three .footer-subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_subscribe_style_three .footer .heading__title {
    text-align: center;
  }
  .tm_footer_subscribe_style_three .footer-subscribe .heading {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .tm_footer_subscribe_style_three .subscribe__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_subscribe_style_three .subscribe__form-btn {
    width: 100%;
  }
  .tm_footer_subscribe_style_three .footer-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tm_footer_subscribe_style_three .footer-form__button {
    width: 100%;
  }
  .tm_footer_subscribe_style_three .subscribe__form-input {
    padding: 15px;
  }
  .tm_footer_subscribe_style_three .subscribe__form-btn {
    padding: 20px;
    height: unset;
  }
  .tm_footer_subscribe_style_three .footer-form__input {
    padding: 15px;
  }
  .tm_footer_subscribe_style_three .footer-form__button {
    padding: 20px;
    height: unset;
  }
}

.tm_footer_style_style_four .container {
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 15px;
}
.tm_footer_style_style_four .footer__inner .widget {
  background-color: transparent;
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
}
.tm_footer_style_style_four .footer__inner .widget .widget--title {
  padding-bottom: 25px;
  margin-bottom: 45px;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
}
.tm_footer_style_style_four .footer__inner .widget .widget--title span {
  width: 40px;
  height: 2px;
  display: block;
  background: #fff;
  margin-left: 13px;
  position: absolute;
  bottom: 0;
}
.tm_footer_style_style_four .footer__inner .widget .widget--title span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -13px;
  width: 8px;
  height: 8px;
  background: #f5ab1a;
}
.tm_footer_style_style_four .footer__inner .widget .widget--title span:after {
  content: "";
  position: absolute;
  bottom: -8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -13px;
  width: 8px;
  height: 8px;
  background: #f5ab1a;
}
.tm_footer_style_style_four .footer__inner .widget.widget_text {
  color: #fff;
}
.tm_footer_style_style_four .footer__inner .widget.widget_templines_theme_helper_social_profiles ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.tm_footer_style_style_four .footer__inner .widget.widget_templines_theme_helper_social_profiles ul li a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(81, 81, 81, 0.4);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.tm_footer_style_style_four .footer__inner .widget.widget_templines_theme_helper_social_profiles ul li a:hover {
  background-color: #f5ab1a !important;
}
.tm_footer_style_style_four .footer__inner .widget.widget_nav_menu ul li {
  padding-left: 0 !important;
  margin-bottom: 0;
}
.tm_footer_style_style_four .footer__inner .widget.widget_nav_menu ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_footer_style_style_four .footer__inner .widget.widget_nav_menu ul li a:hover {
  color: #f5ab1a;
}
.tm_footer_style_style_four .footer__inner .widget.widget_nav_menu ul li:before {
  content: none;
}
.tm_footer_style_style_four .footer__inner .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item i {
  display: none;
}
.tm_footer_style_style_four .footer__inner .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item .footer-content__list-link {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.tm_footer_style_style_four .footer__inner .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item .footer-content__list-link:hover {
  color: #f5ab1a;
}
.tm_footer_style_style_four.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tm_footer_style_style_four.footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four.footer {
    padding-top: calc(40px + 40 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four.footer {
    padding-bottom: calc(40px + 40 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer__support {
  color: rgba(245, 171, 26, 0.1);
  text-align: center;
  font-size: 120px;
  font-weight: 700;
  line-height: 130px;
  text-transform: capitalize;
  margin-left: -105px;
  margin-right: -105px;
  margin-bottom: 80px;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer__support {
    margin-bottom: calc(30px + 50 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 110px;
}
.tm_footer_style_style_four .footer__inner .footer__box {
  margin-right: 70px;
  width: 100%;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer__inner {
    gap: calc(50px + 20 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer__inner {
    margin-bottom: calc(30px + 80 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer__copy {
    font-size: calc(14px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer__copy {
    line-height: calc(24px + 4 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer__copy span {
  color: rgba(255, 255, 255, 0.8);
}
.tm_footer_style_style_four .footer-box {
  max-width: 325px;
}
.tm_footer_style_style_four .footer-box__title {
  padding-bottom: 25px;
  margin-bottom: 45px;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title {
    padding-bottom: calc(20px + 5 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title {
    margin-bottom: calc(30px + 15 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title {
    font-size: calc(20px + 4 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title {
    line-height: calc(30px + 6 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-box__title span {
  width: 40px;
  height: 2px;
  display: block;
  background: #fff;
  position: relative;
  margin-left: 13px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title span {
    height: calc(1px + 1 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-box__title span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -13px;
  width: 8px;
  height: 8px;
  background: #f5ab1a;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title span::before {
    width: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title span::before {
    height: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-box__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -13px;
  width: 8px;
  height: 8px;
  background: #f5ab1a;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title span::after {
    width: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__title span::after {
    height: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-box__text {
  color: #fff;
  letter-spacing: 0.36px;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__text {
    margin-bottom: calc(20px + 15 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__text {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-box__text {
    line-height: calc(26px + 4 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}
.tm_footer_style_style_four .footer-nav__list:nth-child(1) {
  max-width: 160px;
}
.tm_footer_style_style_four .footer-nav__list:nth-child(2) {
  max-width: 150px;
}
.tm_footer_style_style_four .footer-nav__list:nth-child(3) {
  max-width: 245px;
}
.tm_footer_style_style_four .footer-nav__list-title {
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 45px;
  padding-bottom: 25px;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title {
    margin-bottom: calc(30px + 15 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title {
    padding-bottom: calc(20px + 5 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title {
    font-size: calc(20px + 4 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title {
    line-height: calc(30px + 6 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-nav__list-title span {
  width: 40px;
  height: 2px;
  display: block;
  background: #fff;
  position: relative;
  margin-left: 13px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title span {
    height: calc(1px + 1 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-nav__list-title span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -13px;
  width: 8px;
  height: 8px;
  background: #f5ab1a;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title span::before {
    width: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title span::before {
    height: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-nav__list-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -13px;
  width: 8px;
  height: 8px;
  background: #f5ab1a;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title span::after {
    width: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-title span::after {
    height: calc(6px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-nav__list-link {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-link {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_style_style_four .footer-nav__list-link {
    line-height: calc(30px + 4 * (100vw - 360px) / 1150);
  }
}
.tm_footer_style_style_four .footer-nav__list-link:hover {
  color: #f5ab1a;
}
@media (max-width: 1700px) {
  .tm_footer_style_style_four .footer__support {
    font-size: 100px;
    line-height: 110px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1400px) {
  .tm_footer_style_style_four .footer__support {
    font-size: 90px;
    line-height: 100px;
  }
}
@media (max-width: 1400px) and (max-width: 1510px) {
  .tm_footer_style_style_four .footer__support {
    font-size: calc(40px + 50 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1400px) and (max-width: 1510px) {
  .tm_footer_style_style_four .footer__support {
    line-height: calc(50px + 50 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_four .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_four .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_four .footer-box__title span {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: unset;
  }
}
@media (max-width: 1100px) {
  .tm_footer_style_style_four .footer-nav__list-title span {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: unset;
  }
}

.tm_footer_subscribe_style_four .mc4wp-form {
  width: 100%;
  max-width: 660px;
}
.tm_footer_subscribe_style_four .mc4wp-form .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 660px;
}
.tm_footer_subscribe_style_four .container {
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 15px;
}
.tm_footer_subscribe_style_four.subscribe {
  padding-top: 90px;
  padding-bottom: 90px;
  background: url(../images/subscribe-bg.png), #f5ab1a;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four.subscribe {
    padding-top: calc(40px + 50 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four.subscribe {
    padding-bottom: calc(40px + 50 * (100vw - 360px) / 1150);
  }
}
.tm_footer_subscribe_style_four .subscribe__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 90px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.tm_footer_subscribe_style_four .subscribe__inner::after {
  content: "";
  position: absolute;
  background-image: url(../images/subscribe-bg-2.svg);
  width: 52px;
  height: 41px;
  top: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  right: -166px;
}
.tm_footer_subscribe_style_four .subscribe__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 430px;
  width: 100%;
}
.tm_footer_subscribe_style_four .subscribe__box-title {
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 0;
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__box-title {
    font-size: calc(28px + 8 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__box-title {
    line-height: calc(38px + 12 * (100vw - 360px) / 1150);
  }
}
.tm_footer_subscribe_style_four .subscribe__box-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.36px;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__box-text {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__box-text {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_subscribe_style_four .subscribe__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 660px;
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__form {
    gap: calc(10px + 10 * (100vw - 360px) / 1150);
  }
}
.tm_footer_subscribe_style_four .subscribe__form-input {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  padding: 0 12px 20px 12px;
  border: none;
  border-bottom: 2px solid #fff;
  background: unset;
  width: 100%;
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__form-input {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__form-input {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_subscribe_style_four .subscribe__form-input::-webkit-input-placeholder {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
}
.tm_footer_subscribe_style_four .subscribe__form-input::-moz-placeholder {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
}
.tm_footer_subscribe_style_four .subscribe__form-input:-ms-input-placeholder {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
}
.tm_footer_subscribe_style_four .subscribe__form-input::-ms-input-placeholder {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
}
.tm_footer_subscribe_style_four .subscribe__form-input::placeholder {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__form-input::-webkit-input-placeholder {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input::-moz-placeholder {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input:-ms-input-placeholder {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input::-ms-input-placeholder {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input::placeholder {
    font-size: calc(16px + 2 * (100vw - 360px) / 1150);
  }
}
@media (max-width: 1510px) {
  .tm_footer_subscribe_style_four .subscribe__form-input::-webkit-input-placeholder {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input::-moz-placeholder {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input:-ms-input-placeholder {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input::-ms-input-placeholder {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
  .tm_footer_subscribe_style_four .subscribe__form-input::placeholder {
    line-height: calc(28px + 2 * (100vw - 360px) / 1150);
  }
}
.tm_footer_subscribe_style_four .subscribe__form-btn {
  width: 100px;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 51px;
  width: 100px;
  min-width: 100px;
  position: relative;
  border: 1px solid #f5ab1a;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
  padding: 0;
}
.tm_footer_subscribe_style_four .subscribe__form-btn span {
  display: none;
}
.tm_footer_subscribe_style_four .subscribe__form-btn svg {
  margin-left: 30px;
  margin-right: auto;
  position: relative;
  z-index: 1;
  -webkit-transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
}
.tm_footer_subscribe_style_four .subscribe__form-btn svg path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
  fill: #222;
}
.tm_footer_subscribe_style_four .subscribe__form-btn::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  background: #f5ab1a;
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 20px;
  height: 100%;
  -webkit-transition: width 0.3s, -webkit-clip-path 0.3s;
  transition: width 0.3s, -webkit-clip-path 0.3s;
  -o-transition: width 0.3s, clip-path 0.3s;
  transition: width 0.3s, clip-path 0.3s;
  transition: width 0.3s, clip-path 0.3s, -webkit-clip-path 0.3s;
}
.tm_footer_subscribe_style_four .subscribe__form-btn:hover {
  border: 1px solid #fff;
}
.tm_footer_subscribe_style_four .subscribe__form-btn:hover::after {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.tm_footer_subscribe_style_four .subscribe__form-btn:hover svg {
  margin-left: 36.5px;
}
.tm_footer_subscribe_style_four .subscribe__form-btn:hover svg path {
  fill: #fff;
}
@media (max-width: 1250px) {
  .tm_footer_subscribe_style_four .subscribe__form {
    max-width: 400px;
  }
}
@media (max-width: 950px) {
  .tm_footer_subscribe_style_four .subscribe__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .tm_footer_subscribe_style_four .subscribe__box {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tm_footer_subscribe_style_four .subscribe__form {
    max-width: 600px;
  }
  .tm_footer_subscribe_style_four .subscribe__box {
    max-width: 100%;
  }
}

.footer.tm_footer_style_style_four {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-blend-mode: overlay !important;
}

@media only screen and (max-width: 1200px) {
  html .tm_footer_style_style_one .footer-content__inner .widget.widget_text .textwidget p,
  .tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link span,
  .tm_footer_style_style_one .footer-content__list-link {
    font-size: 14px;
  }
  .tm_footer_style_style_one .footer-content__inner .widget .widget--title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1000px) {
  .tm_footer_style_style_one .footer-content__inner {
    gap: 0;
    flex-wrap: wrap;
  }
  .tm_footer_style_style_one .footer-content-box, .tm_footer_style_style_one .footer-content__list {
    width: 50%;
    max-width: unset;
  }
  .tm_footer_style_style_one .footer__support {
    font-size: 44px;
  }
}
@media only screen and (max-width: 1100px) {
  .tm_footer_style_style_four .footer__inner .footer__box {
    margin-right: 0;
  }
  .tm_footer_style_style_four .footer__inner .widget .widget--title span {
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .tm_footer_style_style_four .footer__support {
    font-size: 44px;
  }
}
@media only screen and (max-width: 900px) {
  .tm_footer_style_style_one .footer-content__inner {
    gap: 20px;
    flex-wrap: wrap;
  }
  .tm_footer_style_style_one .footer-content-box, .tm_footer_style_style_one .footer-content__list {
    width: 100%;
    max-width: 300px;
  }
  html .tm_footer_style_style_one .footer-content__inner .widget.widget_text .textwidget p,
  .tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link span,
  .tm_footer_style_style_one .footer-content__list-link {
    font-size: 16px;
  }
  .tm_footer_style_style_one .footer-content__inner .widget .widget--title {
    font-size: 18px;
  }
  .tm_footer_style_style_one .footer-content__inner .widget.widget_media_image {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .tm_footer_style_style_one .footer-bottom__inner {
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
  }
}
footer.footer.tm_footer_text_dark .widget--title, footer.footer.tm_footer_text_dark.tm_footer_style_style_two.footer .heading__title, footer.footer.tm_footer_text_dark.tm_footer_style_style_two.footer .heading__text,
footer.footer.tm_footer_text_dark .footer__inner .widget.widget_text .textwidget, footer.footer.tm_footer_text_dark .widget ul li a, footer.footer.tm_footer_text_dark .widget ul li a span, footer.footer.tm_footer_text_dark .widget.widget_templines_theme_helper_contact_phone_number .footer-content__list-item .footer-content__list-link, footer.footer.tm_footer_text_dark .footer__copy,
footer.footer.tm_footer_text_dark .footer-content__inner .widget.widget_text .textwidget p, footer.footer.tm_footer_text_dark .footer-bottom__copy, footer.footer.tm_footer_text_dark .footer-content__list-item i, footer.footer.tm_footer_text_dark .footer-bottom__socials-link i, footer.footer.tm_footer_text_dark.tm_footer_style_style_one .footer__support, footer.footer.tm_footer_text_dark.tm_footer_subscribe_style_three.subscribe .heading__title {
  color: #222 !important;
}
footer.footer.tm_footer_text_dark.tm_footer_style_style_one .footer-content__inner .widget.widget_nav_menu ul li a.menu-link span:before, footer.footer.tm_footer_text_dark.tm_footer_style_style_four .footer__inner .widget .widget--title span {
  background: #222 !important;
}

.tm_footer_text_dark.tm_footer_subscribe_style_three .subscribe__inner .subscribe__heading .heading__title {
  color: #222 !important;
}
.tm_footer_text_dark.tm_footer_subscribe_style_three.subscribe .heading__text {
  color: #222 !important;
}
.tm_footer_text_dark.tm_footer_subscribe_style_four .subscribe__box-title, .tm_footer_text_dark.tm_footer_subscribe_style_four .subscribe__box-text {
  color: #222 !important;
}
.tm_footer_text_dark.tm_footer_subscribe_style_four .subscribe__form-input {
  color: #222 !important;
  border-color: #222 !important;
}
.tm_footer_text_dark.tm_footer_subscribe_style_four .subscribe__form-input::placeholder {
  color: #222 !important;
}

/*-------------------------------------------------------------------

== Mobile Menu

-------------------------------------------------------------------*/
.dl-menuwrapper {
  width: 100%;
  max-width: 300px;
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50% 200%;
  perspective-origin: 50% 200%;
  position: absolute;
  left: 24px;
  top: -10px;
  display: none;
}

.dl-menuwrapper:first-child {
  margin-right: 100px;
}

.dl-menuwrapper button {
  background: #de0a89;
  border: none;
  width: 60px;
  height: 60px;
  text-indent: -900em;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  outline: none;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
  background: #de0a89;
}

.dl-menuwrapper button:after {
  content: "";
  position: absolute;
  width: 56%;
  height: 3px;
  background: #fff;
  top: 18px;
  left: 21%;
  box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
}

.dl-menuwrapper ul {
  padding: 0;
  list-style: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.dl-menuwrapper li {
  position: relative;
}

.dl-menuwrapper li a {
  display: block;
  position: relative;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  outline: none;
}

.no-touch .dl-menuwrapper li a:hover {
  background: rgba(255, 248, 213, 0.1);
}

.dl-menuwrapper li.dl-back > a {
  padding-left: 30px;
  background: rgba(0, 0, 0, 0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
  position: absolute;
  top: 0;
  line-height: 50px;
  speak: none;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  right: 20px;
  font-size: 18px;
  font-weight: 900;
}

.dl-menuwrapper .has-submenu .sub-menu {
  margin-top: 0px;
}
.dl-menuwrapper .has-submenu .sub-menu .sub-menu-link {
  color: #fff;
  padding: 15px 20px;
}
.dl-menuwrapper .has-submenu .dl-back:after {
  right: auto;
}

.dl-menuwrapper li.dl-back:after {
  left: 10px;
  color: rgba(212, 204, 198, 0.3);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
  right: 10px;
  color: rgba(0, 0, 0, 0.15);
}

.dl-menuwrapper .dl-menu {
  margin: 5px 0 0 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
  transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* Hide the inner submenus */
#dl-menu.dl-menuwrapper li .sub-menu {
  display: none;
}

/*
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link.
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
#dl-menu .dl-menu.dl-subview li,
#dl-menu .dl-menu.dl-subview li.dl-subviewopen > a,
#dl-menu .dl-menu.dl-subview li.dl-subview > a {
  display: none;
}
#dl-menu .dl-menu.dl-subview li.dl-subview,
#dl-menu .dl-menu.dl-subview li.dl-subview .sub-menu,
#dl-menu .dl-menu.dl-subview li.dl-subviewopen,
#dl-menu .dl-menu.dl-subview li.dl-subviewopen > .sub-menu,
#dl-menu .dl-menu.dl-subview li.dl-subviewopen > .sub-menu > li {
  display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .sub-menu {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  margin: 0;
}

/* Animation classes for moving out and in */
.dl-menu.dl-animate-out-1 {
  -webkit-animation: MenuAnimOut1 0.4s;
  animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
  -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
  animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
  -webkit-animation: MenuAnimOut3 0.4s ease;
  animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
  -webkit-animation: MenuAnimOut4 0.4s ease;
  animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
  -webkit-animation: MenuAnimOut5 0.4s ease;
  animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
  50% {
    -webkit-transform: translateZ(-250px) rotateY(30deg);
  }
  75% {
    -webkit-transform: translateZ(-372.5px) rotateY(15deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateZ(-500px) rotateY(0deg);
    opacity: 0;
  }
}
@-webkit-keyframes MenuAnimOut2 {
  100% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }
}
@-webkit-keyframes MenuAnimOut3 {
  100% {
    -webkit-transform: translateZ(300px);
    opacity: 0;
  }
}
@-webkit-keyframes MenuAnimOut4 {
  100% {
    -webkit-transform: translateZ(-300px);
    opacity: 0;
  }
}
@-webkit-keyframes MenuAnimOut5 {
  100% {
    -webkit-transform: translateY(40%);
    opacity: 0;
  }
}
@keyframes MenuAnimOut1 {
  50% {
    -webkit-transform: translateZ(-250px) rotateY(30deg);
    transform: translateZ(-250px) rotateY(30deg);
  }
  75% {
    -webkit-transform: translateZ(-372.5px) rotateY(15deg);
    transform: translateZ(-372.5px) rotateY(15deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateZ(-500px) rotateY(0deg);
    transform: translateZ(-500px) rotateY(0deg);
    opacity: 0;
  }
}
@keyframes MenuAnimOut2 {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes MenuAnimOut3 {
  100% {
    -webkit-transform: translateZ(300px);
    transform: translateZ(300px);
    opacity: 0;
  }
}
@keyframes MenuAnimOut4 {
  100% {
    -webkit-transform: translateZ(-300px);
    transform: translateZ(-300px);
    opacity: 0;
  }
}
@keyframes MenuAnimOut5 {
  100% {
    -webkit-transform: translateY(40%);
    transform: translateY(40%);
    opacity: 0;
  }
}
.dl-menu.dl-animate-in-1 {
  -webkit-animation: MenuAnimIn1 0.3s;
  animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
  -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
  animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
  -webkit-animation: MenuAnimIn3 0.4s ease;
  animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
  -webkit-animation: MenuAnimIn4 0.4s ease;
  animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
  -webkit-animation: MenuAnimIn5 0.4s ease;
  animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
  0% {
    -webkit-transform: translateZ(-500px) rotateY(0deg);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateZ(-250px) rotateY(30deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateZ(0px) rotateY(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes MenuAnimIn2 {
  0% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}
@-webkit-keyframes MenuAnimIn3 {
  0% {
    -webkit-transform: translateZ(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
  }
}
@-webkit-keyframes MenuAnimIn4 {
  0% {
    -webkit-transform: translateZ(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
  }
}
@-webkit-keyframes MenuAnimIn5 {
  0% {
    -webkit-transform: translateY(40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes MenuAnimIn1 {
  0% {
    -webkit-transform: translateZ(-500px) rotateY(0deg);
    transform: translateZ(-500px) rotateY(0deg);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateZ(-250px) rotateY(30deg);
    transform: translateZ(-250px) rotateY(30deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateZ(0px) rotateY(0deg);
    transform: translateZ(0px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes MenuAnimIn2 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes MenuAnimIn3 {
  0% {
    -webkit-transform: translateZ(300px);
    transform: translateZ(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
  }
}
@keyframes MenuAnimIn4 {
  0% {
    -webkit-transform: translateZ(-300px);
    transform: translateZ(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
  }
}
@keyframes MenuAnimIn5 {
  0% {
    -webkit-transform: translateY(40%);
    transform: translateY(40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.dl-menuwrapper > .sub-menu.dl-animate-in-1 {
  -webkit-animation: SubMenuAnimIn1 0.4s ease;
  animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .sub-menu.dl-animate-in-2 {
  -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
  animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .sub-menu.dl-animate-in-3 {
  -webkit-animation: SubMenuAnimIn3 0.4s ease;
  animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .sub-menu.dl-animate-in-4 {
  -webkit-animation: SubMenuAnimIn4 0.4s ease;
  animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .sub-menu.dl-animate-in-5 {
  -webkit-animation: SubMenuAnimIn5 0.4s ease;
  animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
  0% {
    -webkit-transform: translateX(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}
@-webkit-keyframes SubMenuAnimIn2 {
  0% {
    -webkit-transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}
@-webkit-keyframes SubMenuAnimIn3 {
  0% {
    -webkit-transform: translateZ(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
  }
}
@-webkit-keyframes SubMenuAnimIn4 {
  0% {
    -webkit-transform: translateZ(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
  }
}
@-webkit-keyframes SubMenuAnimIn5 {
  0% {
    -webkit-transform: translateZ(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes SubMenuAnimIn1 {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes SubMenuAnimIn2 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes SubMenuAnimIn3 {
  0% {
    -webkit-transform: translateZ(-300px);
    transform: translateZ(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
  }
}
@keyframes SubMenuAnimIn4 {
  0% {
    -webkit-transform: translateZ(300px);
    transform: translateZ(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
  }
}
@keyframes SubMenuAnimIn5 {
  0% {
    -webkit-transform: translateZ(-200px);
    transform: translateZ(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.dl-menuwrapper > .sub-menu.dl-animate-out-1 {
  -webkit-animation: SubMenuAnimOut1 0.4s ease;
  animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .sub-menu.dl-animate-out-2 {
  -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
  animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .sub-menu.dl-animate-out-3 {
  -webkit-animation: SubMenuAnimOut3 0.4s ease;
  animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .sub-menu.dl-animate-out-4 {
  -webkit-animation: SubMenuAnimOut4 0.4s ease;
  animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .sub-menu.dl-animate-out-5 {
  -webkit-animation: SubMenuAnimOut5 0.4s ease;
  animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
  0% {
    -webkit-transform: translateX(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(50%);
    opacity: 0;
  }
}
@-webkit-keyframes SubMenuAnimOut2 {
  0% {
    -webkit-transform: translateX(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
    opacity: 0;
  }
}
@-webkit-keyframes SubMenuAnimOut3 {
  0% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-300px);
    opacity: 0;
  }
}
@-webkit-keyframes SubMenuAnimOut4 {
  0% {
    -webkit-transform: translateZ(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(300px);
    opacity: 0;
  }
}
@-webkit-keyframes SubMenuAnimOut5 {
  0% {
    -webkit-transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-200px);
    opacity: 0;
  }
}
@keyframes SubMenuAnimOut1 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}
@keyframes SubMenuAnimOut2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes SubMenuAnimOut3 {
  0% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-300px);
    transform: translateZ(-300px);
    opacity: 0;
  }
}
@keyframes SubMenuAnimOut4 {
  0% {
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(300px);
    transform: translateZ(300px);
    opacity: 0;
  }
}
@keyframes SubMenuAnimOut5 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-200px);
    transform: translateZ(-200px);
    opacity: 0;
  }
}
/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
  position: relative;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.no-js .dl-menuwrapper li .sub-menu {
  display: block;
}

.no-js .dl-menuwrapper li.dl-back {
  display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
  background: rgba(0, 0, 0, 0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
  content: "";
}

/* Colors for demos */
/* Demo 1 */
.demo-1 .dl-menuwrapper button {
  background: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
  background: #9e1847;
}

/* Demo 2 */
.demo-2 .dl-menuwrapper button {
  background: #e86814;
}

.demo-2 .dl-menuwrapper button:hover,
.demo-2 .dl-menuwrapper button.dl-active,
.demo-2 .dl-menuwrapper ul {
  background: #D35400;
}

/* Demo 3 */
.demo-3 .dl-menuwrapper button {
  background: #08cbc4;
}

.demo-3 .dl-menuwrapper button:hover,
.demo-3 .dl-menuwrapper button.dl-active,
.demo-3 .dl-menuwrapper ul {
  background: #00b4ae;
}

/* Demo 4 */
.demo-4 .dl-menuwrapper button {
  background: #90b912;
}

.demo-4 .dl-menuwrapper button:hover,
.demo-4 .dl-menuwrapper button.dl-active,
.demo-4 .dl-menuwrapper ul {
  background: #79a002;
}

/* Demo 5 */
.demo-5 .dl-menuwrapper button {
  background: #744783;
}

.demo-5 .dl-menuwrapper button:hover,
.demo-5 .dl-menuwrapper button.dl-active,
.demo-5 .dl-menuwrapper ul {
  background: #643771;
}

@media (max-width: 1000px) {
  header.header {
    overflow: inherit;
    border-bottom: 1px solid #ddd;
  }
  .dl-menuwrapper {
    display: block !important;
  }
  .tm_navigation_style_one .dl-menuwrapper {
    left: 0;
    top: 0;
  }
}
.logged-in.admin-bar .header.tm_navigation_style_two {
  margin-top: 32px;
}
.logged-in.admin-bar .header.tm_navigation_style_three.fixed-enable.fixed-navbar.header--active {
  margin-top: 32px !important;
}

.header.tm_navigation_style_three.fixed-enable.fixed-navbar.header--active {
  box-shadow: unset;
}

/*-------------------------------------------------------------------

== 404 Page

-------------------------------------------------------------------*/
.fl--404-page-wrapper .fl-404-text-wrapper {
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  margin-top: -5px;
}
.fl--404-page-wrapper .fl-404-text-wrapper .fl-404-text-left-content {
  display: inline-block;
}
.fl--404-page-wrapper .fl-404-text-wrapper .fl-404-text-left-content i {
  font-size: 45px;
  margin-right: 25px;
  color: #a2a4a3;
  position: relative;
}
.fl--404-page-wrapper .fl-404-text-wrapper .fl-404-text-right-content {
  display: inline-block;
}
.fl--404-page-wrapper .fl-404-text-wrapper .fl-404-text-right-content .fl--error-page-title {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 0;
  color: #222;
}
.fl--404-page-wrapper .btn-404-wrapper {
  display: inline-flex;
}
.fl--404-page-wrapper .btn-404-wrapper .fl-404-page-btn {
  padding: 15px 35px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.fl--404-page-wrapper .fl-404-page-search-form {
  max-width: 400px;
  margin: 0 auto;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 {
  position: relative;
  display: flex;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .fl--input-wrapper {
  flex-grow: 1;
  margin-right: 10px;
  width: 100%;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .fl--input-wrapper input[type=text] {
  margin-bottom: 0;
  background: #f9f9f9;
  border-color: transparent;
  width: 100%;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .fl--input-wrapper input[type=text]:hover {
  box-shadow: 0 8px 22px 0 rgba(0, 0, 0, 0.1) !important;
  transition: 0.3s ease;
  background: #fff !important;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .fl--input-wrapper:after {
  letter-spacing: 0.02em;
  content: attr(data-text);
  line-height: 0;
  max-width: 100%;
  border-bottom: 2px solid;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  font-size: 13px;
  overflow: hidden;
  user-select: none;
  color: transparent;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .searchsubmit {
  flex-grow: 0;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .searchsubmit button {
  min-width: 107px;
  text-transform: uppercase;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  background: #efb007;
  display: flex;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .searchsubmit button:hover {
  background: #222;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .searchsubmit button:before, .fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .searchsubmit button:after {
  content: none;
}
.fl--404-page-wrapper .fl-404-page-search-form .fl--search-form-404 .searchsubmit button.fl-button {
  padding: 21.7px 25px;
}

/*-------------------------------------------------------------------

== Empty Search Page

-------------------------------------------------------------------*/
.empty-search-wrapper .empty-search-wrapper-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.empty-search-wrapper .empty-search-wrapper-text .left-content {
  display: inline-block;
}
.empty-search-wrapper .empty-search-wrapper-text .left-content i {
  font-size: 45px;
  margin-right: 25px;
  color: #a2a4a3;
  top: -5px;
  position: relative;
}
.empty-search-wrapper .empty-search-wrapper-text .right-content {
  display: inline-block;
}
.empty-search-wrapper .empty-search-wrapper-text .right-content .empty-title {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 0;
  color: #222;
}
.empty-search-wrapper .empty-search-wrapper-search-form {
  max-width: 400px;
  margin: 0 auto;
}
.empty-search-wrapper .empty-search-wrapper-search-form form {
  display: flex;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .fl--input-wrapper {
  width: 100%;
  flex-grow: 1;
  margin-right: 10px;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .fl--input-wrapper input {
  margin-bottom: 0;
  background: #f9f9f9;
  border-color: transparent;
  width: 100%;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .fl--input-wrapper input:hover {
  box-shadow: 0 8px 22px 0 rgba(0, 0, 0, 0.1) !important;
  transition: 0.3s ease;
  background: #fff !important;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .searchsubmit {
  flex-grow: 0;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .searchsubmit button {
  min-width: 107px;
  text-transform: uppercase;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  background: #efb007;
  display: flex;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .searchsubmit button:hover {
  background: #222;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .searchsubmit button:before, .empty-search-wrapper .empty-search-wrapper-search-form form .searchsubmit button:after {
  content: none;
}
.empty-search-wrapper .empty-search-wrapper-search-form form .searchsubmit button.fl-button {
  padding: 21.7px 25px;
}

/*-------------------------------------------------------------------

== Paid memberships

-------------------------------------------------------------------*/
.pmpro_login_wrap {
  padding: 30px 35px;
  border: 1px solid #ccc;
  max-width: 900px;
  margin: 0 auto;
}
.pmpro_login_wrap form .login-username, .pmpro_login_wrap form .login-password {
  margin-bottom: 0 !important;
}
.pmpro_login_wrap form label {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px !important;
  margin-left: 0 !important;
}
.pmpro_login_wrap form input {
  width: 100% !important;
  max-width: 100% !important;
}
.pmpro_login_wrap form input:hover, .pmpro_login_wrap form input:active, .pmpro_login_wrap form input:focus {
  border: 1px solid transparent !important;
}
.pmpro_login_wrap form .login-remember label {
  display: flex;
  align-items: center;
  font-weight: normal !important;
  font-size: 13px !important;
  text-transform: none;
  line-height: 1;
}
.pmpro_login_wrap form .login-remember input {
  margin-right: 22px;
  max-width: inherit !important;
  border: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  position: relative;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.pmpro_login_wrap form .login-remember input:before {
  cursor: pointer;
  top: -12px;
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #eaeaeb;
}
.pmpro_login_wrap form .login-remember input:checked:after {
  position: absolute;
  top: -9px;
  left: 4px;
  font: 9px/1 FontAwesome;
  content: "\f00c";
  text-align: center;
}
.pmpro_login_wrap form .login-submit {
  margin-bottom: 25px !important;
  margin-top: 25px !important;
}
.pmpro_login_wrap form .login-submit input {
  border: none !important;
  background: transparent !important;
  max-width: inherit !important;
  width: auto !important;
  padding: 14px 40px !important;
  display: inline-flex !important;
  color: #fff;
  font-size: 13px !important;
  position: relative;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
  margin-bottom: 0 !important;
  text-transform: uppercase;
}
.pmpro_login_wrap form .login-submit input:hover {
  box-shadow: none !important;
  color: #fff !important;
}
.fl-venders-author:before {
  background: #f1f5fa !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.fl-venders-author .fl-venders-author-posts .fl-venders-select li {
  border: none;
}
.fl-venders-author .fl-venders-author-posts .fl-venders-select li span {
  text-transform: uppercase;
  font-size: 12px;
  color: #222;
  transition: 0.3s ease;
  position: relative;
  display: inline-block;
}
.fl-venders-author .fl-venders-author-posts .fl-venders-select li span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  left: 0;
  bottom: 3px;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
  transform-origin: right;
}
.fl-venders-author .fl-venders-author-posts .fl-venders-select li.active span {
  color: #fff !important;
  transition: 0.2s ease;
}
.fl-venders-author .fl-venders-author-posts .fl-venders-select li.active:before {
  transition: 0.3s ease;
}
.fl-venders-author .fl-venders-author-posts .fl-venders-select li:hover span:before {
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.2s ease-out;
}

.pmpro_cancel_wrap h2 {
  font-size: 23px;
}

html .inner_content .pmpro_actions_nav a:hover,
html .fl-comment-moderation .pmpro_actions_nav a:hover {
  transition: 0.3s ease;
  color: #fff !important;
}

html .inner_content .pmpro_actions_nav a:hover,
html .fl-comment-moderation .pmpro_actions_nav a:hover {
  transition: 0.3s ease;
  color: #fff !important;
}

.pmpro_table a {
  color: #222 !important;
  opacity: 1.8;
  transition: 0.3s ease;
}
.pmpro_table a:hover {
  transition: 0.3s ease;
}

.pmpro_actionlinks a {
  color: #222 !important;
  opacity: 1.8;
  transition: 0.3s ease;
}
.pmpro_actionlinks a:hover {
  transition: 0.3s ease;
}

.pmpro_message {
  max-width: 700px;
  margin: 0 auto 20px auto;
}

html form.pmpro_form label,
#loginform label {
  font-weight: normal;
}

form.pmpro_form .input,
form.pmpro_form textarea,
form.pmpro_form select {
  display: inline-block;
  max-width: 100%;
  background: #f4f4f4 !important;
  margin-bottom: 15px;
}

.pmpro_actions_nav {
  text-align: center;
  color: #fff;
}

.pmpro_actions_nav a {
  max-width: 48%;
}

.pmpro_login_wrap,
.pmpro_login_wrap,
.pmpro_lost_password_wrap,
.pmpro_reset_password_wrap,
.pmpro-levels .fl-content,
.pmpro-member-profile-edit .fl-content {
  border: 1px solid #ccc;
  max-width: 700px;
  padding: 50px;
  margin: 0 auto;
}

.pmpro-body-level-required .fl-content {
  border: 1px solid #ccc;
  padding: 50px;
  margin: 0 auto;
  text-align: center;
}

.pmpro-checkout .fl-content {
  max-width: 700px;
  padding: 0px;
  margin: 0 auto;
}

.pmpro-checkout .fl-content .pmpro_message {
  max-width: inherit !important;
}

#loginform + hr {
  margin-top: -10px;
}

#lostpasswordform + hr {
  margin-top: 0;
}

.pmpro_btn-select {
  padding: 8px !important;
  border: 0 !important;
  height: 34px !important;
  font-size: inherit;
}

.inner_content table#pmpro_levels_table {
  width: 100% !important;
}

.inner_content table#pmpro_levels_table thead tr th {
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 9px 11px 10px;
  color: #222;
  background: #f1f5fa !important;
}

.inner_content table#pmpro_levels_table td {
  padding: 8px 14px;
}

html #pmpro_account .pmpro_box {
  border: 1px solid #ededed;
  padding: 0 40px 40px 40px;
}

html .pmpro_checkout h3 span.pmpro_checkout-h3-name {
  display: inline-block;
  margin: 0;
  width: 100%;
}

html .pmpro_checkout {
  padding: 0;
  margin: 15px auto 15px;
  border: 1px solid #ededed;
}

.pmpro_checkout hr {
  display: none;
}

.pmpro_checkout h3 {
  display: inline-block;
  width: 100%;
  background: #f1f5fa;
  padding: 30px 40px 20px !important;
  margin: 0 !important;
}

html .pmpro_checkout h3 span.pmpro_checkout-h3-msg {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.pmpro_confirmation_wrap {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

html .pmpro_btn.pmpro_btn-submit-checkout {
  padding: 14px 30px;
  width: 100%;
}

.pmpro_asterisk {
  color: red;
  position: absolute;
  left: -15px;
  top: 0;
}

form.pmpro_form .pmpro_change_password-fields div {
  margin: 0 0 1em 0;
  position: relative;
}

.pmpro_actions_nav .pmpro_actions_nav-right a {
  max-width: max-content !important;
}

html .pmpro_actions_nav a,
.pmpro_btn,
.login-submit .button {
  text-transform: uppercase;
  color: #fff !important;
  position: relative;
  display: inline-block;
  margin-bottom: 0 !important;
  padding: 11px 25px;
  font-size: 13px !important;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  border-radius: 0 !important;
  width: 100%;
  line-height: 28px;
  min-height: 50px;
  border: 0;
  text-decoration: none !important;
}

.pmpro-level-required .pmpro_content_message a {
  color: #fff !important;
  position: relative;
  padding: 11px 25px !important;
  font-size: 11px !important;
  line-height: 2 !important;
  text-transform: uppercase !important;
  transition: all 0.3s;
  letter-spacing: 0.02em !important;
  background-color: #e3740e !important;
  border-radius: 0 !important;
  border-color: #e3740e !important;
  font-weight: 400;
  min-height: 50px;
  text-decoration: none !important;
  border: 0 !important;
}

html .pmpro_actions_nav a:hover,
html .pmpro_btn:hover,
.inner_content p .pmpro_btn:hover,
.inner_content .pmpro_btn:hover,
.pmpro_btn:hover,
.login-submit .button:hover {
  background-color: #222 !important;
  color: #fff !important;
}

.pmpro_actions_nav a:hover {
  background: #e0eaf4;
}

.pmpro_checkout-fields {
  padding: 40px;
}

html .pmpro_checkout h3 span.pmpro_checkout-h3-msg {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
}

html .pmpro_btn.disabled,
html .pmpro_btn[disabled],
html fieldset[disabled] .pmpro_btn {
  pointer-events: none;
  height: auto;
  background: #222 !important;
}

.pmpro_payment-expiration #ExpirationMonth {
  width: 40%;
  margin-right: 2%;
}

.pmpro_payment-expiration #ExpirationYear {
  width: 40%;
  margin-left: 2%;
}

form.pmpro_form .pmpro_checkout-fields div,
#loginform p {
  position: relative;
}

.pmpro_payment-cvv small {
  width: 100%;
  display: inline-block;
  position: relative;
  top: -10px;
}

html form.pmpro_form select {
  position: relative;
  border-radius: 0;
  padding-left: 15px;
  border: 0;
}

html #pmpro_account .pmpro_box h3 {
  background: #f1f5fa;
  padding: 30px 40px;
  margin-bottom: 50px;
  margin: 0 -40px 40px -40px;
  font-size: 23px;
}

html #pmpro_account .pmpro_box {
  border: 1px solid #ededed;
  padding: 0 40px 40px 40px;
}

#pmpro_level_cost {
  background-color: #fcf8e3;
  padding: 13px 26px;
  border: 1px solid #faebcc;
}

html .pmpro_checkout h3 span.pmpro_checkout-h3-name {
  display: inline-block;
  margin: 0;
  width: 100%;
  font-size: 23px;
}

html .pmpro_checkout {
  padding: 0;
  margin: 15px auto 15px;
  border: 1px solid #ededed;
}

.pmpro_checkout hr {
  display: none;
}

.pmpro_checkout h3 {
  display: inline-block;
  width: 100%;
  background: #f1f5fa;
  padding: 30px 40px 20px !important;
  margin: 0 !important;
}

html .pmpro_checkout h3 span.pmpro_checkout-h3-msg {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.pmpro_confirmation_wrap {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

html .pmpro_btn.pmpro_btn-submit-checkout {
  padding: 20px 30px;
  width: 100%;
}

.pmpro_actions_nav a {
  border-radius: 29px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 17px 35px;
  color: #222;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 2;
  background: #fff;
  border: #e0eaf4 2px solid;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.pmpro_actions_nav a:hover {
  background: #e0eaf4;
}

.pmpro_checkout-fields {
  padding: 40px;
}

html .pmpro_checkout h3 span.pmpro_checkout-h3-msg {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
}

#ExpirationMonth {
  max-width: 40%;
  margin-right: 10px;
}

#ExpirationYear {
  max-width: 40%;
  margin-left: 10px;
}

.pmpro_payment-cvv small {
  position: absolute;
  bottom: -15px;
  left: 10px;
}

#pmpro_level_cost p {
  margin: 0;
  padding: 0;
  color: #8a6d3b;
}

#pmpro_form {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

.pmpro-login .pmpro_message {
  max-width: 800px;
  margin: 0 auto 30px;
}

.pmpro_checkout {
  border: 1px solid #ededed;
  padding: 40px;
  margin: 15px auto 15px;
}

.pmpro_login_wrap .pmpro_actions_nav a,
.pmpro_lost_password_wrap .pmpro_actions_nav a {
  width: 47%;
  margin: 0 1%;
}

.pmpro_lost_password-instructions {
  padding-bottom: 20px;
}

#wp-submit,
.pmpro_btn-submit {
  background-color: #4817b9;
  border: 0;
  color: #fff;
  padding: 18px;
}

#wp-submit:hover,
.pmpro_btn-submit:hover {
  background-color: #f0487a;
}

.pmpro_login_wrap .pmpro_actions_nav,
.pmpro_lost_password_wrap .pmpro_actions_nav {
  font-size: 0;
  color: #fff;
}

.pmpro_checkout-fields .pmpro_checkout-field {
  position: relative;
}

.pmpro_asterisk {
  position: absolute;
  top: 0;
  left: -4px;
  color: red;
}

#pmpro_levels_table .pmpro_btn.disabled,
#pmpro_levels_table .pmpro_btn[disabled],
#pmpro_levels_table fieldset[disabled] .pmpro_btn {
  background: #222 !important;
  opacity: 1;
}

.pmpro_actions_nav {
  text-align: center;
  overflow: hidden;
}

.pmpro-member-profile-edit h2 {
  display: none;
}

.pmpro_billing_wrap {
  max-width: 800px;
  margin: 0 auto;
}

html #loginform label,
html form.pmpro_form label {
  margin-left: 10px;
  margin-bottom: 5px;
}

.pmpro_content_message {
  text-align: center;
}

.pmpro_change_password_wrap {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

#pmpro_levels_table + .pmpro_actions_nav {
  max-width: 800px;
  display: block;
  margin: 25px auto !important;
}

html form.pmpro_form .lite {
  font-size: 14px;
}

.pmpro_btn:link,
html .pmpro_btn,
html .pmpro_content_message a,
html .pmpro_content_message a:link {
  background-color: #4817b9;
  border: 0;
  padding: 16px 30px !important;
  color: #fff;
  border-radius: 100px;
  height: 50px;
  line-height: 19px;
}

table.pmpro_table th {
  background-color: #f1f5fa;
  text-transform: uppercase;
  color: #222;
  font-size: 13px;
}

html #loginform input[type=password],
html #loginform input[type=text],
html form.pmpro_form .input,
html form.pmpro_form select,
html form.pmpro_form textarea {
  max-width: 100%;
}

html .pmpro_btn.pmpro_btn-cancel {
  background-color: #f0487a !important;
  color: #fff;
  margin-top: 15px;
  text-decoration: none;
}

html .pmpro_btn.pmpro_btn-cancel:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

html .fl-venders-author .fl-venders-author-avatar {
  margin-right: 30px;
}

.fl-venders-account > h3 {
  display: none;
}

html .fl-venders-account,
html .tmreviews-add-place {
  margin-top: 60px;
  margin-bottom: 60px;
}

.fl-venders-account table.pmpro_table {
  margin-bottom: 10px;
}

.fl-venders-account table.pmpro_table td,
.fl-venders-account table.pmpro_table th {
  border: 1px solid #ccc;
  padding: 15px;
}

.fl-venders-login form,
.pmpro_logged_in_welcome_wrap {
  border: 1px solid #ededed;
  padding: 40px;
  max-width: 800px;
  margin: 50px auto;
}

#pmpro_cancel {
  border: 1px solid #ededed;
  padding: 40px;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

#pmpro_cancel .pmpro_actionlinks {
  padding-top: 25px;
}

#pmpro_levels_table {
  width: 100%;
  max-width: 800px;
}

.login-remember input[type=checkbox] {
  position: relative;
  left: 0;
}

.pmpro_btn.pmpro_btn-cancel:link,
html .pmpro_btn.pmpro_btn-cancel {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

.pmpro_cancel_return_home a {
  padding-top: 25px;
}

.fl-membership-login {
  color: #f0487a;
  margin-right: 32px;
  font-size: 18px;
  font-family: Work sans;
  text-transform: uppercase;
  padding-bottom: 3px;
  background: #fff;
  padding: 17px 39px 17px 40px;
  border-radius: 100px;
  font-weight: 600;
}

.fl-membership-login i {
  margin-right: 10px;
}

table.pmpro_table {
  margin-bottom: 25px;
}

table.pmpro_table th,
table.pmpro_table td {
  border: 1px solid #ccc;
  padding: 10px;
}

html .pmpro_btn.pmpro_btn-cancel {
  background-color: #222 !important;
  color: #fff;
  margin-top: 15px;
  text-decoration: none;
  margin-left: 0;
}

html #fl-vender-tabs .fl-venders-contain .fl-venders-places {
  border-radius: 0;
  border: 1px solid #cccccc;
  display: flex;
  flex-direction: inherit;
  margin-bottom: 40px;
  padding: 15px;
}

html #fl-vender-tabs .fl-venders-contain .fl-venders-places .fl-venders-places-meta {
  padding: 5px 30px;
  border: 0;
}

.fl-venders-contain .b-submit__aside-step-inner-icon {
  display: none !important;
}

html #fl-vender-tabs .fl-venders-contain .fl-venders-places .fl-venders-places-meta .fl-venders-places-excerpt {
  margin-top: 5px;
}

#pmpro_levels_table .pmpro_btn {
  text-transform: uppercase;
  font-size: 11px !important;
  color: #fff !important;
}

#pmpro_levels_table .pmpro_btn.disabled {
  background: transparent !important;
  color: #222 !important;
}

/*-------------------------------------------------------------------

==  Responsive

-------------------------------------------------------------------*/
@media only screen and (max-width: 1799px) {
  .page-header {
    padding: 0 40px;
  }
  .page-head__bg {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 1439px) {
  .newsletter-form {
    margin-right: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1920px) and (min-width: 767px) {
  html, body {
    font-size: calc(14px + 0.2083333333vw);
  }
  .list-articles-item__title {
    font-size: calc(14px + 0.2083333333vw);
  }
  .page-header__contacts-list ul li a {
    font-size: calc(14px + 0.2083333333vw);
  }
  .page-header__mainmenu .uk-navbar-nav > li > a {
    font-size: 13px;
  }
  .page-head__title {
    font-size: calc(24px + 1.25vw);
  }
  .page-head__breadcrumb .uk-breadcrumb > * > * {
    font-size: calc(12px + 0.3125vw);
  }
  .page-footer__menu h4 {
    font-size: calc(18px + 0.2083333333vw);
  }
  .page-footer__menu ul li a {
    font-size: calc(14px + 0.2083333333vw);
  }
  .page-footer__news h4 {
    font-size: calc(18px + 0.2083333333vw);
  }
  .article-full__title,
  .article-intro__title {
    font-size: calc(24px + 0.3125vw);
  }
  .article-full__info > *,
  .article-intro__info > * {
    font-size: calc(12px + 0.2083333333vw);
  }
  .article-full__author a,
  .article-intro__author a {
    font-size: calc(12px + 0.2083333333vw);
  }
  .article-full__comments a,
  .article-intro__comments a {
    font-size: calc(12px + 0.2083333333vw);
  }
  .article-full__content blockquote,
  .article-intro__content blockquote {
    font-size: calc(18px + 0.3125vw);
  }
  .article-full__content blockquote .user strong,
  .article-intro__content blockquote .user strong {
    font-size: calc(14px + 0.2083333333vw);
  }
  .article-full__content blockquote .user span,
  .article-intro__content blockquote .user span {
    font-size: calc(12px + 0.1041666667vw);
    padding-right: 0px;
  }
  .uk-button-large {
    font-size: calc(14px + 0.2083333333vw) !important;
  }
  .section-article-related .section-title .uk-h2 {
    font-size: calc(24px + 0.3125vw);
  }
  .section-title span {
    font-size: calc(14px + 0.2083333333vw);
  }
  .section-article-reviews .section-title h3, #reply-title {
    font-size: calc(15px + 0.5208333333vw);
  }
  .section-title h3 {
    font-size: calc(20px + 1.0416666667vw);
  }
  .new-item__title span {
    font-size: calc(14px + 0.2083333333vw);
  }
  .new-item__title h4 {
    font-size: calc(18px + 0.3125vw);
  }
  .newsletter-form__title h4 {
    font-size: calc(18px + 0.8854166667vw);
  }
  .newsletter-form__form form button {
    font-size: calc(10px + 0.4166666667vw);
  }
}
@media only screen and (max-width: 1679px) {
  .logo span {
    display: none;
  }
}
@media only screen and (max-width: 1359px) {
  .newsletter__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    flex-direction: inherit;
    align-items: stretch;
  }
  .newsletter-form {
    width: 50%;
  }
  .newsletter-form .newsletter-form__title {
    display: none;
  }
  .download-app {
    width: 50%;
    justify-content: start;
  }
}
@media only screen and (max-width: 1100px) {
  .download-app__title h4 {
    font-size: 30px;
  }
  .download-app__title p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 928px) {
  .newsletter-form {
    width: 80%;
  }
  .download-app {
    width: 20%;
    justify-content: start;
  }
  .download-app__title {
    display: none;
  }
}
@media only screen and (max-width: 840px) {
  .newsletter-form {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
  .download-app {
    display: none;
  }
}
@media only screen and (max-width: 1365px) {
  .padding-fixed-navbar .page-main {
    padding-top: 62px;
  }
  .padding-fixed-navbar .page-main .page-main {
    padding-top: 0px;
  }
  .padding-fixed-navbar.fixed-navbar-two .page-main {
    padding-top: 146px;
  }
  .padding-fixed-navbar.fixed-navbar-two .page-main .page-main {
    padding-top: 0px;
  }
  .page-header__contacts-list ul li a .uk-icon {
    width: 30px;
    height: 30px;
  }
  .page-header__contacts {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
  }
  .page-header__logo {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo img {
    max-height: 60px;
  }
  .page-header__search {
    width: 60px;
    height: 60px;
  }
  .page-header__mainmenu .uk-navbar-nav > li > a {
    padding: 0 10px;
    font-size: 16px !important;
  }
  .contacts-block::before {
    margin-top: -15px;
    font-size: 30px;
  }
  .contacts-block i:before {
    margin-top: -15px;
    font-size: 30px;
  }
  .contacts-block {
    padding-left: 40px;
  }
  .contacts-block strong {
    font-size: 16px;
  }
  .contacts-block span {
    font-size: 12px;
  }
  .page-footer__contacts {
    max-width: 350px;
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .newsletter-form__form {
    border: 5px solid rgba(255, 255, 255, 0.2);
  }
  .newsletter-form__form form {
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 1850px) {
  .page-head__breadcrumb .uk-breadcrumb {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .page-head__breadcrumb .uk-breadcrumb {
    font-size: 13px;
  }
  .page-head__breadcrumb .uk-breadcrumb a {
    font-size: 13px;
  }
  .breadcrumbs-delimiter {
    margin: 0 8px 0 8px;
    color: #fff;
  }
  .article-full .block-form,
  .article-intro .block-form {
    margin-top: 30px;
  }
  .sidebar {
    padding: 0 0 0 20px;
  }
  .section-article-related {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .section-article-reviews {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .page-footer__top {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .page-footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-footer__contacts {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 50%;
    max-width: calc(50% - 20px);
    margin-top: -65px;
    margin-bottom: 40px;
    padding: 30px;
  }
  .page-footer__contacts p {
    font-size: 14px;
  }
  .page-footer__menu {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 50%;
  }
  .page-footer__news {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
  }
  .page-footer__bottom {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .page-footer__copy {
    font-size: 14px;
  }
  .page-footer__copy a {
    font-size: 14px;
  }
  .contacts-list li a {
    font-size: 16px;
  }
  .contacts-list li + li {
    margin-top: 10px;
  }
  .contacts-list li span.uk-icon {
    margin-right: 10px;
  }
  .sidebar.--left {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .page-header__contacts-list {
    display: none;
  }
}
@media only screen and (max-width: 959px) {
  .article-full:first-child,
  .article-intro:first-child {
    margin-top: 20px;
  }
  #modal-search-full form.search_global .row div {
    width: 65%;
  }
  .padding-fixed-navbar .page-main {
    padding-top: 62px;
  }
  .padding-fixed-navbar .page-main .page-main {
    padding-top: 0px;
  }
  .padding-fixed-navbar.fixed-navbar-two .page-main {
    padding-top: 130px;
  }
  .padding-fixed-navbar.fixed-navbar-two .page-main .page-main {
    padding-top: 0px;
  }
  .article-full__bottom .article-full__tags {
    width: 100%;
  }
  .article-full__bottom .article-full__share {
    margin-top: 15px;
  }
  .page-header.--two-line .page-header__bottom-line {
    padding-top: 8px;
    padding-bottom: 0;
  }
  .page-header.--two-line .uk-icon-button {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: none;
  }
  .page-header__contacts {
    padding-right: 25px;
  }
  .page-header__search {
    border-left: 1px solid #eee;
  }
  .page-header__mobile-menu-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
  }
  .page-header__mainmenu {
    display: none;
  }
  .page-header {
    padding: 0 0 0 30px;
  }
  .page-head__bg {
    padding: 30px;
  }
  .sidebar {
    padding: 0 !important;
    background: none !important;
  }
  .sidebar::after {
    display: none !important;
  }
  .sidebar_right, .sidebar_left {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 820px) {
  .page-head__breadcrumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .newsletter-form__title h4 {
    font-size: calc(18px + 30.6 * (100vw - 320px) / 1920);
  }
  .newsletter-form__form form button {
    font-size: calc(12px + 13.6 * (100vw - 320px) / 1920);
  }
  .list-articles-item__title {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .page-header__contacts-list ul li a {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .page-header__mainmenu .uk-navbar-nav > li > a {
    font-size: calc(12pxpx + 13.6px * (100vw - 320px) / 1920);
  }
  .page-head__bg {
    height: 250px;
  }
  .page-head__title {
    font-size: calc(24px + 40.8 * (100vw - 320px) / 1920);
  }
  .page-head__breadcrumb {
    width: 90%;
    padding: 10px 15px;
  }
  .page-head__breadcrumb .uk-breadcrumb > * > * {
    font-size: calc(12px + 10.2 * (100vw - 320px) / 1920);
  }
  .page-footer__contacts {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .page-footer__menu {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-bottom: 30px;
  }
  .page-footer__news {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }
  .page-footer__menu h4 {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1920);
  }
  .page-footer__menu ul li a {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .page-footer__news h4 {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1920);
  }
  .article-full__title,
  .article-intro__title {
    font-size: calc(24px + 10.2 * (100vw - 320px) / 1920);
  }
  .article-full__info > *,
  .article-intro__info > * {
    font-size: calc(12px + 6.8 * (100vw - 320px) / 1920);
  }
  .article-full__author a,
  .article-intro__author a {
    font-size: calc(12px + 6.8 * (100vw - 320px) / 1920);
  }
  .article-full__comments a,
  .article-intro__comments a {
    font-size: calc(12px + 6.8 * (100vw - 320px) / 1920);
  }
  .article-full__content blockquote,
  .article-intro__content blockquote {
    font-size: calc(18px + 10.2 * (100vw - 320px) / 1920);
  }
  .article-full__content blockquote .user strong,
  .article-intro__content blockquote .user strong {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .article-full__content blockquote .user span,
  .article-intro__content blockquote .user span {
    font-size: calc(12px + 3.4 * (100vw - 320px) / 1920);
  }
  .uk-button-large {
    height: 45px;
    padding: 0 20px;
    line-height: 43px !important;
  }
  .uk-button-large {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .uk-form-large:not(textarea):not([multiple]):not([size]) {
    height: 45px;
    padding-left: 15px;
  }
  .widget_categories ul li a,
  .widget_nav_menu ul li a,
  .widget_pages ul li a,
  .widget_archive ul li a {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .section-article-related .section-title .uk-h2 {
    font-size: calc(24px + 10.2 * (100vw - 320px) / 1920);
  }
  .section-title span {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .section-article-reviews .section-title h3, #reply-title {
    font-size: calc(20px + 34 * (100vw - 320px) / 1920);
  }
  .section-title h3 {
    font-size: calc(20px + 34 * (100vw - 320px) / 1920);
  }
  .new-item__body {
    padding: 30px 15px;
  }
  .new-item__title span {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1920);
  }
  .new-item__title h4 {
    font-size: calc(18px + 10.2 * (100vw - 320px) / 1920);
  }
}
@media only screen and (max-width: 639px) {
  .padding-fixed-navbar .page-main {
    padding-top: 62px;
  }
  .padding-fixed-navbar .page-main .page-main {
    padding-top: 0px;
  }
  .padding-fixed-navbar.fixed-navbar-two .page-main {
    padding-top: 62px;
  }
  .padding-fixed-navbar.fixed-navbar-two .page-main .page-main {
    padding-top: 0px;
  }
  .fl-progress-bar .fl-tracking-progress-bar {
    margin: 0px !important;
  }
  .newsletter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form__title {
    margin-bottom: 10px;
  }
  .newsletter-form__title h4 br {
    display: none;
  }
  .newsletter-form__form form {
    padding: 5px 5px 5px 10px;
  }
  .newsletter-form__form form button {
    padding: 0 10px;
  }
  .page-header.--two-line .page-header__top-line {
    display: none;
  }
  .page-header.--two-line .page-header__bottom-line {
    padding-top: 0;
  }
  .page-header__contacts {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
  }
  .contacts-block {
    padding-left: 30px;
  }
  .contacts-block span {
    display: none;
  }
  .contacts-block strong {
    display: none;
  }
  .page-footer__copy {
    font-size: 12px;
  }
  .page-footer__copy span {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-footer__copy a {
    font-size: 10px;
  }
  .article-intro + .article-intro {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 600px) {
  html.uk-offcanvas-page {
    margin-top: 0px !important;
  }
  html.uk-offcanvas-page body #tm-main-holder {
    margin-top: 46px !important;
  }
  html.uk-offcanvas-page body #tm-main-holder .uk-offcanvas-reveal .uk-offcanvas-bar {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 520px) {
  .download-app__title h4 {
    font-size: 24px;
  }
  .download-app__title p {
    font-size: 18px;
  }
  .newsletter-form .newsletter-form__title {
    width: 100%;
  }
  .newsletter-form__form form.mc4wp-form .mc4wp-form-fields {
    padding: 0px 10px 0px 5px;
  }
  .newsletter-form__form form.mc4wp-form .mc4wp-form-fields input[type=submit] {
    font-size: 16px;
  }
}
@media only screen and (max-width: 470px) {
  .uk-pagination .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .download-app__title h4 {
    font-size: 20px;
  }
  .download-app__title p {
    font-size: 12px;
  }
  #modal-search-full form.search_global .row div input {
    font-size: 12px;
  }
  .article-intro__info .article-intro__comments {
    display: none;
  }
}
@media only screen and (max-width: 370px) {
  .newsletter-form {
    margin-right: 0;
    margin-bottom: 0px;
    padding-right: 0;
    padding-bottom: 0px;
    border-right: 0;
    border-bottom: 0px solid #fff;
  }
  .download-app {
    display: none;
  }
}
@media only screen and (max-width: 1086px) {
  .header.header-2 .header-main .header-main-cont .col-h3 {
    padding-right: 0;
  }
  .header.header-2 .nav-item.rv_myaccount a {
    font-size: 12px;
  }
  .header.header-2 .vender-link {
    font-size: 12px;
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 1393px) {
  .header .header-main .col-h3 {
    padding-right: 0;
  }
  .header .header-main .col-h2, .header .header-main .user-alerts {
    display: none;
  }
}
@media only screen and (max-width: 1039px) {
  .header.header-2 .vender-link {
    margin: 16px 10px 16px 5px;
  }
}
@media only screen and (max-width: 1000px) {
  .header .header-main .col-h4 {
    margin-right: 80px;
  }
  .header.header-2 .vender-link {
    display: none;
  }
  .header.header-2.header-fixed .header-main .navbar-brand {
    padding-left: 20px;
  }
  .header-main .navbar-brand {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 783px) {
  .admin-bar [data-off-canvas*=left] {
    margin-top: 46px;
  }
  .admin-bar .header.header-2 {
    margin-top: 46px;
  }
}
@media only screen and (max-width: 500px) {
  .header .header-main .col-h4 {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .sidebar_right .sidebar {
    padding-left: 0px;
  }
  .col-lg-3.sidebar_right {
    padding: 0;
    margin-top: 50px;
  }
  .widget.widget_search form {
    width: 100%;
  }
  html .docspress-archive .docspress-archive-list > .docspress-archive-list-item {
    flex: 1 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 1251px) {
  .youzify-content .listing__products .row#fl-places-ajax-container .b-goods-f.fl-places-slider-inner {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media only screen and (max-width: 1200px) {
  .tm_navigation_style_two .header-call {
    display: none;
  }
  .tm_navigation_style_four .header-call__box-link {
    font-size: 24px;
  }
  .tm_navigation_style_four .header-call {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  header.header.tm_navigation_style_two.header--active:not(.fixed-enable) {
    background: transparent;
    box-shadow: unset;
  }
  header.header.tm_navigation_style_two.header--active:not(.fixed-enable) .user-nav__link:nth-child(1) {
    border: 1px solid #fff;
  }
  header.header.tm_navigation_style_two.header--active:not(.fixed-enable) svg path {
    fill: #fff;
  }
  header.header.tm_navigation_style_two {
    border-bottom: 0px;
  }
  .header.tm_navigation_style_two .dl-menuwrapper {
    top: 0px;
    left: 0;
  }
  .tm_navigation_style_two .header__inner {
    position: relative;
  }
  .tm_navigation_style_two .logo {
    height: fit-content;
  }
  .youzify-content .listing__products .row#fl-places-ajax-container .b-goods-f.fl-places-slider-inner {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tm_footer_style_style_two .footer__inner .footer__box {
    margin-right: 0;
  }
  .tm_nav_style_one .main__blog.tm_blog .blog__inner {
    gap: unset;
  }
  .tm_navigation_style_two .header__menu {
    display: none;
  }
  .tm_navigation_style_two .header__wrapper {
    justify-content: flex-end;
  }
  .tm_navigation_style_two .logo {
    margin-left: 100px;
  }
  .tm_navigation_style_two .dl-menuwrapper {
    top: 22px;
  }
  .tm_navigation_style_two .dl-menuwrapper button {
    background: #ed2222;
  }
  .tm_navigation_style_two .dl-menuwrapper ul {
    background: #ed2222;
  }
  .tm_nav_style_two .main__section-top {
    padding-top: 185px;
  }
  .header.tm_navigation_style_three .dl-menuwrapper {
    top: 18px;
  }
  .header.tm_navigation_style_three .header__wrapper {
    padding: 20px 24px 20px 80px;
  }
  .tm_navigation_style_four .logo {
    margin-left: 100px;
  }
  .header.tm_navigation_style_four .dl-menuwrapper {
    top: 45px;
  }
  .tm_navigation_style_four .header-call {
    display: block;
  }
  .tm_navigation_style_four .header__inner .header__wrapper .header__menu {
    display: none;
  }
  .tm_navigation_style_four .header-call svg {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .tm_blog .blog__inner {
    display: flex;
    flex-direction: column;
  }
  .tm_blog .blog__inner .blog__list {
    order: 1;
  }
  .tm_blog .blog__inner .blog__aside {
    order: 2;
  }
}
@media only screen and (max-width: 992px) {
  .right-sidebar .blog-grid-style-two, .left-sidebar .blog-grid-style-two {
    grid-template-columns: 1fr;
  }
  .col-lg-12 .b-post-group.blog-grid__inner.blog-grid-style-two {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 630px) {
  .col-lg-12 .b-post-group.blog-grid__inner.blog-grid-style-two {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------------------------------------

==  Woo

-------------------------------------------------------------------*/
.woocommerce .return-to-shop {
  margin-top: 15px;
}
.woocommerce .return-to-shop a.wc-backward {
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  padding: 15px 35px;
  line-height: 1;
  color: #fff;
  border: 1px solid;
  transition: all 0.3s;
}
.woocommerce .return-to-shop a.wc-backward:hover {
  transition: all 0.3s;
}
.woocommerce table.shop_table {
  border-radius: 0 !important;
  border-collapse: collapse !important;
}
.woocommerce table.shop_table thead {
  border-bottom: 1px solid;
  border-collapse: collapse;
}
.woocommerce table.shop_table thead tr th {
  border-bottom: 0;
  color: #1c1f23;
  font-size: 15px;
  border-right: 1px solid #dddddd;
  text-align: center;
  padding: 18px 29px 16px;
  line-height: 1;
  vertical-align: top;
  background: #f2f6f7;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table.shop_table thead tr th:last-child {
  border-right: none;
}
.woocommerce table.shop_table tbody tr td {
  text-align: center;
  padding: 18px 29px 16px;
  border-right: 1px solid #dddddd;
  vertical-align: center;
  line-height: 1;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table.shop_table tbody tr td:last-child {
  border-right: none;
}
.woocommerce table.shop_table tbody tr td.product-thumbnail {
  text-align: center;
}
.woocommerce table.shop_table tbody tr td.product-thumbnail img {
  min-width: 85px;
  margin: 0 auto;
  width: fit-content;
}
.woocommerce table.shop_table tbody tr td.product-remove a.remove {
  position: relative;
  height: 25px;
  width: 25px;
  text-indent: -99999px;
  font-weight: 400;
  display: inline-block;
}
.woocommerce table.shop_table tbody tr td.product-remove a.remove:before {
  color: #fe5339;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-indent: 0;
  content: "\ec30";
  font-family: fl-custom-icon-font;
  transition: 0.3s ease;
}
.woocommerce table.shop_table tbody tr td.product-remove a.remove:hover {
  background: transparent;
}
.woocommerce table.shop_table tbody tr td.product-remove a.remove:hover:before {
  opacity: 0.5;
  transition: 0.3s ease;
}
.woocommerce table.shop_table tbody tr td.product-quantity .quantity {
  padding: 7px 15px;
  border: 1px solid #dddddd;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.woocommerce table.shop_table tbody tr td.product-quantity .quantity i {
  cursor: pointer;
  color: #a8aaab;
  font-size: 9px;
  margin: 5px;
}
.woocommerce table.shop_table tbody tr td.product-quantity .quantity input {
  padding: 6px;
  width: 50px;
  border: none;
}
.woocommerce table.shop_table tbody tr td.product-quantity .quantity input::-webkit-outer-spin-button, .woocommerce table.shop_table tbody tr td.product-quantity .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce table.shop_table tbody tr td.product-quantity .quantity input:hover, .woocommerce table.shop_table tbody tr td.product-quantity .quantity input:active, .woocommerce table.shop_table tbody tr td.product-quantity .quantity input:focus {
  background: transparent !important;
  box-shadow: none !important;
}
.woocommerce table.shop_table tbody tr td.product-name a {
  color: #1c1f23;
  font-size: 13px;
  transition: all 0.3s;
}
.woocommerce table.shop_table tbody tr td.product-name a:hover {
  transition: all 0.3s;
}
.woocommerce table.shop_table tbody tr td.actions .coupon input#coupon_code {
  min-height: 45px;
  padding: 13px 15px 13px;
  min-width: 200px;
  font-size: 12px;
  margin-right: 7px;
}
.woocommerce table.shop_table tbody tr td.actions .coupon button {
  background-color: #de0a89;
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  margin: 0;
  height: 49px;
  border-radius: 3px;
  font-size: 14px;
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.woocommerce table.shop_table tbody tr td.actions .coupon button:hover {
  transition: all 0.3s;
}
.woocommerce table.shop_table tbody tr td.actions .update--cart-content {
  float: right;
}
.woocommerce table.shop_table tbody tr td.actions .update--cart-content button.update_cart {
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #fff;
  min-height: 45px;
  border-radius: 0;
  font-size: 11px;
  padding: 10px 25px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.woocommerce table.shop_table tbody tr td.actions .update--cart-content button.update_cart:hover:enabled {
  transition: all 0.3s;
}
.woocommerce table.shop_table tbody tr td.product-name {
  margin-top: 30px;
}
.woocommerce table.shop_table tbody tr td.product-name dl.variation {
  display: block;
  width: 100%;
  font-size: 14px;
  position: relative;
  background: #fff;
  top: -15px;
}
.woocommerce table.shop_table tbody tr td.product-name dl.variation:before, .woocommerce table.shop_table tbody tr td.product-name dl.variation:after {
  content: " ";
  display: table;
}
.woocommerce table.shop_table tbody tr td.product-name dl.variation:after {
  clear: both;
}
.woocommerce table.shop_table tbody tr td.product-name dl.variation dt {
  padding: 4px 7px 7px 0 !important;
  margin: 0 !important;
  float: left;
  color: #222222;
}
.woocommerce table.shop_table tbody tr td.product-name dl.variation dd {
  float: left;
  padding: 4px 7px 7px 0 !important;
  margin: 0 !important;
}
.woocommerce table.shop_table tbody tr td.product-name dl.variation dd p {
  margin: 0px;
}
.woocommerce table.shop_table tbody tr.cart-subtotal td {
  color: #1c1f23;
  font-weight: 500;
}
.woocommerce table.shop_table tbody tr.cart-subtotal th {
  color: #1c1f23;
  font-weight: 500;
}
.woocommerce table.shop_table tbody tr.order-total th {
  font-weight: 600;
  color: #1c1f23;
}
.woocommerce table.shop_table tbody tr.order-total td {
  font-weight: 600;
  color: #1c1f23;
}
.woocommerce table.shop_table tfoot th {
  text-align: center;
  padding: 18px 29px 16px;
  vertical-align: center;
  line-height: 1;
  font-size: 12px;
  border-right: 1px solid #dddddd;
}
.woocommerce table.shop_table tfoot td {
  text-align: center;
  padding: 18px 29px 16px;
  vertical-align: center;
  line-height: 1;
  font-size: 12px;
  width: 15%;
}
.woocommerce table.shop_table tfoot tr.cart-subtotal td {
  color: #1c1f23;
  font-weight: 500;
}
.woocommerce table.shop_table tfoot tr.cart-subtotal th {
  color: #1c1f23;
  font-weight: 500;
}
.woocommerce table.shop_table tfoot tr.order-total th {
  font-weight: 600;
  color: #1c1f23;
}
.woocommerce table.shop_table tfoot tr.order-total td {
  font-weight: 600;
  color: #1c1f23;
}
.woocommerce .actions button.button {
  background-color: #de0a89;
  display: inline-block;
  color: #fff !important;
  padding: 8px 25px;
  margin: 0;
  border-radius: 3px;
  font-size: 14px;
  height: 49px;
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 18px;
}
.woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr th {
  font-size: 12px;
  padding: 18px 29px 16px;
  border: 1px solid #dddddd;
}
.woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr td {
  font-size: 12px;
  padding: 18px 29px 16px;
  width: 15%;
}
.woocommerce .cart-collaterals .cart_totals a.checkout-button {
  background-color: #de0a89;
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  margin: 0;
  width: 100%;
  height: 49px;
  line-height: 32px;
  border-radius: 3px;
  font-size: 14px;
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.woocommerce .cart-collaterals .cart_totals a.checkout-button:active, .woocommerce .cart-collaterals .cart_totals a.checkout-button:checked, .woocommerce .cart-collaterals .cart_totals a.checkout-button:focus {
  color: #fff !important;
}
.woocommerce .cart-collaterals .cart_totals a.checkout-button:hover {
  transition: all 0.3s;
}

.fl-content .woocommerce .woocommerce-MyAccount-content .col-1 {
  max-width: 100%;
}

.woocommerce-shipping-calculator .select2-container--default .select2-selection--single {
  height: 40px;
}
.woocommerce-shipping-calculator .select2-container--default .select2-search--dropdown .select2-search__field {
  height: 35px;
  margin-bottom: 0;
}
.woocommerce-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  height: 40px;
  color: #7b7d7f;
  text-align: left;
  padding-left: 14px;
}
.woocommerce-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
}
.woocommerce-shipping-calculator .shipping-calculator-button {
  transition: 0.3s ease;
}
.woocommerce-shipping-calculator .shipping-calculator-button:hover {
  transition: 0.3s ease;
}
.woocommerce-shipping-calculator button.button {
  text-transform: uppercase;
  font-size: 11px !important;
  color: #fff;
  transition: 0.3s ease;
  width: calc(100% - 4px);
  border-radius: 0;
}
.woocommerce-shipping-calculator button.button:hover {
  color: #ffffff;
  transition: 0.3s ease;
}

.wc-proceed-to-checkout a.checkout-button {
  background-color: #de0a89;
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  margin: 0;
  height: 49px;
  border-radius: 3px;
  font-size: 14px;
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.woocommerce button.button:disabled {
  transition: 0.3s ease;
}
.woocommerce button.button:disabled:hover {
  transition: 0.3s ease;
}

.return-to-shop a.button {
  background-color: #de0a89;
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 24px;
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.return-to-shop a.button:hover {
  background-color: #6fb134;
}

form.checkout #customer_details .col-1, form.checkout #customer_details .col-2 {
  margin-top: 20px;
  max-width: none;
}
form.checkout #customer_details .col-1 {
  padding-left: 0;
}
form.checkout #customer_details .col-2 {
  padding-right: 0;
}
form.checkout textarea {
  min-height: 140px;
}
form.checkout p {
  display: block;
}
form.checkout p label {
  color: #1c1f23;
  font-size: 12px;
  margin-bottom: 7px;
}
form.checkout h3 {
  font-size: 18px;
}
form.checkout input {
  width: 100%;
}
form.checkout #order_review_heading {
  margin-top: 15px;
}
form.checkout #order_review {
  padding: 0 !important;
  padding: 0 15px;
}
form.checkout #order_review #payment {
  border-radius: 0;
  padding: 35px 40px;
  background: #f9f9f9;
}
form.checkout #order_review #payment ul.wc_payment_methods {
  border-bottom: none;
  box-shadow: 0 5px 6px rgba(4, 4, 4, 0.1);
  margin-bottom: 15px;
  background: #fff;
  list-style: none;
  padding: 20px 35px;
}
form.checkout #order_review #payment ul.wc_payment_methods li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  background: transparent !important;
  border: none !important;
}
form.checkout #order_review #payment ul.wc_payment_methods li:before {
  display: none;
}
form.checkout #order_review #payment ul.wc_payment_methods li a {
  font-weight: 500;
  color: #1c1f23;
  font-size: 12px;
  text-decoration: underline !important;
  margin-left: 10px;
  transition: all 0.3s;
}
form.checkout #order_review #payment ul.wc_payment_methods li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
form.checkout #order_review #payment ul.wc_payment_methods li label {
  color: #1c1f23;
  font-size: 13px;
}
form.checkout #order_review #payment ul.wc_payment_methods li .payment_box {
  width: 100%;
  background: #f9f9f9;
}
form.checkout #order_review #payment ul.wc_payment_methods li .payment_box:before {
  border: 1em solid #f9f9f9;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
form.checkout #order_review #payment ul.wc_payment_methods li input {
  margin-right: 6px;
  width: 0;
  position: relative;
  display: inline-block;
  float: left;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  -o-appearance: none !important;
  appearance: none !important;
}
form.checkout #order_review #payment ul.wc_payment_methods li input:before {
  cursor: pointer;
  top: -8px;
  position: absolute;
  left: -17px;
  content: "";
  display: block;
  width: 17px;
  height: 16px;
  border: 1px solid #eaeaeb;
  border-radius: 100%;
}
form.checkout #order_review #payment ul.wc_payment_methods li input:checked:after {
  position: absolute;
  top: -5px;
  left: -13px;
  font: 10px/1 FontAwesome;
  content: "\f00c";
  text-align: center;
}
form.checkout #order_review #payment .place-order {
  padding: 0;
}
form.checkout #order_review #payment .place-order .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 10px;
}
form.checkout #order_review #payment .place-order button {
  background-color: #de0a89;
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 24px;
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
form.checkout #order_review #payment .place-order button:hover {
  background-color: #6fb134;
}
form.checkout .address-field .woocommerce-input-wrapper .select2-container {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
form.checkout .address-field .woocommerce-input-wrapper .select2-container .selection {
  width: 100%;
}
form.checkout .address-field .woocommerce-input-wrapper .select2-container .select2-selection--single {
  border-radius: 0;
  height: 45px;
  line-height: 45px;
}
form.checkout .address-field .woocommerce-input-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
  height: 45px !important;
  position: absolute !important;
  top: 0 !important;
  right: 5px !important;
  width: 25px !important;
}
form.checkout .address-field .woocommerce-input-wrapper .select2-container .select2-selection__rendered {
  padding-left: 15px !important;
  height: 45px;
  display: flex;
  align-items: center;
}
form.checkout .address-field .woocommerce-input-wrapper .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
  top: 18px !important;
}

.woocommerce form.checkout_coupon {
  border-radius: 0;
}
.woocommerce form.checkout_coupon button {
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  min-height: 45px;
  padding: 10px 25px;
  color: #fff;
  transition: all 0.3s;
}
.woocommerce form.checkout_coupon button:hover {
  color: #ffffff;
  transition: all 0.3s;
}

.woocommerce-shipping-fields #ship-to-different-address {
  display: flex;
}
.woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
}
.woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {
  margin-top: -2px;
  margin-right: 6px;
  width: 0;
  position: relative;
  display: inline-block;
  float: left;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
}
.woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox:before {
  cursor: pointer;
  top: -8px;
  position: absolute;
  left: 0px;
  content: "";
  display: block;
  width: 17px;
  height: 16px;
  border: 1px solid #eaeaeb;
}
.woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox:checked:after {
  position: absolute;
  top: -5px;
  left: 4px;
  font: 9px/1 FontAwesome;
  content: "\f00c";
  text-align: center;
}
.woocommerce-shipping-fields #ship-to-different-address span {
  margin-left: 20px;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single {
  background: #f1f5fa !important;
  border-color: transparent !important;
  border-radius: 0 !important;
}
.woocommerce form .form-row input.input-text:hover, .woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:hover, .woocommerce form .form-row textarea:focus, .select2-container--default .select2-selection--single:hover, .select2-container--default .select2-selection--single:focus {
  box-shadow: 0 8px 22px 0 rgba(0, 0, 0, 0.1) !important;
  transition: 0.3s ease;
  background: #fff !important;
}

.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
  display: none;
}

.woocommerce-cart-form .variation dd p {
  margin-top: 0 !important;
}

.checkout.woocommerce-checkout table.shop_table tfoot th {
  border: 1px solid #dddddd;
}
.checkout.woocommerce-checkout table.shop_table tfoot td {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout.woocommerce-checkout .payment_box.payment_method_cod p {
  margin-top: 0px;
}

/*# sourceMappingURL=general.css.map */
