/*!
Theme Name: Virtual office theme
Theme URI: https://starter.rs/
Author: Purezeen
Author URI: https://purezeen.rs/
Description: Custom theme for virtual office
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: virtual-office
Tags: custom-background, custom-logo, custom-menu, featured-images
*/
/*--------------------------------------------------------------
# Configuration and helpers
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# COLORS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# RESPONSIVE BREAKPOINTS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
/* ============ MIXINS ============= */
/* ============ END MIXINS ============= */
/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.unstyle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unstyle-list li {
  padding: 0;
  margin: 0;
}
.unstyle-list li:before {
  display: none;
}

.disable-scroll {
  overflow: hidden;
}

.open-modal {
  overflow: hidden;
  padding-right: 15px;
}

.display-none {
  display: none;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.arrow {
  border: solid #193A28;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 0.4rem;
}
.arrow--light {
  border-color: #193A28;
}
.arrow.right {
  transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
}

.table-scroll {
  overflow-x: auto;
}

.text-white {
  color: white;
}

.text-whiteoff {
  color: #D3D3D3;
}

.mob-hide {
  display: none;
}
@media (min-width: 992px) {
  .mob-hide {
    display: block;
  }
}

@media (min-width: 992px) {
  .desktop-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Vendors
--------------------------------------------------------------*/
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers (opinionated).
   */
body {
  margin: 0;
}

/**
   * Add the correct display in IE 9-.
   */
article,
aside,
footer,
header,
nav,
section {
  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
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   * 1. Add the correct display in IE.
   */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
   * Add the correct margin in IE 8.
   */
figure {
  margin: 1em 40px;
}

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  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, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
   * Remove the outline on focused links when they are also active or hovered
   * in all browsers (opinionated).
   */
a:active,
a:hover {
  outline-width: 0;
}

/**
   * 1. Remove the bottom border in Firefox 39-.
   * 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: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   */
b,
strong {
  font-weight: inherit;
}

/**
   * 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, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font style in Android 4.3-.
   */
dfn {
  font-style: italic;
}

/**
   * Add the correct background and color in IE 9-.
   */
mark {
  background-color: #ff0;
  color: #000;
}

/**
   * 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
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   */
audio,
video {
  display: inline-block;
}

/**
   * Add the correct display in iOS 4-7.
   */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
   * Remove the border on images inside links in IE 10-.
   */
img {
  border-style: none;
}

/**
   * Hide the overflow in IE.
   */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 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;
}

/**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
   * 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;
}

/**
   * Change the border, margin, and padding in all browsers (opinionated).
   */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
   * 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 {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * 1. Add the correct display in IE 9-.
   * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
   * Remove the default vertical scrollbar in IE.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10-.
   * 2. Remove the padding in IE 10-.
   */
[type=checkbox],
[type=radio] {
  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 and cancel buttons in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-cancel-button,
[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 IE 9-.
   * 1. Add the correct display in Edge, IE, and Firefox.
   */
details,
menu {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Scripting
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   */
canvas {
  display: inline-block;
}

/**
   * Add the correct display in IE.
   */
template {
  display: none;
}

/* Hidden
     ========================================================================== */
/**
   * Add the correct display in IE 10-.
   */
[hidden] {
  display: none;
}

/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.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;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -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;
}

/* =WordPress Core - Sassified.
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #565656;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}
body {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  body {
    font-size: calc(15px + 1 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 16px;
  }
}
body {
  line-height: 19px;
}
@media screen and (min-width: 320px) {
  body {
    line-height: calc(19px + 1 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  body {
    line-height: 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.8rem 0;
  color: #2D2D2D;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 600;
}

p {
  margin: 0 0 1.5rem 0;
}

h1 {
  line-height: 1.3;
  margin-bottom: 12px;
}
h1 {
  font-size: 33px;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(33px + 23 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h1 {
    font-size: 56px;
  }
}

h2 {
  line-height: 1.3;
}
h2 {
  font-size: 28px;
}
@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(28px + 18 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 46px;
  }
}

h3 {
  line-height: 1.3;
}
h3 {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  h3 {
    font-size: calc(24px + 12 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h3 {
    font-size: 36px;
  }
}

h4 {
  line-height: 1.3;
}
h4 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  h4 {
    font-size: calc(22px + 10 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h4 {
    font-size: 32px;
  }
}

h5, .h5 {
  line-height: 1.3;
}
h5, .h5 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  h5, .h5 {
    font-size: calc(20px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h5, .h5 {
    font-size: 24px;
  }
}

h6, .h6, .hero-single__text p {
  line-height: 1.3;
}
h6, .h6, .hero-single__text p {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  h6, .h6, .hero-single__text p {
    font-size: calc(18px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h6, .h6, .hero-single__text p {
    font-size: 22px;
  }
}

.big-text {
  line-height: 1.3;
}
.big-text {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .big-text {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .big-text {
    font-size: 18px;
  }
}

.small-text {
  line-height: 1.3;
}
.small-text {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .small-text {
    font-size: calc(12px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .small-text {
    font-size: 14px;
  }
}

.xsmall-text {
  font-size: 12px;
  line-height: 1.3;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
   * Make all elements from the DOM inherit from the parent box-sizing
   * Since `*` has a specificity of 0, it does not override the `html` value
   * making all elements inheriting from the root box-sizing value
   * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 37%;
}
@media (min-width: 768px) {
  html {
    font-size: 43%;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 53%;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}
html.noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  html.noscroll {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

html {
  scroll-behavior: smooth;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 992px) {
  .container-inner {
    max-width: 970px;
  }
}

ul,
ol {
  margin: 1.8rem 0;
  padding-left: 25px;
}
@media (min-width: 1200px) {
  ul,
  ol {
    padding-left: 2.6rem;
  }
}
ul li,
ol li {
  margin-bottom: 1rem;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-video video {
  max-width: 720px;
}

/**
 * Basic styles for links
 */
a {
  cursor: pointer;
  color: #565656;
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover, a:active {
  outline: 0;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.btn {
  display: inline-block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  padding: 13px 20px;
  min-width: 130px;
  border-radius: 50px;
  text-align: center;
  transition: 0.25s ease-in-out;
}
.btn--primary {
  background: #FF8762;
  border: 1px solid #FF8762;
  color: white;
}
.btn--primary:hover {
  background: white;
  color: #FF8762;
}
.btn--light {
  background: white;
  border: 1px solid #FF8762;
  color: #FF8762;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.hero {
  background-color: #193A28;
  min-height: 340px;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .hero {
    min-height: 400px;
    padding: 50px 0 0 0;
    background-image: linear-gradient(90deg, rgb(25, 58, 40) 0%, rgba(25, 58, 40, 0) 20%), url("img/hero-bg.png");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 100% 0;
  }
}
@media (min-width: 992px) {
  .hero {
    min-height: 615px;
    padding: 11rem 0 0 0;
  }
}
@media (min-width: 768px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}
@media (min-width: 1200px) {
  .hero__left {
    padding-left: 100px;
    padding-bottom: 5rem;
  }
}
.hero__right {
  position: relative;
}
@media (min-width: 1200px) {
  .hero__right {
    padding-right: 40px;
  }
}
.hero__tabs {
  margin-top: 24px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero__tabs {
    margin-top: 6rem;
    margin-bottom: 0;
  }
}
.hero__tab {
  display: block;
  padding: 14px 16px;
  border-radius: 6px;
  background-color: #204732;
  border: 1px solid #204732;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero__tab {
    padding: 20px 25px 20px 23px;
    margin-bottom: 2.4rem;
  }
}
.hero__tab:last-of-type {
  margin-bottom: 0;
}
.hero__tab-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
}
.hero__tab-text {
  display: none;
  font-size: 16px;
  font-weight: 400;
  margin-top: 7px;
  line-height: 1.4;
}
.hero__tab-text small {
  font-style: normal;
  opacity: 0.4;
}
.hero__tab-text p {
  margin-bottom: 5px;
}
.hero__tab-text p:last-of-type {
  margin-bottom: 0;
}
.hero__tab.active {
  background-color: #204732;
  border: 1px solid #FF8762;
  background: rgba(255, 135, 98, 0.3);
}
.hero__tab.active .hero__tab-text {
  display: block;
}
.hero__tab:not(.active):hover {
  border: 1px solid #FF8762;
}
.hero__tab img {
  width: 17px;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .hero__tab img {
    width: 25px;
    transform: none;
  }
}
.hero .tab-content .price-card {
  display: block;
  position: absolute;
  overflow-y: hidden;
  transition: all 0s ease-out;
  opacity: 0;
  top: -100%;
  visibility: hidden;
}
.hero .tab-content.active .price-card {
  opacity: 1;
  position: relative;
  transition: opacity 0.5s ease-out, max-height 1s ease-out;
  transition-delay: 0.2s;
  transform-origin: top;
  top: 0;
  margin-bottom: -65px;
  visibility: visible;
  z-index: 999;
}
@media (min-width: 992px) {
  .hero .tab-content.active .price-card {
    position: absolute;
    right: 40px;
  }
}

.accordion__item {
  border-bottom: 1px solid #bebebe;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .accordion__item {
    margin-bottom: 27px;
  }
}
.accordion h3 {
  margin: 0;
}
.accordion__wrap {
  background-color: #F9F9F9;
  padding: 30px 0;
}
@media (min-width: 992px) {
  .accordion__wrap {
    padding: 60px 0 70px 0;
  }
}
.accordion__wrap h2 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .accordion__wrap h2 {
    margin-bottom: 40px;
  }
}
.accordion__button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px 40px 15px 0;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.accordion__button span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.accordion__content {
  display: none;
  padding: 5px 0 20px 0;
  line-height: 1.4;
}
.accordion__content {
  font-size: 17px;
}
@media screen and (min-width: 320px) {
  .accordion__content {
    font-size: calc(17px + 1 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .accordion__content {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .accordion__content {
    padding: 10px 0 20px 0;
  }
}
.accordion__content p:last-of-type {
  margin-bottom: 0;
}
.accordion__content a {
  color: #FF8762;
}

.icon-expand {
  height: 24px;
  width: 24px;
}
@media (min-width: 992px) {
  .icon-expand {
    height: 33px;
    width: 33px;
  }
}
.icon-expand img {
  transition: transform 0.25s ease-in-out;
}
.icon-expand.up img {
  transform: rotate3d(0, 0, 1, 180deg);
}

.registration {
  padding: 80px 0 30px 0;
  position: relative;
}
@media (min-width: 992px) {
  .registration {
    padding: 14rem 0 6rem 0;
  }
}
.registration h2 {
  margin-bottom: 5rem;
}
.registration__form {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
}
.registration__form.show {
  visibility: visible;
  opacity: 1;
  position: relative;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  width: 100%;
  max-width: 400px;
  color: #2D2D2D;
  font-family: "Montserrat", sans-serif;
  border-radius: 5px;
  border: 1px solid #cecece;
  padding: 14px 16px;
  transition: border 0.3s ease;
  margin-top: 30px;
  font-size: 16px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  border: 1px solid #979797;
  outline: none;
}

select {
  padding: 14px 20px 14px 16px;
  background-color: white;
  border: none;
}
select:focus {
  outline: none;
}

form .select2-container {
  margin-top: 30px;
  width: 100% !important;
  max-width: 400px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  margin-top: 0 !important;
}

form .select2-container--default .select2-selection--single .select2-selection__rendered {
  width: 100%;
  max-width: 400px;
  color: #2D2D2D;
  border-radius: 5px;
  border: 1px solid #cecece;
  padding: 9px 20px 9px 16px;
  transition: border 0.3s ease;
  height: 48px;
}

form .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #565656;
}

form .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  height: auto;
}
form .select2-container--default .select2-selection--single:focus-visible {
  outline: 0;
}

.select2-search--dropdown {
  padding: 9px 10px !important;
}

.select2-results__option {
  padding: 10px 15px !important;
  margin-bottom: 0;
}

.select2-dropdown {
  border: 1px solid #e7e7e7 !important;
  overflow: hidden;
  border-radius: 5px !important;
  background: #fff;
  box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 400px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f9f9f9 !important;
  color: #2D2D2D !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(255, 255, 255, 0.1647058824) !important;
}

form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  transform: scale(1.2);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 36px !important;
}

.select2-results__options::-webkit-scrollbar-button {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #565656 transparent transparent transparent;
}

.select2-search--dropdown .select2-search__field {
  padding: 9px 7px !important;
  border: 1px solid #e6e6e6 !important;
}

textarea {
  width: 100%;
  height: 108px;
  display: block;
  overflow: hidden;
  resize: both;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .cf7-col {
    display: grid;
    grid-template-columns: minmax(auto, 350px) minmax(auto, 350px);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .cf7-col {
    grid-template-columns: minmax(auto, 400px) minmax(auto, 400px);
  }
}

.cf7-col > div {
  width: 100%;
}

.cf7-col p {
  margin-bottom: 3px;
}

.cf7-col-full textarea {
  width: 100%;
  max-width: 830px;
}

.wpcf7 span {
  width: 100%;
  display: block;
}

.wpcf7 input[type=submit],
.wpcf7 button {
  cursor: pointer;
  margin-top: 5rem;
  background: #FF8762;
  border: 1px solid #FF8762;
  color: white;
}
.wpcf7 input[type=submit]:hover,
.wpcf7 button:hover {
  background: white;
  color: #FF8762;
}

.wpcf7 .wpcf7-spinner {
  display: inline-block;
  width: 24px;
  margin: 0 20px 5px 20px;
  vertical-align: middle;
  background: #FF8762;
}

.wpcf7-not-valid-tip {
  text-align: left;
  margin-top: 5px;
  font-size: 14px;
}

.form-file p {
  margin: 0;
}

.form-file {
  margin-top: 30px;
}

.form-file .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  margin-top: 10px;
}

input[type=file]::file-selector-button {
  margin-right: 13px;
  border: none;
  border: 1px solid #FF8762;
  background: #fff;
  padding: 11px 20px;
  border-radius: 50px;
  color: #FF8762;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  opacity: 0.8;
}

.form-file .wpcf7-form-control-wrap input {
  border: 0;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.form-checkbox--mb {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .form-checkbox--mb {
    margin-bottom: 34px;
  }
}

.form-checkbox span {
  display: inline-block;
  width: auto;
}

.form-checkbox .wpcf7-list-item {
  margin: 0;
}

.form-checkbox .wpcf7-form-control-wrap {
  margin-top: 16px;
}

.form-checkbox input {
  width: auto;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.form-checkbox input:checked ~ span,
.form-checkbox input:checked ~ label {
  border: 1px solid #FF8762;
}

.form-checkbox input:checked ~ span::before,
.form-checkbox input:checked ~ label::before {
  border: 1px solid #FF8762;
}

.form-checkbox input:checked ~ span::after,
.form-checkbox input:checked ~ label::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #FF8762;
}

.form-checkbox .wpcf7-list-item-label,
.form-checkbox .checkbox-label {
  display: block;
  padding: 10px 15px 10px 40px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  border: 1px solid #cecece;
  border-radius: 40px;
}

.form-checkbox .wpcf7-list-item-label::before,
.form-checkbox .checkbox-label::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #cecece;
}
.form-company {
  padding-top: 15px;
}

.form-checkbox__radio {
  display: inline-block;
}

.form-checkbox__radios {
  margin-top: 16px;
}

.contact-form__title {
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-form__title {
    margin-bottom: 5px;
    font-size: 24px;
  }
}

.contact-form__title-margint {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .contact-form__title-margint {
    margin-top: 60px;
  }
}

.contact-form__desc p {
  margin-bottom: 0;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.3;
  color: #a1a1a1;
}

.contact-form__with-label {
  margin-bottom: 30px;
}
.contact-form__with-label:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-form__with-label {
    margin-bottom: 0;
  }
}
.contact-form__with-label input[type=text],
.contact-form__with-label input[type=email] {
  margin-top: 0;
}
.contact-form__with-label br {
  display: none;
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2D2D2D;
  font-size: 16px;
  line-height: 1;
}

/* Change Autocomplete styles in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #2D2D2D;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #565656;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #565656;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #565656;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #565656;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: rgba(86, 86, 86, 0.5);
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: rgba(86, 86, 86, 0.5);
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: rgba(86, 86, 86, 0.5);
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: rgba(86, 86, 86, 0.5);
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #de4949;
  background-color: #de4949;
  color: white;
  position: fixed;
  font-weight: 500;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 4rem 0 0 0;
  padding: 12px 10px;
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output {
    padding: 20px 10px;
    font-size: 18px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #296630;
  background-color: #296630;
  color: white;
  position: fixed;
  font-weight: 500;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 4rem 0 0 0;
  padding: 12px 10px;
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    padding: 20px 10px;
    font-size: 18px;
  }
}

.wpcf7-form-control.wpcf7-not-valid:not(.wpcf7-file, .wpcf7-radio) {
  border: 1px solid #dc3545 !important;
  background-color: rgba(249, 220, 223, 0.4);
}

.wpcf7-form-control.wpcf7-not-valid ~ .select2-container .select2-selection__rendered {
  border: 1px solid #dc3545 !important;
  background-color: rgba(249, 220, 223, 0.4);
}

.wpcf7-form-control.wpcf7-not-valid.wpcf7-file {
  color: #dc3545 !important;
}

.wpcf7-form-control.wpcf7-not-valid.wpcf7-radio .wpcf7-list-item-label {
  border: 1px solid #dc3545 !important;
  background-color: rgba(249, 220, 223, 0.4);
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact-form__discount-desc {
  margin-bottom: 0;
}
.contact-form__discount-desc h4 {
  margin-bottom: 14px;
}
.contact-form__discount-desc p,
.contact-form__discount-desc a {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.contact-form__discount-desc a {
  color: #FF8762;
}
.contact-form__discount-desc a:hover {
  opacity: 0.8;
}

.price-card {
  max-width: 430px;
  margin: 0 auto;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
}
@media (min-width: 768px) {
  .price-card {
    margin: 0 0 0 auto;
  }
}
.price-card__name {
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 22px;
}
.price-card__name {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .price-card__name {
    font-size: calc(24px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .price-card__name {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .price-card__name {
    margin-bottom: 2.8rem;
  }
}
.price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 18px;
}
.price-card__price strong {
  line-height: 1;
  font-weight: 600;
  color: #2D2D2D;
}
.price-card__price strong {
  font-size: 40px;
}
@media screen and (min-width: 320px) {
  .price-card__price strong {
    font-size: calc(40px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .price-card__price strong {
    font-size: 46px;
  }
}
.price-card__price > div {
  display: flex;
  align-items: center;
}
.price-card__price em {
  line-height: 1;
  font-weight: 500;
  margin-left: 5px;
  color: #2D2D2D;
  font-style: normal;
}
.price-card__price em {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .price-card__price em {
    font-size: calc(24px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .price-card__price em {
    font-size: 28px;
  }
}
.price-card__price span {
  margin-left: 8px;
  display: inline-block;
}
.price-card__annually {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.price-card__annually strong {
  color: #2D2D2D;
  font-weight: 600;
}
.price-card__annually strong {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .price-card__annually strong {
    font-size: calc(18px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .price-card__annually strong {
    font-size: 20px;
  }
}
.price-card__annually span {
  margin-left: 9px;
}
@media (min-width: 768px) {
  .price-card__annually {
    margin-bottom: 27px;
  }
}
.price-card__discount {
  color: #FF8762;
  margin: 3px 0 3px 10px;
}
.price-card__text {
  margin-bottom: 30px;
}
.price-card .btn {
  width: 100%;
}

.banner {
  display: block;
  background: #bce260;
  text-align: center;
  padding: 10px 0;
  transition: 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .banner {
    padding: 17px 0;
  }
}
.banner:hover {
  background: #c4ed63;
}
.banner p {
  margin: 0;
  font-weight: 500;
}
.banner strong {
  font-weight: 600;
}
@media (min-width: 768px) {
  .banner__text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.banner__desc {
  font-size: 14px;
}
@media (min-width: 992px) {
  .banner__desc {
    font-size: 18px;
  }
}
.banner__btn {
  border-bottom: 1px solid #2D2D2D;
  flex-shrink: 0;
  font-weight: 500;
  margin-top: 3px;
  display: inline-block;
}
@media (min-width: 768px) {
  .banner__btn {
    margin-left: 30px;
  }
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  background: rgba(38, 38, 38, 0.5);
  transition: opacity 0.5s ease;
}
.modal.open {
  display: block;
  z-index: 999999;
}
.modal__content {
  background-color: #fff;
  margin: 5% auto;
  width: 85%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  animation: animatetop 300ms ease-in;
}
@media (min-width: 992px) {
  .modal__content {
    width: 75%;
  }
}
.modal__body {
  transition: all 0.3 ease;
  position: relative;
}
@media (min-width: 768px) {
  .modal__body {
    display: grid;
    grid-template-columns: 3fr 4fr;
  }
}
@media (min-width: 1200px) {
  .modal__body {
    grid-template-columns: 4fr 5fr;
  }
}
.modal__left {
  background-image: url("img/modalbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 20px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media (min-width: 768px) {
  .modal__left {
    padding: 6.4rem 5rem 5rem 5rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
  }
}
.modal__left h2,
.modal__left p {
  color: white;
}
.modal__left h2 {
  font-size: 45px;
  line-height: 1;
  padding-top: 24px;
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .modal__left h2 {
    font-size: 56px;
    padding-top: 27px;
    margin-bottom: 2.8rem;
  }
}
.modal__left h2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 7px;
  background-color: #FF8762;
}
@media (min-width: 992px) {
  .modal__left p {
    font-size: 20px;
    line-height: 1.3;
  }
}
.modal__right {
  padding: 20px;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .modal__right {
    padding: 6.4rem 5rem 5rem 5rem;
  }
}
.modal__right strong {
  color: #20422d;
  font-weight: 600;
}
.modal__close {
  margin-left: auto;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9;
  background-color: rgba(239, 239, 239, 0.1);
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal__close {
    top: 2rem;
    right: 2rem;
    background-color: #efefef;
  }
}
.modal__close::after, .modal__close::before {
  content: " ";
  position: absolute;
  top: 6px;
  left: 14px;
  height: 18px;
  width: 2px;
  border-radius: 5px;
  background-color: white;
}
@media (min-width: 768px) {
  .modal__close::after, .modal__close::before {
    background-color: #193A28;
  }
}
.modal__close::after {
  transform: rotate(45deg);
}
.modal__close::before {
  transform: rotate(-45deg);
}
.modal__close:hover, .modal__close:focus {
  opacity: 0.8;
}

@keyframes animatetop {
  from {
    top: -5px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.header {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 18px 0;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  width: 100px;
  flex-shrink: 0;
  z-index: 1;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .header__logo {
    width: 142px;
  }
}
.header__logo--wide {
  max-width: 22rem;
}
.header__left, .header__right {
  display: flex;
  align-items: center;
}
.header__phone, .header__email {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .header__phone, .header__email {
    margin-left: 14px;
  }
}
.header__phone img, .header__email img {
  margin-right: 6px;
}
.header__phone:hover, .header__email:hover {
  color: #FF8762;
}
.header__phone {
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .header__phone {
    margin-bottom: 0;
  }
}
.header__contact {
  display: none;
}
@media (min-width: 768px) {
  .header__contact {
    display: flex;
    align-items: center;
  }
}
.header__contact-mob {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .header__contact-mob {
    display: none;
  }
}

/* language switcher */
.wpml-ls-legacy-dropdown-click {
  width: auto;
}
@media (min-width: 768px) {
  .wpml-ls-legacy-dropdown-click {
    margin-left: 1.5rem;
  }
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a,
.wpml-ls-legacy-dropdown-click a:focus,
.wpml-ls-legacy-dropdown-click a:hover {
  background: inherit;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  border-top: 0.4em solid;
  right: 6px 5px;
}

.wpml-ls-legacy-dropdown-click a {
  border: none;
  background-color: transparent;
  color: #565656;
  font-size: 16px;
  font-weight: 500;
}

.home .wpml-ls-legacy-dropdown-click a {
  padding: 5px;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border: none;
  border-radius: 3px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
  color: #2D2D2D;
  background-color: white;
  padding: 6px;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
  padding-right: 23px;
}

.main-navigation {
  position: absolute;
  top: 50px;
  left: 100%;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  z-index: 1;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .main-navigation {
    position: static;
    width: auto;
    height: auto;
    margin-left: auto;
    background-color: transparent;
    display: block;
  }
}
.main-navigation ul {
  list-style: none;
}
.main-navigation .menu {
  margin: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .main-navigation .menu {
    display: flex;
  }
}
@media (min-width: 768px) {
  .main-navigation .menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
  }
}
.main-navigation .menu > li {
  position: relative;
  margin: 2.5rem 0;
}
@media (min-width: 768px) {
  .main-navigation .menu > li {
    margin: 0 1rem;
  }
}
.main-navigation .menu > li > a {
  display: block;
  text-decoration: none;
  padding: 7px 10px;
  font-weight: 500;
}
.main-navigation .menu > li > a:hover, .main-navigation .menu > li > a:focus, .main-navigation .menu > li > a:active {
  color: #FF8762;
}
.main-navigation li a {
  display: block;
  text-decoration: none;
}
.main-navigation .header__logo {
  margin: 20px 0 0 20px;
}
@media (min-width: 768px) {
  .main-navigation .header__logo {
    display: none;
  }
}
header.menu-opened .main-navigation .header__logo {
  position: absolute;
  top: 0;
  left: 0;
}
header.menu-opened .main-navigation {
  left: 0;
}

/* Submenu */
.sub-menu {
  display: none;
  margin: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .sub-menu {
    display: block;
    position: absolute;
    min-width: 100%;
    transition: all 0.5s ease;
    margin-top: 10px;
    pointer-events: none;
    opacity: 0;
    background: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    text-align: left;
  }
}
.sub-menu li {
  margin: 0;
  transition: all 0.3s ease;
}
.sub-menu li a {
  padding: 10px 12px;
}
.sub-menu li:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Small menu */
.menu-toggle {
  display: block;
  position: relative;
  z-index: 9999999999;
  margin-left: 1.5rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #193A28;
}
.menu-toggle.opened span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.opened span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.opened span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.footer {
  padding: 30px 0 15px 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .footer {
    padding: 4.7rem 0;
  }
}
.footer__copyright {
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .footer__copyright {
    text-align: left;
  }
}
.footer__address {
  margin-bottom: 0;
  display: flex;
  gap: 30px;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__address {
    gap: 4.2rem;
  }
}
@media (min-width: 992px) {
  .footer__address {
    margin-bottom: 0;
  }
}
.footer__address p {
  margin-bottom: 5px;
}
.footer__address p:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer__address p {
    margin-bottom: 7px;
  }
}
.footer__address strong {
  font-weight: 600;
}
.footer__logo {
  display: block;
  width: 100px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .footer__logo {
    width: 130px;
    margin-bottom: 0;
    margin-right: 6rem;
  }
}
@media (min-width: 992px) {
  .footer__left {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr;
  }
}
.footer__left-logo {
  max-width: 170px;
}
.footer__title {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #2D2D2D;
}
@media (min-width: 992px) {
  .footer__title {
    margin-bottom: 15px;
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
.hero-single {
  padding: 60px 0 130px 0;
  text-align: center;
  background-image: url("img/single-bg__mob.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .hero-single {
    background-image: url("img/single__bg.png");
    background-position: center;
    padding: 13.6rem 0 15.4rem 0;
  }
}
.hero-single h1 {
  margin-bottom: 20px;
  color: white;
  font-size: 50px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .hero-single h1 {
    margin-bottom: 27px;
    font-size: 56px;
    line-height: 56px;
  }
}
.hero-single h1 em {
  font-style: normal;
  color: #FF8762;
}
.hero-single__text {
  color: white;
  max-width: 620px;
  margin: 0 auto;
}
.single-content {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .single-content {
    padding-bottom: 12rem;
  }
}
@media (min-width: 992px) {
  .single-content .container {
    max-width: 820px;
  }
}
.single-content__text {
  padding: 40px 0;
  line-height: 1.3;
}
.single-content__text {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .single-content__text {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .single-content__text {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .single-content__text {
    padding: 8rem 0;
  }
}
.single-content__text strong {
  font-weight: 600;
  color: #2d2d2d;
}
.single-content__text p {
  margin-bottom: 2.7rem;
}

.single-form__text {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .single-form__text {
    margin-bottom: 40px;
  }
}
.single-form__text h2 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 12px;
}
.single-form__text p {
  font-size: 16px;
  line-height: 1.3;
}
.single-form__form .wpcf7 input[type=submit] {
  margin-top: 30px;
}