@charset "UTF-8";
/*
Theme Name: nexcent
Theme URI: https://o2htechnology.com/
Author: o2h Technology
Author URI: https://o2htechnology.com/
Description:The Nexcent blog is the best place to read about the latest membership insights, trends and more. See who's joining the community, read about how our community are increasing their membership income and lot's more.​
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.7
Text Domain: https://nexcent.com/
Tags: Bussiness, Community, Marketing.

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

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #717171;
  margin: 0;
}

a {
  display: inline-block;
  transition: 0.5s all ease;
  color: var(--color-primary);
}
a:hover {
  color: #263238;
}
a:focus, a:active {
  color: var(--color-primary);
}

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

.noselect {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.overflow-hidden {
  overflow: hidden;
}

.primary-small-button {
  font-weight: 500;
  transition: 0.5s all ease;
  color: #FFFFFF;
  background-color: var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 20px;
}
.primary-small-button:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
.primary-small-button:focus, .primary-small-button:active {
  color: #FFFFFF;
}

.secondary-small-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.5s all ease;
  color: var(--color-primary);
  background-color: #F5F7FA;
  border-radius: 4px;
  border: 1px solid #F5F7FA;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 20px;
}
.secondary-small-button img {
  max-width: 24px;
}
.secondary-small-button:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  opacity: 0.8;
}
.secondary-small-button:focus, .secondary-small-button:active {
  color: var(--color-primary);
}

.primary-medium-button {
  font-weight: 500;
  transition: 0.5s all ease;
  color: #FFFFFF;
  background-color: var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 14px 32px;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 576px) {
  .primary-medium-button {
    padding: 10px 20px;
  }
}
.primary-medium-button:hover {
  color: #FFFFFF;
  opacity: 0.8;
}
.primary-medium-button:focus, .primary-medium-button:active {
  color: #FFFFFF;
}

.secondary-medium-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.5s all ease;
  color: var(--color-primary);
  background-color: #F5F7FA;
  border-radius: 4px;
  border: 1px solid #F5F7FA;
  padding: 14px 32px;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 576px) {
  .secondary-medium-button {
    padding: 10px 20px;
  }
}
.secondary-medium-button img {
  max-width: 24px;
}
.secondary-medium-button:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  opacity: 0.8;
}
.secondary-medium-button:focus, .secondary-medium-button:active {
  color: var(--color-primary);
}

.container {
  max-width: 1152px;
  padding-inline: 15px;
  margin-inline: auto;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1.static,
.col-sm-1.static,
.col-md-1.static,
.col-lg-1.static,
.col-xs-2.static,
.col-sm-2.static,
.col-md-2.static,
.col-lg-2.static,
.col-xs-3.static,
.col-sm-3.static,
.col-md-3.static,
.col-lg-3.static,
.col-xs-4.static,
.col-sm-4.static,
.col-md-4.static,
.col-lg-4.static,
.col-xs-5.static,
.col-sm-5.static,
.col-md-5.static,
.col-lg-5.static,
.col-xs-6.static,
.col-sm-6.static,
.col-md-6.static,
.col-lg-6.static,
.col-xs-7.static,
.col-sm-7.static,
.col-md-7.static,
.col-lg-7.static,
.col-xs-8.static,
.col-sm-8.static,
.col-md-8.static,
.col-lg-8.static,
.col-xs-9.static,
.col-sm-9.static,
.col-md-9.static,
.col-lg-9.static,
.col-xs-10.static,
.col-sm-10.static,
.col-md-10.static,
.col-lg-10.static,
.col-xs-11.static,
.col-sm-11.static,
.col-md-11.static,
.col-lg-11.static,
.col-xs-12.static,
.col-sm-12.static,
.col-md-12.static,
.col-lg-12.static {
  position: static;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1025px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

.flex_view > div[class^=col] {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .flex_view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex_view.left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex_view.right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex_view.center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex_view.space-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex_view.space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
  }
  .flex_view.middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex_view.end {
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
  }
  .flex_view.start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex_view.reverse {
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex_view.space {
    margin: 0 -15px;
  }
  .flex_view.space > div[class^=col] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.flex_view_xs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_view_xs.left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex_view_xs.right {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex_view_xs.center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex_view_xs.space-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_view_xs.space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
}
.flex_view_xs.middle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_view_xs.end {
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}
.flex_view_xs.start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex_view_xs.reverse {
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex_view_xs.space {
  margin: 0 -15px;
}
.flex_view_xs.space > div[class^=col] {
  padding-left: 15px;
  padding-right: 15px;
}
.flex_view_xs > div[class^=col] {
  padding-left: 0;
  padding-right: 0;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

html {
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 13px;
  }
}

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

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  transition: 0.5s all ease;
  cursor: pointer;
}

blockquote {
  position: relative;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  padding: 40px 30px 20px;
  margin-top: 60px;
  margin-bottom: 40px;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 15px;
  top: -19px;
  background: url(data:image/png;base64,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) #fff;
  background-size: 50px auto;
  background-position: 50%;
  width: 80px;
  height: 50px;
  background-repeat: no-repeat;
}
blockquote * {
  font-weight: 600;
  font-style: italic;
}

.wp-block-media-text__content {
  padding: 6%;
}

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

.fallback-page-container {
  padding-block: 50px;
  min-height: 60vh;
}
.fallback-page-container .page-title {
  color: var(--color-primary);
}
.fallback-page-container article,
.fallback-page-container aside,
.fallback-page-container details,
.fallback-page-container figcaption,
.fallback-page-container figure,
.fallback-page-container footer,
.fallback-page-container header,
.fallback-page-container hgroup,
.fallback-page-container menu,
.fallback-page-container nav,
.fallback-page-container section {
  display: block;
}
.fallback-page-container body {
  line-height: 1;
}
.fallback-page-container blockquote {
  position: relative;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  padding: 40px 30px 20px;
  margin-top: 60px;
  margin-bottom: 40px;
}
.fallback-page-container blockquote:before {
  content: "";
  position: absolute;
  left: 15px;
  top: -19px;
  background: url(data:image/png;base64,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) #fff;
  background-size: 50px auto;
  background-position: 50%;
  width: 80px;
  height: 50px;
  background-repeat: no-repeat;
}
.fallback-page-container blockquote * {
  font-weight: 600;
  font-style: italic;
}
.fallback-page-container .wp-block-media-text__content {
  padding: 6%;
}
.fallback-page-container a {
  color: var(--color-primary);
}
.fallback-page-container h1,
.fallback-page-container h2,
.fallback-page-container h3,
.fallback-page-container h4,
.fallback-page-container h5,
.fallback-page-container h6,
.fallback-page-container p {
  margin-top: 16px;
}
.fallback-page-container ul,
.fallback-page-container ol {
  padding-left: 30px;
}
.fallback-page-container ul li,
.fallback-page-container ol li {
  margin-bottom: 10px;
  margin-bottom: 20px;
}
.fallback-page-container ul li:last-child,
.fallback-page-container ol li:last-child {
  margin-bottom: 0;
}

.site-header {
  padding: 22px 0;
  top: 0;
  left: 0;
  right: 0;
  position: sticky;
  width: 100%;
  z-index: 9999;
  transition: 0.5s all ease;
  background-color: #F5F7FA;
}
.site-header .header-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  position: relative;
}
.site-header .header-wrapper .site-logo .custom-logo-link {
  max-width: 155px;
  display: inline-block;
}
.site-header .header-wrapper .site-branding {
  position: absolute;
  left: -9000vh;
  opacity: 0;
}
.site-header .header-wrapper .primary-navigation .menu-button-container {
  display: none;
}
@media screen and (max-width: 991px) {
  .site-header .header-wrapper .primary-navigation .menu-button-container {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  .site-header .header-wrapper .primary-navigation .menu-button-container .button {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  .site-header .header-wrapper .primary-navigation .menu-button-container .button .dropdown-icon {
    display: inline-block;
    color: #263238;
  }
  .site-header .header-wrapper .primary-navigation .menu-button-container .button .dropdown-icon .close {
    display: none;
  }
  .site-header .header-wrapper .primary-navigation .menu-button-container .button .dropdown-icon .open {
    display: inline-block;
  }
  .site-header .header-wrapper .primary-navigation .menu-button-container .button.sidemenu-toggle .dropdown-icon .open {
    display: none;
  }
  .site-header .header-wrapper .primary-navigation .menu-button-container .button.sidemenu-toggle .dropdown-icon .close {
    display: inline-block;
  }
}
@media screen and (max-width: 991px) {
  .site-header .header-wrapper .primary-navigation .primary-menu-wrapper {
    position: fixed;
    top: 70px;
    bottom: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 99;
    background: #FFFFFF;
    padding: 16px;
    transform: translateX(140%);
    transition: 0.5s all ease;
  }
}
.site-header .header-wrapper .primary-navigation .primary-menu-wrapper.sidemenu-active {
  transform: translateX(0);
}
.site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #18191F;
}
@media screen and (max-width: 991px) {
  .site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li {
    color: #4D4D4D;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.4);
  }
}
@media screen and (min-width: 991px) {
  .site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li.current-menu-item a::after {
    opacity: 1;
  }
}
.site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li a {
  color: inherit;
  transition: 0.5s all ease;
  position: relative;
}
.site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  opacity: 0;
  transition: 0.5s all ease;
}
@media screen and (min-width: 991px) {
  .site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li a:hover::after, .site-header .header-wrapper .primary-navigation .primary-menu-wrapper .menu-wrapper li a.active::after {
    opacity: 1;
  }
}
.site-header .header-wrapper .header-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}
.site-header .header-wrapper .header-buttons.desktop-none {
  display: none;
}
@media screen and (max-width: 991px) {
  .site-header .header-wrapper .header-buttons.desktop-none {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-bottom: 20px;
  }
  .site-header .header-wrapper .header-buttons.desktop-none a {
    width: 50%;
  }
}
.site-header .header-wrapper .header-buttons.mobile-none {
  display: flex;
}
@media screen and (max-width: 991px) {
  .site-header .header-wrapper .header-buttons.mobile-none {
    display: none;
  }
}
.site-header.sidemenu-open {
  background-color: #F5F7FA;
}

.footer-section {
  background-color: #263238;
  padding: 60px 0;
}
@media screen and (max-width: 576px) {
  .footer-section {
    padding-bottom: 20px;
  }
}
.footer-section .footer-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 125px;
}
@media screen and (max-width: 1200px) {
  .footer-section .footer-content {
    gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
@media screen and (max-width: 576px) {
  .footer-section .footer-content {
    gap: 30px;
  }
}
.footer-section .footer-content__left-part {
  max-width: 350px;
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content__left-part {
    max-width: 100%;
    text-align: center;
  }
}
.footer-section .footer-content__right-part {
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content__right-part {
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .footer-section .footer-content__right-part {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-section .footer-content__right-part .footer-content__col {
  min-width: 160px;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content__right-part .footer-content__col {
    min-width: unset;
  }
}
@media screen and (max-width: 576px) {
  .footer-section .footer-content__right-part .footer-content__col {
    width: calc(50% - 30px);
    order: 2;
  }
}
.footer-section .footer-content__right-part .footer-content__col--subscribe {
  max-width: 255px;
}
@media screen and (max-width: 576px) {
  .footer-section .footer-content__right-part .footer-content__col--subscribe {
    max-width: 100%;
    width: 100%;
    order: 1;
  }
}
.footer-section .footer-content__logo {
  max-width: 191px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content__logo {
    margin-bottom: 20px;
  }
}
.footer-section .footer-content__copyright {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content__copyright {
    margin-bottom: 20px;
  }
}
.footer-section .footer-content__copyright p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #F5F7FA;
  margin-bottom: 8px;
}
.footer-section .footer-content__copyright p:last-child {
  margin-bottom: 0;
}
.footer-section .footer-content__social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .footer-section .footer-content__social {
    justify-content: center;
  }
}
.footer-section .footer-content__social .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.footer-section .footer-content__social .social-icon:hover {
  color: var(--color-primary);
}
.footer-section .footer-content__social .social-icon svg {
  max-height: 17px;
  max-width: 17px;
  object-fit: contain;
}
.footer-section .footer-content__menu-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
  display: inline-block;
}
@media screen and (max-width: 576px) {
  .footer-section .footer-content__menu-title {
    margin-bottom: 15px;
  }
}
.footer-section .footer-content .footer-menu-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-content .footer-menu-wrapper li {
  margin-bottom: 12px;
}
.footer-section .footer-content .footer-menu-wrapper li a {
  display: inline-block;
  color: #F5F7FA;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.footer-section .footer-content .footer-menu-wrapper li a:hover {
  color: var(--color-primary);
}
.footer-section .footer-content .footer-subscribe-form {
  border-radius: 8px;
  position: relative;
}
.footer-section .footer-content .footer-subscribe-form p {
  position: relative;
  display: inline-block;
  width: 100%;
}
.footer-section .footer-content .footer-subscribe-form p svg {
  top: 50%;
  transform: translateY(-50%);
  right: 11px;
  margin: auto;
  position: absolute;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  z-index: 3;
  cursor: pointer;
}
.footer-section .footer-content .footer-subscribe-form p .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 10px);
  left: 5px;
  font-size: 14px;
}
.footer-section .footer-content .footer-subscribe-form .footer-subscribe-input {
  padding: 11px 40px 11px 11px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  outline: none;
  border: none;
  width: 100%;
}
.footer-section .footer-content .footer-subscribe-form .footer-subscribe-input::placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #D9DBE1;
}
.footer-section .footer-content .wpcf7-response-output {
  color: #FFFFFF;
  margin-top: 60px;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("assets/images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("assets/fonts/slick.woff") format("woff"), url("assets/fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.error-404 {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.four-zero-four-page-container {
  padding: 25px 0;
}
@media screen and (max-width: 991px) {
  .four-zero-four-page-container {
    padding: 40px 0 25px 0;
  }
}
.four-zero-four-page-container .whoops-content {
  font-size: 38px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 43px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .four-zero-four-page-container .whoops-content {
    font-size: 26px;
    line-height: 32px;
  }
}
.four-zero-four-page-container .page-not-found-content {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .four-zero-four-page-container .page-not-found-content {
    font-size: 20px;
    line-height: 26px;
  }
}
.four-zero-four-page-container .image-wrapper {
  max-width: 100%;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .four-zero-four-page-container .image-wrapper {
    height: auto;
    margin-bottom: 40px;
  }
}
.four-zero-four-page-container .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.four-zero-four-page-container .image-wrapper h2 {
  text-align: center;
  font-size: 300px;
  line-height: 300px;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .four-zero-four-page-container .image-wrapper h2 {
    font-size: 120px;
    line-height: 120px;
  }
}
.four-zero-four-page-container .go-to-home-page-container {
  text-align: center;
}
.four-zero-four-page-container .go-to-home-page-container a {
  margin-inline: auto;
  width: fit-content;
}

.hero-slider-section {
  padding: 96px 0 16px;
  background-color: #F5F7FA;
}
@media screen and (max-width: 991px) {
  .hero-slider-section {
    padding-top: 50px;
  }
}
.hero-slider-section .hero-slider-wrapper .slider-item {
  display: flex;
  align-items: center;
  gap: 104px;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper .slider-item {
    gap: 50px 90px;
  }
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper .slider-item {
    flex-direction: column;
  }
}
.hero-slider-section .hero-slider-wrapper .slider-item .slider-left {
  flex: 1;
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper .slider-item .slider-left {
    text-align: center;
  }
}
.hero-slider-section .hero-slider-wrapper .slider-item .slider-left .slider-title {
  font-size: 64px;
  line-height: 76px;
  font-weight: 600;
  color: #4D4D4D;
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper .slider-item .slider-left .slider-title {
    font-size: 50px;
    line-height: 58px;
  }
}
@media screen and (max-width: 768px) {
  .hero-slider-section .hero-slider-wrapper .slider-item .slider-left .slider-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 576px) {
  .hero-slider-section .hero-slider-wrapper .slider-item .slider-left .slider-title {
    font-size: 32px;
    line-height: 38px;
  }
}
.hero-slider-section .hero-slider-wrapper .slider-item .slider-left .slider-title span {
  color: var(--color-primary);
}
.hero-slider-section .hero-slider-wrapper .slider-item .slider-left .slider-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
  margin: 16px 0 32px;
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper .slider-item .slider-left a {
    margin: auto;
  }
}
.hero-slider-section .hero-slider-wrapper .slider-item .slider-right {
  max-width: 391px;
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper .slider-item .slider-right {
    max-width: 100%;
  }
}
.hero-slider-section .hero-slider-wrapper.slick-slider {
  margin-bottom: 0;
}
.hero-slider-section .hero-slider-wrapper.slick-slider .slick-dots {
  position: static;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 991px) {
  .hero-slider-section .hero-slider-wrapper.slick-slider .slick-dots {
    margin-top: 40px;
  }
}
.hero-slider-section .hero-slider-wrapper.slick-slider .slick-dots li {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0;
  background-color: rgba(var(--color-primary-rgb), 30%);
}
.hero-slider-section .hero-slider-wrapper.slick-slider .slick-dots li.slick-active {
  background-color: var(--color-primary);
}
.hero-slider-section .hero-slider-wrapper.slick-slider .slick-dots li button {
  display: none;
}

.our-clients-section {
  margin-top: 40px;
}
.our-clients-section .our-clients-content__title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #4D4D4D;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .our-clients-section .our-clients-content__title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .our-clients-section .our-clients-content__title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (max-width: 576px) {
  .our-clients-section .our-clients-content__title {
    font-size: 25px;
    line-height: 32px;
  }
}
.our-clients-section .our-clients-content__title span {
  color: var(--color-primary);
}
.our-clients-section .our-clients-content__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
  margin-bottom: 16px;
}
.our-clients-section .our-clients-content .clients-slider {
  padding-block: 25px;
}
.our-clients-section .our-clients-content .clients-slider .slick-track {
  display: flex;
  align-items: center;
  gap: 110px;
}
@media screen and (max-width: 991px) {
  .our-clients-section .our-clients-content .clients-slider .slick-track {
    gap: 60px;
  }
}
.our-clients-section .our-clients-content .clients-slider .img-wrapper {
  display: flex;
  justify-content: center;
}
.our-clients-section .our-clients-content .clients-slider .img-wrapper img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  margin: auto;
}
.our-clients-section .our-clients-content .clients-slider .slick-dots {
  position: static;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.our-clients-section .our-clients-content .clients-slider .slick-dots li {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0;
  background-color: rgba(var(--color-primary-rgb), 30%);
}
.our-clients-section .our-clients-content .clients-slider .slick-dots li.slick-active {
  background-color: var(--color-primary);
}
.our-clients-section .our-clients-content .clients-slider .slick-dots li button {
  display: none;
}

.manage-community-section {
  margin-top: 40px;
}
.manage-community-section .manage-community-content__title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #4D4D4D;
  max-width: 542px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .manage-community-section .manage-community-content__title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .manage-community-section .manage-community-content__title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (max-width: 576px) {
  .manage-community-section .manage-community-content__title {
    font-size: 25px;
    line-height: 32px;
  }
}
.manage-community-section .manage-community-content__title span {
  color: var(--color-primary);
}
.manage-community-section .manage-community-content__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
  margin-bottom: 16px;
}
.manage-community-section .manage-community-content__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-content: center;
  gap: 50px 127px;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .manage-community-section .manage-community-content__cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 67px;
  }
}
@media screen and (max-width: 768px) {
  .manage-community-section .manage-community-content__cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.manage-community-section .manage-community-content__cards-wrapper .card {
  padding: 24px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(171, 190, 209, 0.2);
}
@media screen and (max-width: 991px) {
  .manage-community-section .manage-community-content__cards-wrapper .card {
    padding: 18px;
  }
}
@media screen and (max-width: 768px) {
  .manage-community-section .manage-community-content__cards-wrapper .card {
    width: 50%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 576px) {
  .manage-community-section .manage-community-content__cards-wrapper .card {
    width: 100%;
  }
}
.manage-community-section .manage-community-content__cards-wrapper .card__icon-wrapper {
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.manage-community-section .manage-community-content__cards-wrapper .card__icon-wrapper::after {
  content: "";
  top: 7px;
  left: 17px;
  position: absolute;
  background-color: rgba(var(--color-primary-rgb), 0.3);
  height: 49px;
  width: 48px;
  border-radius: 18px 5px 10px 5px;
  rotate: 180deg;
  z-index: -1;
}
.manage-community-section .manage-community-content__cards-wrapper .card__icon-wrapper svg {
  height: 48px;
  width: 48px;
  color: var(--color-primary);
}
.manage-community-section .manage-community-content__cards-wrapper .card__title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #4D4D4D;
  max-width: 231px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .manage-community-section .manage-community-content__cards-wrapper .card__title {
    max-width: 100%;
    font-size: 20px;
    line-height: 28px;
  }
}
.manage-community-section .manage-community-content__cards-wrapper .card__description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #717171;
}

.image-with-content-section {
  margin-top: 42px;
}
.image-with-content-section .image-with-content-section-wrapper {
  display: flex;
  align-items: center;
  gap: 49px;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .image-with-content-section .image-with-content-section-wrapper {
    flex-direction: column;
  }
}
.image-with-content-section .image-with-content-section-wrapper__left-part {
  max-width: 442px;
}
@media screen and (max-width: 991px) {
  .image-with-content-section .image-with-content-section-wrapper__left-part {
    max-width: 100%;
  }
}
.image-with-content-section .image-with-content-section-wrapper__right-part {
  flex: 1;
}
@media screen and (max-width: 991px) {
  .image-with-content-section .image-with-content-section-wrapper__right-part {
    text-align: center;
  }
}
.image-with-content-section .image-with-content-section-wrapper__right-part .section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #4D4D4D;
  max-width: 601px;
}
@media screen and (max-width: 991px) {
  .image-with-content-section .image-with-content-section-wrapper__right-part .section-title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .image-with-content-section .image-with-content-section-wrapper__right-part .section-title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (max-width: 576px) {
  .image-with-content-section .image-with-content-section-wrapper__right-part .section-title {
    font-size: 25px;
    line-height: 32px;
  }
}
.image-with-content-section .image-with-content-section-wrapper__right-part .section-title span {
  color: var(--color-primary);
}
.image-with-content-section .image-with-content-section-wrapper__right-part .section-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #717171;
  max-width: 601px;
  margin: 16px 0 32px;
  letter-spacing: 0.1px;
}
@media screen and (max-width: 576px) {
  .image-with-content-section .image-with-content-section-wrapper__right-part .section-description {
    max-width: 100%;
    letter-spacing: 0;
    text-align: justify;
  }
}
@media screen and (max-width: 991px) {
  .image-with-content-section .image-with-content-section-wrapper__right-part a {
    margin-inline: auto;
  }
}

.get-demo-section {
  padding-block: 32px;
  margin-top: 14px;
  background-color: #F5F7FA;
}
.get-demo-section .get-demo-content__title {
  font-size: 64px;
  line-height: 76px;
  font-weight: 600;
  color: #263238;
  max-width: 843px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 991px) {
  .get-demo-section .get-demo-content__title {
    font-size: 50px;
    line-height: 58px;
  }
}
@media screen and (max-width: 768px) {
  .get-demo-section .get-demo-content__title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 576px) {
  .get-demo-section .get-demo-content__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.get-demo-section .get-demo-content__cta {
  margin-inline: auto;
}

.numbers-section {
  padding-block: 64px;
  background-color: #F5F7FA;
  margin-top: 48px;
}
.numbers-section .numbers-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 72px;
}
@media screen and (max-width: 991px) {
  .numbers-section .numbers-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}
.numbers-section .numbers-content__left-part {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .numbers-section .numbers-content__left-part {
    width: 100%;
    text-align: center;
  }
}
.numbers-section .numbers-content__left-part__title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #4D4D4D;
  max-width: 408px;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .numbers-section .numbers-content__left-part__title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .numbers-section .numbers-content__left-part__title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (max-width: 576px) {
  .numbers-section .numbers-content__left-part__title {
    font-size: 25px;
    line-height: 32px;
  }
}
.numbers-section .numbers-content__left-part__title span {
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .numbers-section .numbers-content__left-part__title {
    max-width: 100%;
    text-align: center;
  }
}
.numbers-section .numbers-content__left-part__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
  color: #18191F;
}
.numbers-section .numbers-content__right-part {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  gap: 40px 30px;
}
@media screen and (max-width: 991px) {
  .numbers-section .numbers-content__right-part {
    width: 90%;
    gap: 50px 140px;
  }
}
@media screen and (max-width: 576px) {
  .numbers-section .numbers-content__right-part {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.numbers-section .numbers-content__right-part .numbers-card {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .numbers-section .numbers-content__right-part .numbers-card {
    text-align: center;
    width: fit-content;
    margin: auto;
  }
}
.numbers-section .numbers-content__right-part .numbers-card .icon-wrapper {
  height: 48px;
  width: 48px;
  display: inline-block;
}
.numbers-section .numbers-content__right-part .numbers-card .icon-wrapper svg {
  color: var(--color-primary);
}
.numbers-section .numbers-content__right-part .numbers-card .numbers-info {
  flex: 1;
}
.numbers-section .numbers-content__right-part .numbers-card .numbers-info h4 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #4D4D4D;
}

.customers-section {
  padding-block: 32px;
  margin-top: 48px;
  background-color: #F5F7FA;
}
@media screen and (max-width: 576px) {
  .customers-section {
    padding-block: 48px;
  }
}
.customers-section .customers-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 78px;
}
@media screen and (max-width: 1200px) {
  .customers-section .customers-content-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .customers-section .customers-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.customers-section .customers-content-wrapper__logo {
  border-radius: 8px;
  flex-shrink: 0;
  max-width: 326px;
}
@media screen and (max-width: 991px) {
  .customers-section .customers-content-wrapper__logo {
    max-width: 100%;
  }
}
.customers-section .customers-content-wrapper__content {
  flex: 1;
}
.customers-section .customers-content-wrapper__content__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .customers-section .customers-content-wrapper__content__text {
    text-align: justify;
  }
}
.customers-section .customers-content-wrapper .bottom-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: start;
}
@media screen and (max-width: 1200px) {
  .customers-section .customers-content-wrapper .bottom-wrapper {
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .customers-section .customers-content-wrapper .bottom-wrapper {
    flex-direction: column;
  }
}
.customers-section .customers-content-wrapper__person {
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .customers-section .customers-content-wrapper__person {
    margin-bottom: 22px;
  }
}
.customers-section .customers-content-wrapper__person__name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.customers-section .customers-content-wrapper__person__position {
  color: #89939E;
}
.customers-section .customers-content-wrapper__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 31px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .customers-section .customers-content-wrapper__brands {
    gap: 20px 25px;
  }
}
.customers-section .customers-content-wrapper__brands img {
  max-height: 48px;
  max-width: 48px;
  object-fit: contain;
}
.customers-section .customers-content-wrapper__cta {
  flex-shrink: 0;
}
.customers-section .customers-content-wrapper__cta .btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.5s all ease;
  color: var(--color-primary);
  background-color: #F5F7FA;
  border-radius: 4px;
  border: 1px solid #F5F7FA;
  padding: 8px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.customers-section .customers-content-wrapper__cta .btn-link img {
  max-width: 24px;
}
.customers-section .customers-content-wrapper__cta .btn-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  opacity: 0.8;
}
.customers-section .customers-content-wrapper__cta .btn-link:focus, .customers-section .customers-content-wrapper__cta .btn-link:active {
  color: var(--color-primary);
}

.news-section {
  padding-top: 48px;
}
.news-section__header {
  margin-bottom: 16px;
}
.news-section__header .news-section__title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #4D4D4D;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .news-section__header .news-section__title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .news-section__header .news-section__title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (max-width: 576px) {
  .news-section__header .news-section__title {
    font-size: 25px;
    line-height: 32px;
  }
}
.news-section__header .news-section__title span {
  color: var(--color-primary);
}
.news-section__header .news-section__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
  max-width: 612px;
  margin-inline: auto;
}
.news-section__posts {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}

.news-card {
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  transition: 0.5s all ease;
}
.news-card:nth-of-type(n + 4) {
  margin-top: -40px;
}
@media screen and (max-width: 768px) {
  .news-card:nth-of-type(n + 4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .news-card {
    width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
  .news-card:nth-of-type(n + 3) {
    margin-top: -30px;
  }
}
@media screen and (max-width: 576px) {
  .news-card {
    margin-top: 0 !important;
    width: 100%;
    max-width: 100%;
  }
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-card__image a {
  display: inline-block;
  width: 100%;
}
.news-card__image a img {
  border-radius: 8px;
  max-width: 100% !important;
  height: 286px !important;
}
.news-card__content {
  position: relative;
  bottom: 80px;
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  background-color: #F5F7FA;
  box-shadow: 0px 8px 16px 0px rgba(171, 190, 209, 0.4);
  margin-inline: 25px;
}
@media screen and (max-width: 991px) {
  .news-card__content {
    padding: 10px;
    margin-inline: 15px;
  }
}
@media screen and (max-width: 768px) {
  .news-card__content {
    bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .news-card__content {
    bottom: 40px;
  }
}
.news-card__content .news-card__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #717171;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 84px;
}
@media screen and (max-width: 991px) {
  .news-card__content .news-card__title {
    margin-bottom: 10px;
  }
}
.news-card__content .news-card__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.5s all ease;
  color: var(--color-primary);
  background-color: #F5F7FA;
  border-radius: 4px;
  border: 1px solid #F5F7FA;
  padding: 8px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.news-card__content .news-card__link img {
  max-width: 24px;
}
.news-card__content .news-card__link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  opacity: 0.8;
}
.news-card__content .news-card__link:focus, .news-card__content .news-card__link:active {
  color: var(--color-primary);
}

.single-post-content-section {
  background: #FFFFFF;
  padding: 70px 0 70px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 60vh;
}
.single-post-content-section .single-post-content-wrapper .single-post-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}
@media screen and (max-width: 576px) {
  .single-post-content-section .single-post-content-wrapper .single-post-title {
    margin-bottom: 15px;
  }
}
.single-post-content-section .single-post-content-wrapper .content-img-wrapper .content-img {
  margin-bottom: 40px;
  max-width: 670px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.single-post-content-section .single-post-content-wrapper h1,
.single-post-content-section .single-post-content-wrapper h2,
.single-post-content-section .single-post-content-wrapper h3,
.single-post-content-section .single-post-content-wrapper h4,
.single-post-content-section .single-post-content-wrapper h5,
.single-post-content-section .single-post-content-wrapper h6 {
  color: var(--color-primary);
}
.single-post-content-section .single-post-content-wrapper h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 10px;
}
.single-post-content-section .single-post-content-wrapper h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
}
.single-post-content-section .single-post-content-wrapper h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
.single-post-content-section .single-post-content-wrapper p {
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  margin-bottom: 16px;
  line-height: 24px;
}
.single-post-content-section .single-post-content-wrapper body {
  line-height: 1;
}
.single-post-content-section .single-post-content-wrapper blockquote {
  position: relative;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  padding: 40px 30px 20px;
  margin-top: 60px;
  margin-bottom: 40px;
}
.single-post-content-section .single-post-content-wrapper blockquote:before {
  content: "";
  position: absolute;
  left: 15px;
  top: -19px;
  background: url(data:image/png;base64,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) #fff;
  background-size: 50px auto;
  background-position: 50%;
  width: 80px;
  height: 50px;
  background-repeat: no-repeat;
}
.single-post-content-section .single-post-content-wrapper blockquote * {
  font-weight: 600;
  font-style: italic;
}
.single-post-content-section .single-post-content-wrapper .wp-block-media-text__content {
  padding: 6%;
}
.single-post-content-section .single-post-content-wrapper a {
  color: var(--color-primary);
}
.single-post-content-section .single-post-content-wrapper ul,
.single-post-content-section .single-post-content-wrapper ol {
  padding-left: 30px;
  margin-bottom: 20px;
}
.single-post-content-section .single-post-content-wrapper ul li,
.single-post-content-section .single-post-content-wrapper ol li {
  margin-bottom: 10px;
}
.single-post-content-section .single-post-content-wrapper ul li:last-child,
.single-post-content-section .single-post-content-wrapper ol li:last-child {
  margin-bottom: 0;
}


	.custom-logo-link img{
		max-width:80px
	}

.footer-section .footer-content__logo img {
    max-width: 100px;
}

/* Category 07 is for any utility classes that are not assigned to a specific component. */

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