@charset "UTF-8";
/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/
/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Spacer...............Specific styles for the spacer block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */
/* Categories 01 to 03 are the basics. */
@font-face {
  font-family: 'Montserrat';
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Semi-bold';
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Extra-bold';
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Black';
  src: url("/wp-content/themes/twentytwentyone/assets/fonts/Montserrat-Black.ttf") format("truetype");
}

/* Variables */
:root {
  --global--theme-images: "/wp-content/themes/twentytwentyone/assets/images/";
}

.color-wite {
  color: #FFFFFF;
}

.clolor-black {
  color: #12222E;
}

.clolor-blуe {
  color: #0777EB;
}

.text-color-red {
  color: #E84343;
}

.text-black {
  font-family: Montserrat-Black;
}

.text-extra-bold {
  font-family: Montserrat-Extra-bold;
}

.text-bold {
  font-family: Montserrat-Bold;
}

.text-semi-bold {
  font-family: Montserrat-Semi-bold;
}

.blue-background {
  background: linear-gradient(100.09deg, #0777EB 42.45%, #2E43C7 100%);
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-30 {
  border-radius: 30px;
}

.background-white {
  background-color: #fff;
}

.button-box-shadow {
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}

.blue-gradient-text {
  background: -webkit-linear-gradient(270deg, #0777EB 60%, #2E43C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

.on-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.verical-align-top {
  vertical-align: top;
}

.verical-align-bottom {
  vertical-align: bottom;
}

.verical-align-middle {
  vertical-align: middle;
}

.menu-button-container {
  display: none;
}

.flex-basis-50 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.title-48 {
  font-size: 48px;
  line-height: 150%;
}

.title-30 {
  font-size: 30px;
  line-height: 37px;
}

.title-24 {
  font-size: 24px;
  line-height: 29px;
}

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

.p-t-20 {
  padding-top: 20px;
}

.p-t-35 {
  padding-top: 35px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-b-15 {
  margin-bottom: 15px;
}

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

.uppercase {
  text-transform: uppercase;
}

.btn-round {
  padding: 10px 20px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration-thickness: 1px;
}

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

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

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

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

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

/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  /* Apply border-box across the entire page. */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Montserrat;
  line-height: 150%;
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-size: 14px;
  line-height: 150%;
  font-weight: normal;
  color: #12222E;
  text-align: left;
  background-color: #FDFDFD;
}

button {
  cursor: pointer;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/* Category 04 can contain any default HTML element. Do not add classes here, just give the elements some basic styles. */
/* Over here, place any elements that do not need to have their own file. */
b,
strong {
  font-weight: 700;
}

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

pre {
  white-space: pre;
  overflow-x: auto;
}

/* Category 05 is all about adjusting the default block styles to the given layout. I only added three blocks as examples. */
/* Category 06 contains all "bigger" components which contain elements of the previous two categories like header, footer, page template, single template, comments section, archives, ... */
.site-branding-bg {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/header_bg.jpg");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.site-header-area {
  padding: 18px 0;
}

.site-header-area a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  color: inherit;
  font-family: Montserrat-Semi-bold;
  cursor: pointer;
}

.primary-header-navigation-hover {
  display: none;
}

.header-menu-wrapper {
  list-style: none;
}

.header-menu-wrapper .menu-item {
  list-style: none;
  display: inline-block;
  position: relative;
  margin: 0 15px;
}

.header-menu-wrapper .menu-item:hover .primary-header-navigation-hover {
  display: block;
  position: absolute;
  bottom: -33px;
  border-bottom: 2px solid #FFFFFF;
  width: 100%;
}

.site-header-button {
  margin: 0 5px;
  padding: 15px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site-header-button__background-flur {
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.site-header-button__background-flur:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.site-header-button__border-radius-40 {
  border: 1px solid transparent;
  border-radius: 40px;
}

.site-header-button__border-radius-40:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ico {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  content: " ";
  background-repeat: no-repeat;
  margin-right: 5px;
  background-position: center;
  padding: 5px;
}

.user-ico {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/usr_ico.svg");
}

.cart-ico {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/cart_ico.svg");
}

.search-ico {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/search.svg");
}

.search-ico-b {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/search_b.svg");
}

.search-button {
  color: #E84343;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.14);
  border-radius: 22.6017px;
  padding: 10px 20px;
  border: 0 none;
  text-transform: uppercase;
}

.form-input, .search-form-input {
  display: none;
}

.search-form {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: #fdfdfd;
}

.search-form .form-input {
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background-color: transparent;
  border: 0 none;
  outline: 0 none;
  width: calc(100% - 40px);
}

.search-form .form-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7E7E7E;
}

.search-form .form-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #7E7E7E;
}

.search-form .form-input:-ms-input-placeholder {
  /* IE 10+ */
  color: #7E7E7E;
}

.search-form .form-input:-moz-placeholder {
  /* Firefox 18- */
  color: #7E7E7E;
}

.search-form .form-input:active, .search-form .form-input:focus, .search-form .form-input:focus-visible {
  border: 0 none;
  outline: 0 none;
}

.search-form .search-form-input {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 90%;
  padding: 7px 0;
}

.sub-menu.sub-menu-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  background: transparent;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  min-width: auto;
  margin: 5px 0 0;
  padding: 0;
}

.sub-menu.sub-menu-open .menu-item {
  padding: 5px 0;
}

.sub-menu.sub-menu-open a {
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
}

.sub-menu.sub-menu-open a:hover {
  text-decoration: underline;
}

.footer-nav-wraper {
  background: rgba(243, 243, 243, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(120px);
          backdrop-filter: blur(120px);
  padding: 70px 0;
}

.footer-nav-wraper .site-logo {
  width: 15%;
}

.footer-nav-wraper .footer-navigation {
  width: 85%;
}

.footer-navigation-wrapper {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-navigation-wrapper > .menu-item {
  width: 25%;
}

.footer-navigation-category {
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.flex-basis-50 .sub-menu-open .menu-item {
  display: inline;
  width: 50%;
}

.help-wraper {
  position: relative;
  padding-bottom: 35px;
}

.help-info, .subscribe-wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.help-info {
  margin-bottom: -6px;
}

.help-box, .subscribe-box {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.help-box {
  margin-bottom: 0;
}

.help-box p {
  width: 72%;
  margin: 15px 0;
}

.subscribe-box p {
  width: 72%;
  margin: 15px 0;
}

.help-comunication {
  margin-top: 35px;
}

.subscribe-wraper {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/footer_bgd.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  min-height: 320px;
  padding: 70px 95px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tire-image-item {
  display: inline-block;
  position: relative;
  content: " ";
  width: 433px;
  height: 330px;
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/tire_image.png");
  background-size: cover;
  background-position: 0 0;
  margin: 0 0 0 10%;
}

.help-subtitle, .subscribe-subtitle {
  opacity: 0.6;
}

.comunication-btn {
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 15px;
}

.comunication-btn:last-child {
  margin-right: 0;
}

.chat-comunication {
  color: #00CEC9;
}

.comunication-ico {
  content: " ";
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 10px;
}

.call-ico {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/phone_ico.svg");
}

.chat-ico {
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/message_square_ico.svg");
}

.subscribe-form {
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 40px;
  padding: 7px 8px 7px 25px;
  width: 100%;
}

.subscribe-form .btn-round {
  padding: 15px 20px;
  border: 1px solid #fff;
}

.subscribe-form input {
  background-color: transparent;
  border: 0 none;
  outline: 0 none;
  width: 70%;
}

.subscribe-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

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

.subscribe-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

.subscribe-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.subscribe-form input:active, .subscribe-form input:focus, .subscribe-form input:focus-visible {
  border: 0 none;
  outline: 0 none;
}

.content-area {
  padding: 30px 0;
}

.error404 main p {
  font-size: 18px;
}

.primary-navigation {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  background-color: #fdfdfd;
}

.menu-wrapper {
  list-style: none;
}

.menu-wrapper .menu-item {
  display: inline-block;
  position: relative;
  padding: 10px 15px;
}

.menu-wrapper .menu-item a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  color: #12222e;
  font-family: Montserrat-Semi-bold;
  cursor: pointer;
}

.menu-wrapper > .menu-item:hover {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 3.23577px 3.23577px rgba(36, 37, 46, 0.08), 0px 6.47154px 12.9431px rgba(36, 37, 46, 0.16);
          box-shadow: 0px 3.23577px 3.23577px rgba(36, 37, 46, 0.08), 0px 6.47154px 12.9431px rgba(36, 37, 46, 0.16);
  border-radius: 16.1789px;
  /*.sub-menu-delimiter {
            display: block;
        }*/
}

.menu-wrapper > .menu-item:hover .sub-menu {
  display: block;
}

.menu-wrapper > .menu-item:hover .sub-menu .menu-item {
  padding: 0;
}

.menu-wrapper > .menu-item:hover .sub-menu .menu-item a:hover {
  text-decoration: underline;
}

.menu-wrapper .menu-item.menu-item-has-children:hover {
  border-radius: 16.1789px 16.1789px 0 0;
}

.sub-menu, .sub-menu-delimiter {
  display: none;
}

.sub-menu {
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 3.23577px 3.23577px rgba(36, 37, 46, 0.08), 0px 6.47154px 12.9431px rgba(36, 37, 46, 0.16);
          box-shadow: 0px 3.23577px 3.23577px rgba(36, 37, 46, 0.08), 0px 6.47154px 12.9431px rgba(36, 37, 46, 0.16);
  padding: 10px 10px 15px;
  margin: 0 -15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: calc(100% + 20px);
  border-radius: 0 16.1789px 16.1789px 16.1789px;
}

.sub-menu .menu-item {
  display: block;
  width: 100%;
}

.sub-menu .menu-item a {
  white-space: nowrap;
  word-break: normal;
}

.sub-menu-delimiter {
  position: relative;
  width: 100%;
  opacity: 0.1;
  border-bottom: 1px solid #000000;
  margin: 5px 0;
}

.sub-menu-toggle {
  border: 0 none;
  background-color: transparent;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  content: " ";
  width: 24px;
  height: 24px;
  padding: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/twentytwentyone/assets/images/drop_down_arrow.svg");
}

.menu-item-has-children:hover .sub-menu-toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fix-navigation {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-wraper {
  position: relative;
  width: 100%;
}

.blue-bg-gradient:hover {
  background: linear-gradient(100.09deg, #0777EB 42.45%, #2E43C7 100%);
}

.category-widget-item_button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: #100C0B;
  padding: 5px 20px;
}

.category-widget-item_button:hover {
  color: #FFFFFF;
}

.category-widget-item_button:hover .category-widget-item_wrapper img {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) brightness(100%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(0%) brightness(100%) contrast(100%);
}

.categories-widget_title {
  font-size: 16px;
}

.categories-widget {
  display: inline-block;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.categories-widget ul {
  list-style: none;
  width: 100%;
}

.category-widget-item {
  width: 50%;
}

.category-widget-item_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.category-widget-item_wrapper img {
  display: inline;
  position: relative;
  vertical-align: middle;
  margin-right: 20px;
}

.category-widget-item_wrapper span {
  display: inline;
  position: relative;
  vertical-align: middle;
}

.h-56 {
  min-height: 56px;
}

/* Category 07 is for any utility classes that are not assigned to a specific component. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

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

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

@media (prefers-reduced-motion) {
  * {
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
    -webkit-transition-duration: 0s !important;
            transition-duration: 0s !important;
  }
}

header *,
main *,
footer * {
  max-width: 1680px;
}

html,
body,
div,
header,
nav,
article,
figure,
hr,
main,
section,
footer {
  max-width: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.content-container {
  max-width: 1181px;
  margin: 0 auto;
}

.is-IE .navigation .nav-links {
  display: block;
}

.is-IE .post-thumbnail .wp-post-image {
  min-width: auto;
}
/*# sourceMappingURL=style.css.map */