@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Titillium+Web:wght@200;300;400;600;700&display=swap");
body {
  font-family: 'Open Sans', sans-serif;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Titillium Web', sans-serif;
}

a {
  text-decoration: none;
  color: #30B8B4;
}

a:hover {
  color: #25908c;
}

.w-100 {
  width: 100%;
}

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

.img-fluid {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.my-30 {
  margin: 30px 0;
}

.mr-15 {
  margin-right: 15px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.bg-dark {
  background-color: #242525;
}

.bg-cyan {
  background-color: #30B8B4;
}

.bg-green {
  background-color: #55B030;
}

.text-green {
  color: #55B030;
}

.text-red {
  color: #C5061E;
}

.text-white {
  color: #ffffff;
}

.font-bold {
  font-weight: 700;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.p-15 {
  padding: 15px;
}

.p-30 {
  padding: 30px;
}

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

.text-left {
  text-align: left !important;
}

.push-right {
  margin: 0 0 0 auto !important;
}

.push-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .push-md-center {
    margin: 0 auto;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .mt-md-30 {
    margin-top: 30px;
  }
}

/*! 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, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

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

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

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.container--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.container .col-1 {
  -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%;
}

.container .col-1-p {
  -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-2 {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
}

.container .col-2-p {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.container .col-3-p {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-4 {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
}

.container .col-4-p {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-5 {
  -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%;
}

.container .col-5-p {
  -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

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

.container .col-6-p {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-7 {
  -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%;
}

.container .col-7-p {
  -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-8 {
  -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%;
}

.container .col-8-p {
  -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

.container .col-9-p {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-10 {
  -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%;
}

.container .col-10-p {
  -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-11 {
  -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%;
}

.container .col-11-p {
  -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container .col-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.container .col-12-p {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

@media screen and (min-width: 576px) {
  .container .col-sm-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .container .col-sm-1-p {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .container .col-sm-2-p {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .container .col-sm-3-p {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .container .col-sm-4-p {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .container .col-sm-5-p {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .container .col-sm-6-p {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .container .col-sm-7-p {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .container .col-sm-8-p {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .container .col-sm-9-p {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .container .col-sm-10-p {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .container .col-sm-11-p {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .container .col-sm-12-p {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

@media screen and (min-width: 768px) {
  .container .col-md-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .container .col-md-1-p {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .container .col-md-2-p {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .container .col-md-3-p {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .container .col-md-4-p {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .container .col-md-5-p {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .container .col-md-6-p {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .container .col-md-7-p {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .container .col-md-8-p {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .container .col-md-9-p {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .container .col-md-10-p {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .container .col-md-11-p {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-md-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .container .col-md-12-p {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

@media screen and (min-width: 992px) {
  .container .col-lg-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .container .col-lg-1-p {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .container .col-lg-2-p {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .container .col-lg-3-p {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .container .col-lg-4-p {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .container .col-lg-5-p {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .container .col-lg-6-p {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .container .col-lg-7-p {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .container .col-lg-8-p {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .container .col-lg-9-p {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .container .col-lg-10-p {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .container .col-lg-11-p {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-lg-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .container .col-lg-12-p {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

@media screen and (min-width: 1200px) {
  .container .col-xl-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .container .col-xl-1-p {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .container .col-xl-2-p {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .container .col-xl-3-p {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .container .col-xl-4-p {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .container .col-xl-5-p {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .container .col-xl-6-p {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .container .col-xl-7-p {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .container .col-xl-8-p {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .container .col-xl-9-p {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .container .col-xl-10-p {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .container .col-xl-11-p {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .container .col-xl-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .container .col-xl-12-p {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

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

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

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

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

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

.top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .center-md {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .middle-md {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

nav {
  max-height: 130px;
  border-bottom: 6px solid #C5061E;
  padding: 0 15px;
}

@media screen and (max-width: 1200px) {
  nav#menu {
    display: none;
  }
}

nav.mobile-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-height: unset;
  z-index: 99;
  background: #ffffff;
}

nav.mobile-active ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

nav.mobile-active ul li {
  margin: 10px 0;
}

nav.mobile-active ul li.has-submenu a, nav.mobile-active ul li.roll-menu a {
  padding-bottom: 0;
}

nav.mobile-active ul li.has-submenu::after, nav.mobile-active ul li.has-submenu span::after, nav.mobile-active ul li.roll-menu::after, nav.mobile-active ul li.roll-menu span::after {
  content: unset;
}

nav.mobile-active ul li.has-submenu ul.submenu, nav.mobile-active ul li.has-submenu ul.roll-submenu, nav.mobile-active ul li.roll-menu ul.submenu, nav.mobile-active ul li.roll-menu ul.roll-submenu {
  display: block;
  opacity: 1;
  position: relative;
  padding: 0 10px;
  margin-top: -15px;
}

nav.mobile-active ul li.has-submenu ul.submenu li, nav.mobile-active ul li.has-submenu ul.roll-submenu li, nav.mobile-active ul li.roll-menu ul.submenu li, nav.mobile-active ul li.roll-menu ul.roll-submenu li {
  display: block;
  padding: 0;
}

nav.mobile-active ul li.has-submenu ul.submenu li:not(:last-child)::after, nav.mobile-active ul li.has-submenu ul.roll-submenu li:not(:last-child)::after, nav.mobile-active ul li.roll-menu ul.submenu li:not(:last-child)::after, nav.mobile-active ul li.roll-menu ul.roll-submenu li:not(:last-child)::after {
  content: unset;
}

nav.mobile-active ul li.has-submenu ul.submenu li a, nav.mobile-active ul li.has-submenu ul.roll-submenu li a, nav.mobile-active ul li.roll-menu ul.submenu li a, nav.mobile-active ul li.roll-menu ul.roll-submenu li a {
  font-weight: 300;
  padding: 0;
}

nav.mobile-active ul li.has-submenu ul.roll-submenu, nav.mobile-active ul li.roll-menu ul.roll-submenu {
  padding: 20px 10px 0 10px;
}

nav .roll-menu {
  padding: 10px 0;
  text-decoration: none;
  color: #242525;
  font-weight: 600;
  font-size: 19px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

nav .roll-menu:hover .roll-submenu {
  display: block;
  opacity: 1;
}

nav .roll-menu:hover {
  color: #C5061E;
}

nav .roll-menu:hover:before, nav .roll-menu:hover:after {
  width: 100%;
  opacity: 1;
}

nav .roll-menu span {
  position: relative;
}

nav .roll-menu span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #242525;
}

nav .roll-menu .roll-submenu {
  display: none;
  padding: 20px 0;
}

nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 40px 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  padding: 10px 0;
  text-decoration: none;
  color: #242525;
  font-weight: 600;
  font-size: 19px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

nav ul li a:hover {
  color: #C5061E;
}

nav ul li a:hover:before, nav ul li a:hover:after {
  width: 100%;
  opacity: 1;
}

nav ul li a::before, nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 4px;
  margin: 5px 0 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  opacity: 0;
  background-color: #C5061E;
}

nav ul li.has-submenu {
  position: relative;
  z-index: 5;
  margin-right: 15px;
}

nav ul li.has-submenu::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #242525;
}

nav ul li.has-submenu ul.submenu {
  display: none;
  opacity: 0;
  position: absolute;
  top: 18px;
  left: 0;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 15px;
  border-radius: 10px;
}

nav ul li.has-submenu ul.submenu li {
  padding: 10px 10px;
  position: relative;
}

nav ul li.has-submenu ul.submenu li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #BEC1C0;
}

nav ul li.has-submenu ul.submenu li a:hover::before, nav ul li.has-submenu ul.submenu li a:hover::after {
  width: unset;
  opacity: unset;
}

nav ul li.has-submenu:hover ul.submenu {
  display: block;
  opacity: 1;
}

.header {
  height: 92px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(2, 0, 36, 0)), color-stop(43%, rgba(62, 48, 40, 0)), color-stop(43%, #ffc933), color-stop(55%, #ffc933), color-stop(69%, #ffc933), color-stop(69%, rgba(181, 195, 97, 0)), color-stop(69%, #30b8b4));
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(62, 48, 40, 0) 43%, #ffc933 43%, #ffc933 55%, #ffc933 69%, rgba(181, 195, 97, 0) 69%, #30b8b4 69%);
}

@media screen and (max-width: 1225px) {
  .header {
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(2, 0, 36, 0)), color-stop(52%, rgba(62, 48, 40, 0)), color-stop(52%, #ffc933), color-stop(55%, #ffc933), color-stop(69%, #ffc933), color-stop(69%, rgba(181, 195, 97, 0)), color-stop(69%, #30b8b4));
    background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(62, 48, 40, 0) 52%, #ffc933 52%, #ffc933 55%, #ffc933 69%, rgba(181, 195, 97, 0) 69%, #30b8b4 69%);
  }
}

@media screen and (max-width: 1200px) {
  .header {
    border-bottom: 6px solid #C5061E;
    background: unset;
  }
}

.header .container {
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .header .container {
    -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;
  }
}

.header__logo {
  max-width: 463px;
  position: relative;
}

@media screen and (max-width: 430px) {
  .header__logo {
    max-width: unset;
  }
  .header__logo img {
    width: 200px;
    height: auto;
  }
}

@media screen and (max-width: 1200px) {
  .header__logo {
    width: 100%;
    max-width: unset;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logo .mobile-menu {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 100;
}

@media screen and (min-width: 1200px) {
  .header__logo .mobile-menu {
    display: none;
  }
}

.header__logo .mobile-menu span {
  right: 0;
  top: 15px;
}

.header__logo .mobile-menu span, .header__logo .mobile-menu span::before, .header__logo .mobile-menu span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
}

.header__logo .mobile-menu span::before {
  content: '';
  top: -8px;
}

.header__logo .mobile-menu span::after {
  content: '';
  top: 8px;
}

.header__logo .mobile-menu.active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__logo .mobile-menu.active span::before {
  top: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.header__logo .mobile-menu.active span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .header__info {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.header__info--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFC933;
  padding: 0 40px;
  -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

@media screen and (max-width: 596px) {
  .header__info--left {
    display: none;
  }
}

.header__info--left img {
  margin-right: 10px;
}

@media screen and (max-width: 1200px) {
  .header__info--left img:first-child {
    margin-left: 30px;
  }
}

.header__info--left span img {
  vertical-align: middle;
  margin-bottom: 2px;
}

@media screen and (max-width: 1200px) {
  .header__info--left {
    width: calc(50% + 30px);
    -webkit-clip-path: unset;
            clip-path: unset;
  }
}

.header__info--right {
  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-color: #30B8B4;
  -webkit-clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
  padding: 0 40px;
  margin-left: -30px;
}

@media screen and (max-width: 1225px) {
  .header__info--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  .header__info--right {
    width: 50%;
  }
}

@media screen and (max-width: 935px) {
  .header__info--right {
    padding: 25px;
  }
}

@media screen and (max-width: 596px) {
  .header__info--right {
    width: 100%;
    margin-left: unset;
  }
}

.header__info--right a {
  color: #242525;
}

.header__info--right a:hover {
  text-decoration: underline;
}

.header__info--right .button {
  padding: 10px;
  border-radius: 5px;
  font-size: 17px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  color: #ffffff;
}

.header__info--right .button:hover {
  text-decoration: none;
}

@media screen and (max-width: 1225px) {
  .header__info--right .button {
    margin-top: 10px;
  }
}

@media screen and (max-width: 935px) {
  .header__info--right .button {
    font-size: 15px;
    margin-top: 0;
  }
}

@media screen and (max-width: 596px) {
  .header__info--right .button {
    margin-left: 25px;
  }
}

.header__info--right .button span {
  margin-left: 20px;
}

.header__info--right .button::after {
  content: "";
  margin-left: 0;
  width: 0;
  height: 0;
}

.header__info--right p {
  margin-left: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 935px) {
  .header__info--right p {
    display: none;
  }
}

.header__info--right p img {
  vertical-align: middle;
  margin-left: 3px;
  margin-right: 3px;
}

.footer {
  font-family: 'Titillium Web', sans-serif;
  background-color: #242525;
  position: relative;
}

.footer-decor {
  position: relative;
}

.footer-decor .container {
  height: 92px;
  position: relative;
  z-index: 4;
}

.footer-decor__left {
  position: absolute;
  top: 0;
  left: -15px;
  width: 38%;
  height: 92px;
  z-index: 3;
  -webkit-transform: skew(18deg);
          transform: skew(18deg);
  border-right: 12px solid #C5061E;
  background-color: #ffffff;
}

@media screen and (max-width: 850px) {
  .footer-decor__left {
    width: 60%;
  }
}

@media screen and (max-width: 540px) {
  .footer-decor__left {
    width: 100%;
  }
}

.footer-decor__right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(#bec1c0), color-stop(37%, #bec1c0), color-stop(37%, #242525), to(#242525));
  background: linear-gradient(180deg, #bec1c0 0%, #bec1c0 37%, #242525 37%, #242525 100%);
}

.footer__content {
  position: relative;
  padding: 30px;
}

@media screen and (max-width: 850px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 33.3%;
  width: 33.3%;
}

@media screen and (max-width: 850px) {
  .footer__column {
    width: 100%;
    max-width: 100%;
    margin: 10px;
  }
  .footer__column:first-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer__column:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__column:last-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer__column p {
  color: white;
}

.footer__logo {
  margin-left: 15px;
  max-width: 250px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  padding: 10px 10px 10px 0;
}

@media screen and (max-width: 1300px) {
  .footer__logo img {
    padding-left: 15px;
  }
}

.footer__copyright {
  width: 100%;
  max-height: 49px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  padding: 10px 0;
}

.footer__contact {
  color: #ffffff;
}

.footer__contact p {
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 0;
}

.footer__customer-service {
  margin: 25px 0;
}

.footer__customer-service ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footer__customer-service ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin: 8px 0;
}

.footer__customer-service ul li a {
  color: #ffffff;
}

.footer__customer-service ul li a:hover {
  text-decoration: underline;
}

.footer__customer-service ul li:first-child img {
  margin-right: 10px;
}

.footer__customer-service ul li:not(:first-child) {
  font-weight: 300;
}

.footer__24hr {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__24hr div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 10px;
}

.footer__24hr div span {
  margin-top: 8px;
  font-weight: 300;
}

.footer__24hr div span img {
  margin-right: 10px;
}

.footer__awards {
  padding: 20px;
}

.footer__awards img:first-child {
  margin-right: 10px;
}

.footer nav {
  max-height: unset;
  border-bottom: unset;
}

.footer nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.footer nav ul li {
  display: block;
  padding: 8px 0;
}

.footer nav ul li::before {
  content: "\00BB";
  color: #ffffff;
  margin-right: 8px;
}

.footer nav ul li a, .footer nav ul li span {
  font-size: 16px;
  color: #ffffff;
}

.footer nav ul li a:hover, .footer nav ul li span:hover {
  text-decoration: underline;
}

.footer nav ul li a:hover::before, .footer nav ul li a:hover::after, .footer nav ul li span:hover::before, .footer nav ul li span:hover::after {
  width: unset;
}

.footer nav ul li.roll-menu span::before {
  content: "\00BB";
  color: #ffffff;
  margin-right: 8px;
}

.footer nav ul li.has-submenu, .footer nav ul li.roll-menu {
  padding-bottom: 0;
}

.footer nav ul li.has-submenu .submenu, .footer nav ul li.has-submenu .roll-submenu, .footer nav ul li.roll-menu .submenu, .footer nav ul li.roll-menu .roll-submenu {
  position: relative;
  display: block;
  top: unset;
  left: unset;
  opacity: 1;
  background-color: unset;
  padding: 5px 10px 0 10px;
  margin-left: 10px;
}

.footer nav ul li.has-submenu .submenu li, .footer nav ul li.has-submenu .roll-submenu li, .footer nav ul li.roll-menu .submenu li, .footer nav ul li.roll-menu .roll-submenu li {
  padding: 5px;
}

.footer nav ul li.has-submenu .submenu li::before, .footer nav ul li.has-submenu .roll-submenu li::before, .footer nav ul li.roll-menu .submenu li::before, .footer nav ul li.roll-menu .roll-submenu li::before {
  content: "";
}

.footer nav ul li.has-submenu .submenu li a, .footer nav ul li.has-submenu .roll-submenu li a, .footer nav ul li.roll-menu .submenu li a, .footer nav ul li.roll-menu .roll-submenu li a {
  font-weight: 300;
}

.footer nav ul li.has-submenu .submenu li::after, .footer nav ul li.has-submenu .roll-submenu li::after, .footer nav ul li.roll-menu .submenu li::after, .footer nav ul li.roll-menu .roll-submenu li::after {
  width: unset !important;
}

section:not(.hero) {
  padding-top: 60px;
  padding-bottom: 130px;
  position: relative;
}

section:not(.hero).white-arrow::after,section:not(.hero).gray-arrow::after, section:not(.hero).cyan-arrow::after, section:not(.hero).dark-gray-arrow::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 42.5px 0 42.5px;
  z-index: 2;
}

section:not(.hero).white-arrow::after {
  border-color: #ffffff transparent transparent transparent;
}

section:not(.hero).gray-arrow::after {
  border-color: #EEEFEF transparent transparent transparent;
}

section:not(.hero).cyan-arrow::after {
  border-color: #30B8B4 transparent transparent transparent;
}

section:not(.hero).dark-gray-arrow::after {
  border-color: #242525 transparent transparent transparent;
}

section:not(.hero).same-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-header {
  font-family: 'Titillium Web', sans-serif;
}

.section-header h2 {
  color: #242525;
  text-align: center;
  position: relative;
  font-size: 40px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 8px;
  border-bottom: 8px solid #242525;
}

.section-header h2.text-white {
  color: #ffffff;
}

.section-header h2.text-white::after {
  border-bottom: 8px solid #ffffff;
}

.section-header h2.text-left::after {
  left: 0;
  -webkit-transform: unset;
          transform: unset;
}

.section-header h3 {
  color: #BEC1C0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  font-size: 24px;
}

.section-header h3.text-white {
  color: #ffffff;
}

.card {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  border-top: 13px solid #BEC1C0;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.card--red {
  border-top: 13px solid #C5061E;
}

.card--red .card__title::after {
  border-bottom: 7.5px solid #C5061E;
}

.card--cyan {
  border-top: 13px solid #30B8B4;
}

.card--cyan .card__title::after {
  border-bottom: 7.5px solid #30B8B4;
}

.card--basic {
  border-top: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.card--basic .card__image {
  height: 220px;
}

.card--basic .card__title {
  text-align: center;
  width: 100%;
  font-size: 32px;
}

.card--basic .card__title::after {
  border-bottom: unset;
}

.card--basic .card__content {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.card--secondary {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 5px solid white;
  padding: 30px 15px;
  min-height: 380px;
}

.card--secondary .button {
  margin: 0 auto;
}

.card--secondary-green {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(85, 176, 48, 0.16)), color-stop(68%, rgba(85, 176, 48, 0.16)), color-stop(68%, white), to(white));
  background: linear-gradient(0deg, rgba(85, 176, 48, 0.16) 0%, rgba(85, 176, 48, 0.16) 68%, white 68%, white 100%);
}

.card--secondary-cyan {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(48, 184, 180, 0.16)), color-stop(68%, rgba(48, 184, 180, 0.16)), color-stop(68%, white), to(white));
  background: linear-gradient(0deg, rgba(48, 184, 180, 0.16) 0%, rgba(48, 184, 180, 0.16) 68%, white 68%, white 100%);
}

.card--secondary .card__title {
  text-align: center;
  width: 100%;
  font-size: 22px;
  margin: 40px 0;
  line-height: 34px;
}

.card--secondary .card__image {
  border: 10px solid white;
  background: white;
  border-radius: 100%;
  width: 131px;
  height: 131px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card--secondary .card__image img {
  width: 66px;
  height: 66px;
}

.card--secondary .button {
  max-width: 230px;
}

.card__image {
  max-width: 301px;
  height: 300px;
  padding: 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card__title {
  position: relative;
  margin-bottom: 30px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 38px;
  font-weight: 700;
}

@media screen and (max-width: 1240px) {
  .card__title {
    font-size: 32px;
  }
}

.card__title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 7.5px;
  border-bottom: 7.5px solid #BEC1C0;
}

.card__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 60px;
  font-weight: 700;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
}

@media screen and (max-width: 1240px) {
  .card__tabs {
    font-size: 20px;
  }
}

.card__tab {
  position: relative;
  text-align: center;
  border-top: 1px solid #BEC1C0;
  border-right: 1px solid #BEC1C0;
  padding-right: 10px;
  padding: 8px;
  margin-right: 10px;
  cursor: pointer;
}

.card__tab:last-child {
  border-left: 1px solid #BEC1C0;
}

.card__tab:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -11px;
  width: 11px;
  height: 1px;
  margin-left: -10px;
  border-bottom: 1px solid #BEC1C0;
}

.card__tab:not(.active) {
  background-color: rgba(190, 193, 192, 0.3);
  border: unset;
}

.card__tab:not(.active)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 21px);
  height: 1px;
  margin-left: -10px;
  border-bottom: 1px solid #BEC1C0;
}

.card__tab:not(.active):first-child::after {
  width: calc(100% + 11px);
  margin-left: unset;
}

.card__content {
  margin: 30px 0;
  padding: 30px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
}

.card__content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.card__content ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
  line-height: 1.5rem;
}

.card__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #55B030;
  z-index: 1;
  display: block;
}

.card__content ul li::after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: 12.5px;
  top: 7.5px;
  width: 6px;
  height: 12px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 2;
}

.card__content-element:not(.active) {
  display: none;
}

.card__footer {
  background-color: #242525;
  color: #ffffff;
  width: 100%;
  border-top: 12px solid #C5061E;
  padding: 30px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  min-height: 185px;
}

.card__footer .button {
  max-width: 210px;
  margin-bottom: 20px;
}

.card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 268px;
  color: #FFC933;
}

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

.card__info--image {
  margin-right: 10px;
}

.button {
  display: block;
  background-color: #55B030;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 25px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  border: unset;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Titillium Web', sans-serif;
  font-size: 23px;
  line-height: 23px;
  max-width: 300px;
}

@media screen and (max-width: 776px) {
  .button {
    font-size: 19px;
  }
}

.button:focus {
  outline: none;
}

.button:hover {
  color: #ffffff;
  background-color: #6dcd46;
}

.button::after {
  content: url("/assets/images/arrow-dropright.svg");
  margin-left: 20px;
  width: 27px;
  height: 27px;
  vertical-align: middle;
}

.button--without-icon::after {
  content: unset;
  width: unset;
  height: unset;
}

.button--with-cart-icon::after {
  content: url("/assets/images/kosar ikon gombra.svg");
}

.button--dark {
  background-color: #242525;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.button--dark:hover {
  background-color: #3d3f3f;
}

.button--cyan {
  background-color: #30B8B4;
}

.button--cyan:hover {
  background-color: #4bd0cc;
}

.button--border {
  background-color: #ffffff;
  color: #242525;
  border: 2px solid #242525;
}

.button--border:hover {
  border-color: #C5061E;
  background-color: #ffffff;
  color: #C5061E;
}

.button--border:hover::after {
  content: url("/assets/images/Icon ionic-ios-arrow-dropright-2.svg");
}

.button--border::after {
  content: url("/assets/images/Icon ionic-ios-arrow-dropright.svg");
}

input[type="text"],
input[type="number"],
input[type="email"] {
  color: #242525;
  border-radius: 10px;
  border: unset;
  padding: 10px 20px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus {
  outline: unset;
}

input[type="text"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
  color: #BEC1C0;
}

input[type="text"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  color: #BEC1C0;
}

input[type="text"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder {
  color: #BEC1C0;
}

input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder {
  color: #BEC1C0;
}

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

@media screen and (max-width: 776px) {
  .input-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 10px;
  }
}

.input-group input[type="text"],
.input-group input[type="number"],
.input-group input[type="email"] {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  margin-right: -4px;
}

@media screen and (max-width: 776px) {
  .input-group input[type="text"],
  .input-group input[type="number"],
  .input-group input[type="email"] {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-right: unset;
    margin-bottom: 10px;
    width: 100%;
    display: block;
  }
}

.input-group .button {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

@media screen and (max-width: 776px) {
  .input-group .button {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}

.checkbox {
  position: relative;
  margin-bottom: 15px;
  display: block;
}

.checkbox a {
  color: #ffffff;
  text-decoration: underline;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  z-index: 3;
}

.checkbox input:checked + .checkmark::after {
  display: block;
}

.checkbox input:checked + .checkmark {
  background-color: white;
}

.checkbox.error .checkmark {
  border-color: #C5061E;
}

.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 2px solid white;
  border-radius: 100%;
  cursor: pointer;
}

.checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #55B030;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox label {
  display: block;
  margin-left: 40px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group.error input {
  border: 2px solid #C5061E;
}

.form-group .error-message {
  display: block;
  color: #C5061E;
}

.modal {
  font-family: 'Titillium Web', sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  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;
  z-index: 999;
}

.modal__container {
  background-color: #242525;
  background-image: url("/templates/profitarhely/assets/images/domain background.svg");
  padding: 30px;
  max-width: 830px;
  max-height: 100vh;
  border-radius: 15px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .modal__container {
    min-width: 600px;
  }
}

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

.modal__header .modal__close::before {
  content: "\2715";
}

.modal__title {
  position: relative;
  margin-right: 40px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal__title::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100px;
  height: 8px;
  border-bottom: 8px solid #ffffff;
}

.modal__close {
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal__close:hover {
  background: #C5061E;
  color: #ffffff;
}

.modal__content {
  margin-top: 80px;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #ffffff;
}

.modal__content input[type=text] {
  width: 60%;
  padding: 18px 15px;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.hero {
  max-height: 609px;
  height: 100%;
  position: relative;
}

.hero--small {
  height: 175px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: auto;
  max-height: 609px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: 'Titillium Web', sans-serif;
  font-size: 50px;
  text-align: center;
}

.hero__text h1 {
  font-size: 50px;
}

@media screen and (max-width: 1068px) {
  .hero__text {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .hero__text {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .hero__text {
    font-size: 22px;
  }
}

.hero__arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
}

.hosting {
  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;
  width: 100%;
  padding: 60px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hosting__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.3%;
  padding: 15px;
  max-width: 405px;
}

@media screen and (max-width: 1000px) {
  .hosting__column {
    width: 100%;
  }
}

.domain {
  background-color: #242525;
  background-image: url("/templates/profitarhely/assets/images/domain background.svg");
  background-position: left 130%;
  background-repeat: no-repeat;
  background-size: 55% 115%;
}

.domain__text {
  color: #ffffff;
  margin-top: 100px;
  margin-bottom: 30px;
  line-height: 26px;
}

.domain__text a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

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

@media screen and (max-width: 776px) {
  .domain__form {
    width: 100%;
  }
}

.domain__form input {
  min-width: 440px;
}

@media screen and (max-width: 776px) {
  .domain__form input {
    min-width: unset;
  }
}

.reference {
  background-color: #30B8B4;
  background-image: url("/templates/profitarhely/assets/images/ph logo.svg");
  background-position: 80% -10%;
  background-repeat: no-repeat;
}

.blog .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 15px;
  font-family: 'Titillium Web', sans-serif;
}

@media screen and (max-width: 1094px) {
  .blog .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.blog .grid__column {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1094px) {
  .blog .grid__column {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.blog .grid__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

@media screen and (max-width: 566px) {
  .blog .grid__element {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog .grid__element--big {
  position: relative;
  margin-right: 15px;
}

@media screen and (max-width: 1094px) {
  .blog .grid__element--big {
    margin-right: unset;
    margin-bottom: 15px;
  }
}

.blog .grid__element--big .grid__image {
  min-width: 530px;
  min-height: 430px;
  padding: 0;
}

@media screen and (max-width: 1094px) {
  .blog .grid__element--big .grid__image {
    min-width: unset;
    min-height: unset;
    width: 100%;
    max-height: 200px;
  }
}

.blog .grid__element--big .grid__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 12px);
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

@media screen and (max-width: 1094px) {
  .blog .grid__element--big .grid__image::after {
    width: 100%;
  }
}

.blog .grid__element--big .grid__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog .grid__element--big .grid__content {
  position: absolute;
  left: 0;
  bottom: 10px;
}

@media screen and (max-width: 566px) {
  .blog .grid__element--big .grid__content {
    bottom: 0;
    margin-bottom: 0;
  }
}

.blog .grid__element--big .grid__content .grid__title,
.blog .grid__element--big .grid__content .grid__link {
  color: #ffffff;
  padding: 10px;
}

.blog .grid__element--big .grid__content .grid__title {
  font-size: 27px;
  margin-bottom: 0;
}

.blog .grid__element--big .grid__content .grid__link {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

.blog .grid__element--big .grid__content .grid__link:hover {
  text-decoration: underline;
}

.blog .grid__element--big .grid__content .grid__link::after {
  content: url("/assets/images/Icon feather-arrow-right.svg");
}

.blog .grid__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 20px;
}

@media screen and (max-width: 566px) {
  .blog .grid__content {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0;
  }
}

.blog .grid__title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 28px;
}

.blog .grid__text {
  margin-top: 0;
  font-size: 18px;
}

.blog .grid__image {
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.2s ease-in-out;
  transition: -webkit-filter 0.2s ease-in-out;
  transition: filter 0.2s ease-in-out;
  transition: filter 0.2s ease-in-out, -webkit-filter 0.2s ease-in-out;
  min-width: 210px;
  min-height: 210px;
}

@media screen and (max-width: 566px) {
  .blog .grid__image {
    height: 200px;
  }
}

.blog .grid__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog .grid__image:hover {
  -webkit-filter: brightness(107%);
          filter: brightness(107%);
}

.blog .grid__link {
  font-weight: 700;
  font-size: 18px;
  color: #C5061E;
  text-decoration: none;
}

.blog .grid__link:hover {
  text-decoration: underline;
}

.blog .grid__link::after {
  content: url("/assets/images/Icon feather-arrow-right-2.svg");
  margin-left: 10px;
}

.blog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog__footer .button {
  max-width: 373px;
}

.beginner .button {
  max-height: 47px;
}

.beginner h2 {
  position: relative;
  margin-top: 0;
  font-size: 40px;
  margin-bottom: 100px;
}

.beginner h2.text-center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.beginner h2.text-green {
  color: #55B030;
}

.beginner h2.text-green::after {
  border-bottom: 8px solid #55B030;
}

.beginner h2::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 126px;
  height: 8px;
  border-bottom: 8px solid #242525;
}

.beginner p {
  line-height: 26px;
}

.beginner ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.beginner ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
  line-height: 1.5rem;
}

.beginner ul li:last-child {
  margin-bottom: 0;
}

.beginner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #55B030;
  z-index: 1;
  display: block;
}

.beginner ul li::after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: 12.5px;
  top: 7.5px;
  width: 6px;
  height: 12px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 2;
}

.beginner img.icon-110 {
  width: 110px;
  height: 110px;
}

.beginner .hosting-choose {
  font-size: 40px;
  font-family: 'Titillium Web', sans-serif;
  color: #ffffff;
  line-height: 50px;
}

@media screen and (max-width: 1091px) {
  .beginner .hosting-choose {
    font-size: 30px;
    line-height: 40px;
  }
}

@media screen and (max-width: 827px) {
  .beginner .hosting-choose {
    font-size: 28px;
  }
}

.beginner .red-underline {
  font-weight: 700;
  position: relative;
}

.beginner .red-underline::after {
  content: url("/assets/images/underline.svg");
  position: absolute;
  top: 35px;
  left: 0;
  width: 176px;
}

@media screen and (max-width: 1091px) {
  .beginner .red-underline::after {
    top: 25px;
    width: 130px;
  }
}

.beginner .bonus {
  position: relative;
  color: #ffffff;
}

.beginner .bonus::before {
  content: url("/assets/images/bonusz.svg");
  position: absolute;
  top: -155px;
  left: calc(((100% - 1280px) / 2) - 100px);
}

.beginner .bonus h3 {
  font-size: 100px;
  opacity: 0.6;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 50px;
}

.beginner .bonus h4 {
  position: relative;
  font-size: 40px;
}

.beginner .bonus h4::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 126px;
  height: 8px;
  border-bottom: 8px solid #ffffff;
}

.beginner .security {
  background-image: url("/assets/images/biztonsag bg.svg");
}

.beginner .security .card {
  max-width: 1122px;
  padding: 30px 80px;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
  .beginner .security .card {
    padding: 30px;
  }
}

.beginner .security .card__title h2 {
  margin-bottom: 30px;
}

.beginner .web-developer-text {
  position: relative;
}

.beginner .web-developer-text::after {
  content: url("/assets/images/webfejleszto ajanlas.svg");
  position: absolute;
  bottom: -120px;
  right: -20%;
}

@media screen and (max-width: 1280px) {
  .beginner .web-developer-text::after {
    right: 0;
  }
}

.guide-done__text {
  font-size: 20px;
}

.guide-done__img img {
  width: 150px;
  height: 150px;
}

.advanced .section-header {
  margin-bottom: 150px;
}

.advanced .only-mobile {
  display: none;
  margin-top: -85px;
}

@media screen and (max-width: 1272px) {
  .advanced .only-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.advanced .accordions {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advanced .accordions .accordion .price {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-top: 5px;
}

.advanced .accordions .accordion ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advanced .accordions .accordion ul li {
  position: relative;
  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;
  width: calc(50% - 10px);
  background-color: rgba(169, 215, 151, 0.51);
  padding: 10px;
  margin: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  color: #242525;
  -webkit-box-shadow: 0 2px 2px rgba(101, 102, 102, 0.3);
          box-shadow: 0 2px 2px rgba(101, 102, 102, 0.3);
  border-radius: 2px;
  word-break: break-word;
}

.advanced .accordions .accordion ul li.full {
  width: calc(100% - 10px);
}

.advanced .accordions .accordion ul li:nth-child(4n + 3), .advanced .accordions .accordion ul li:nth-child(4n + 4) {
  background-color: rgba(169, 215, 151, 0.31);
}

.advanced .accordions .accordion ul li span {
  display: block;
  font-weight: 400;
  margin-top: 10px;
}

.advanced .accordions .accordion.green .accordion__button {
  background-color: rgba(169, 215, 151, 0.51);
  border-top: 2px solid #A9D797;
}

.advanced .accordions .accordion.gray .accordion__button {
  background-color: rgba(220, 223, 223, 0.64);
  border-top: 2px solid #656666;
}

.advanced .accordions .accordion.red .accordion__button {
  background-color: rgba(226, 130, 142, 0.49);
  border-top: 2px solid #C5061E;
}

.advanced .accordions .accordion.cyan .accordion__button {
  background-color: rgba(151, 219, 217, 0.49);
  border-top: 2px solid #30B8B4;
}

.advanced .accordions .accordion.blue .accordion__button {
  background-color: rgba(135, 173, 180, 0.48);
  border-top: 2px solid #105D6A;
}

.advanced .accordions .accordion__button {
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}

.advanced .accordions .accordion__button::hover {
  background-color: #ccc;
}

.advanced .accordions .accordion__button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #242525 transparent transparent transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.advanced .accordions .accordion__panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  padding: 10px 20px;
}

.advanced .accordions .accordion__panel h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.advanced .accordions .accordion__panel p {
  margin-top: 0;
}

.advanced .accordions .accordion__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.advanced .accordions .accordion__block:last-child {
  padding: 10px;
  border-top: 2px solid #DCDFDF;
}

.advanced .accordions .accordion__block.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advanced .accordions .accordion__block.f-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.advanced .accordions .accordion__block .cart {
  width: 50%;
  height: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 709px) {
  .advanced .accordions .accordion__block .cart {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}

.advanced .accordions .accordion__block .cart .button {
  width: 100%;
  max-height: 43px;
}

@media screen and (max-width: 709px) {
  .advanced .accordions .accordion__block .cart .button {
    max-width: 100%;
  }
}

.advanced .accordions .accordion__block .try-it {
  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;
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 709px) {
  .advanced .accordions .accordion__block .try-it {
    width: 100%;
  }
}

.advanced .accordions .accordion__block .try-it span {
  margin-bottom: 10px;
}

.advanced .accordions .accordion__block .try-it .button {
  width: 100%;
}

@media screen and (max-width: 709px) {
  .advanced .accordions .accordion__block .try-it .button {
    max-width: 100%;
  }
}

.advanced table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
}

@media screen and (max-width: 1272px) {
  .advanced table.only-desktop {
    display: none;
  }
}

.advanced table th {
  padding: 20px 20px 50px 20px;
  width: calc(1280px / 6);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  font-family: 'Titillium Web', sans-serif;
  position: relative;
}

.advanced table th .most-popular {
  position: absolute;
  top: -120px;
  left: 50%;
}

.advanced table th strong {
  display: block;
}

.advanced table th:not(:first-child) {
  position: relative;
}

.advanced table th:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

/* .advanced table th:not(:first-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px calc(1130px / 12) 0 calc(1130px / 12);
} */

.advanced table th:not(:first-child).green {
  background: -webkit-gradient(linear, left top, left bottom, from(#A9D797), color-stop(75%, #A9D797), color-stop(75%, rgba(169, 215, 151, 0.24)), to(rgba(169, 215, 151, 0.24)));
  background: linear-gradient(180deg, #A9D797 0%, #A9D797 75%, rgba(169, 215, 151, 0.24) 75%, rgba(169, 215, 151, 0.24) 100%);
}

.advanced table th:not(:first-child).green::before {
  background-color: #55B030;
}

.advanced table th:not(:first-child).green::after {
  border-color: #A9D797 transparent transparent transparent;
}

.advanced table th:not(:first-child).gray {
  background: -webkit-gradient(linear, left top, left bottom, from(#BFC0C0), color-stop(75%, #BFC0C0), color-stop(75%, rgba(220, 223, 223, 0.42)), to(rgba(220, 223, 223, 0.42)));
  background: linear-gradient(180deg, #BFC0C0 0%, #BFC0C0 75%, rgba(220, 223, 223, 0.42) 75%, rgba(220, 223, 223, 0.42) 100%);
}

.advanced table th:not(:first-child).gray::before {
  background-color: #656666;
}

.advanced table th:not(:first-child).gray::after {
  border-color: #BFC0C0 transparent transparent transparent;
}

.advanced table th:not(:first-child).red {
  background-color: rgba(226, 130, 142, 0.49);
  background: -webkit-gradient(linear, left top, left bottom, from(#E2828E), color-stop(75%, #E2828E), color-stop(75%, rgba(226, 130, 142, 0.32)), to(rgba(226, 130, 142, 0.32)));
  background: linear-gradient(180deg, #E2828E 0%, #E2828E 75%, rgba(226, 130, 142, 0.32) 75%, rgba(226, 130, 142, 0.32) 100%);
}

.advanced table th:not(:first-child).red::before {
  background-color: #C5061E;
}

.advanced table th:not(:first-child).red::after {
  border-color: #E2828E transparent transparent transparent;
}

.advanced table th:not(:first-child).cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#97DBD9), color-stop(75%, #97DBD9), color-stop(75%, rgba(151, 219, 217, 0.24)), to(rgba(151, 219, 217, 0.24)));
  background: linear-gradient(180deg, #97DBD9 0%, #97DBD9 75%, rgba(151, 219, 217, 0.24) 75%, rgba(151, 219, 217, 0.24) 100%);
}

.advanced table th:not(:first-child).cyan::before {
  background-color: #30B8B4;
}

.advanced table th:not(:first-child).cyan::after {
  border-color: #97DBD9 transparent transparent transparent;
}

.advanced table th:not(:first-child).blue {
  background-color: rgba(135, 173, 180, 0.48);
  background: -webkit-gradient(linear, left top, left bottom, from(#87ADB4), color-stop(75%, #87ADB4), color-stop(75%, rgba(195, 214, 217, 0.4)), to(rgba(195, 214, 217, 0.4)));
  background: linear-gradient(180deg, #87ADB4 0%, #87ADB4 75%, rgba(195, 214, 217, 0.4) 75%, rgba(195, 214, 217, 0.4) 100%);
}

.advanced table th:not(:first-child).blue::before {
  background-color: #105D6A;
}

.advanced table th:not(:first-child).blue::after {
  border-color: #87ADB4 transparent transparent transparent;
}

.advanced table td {
  padding: 20px;
  text-align: center;
}

.advanced table td.title {
  text-align: left;
}

.advanced table td.checkmark {
  position: relative;
}

.advanced table td.checkmark::after {
  content: url("/assets/images/done.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.advanced table tbody tr:nth-child(even) td.title {
  background-color: rgba(213, 212, 212, 0.5);
}

.advanced table tbody tr:nth-child(even) td.green {
  background-color: rgba(169, 215, 151, 0.51);
}

.advanced table tbody tr:nth-child(even) td.gray {
  background-color: rgba(220, 223, 223, 0.64);
}

.advanced table tbody tr:nth-child(even) td.red {
  background-color: rgba(226, 130, 142, 0.49);
}

.advanced table tbody tr:nth-child(even) td.cyan {
  background-color: rgba(151, 219, 217, 0.49);
}

.advanced table tbody tr:nth-child(even) td.blue {
  background-color: rgba(135, 173, 180, 0.48);
}

.advanced table tbody tr:nth-child(odd) td.title {
  background-color: #D5D4D4;
}

.advanced table tbody tr:nth-child(odd) td.green {
  background-color: rgba(169, 215, 151, 0.24);
}

.advanced table tbody tr:nth-child(odd) td.gray {
  background-color: rgba(220, 223, 223, 0.42);
}

.advanced table tbody tr:nth-child(odd) td.red {
  background-color: rgba(226, 130, 142, 0.32);
}

.advanced table tbody tr:nth-child(odd) td.cyan {
  background-color: rgba(151, 219, 217, 0.24);
}

.advanced table tbody tr:nth-child(odd) td.blue {
  background-color: rgba(195, 214, 217, 0.4);
}

.advanced table tfoot tr td {
  position: relative;
  padding-top: 80px;
  vertical-align: baseline;
}

.advanced table tfoot tr td:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 20px;
}

/* .advanced table tfoot tr td:not(:first-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px calc(1130px / 12) 0 calc(1130px / 12);
} */

.advanced table tfoot tr td:not(:first-child).green {
  background-color: rgba(169, 215, 151, 0.51);
}

.advanced table tfoot tr td:not(:first-child).green::before {
  background-color: #55B030;
}

.advanced table tfoot tr td:not(:first-child).green::after {
  border-color: #55B030 transparent transparent transparent;
}

.advanced table tfoot tr td:not(:first-child).gray {
  background-color: rgba(220, 223, 223, 0.64);
}

.advanced table tfoot tr td:not(:first-child).gray::before {
  background-color: #656666;
}

.advanced table tfoot tr td:not(:first-child).gray::after {
  border-color: #656666 transparent transparent transparent;
}

.advanced table tfoot tr td:not(:first-child).red {
  background-color: rgba(226, 130, 142, 0.49);
}

.advanced table tfoot tr td:not(:first-child).red::before {
  background-color: #C5061E;
}

.advanced table tfoot tr td:not(:first-child).red::after {
  border-color: #C5061E transparent transparent transparent;
}

.advanced table tfoot tr td:not(:first-child).cyan {
  background-color: rgba(151, 219, 217, 0.49);
}

.advanced table tfoot tr td:not(:first-child).cyan::before {
  background-color: #30B8B4;
}

.advanced table tfoot tr td:not(:first-child).cyan::after {
  border-color: #30B8B4 transparent transparent transparent;
}

.advanced table tfoot tr td:not(:first-child).blue {
  background-color: rgba(135, 173, 180, 0.48);
}

.advanced table tfoot tr td:not(:first-child).blue::before {
  background-color: #105D6A;
}

.advanced table tfoot tr td:not(:first-child).blue::after {
  border-color: #105D6A transparent transparent transparent;
}

.advanced table tfoot tr td .price {
  margin-bottom: 30px;
}

.advanced table tfoot tr td .price span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.advanced table tfoot tr td .price strong {
  font-size: 29px;
}

.advanced table tfoot tr td .price strong span {
  display: unset;
  font-size: 24px;
  font-weight: 400;
}

.advanced table tfoot tr td .cart {
  margin-bottom: 30px;
}

.advanced table tfoot tr td .try-it span {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 15px;
}

.advanced table tfoot tr td .button {
  font-size: 17px;
  line-height: 17px;
}

.advanced .have-a-question {
  position: relative;
  width: 100%;
  max-width: 963px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 170px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
}

@media screen and (max-width: 1272px) {
  .advanced .have-a-question {
    max-width: 100%;
  }
}

.advanced .have-a-question p {
  margin: 0;
}

.advanced .have-a-question .decor {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 120px;
}

.advanced .have-a-question .decor .line {
  width: 20%;
  height: 6px;
}

.advanced .have-a-question .decor .line.green {
  background-color: #55B030;
}

.advanced .have-a-question .decor .line.gray {
  background-color: #656666;
}

.advanced .have-a-question .decor .line.red {
  background-color: #C5061E;
}

.advanced .have-a-question .decor .line.cyan {
  background-color: #30B8B4;
}

.advanced .have-a-question .decor .line.blue {
  background-color: #105D6A;
}

main.domain section {
  background-color: #ffffff;
}

main.domain section.domain {
  background-color: #ffffff;
}

main.domain section.domain .input-group {
  border: 2px solid #55B030;
  border-radius: 12.5px;
}

@media screen and (max-width: 775px) {
  main.domain section.domain .input-group {
    border: unset;
  }
  main.domain section.domain .input-group input {
    border: 1px solid #55B030;
  }
  main.domain section.domain .input-group .button {
    width: 100%;
    max-width: 100%;
  }
}

main.domain section.domain .domain__text {
  color: #242525;
  text-align: center;
}

main.domain .good-to-know__image {
  min-height: 220px;
  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;
}

main.domain .good-to-know__column {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.domain .good-to-know__column p {
  padding: 30px;
}

main.domain .domain-table table {
  width: 100%;
  max-width: 907px;
  border-spacing: 0;
  border-collapse: collapse;
}

main.domain .domain-table table thead {
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid #DCDFDF;
}

main.domain .domain-table table thead th {
  padding: 15px;
}

main.domain .domain-table table tr.green {
  background-color: rgba(85, 176, 48, 0.3);
}

main.domain .domain-table table td {
  padding: 15px;
  border-bottom: 1px solid #DCDFDF;
}

main.domain .domain-table table td:first-child {
  font-weight: 700;
}

.contact p {
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 23px;
}

.contact a {
  color: #242525;
}

.contact a:hover {
  text-decoration: underline;
}

.contact .logo-bg {
  background-image: url("/templates/profitarhely/assets/images/ph logo.svg");
  background-position: 80% 40%;
  background-repeat: no-repeat;
}

.contact .boss {
  margin-top: 60px;
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .contact .boss {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact .boss__name {
  font-size: 24px;
  font-weight: 700;
}

.contact .boss__title {
  font-size: 18px;
}

.contact .partner {
  background-color: #ffffff;
  color: #242525;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.contact .partner h2 {
  color: #C5061E;
  margin-top: 0;
}

.contact .partner a {
  color: #ffffff;
  max-width: 305px;
  font-size: 18px;
}

.contact .partner a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contact .partner p {
    margin-bottom: 30px;
  }
}

.contact .qr-code {
  max-width: 600px;
}

.contact .qr-code .col-6 {
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .contact .qr-code .md-none {
    display: none;
  }
  .contact .qr-code h2 {
    text-align: center;
  }
}

.webmaster .section-header.low {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .webmaster .webmaster-col {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}

@media screen and (max-width: 1049px) {
  .webmaster .webmaster-col {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}

@media screen and (max-width: 768px) {
  .webmaster .webmaster-col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media screen and (max-width: 575px) {
  .webmaster .webmaster-col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.webmaster .webmaster-col .card {
  padding: 9.5px;
}

.webmaster .webmaster-col .card__content {
  font-family: 'Titillium Web', sans-serif;
  line-height: 26px;
}

.webmaster table.only-desktop th::after {
  border-width: 30px calc(1130px / 10) 0 calc(1130px / 10);
}

.webmaster table.only-desktop tfoot tr td::after {
  border-width: 30px calc(1130px / 10) 0 calc(1130px / 10);
}

.webmaster .info {
  font-family: 'Titillium Web', sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 38px;
  text-align: center;
  margin-top: 60px;
  color: #C5061E;
}

.reseller .hero-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  line-height: 52px;
  font-weight: bold;
  color: #C5061E;
  text-align: center;
}

.reseller .hero-subtext {
  max-width: 845px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 26px;
}

.reseller .card-image-cheat img {
  margin-right: -15px;
}
/*# sourceMappingURL=main.css.map */