/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
::before,
::after {
  box-sizing: border-box; }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */ }

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

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

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0; }

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

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

/**
 * Add the correct display in IE.
 */
main {
  display: block; }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0; }

/**
 * 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; }

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted; }

/**
 * 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%; }

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none; }

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

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse; }

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0; }

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */ }

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

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */ }

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible; }

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none; }

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */ }

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0; }

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none; }

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block; }

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content; }

dialog:not([open]) {
  display: none; }

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */ }

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed; }

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial; }

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute; }

/**
 * Use the default user interface font in all browsers (opinionated).
 */
html {
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

/**
 * Use the default monospace user interface font in all browsers (opinionated).
 */
code,
kbd,
samp,
pre {
  font-family: "Menlo", "Consolas", "Roboto Mono", "Ubuntu Monospace", "Noto Mono", "Oxygen Mono", "Liberation Mono", monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */ }

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em; }

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E"); }

/**
 * Change the inconsistent appearance in IE (opinionated).
 */
::-ms-expand {
  display: none; }

/**
 * Correct the inconsistent appearance in IE (opinionated).
 */
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54); }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

/* --------------- */
/* --- Extends --- */
/* --------------- */
.menu, .sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .menu li, .sidebar .widget ul li {
    font-family: inherit;
    position: relative; }
    .menu li a, .sidebar .widget ul li a {
      color: inherit;
      text-decoration: none;
      position: relative;
      white-space: nowrap; }
  .menu .sub-menu, .sidebar .widget ul .sub-menu {
    display: none; }

.post-preview .featured-img {
  height: 300px;
  background-position: center center;
  background-size: cover;
  background-color: #f2f2f2;
  position: relative; }
  .post-preview .featured-img a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.2;
    transition: opacity 0.3s ease-in-out; }
    .post-preview .featured-img a:hover {
      opacity: 0;
      transition: opacity 0.3s ease-in-out; }

.post-preview .content .btn, .post-wrap .post-nav-wrap .back-btn, .post-wrap .post-nav-wrap .navigation .nav-links a, .comment-respond .submit {
  display: inline-block;
  padding: 8px 20px;
  text-decoration: none;
  text-transform: uppercase;
  background: inherit;
  color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer; }
  .post-preview .content .btn:hover, .post-wrap .post-nav-wrap .back-btn:hover, .post-wrap .post-nav-wrap .navigation .nav-links a:hover, .comment-respond .submit:hover {
    background: inherit;
    color: inherit;
    transition: all 0.3s ease-in-out; }

/* --------------------- */
/* --- Global styles --- */
/* --------------------- */
.container_wrap {
  display: grid;
  grid-gap: 0 15px; }
  .container_wrap .container {
    grid-column: 2 / 3; }

.sidebar .widget {
  margin-bottom: 15px; }
  .sidebar .widget .widget-title {
    margin-bottom: 5px; }

.pagination {
  padding: 10px 0; }
  .pagination .nav-links .page-numbers {
    border: solid 1px inherit;
    padding: 6px 10px;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    transition: all 0.2s ease-in-out; }
  .pagination .nav-links .current {
    border-color: inherit;
    color: inherit; }
  .pagination .nav-links a:hover {
    border-color: inherit;
    background-color: inherit;
    transition: all 0.2s ease-in-out; }
  .pagination.next-prev a {
    text-decoration: none;
    color: inherit;
    border: solid 1px inherit;
    transition: all 0.2s ease-in-out; }
    .pagination.next-prev a:hover {
      border-color: inherit;
      background-color: inherit;
      transition: all 0.2s ease-in-out; }

.custom-404 {
  padding: 30px 15px 60px; }

.site-header {
  position: relative; }
  .site-header .site-logo {
    display: inline-block;
    max-width: 300px;
    position: relative;
    height: 100%;
    width: 100%; }
    .site-header .site-logo .title {
      text-decoration: none;
      color: inherit;
      display: inline-block; }
    .site-header .site-logo img {
      width: 100%;
      height: auto; }
  .site-header .header-nav .menu {
    display: flex; }
    .site-header .header-nav .menu .menu-item {
      margin: 0 4px; }
  .site-header .search-form {
    display: inline-block;
    padding: 4px;
    border: solid 1px; }
    .site-header .search-form input {
      background-color: transparent;
      border: 0;
      outline: 0;
      font-size: 20px;
      font-family: inherit;
      text-indent: 3px; }
    .site-header .search-form button {
      border: 0;
      background: transparent;
      outline: 0;
      font-size: 22px;
      opacity: 1;
      transition: opacity 0.2s ease-in-out; }
      .site-header .search-form button:hover {
        cursor: pointer;
        opacity: 0.5;
        transition: opacity 0.2s ease-in-out; }
  .site-header .main-nav .menu {
    display: flex;
    flex-wrap: wrap; }
    .site-header .main-nav .menu .menu-item {
      margin: 0 7px; }
      .site-header .main-nav .menu .menu-item a {
        white-space: nowrap;
        display: block;
        color: inherit;
        z-index: 39; }
  .site-header .main-nav .menu-item-has-children .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    flex-direction: column;
    z-index: 30;
    padding: 0; }
    .site-header .main-nav .menu-item-has-children .sub-menu .menu-item {
      margin: 0;
      padding: 0; }
      .site-header .main-nav .menu-item-has-children .sub-menu .menu-item a {
        display: block;
        padding: 8px 12px; }
  .site-header .main-nav .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -webkit-transition: opacity 0.25s ease-in-out; }
  .site-header.classic .upper .container {
    display: grid;
    place-items: center end; }
  .site-header.classic .main .container {
    display: grid;
    grid: auto / 1fr 1fr 1fr 1fr; }
    .site-header.classic .main .container .tagline {
      grid-column: 1; }
    .site-header.classic .main .container .main-nav_wrap {
      grid-column: 2 / span 3;
      grid-row: 1 / span 2;
      place-self: center end; }
      .site-header.classic .main .container .main-nav_wrap .menu .menu-item:last-of-type {
        margin-right: 0; }
  .site-header.stack-center .main .container {
    display: grid;
    place-items: center; }
    .site-header.stack-center .main .container .site-logo {
      text-align: center; }
  .site-header.stack-center .lower .container {
    display: grid;
    place-items: center; }
  .site-header.stack-left .main .container {
    display: grid;
    place-items: center start; }
  .site-header.stack-left .lower {
    place-items: center start; }
    .site-header.stack-left .lower .menu .menu-item:first-of-type {
      margin-left: 0; }
  .site-header #navicon {
    display: none;
    width: 38px;
    height: 28px;
    position: relative;
    margin: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer; }
    .site-header #navicon span {
      display: block;
      position: absolute;
      height: 4px;
      width: 100%;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      -moz-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out; }
      .site-header #navicon span:nth-child(1) {
        top: 0px; }
      .site-header #navicon span:nth-child(2), .site-header #navicon span:nth-child(3) {
        top: 12px; }
      .site-header #navicon span:nth-child(4) {
        top: 24px; }
    .site-header #navicon.open span:nth-child(1) {
      top: 12px;
      width: 0%;
      left: 50%; }
    .site-header #navicon.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    .site-header #navicon.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .site-header #navicon.open span:nth-child(4) {
      top: 12px;
      width: 0%;
      left: 50%; }

.mobile-nav .menu-arrow {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 40; }
  .mobile-nav .menu-arrow .fa-chevron-right, .mobile-nav .menu-arrow .fa-chevron-down {
    display: none;
    color: inherit; }

.mobile-nav .menu-item-has-children .menu-arrow {
  display: inline-block; }
  .mobile-nav .menu-item-has-children .menu-arrow .fa-chevron-right {
    display: initial;
    transform: rotate(0);
    transition: all 0.3s ease-in-out; }

.mobile-nav .menu-item-has-children.expanded .menu-arrow .fa-chevron-right {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out; }

.mobile-nav .menu-item-has-children.expanded .sub-menu {
  display: block !important;
  padding: 0 0 5px 0; }
  .mobile-nav .menu-item-has-children.expanded .sub-menu .menu-item {
    border: 0; }
    .mobile-nav .menu-item-has-children.expanded .sub-menu .menu-item a {
      padding: 4px 0px 4px 20px; }
    .mobile-nav .menu-item-has-children.expanded .sub-menu .menu-item .menu-arrow {
      display: none !important; }

@media (max-width: 1023px) {
  .site-header #navicon {
    display: inline-block; }
  .site-header .main-nav {
    display: none; } }

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important; } }

.site-footer .lower {
  padding: 15px 0 30px; }

.site-footer .sub-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }
  .site-footer .sub-footer .container .sign-off .gsl-link {
    text-decoration: none;
    color: inherit; }
  .site-footer .sub-footer .container .sub-menu .menu {
    display: flex; }
    .site-footer .sub-footer .container .sub-menu .menu .menu-item {
      margin-right: 15px; }
      .site-footer .sub-footer .container .sub-menu .menu .menu-item:last-of-type {
        margin: 0; }

.wpcf7 .wpcf7-form {
  display: flex;
  flex-wrap: wrap; }
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
    flex: 1 1 auto;
    padding: 10px; }
    .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.your-message {
      flex: 1 1 100%; }
  .wpcf7 .wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid;
    outline: 0; }
  .wpcf7 .wpcf7-form .wpcf7-submit {
    margin: auto;
    max-width: 300px;
    outline: 0;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer; }
    .wpcf7 .wpcf7-form .wpcf7-submit:hover {
      opacity: 0.7;
      transition: opacity 0.3s ease-in-out; }
    @media (max-width: 768px) {
      .wpcf7 .wpcf7-form .wpcf7-submit {
        margin: 0 10px;
        max-width: none; } }

.wpcf7 .ajax-loader {
  background-image: url("../images/loader-blue.gif");
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3d3d3d;
  z-index: 1001;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; }
  .wpcf7 .ajax-loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #696969;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite; }
  .wpcf7 .ajax-loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #999999;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite; }

.blog .page-content,
.single .page-content,
.archive .page-content,
.search .page-content {
  padding: 30px 0; }
  .blog .page-content .container,
  .single .page-content .container,
  .archive .page-content .container,
  .search .page-content .container {
    display: grid;
    grid: auto / auto 350px;
    grid-gap: 0 30px; }
  .blog .page-content .page-title,
  .single .page-content .page-title,
  .archive .page-content .page-title,
  .search .page-content .page-title {
    grid-column: 1 / span 2; }

.post-meta {
  margin-bottom: 10px; }
  .post-meta .date {
    display: block; }
  .post-meta .cats a {
    color: inherit;
    text-decoration: none; }
  .post-meta .tags a {
    color: inherit;
    opacity: 0.6;
    text-decoration: none;
    font-style: italic;
    transition: opacity 0.3s ease-in-out; }
    .post-meta .tags a:hover {
      opacity: 1;
      transition: opacity 0.3s ease-in-out; }

.post-preview {
  border: solid 1px; }
  .post-preview .featured-img {
    margin-bottom: 0px; }
  .post-preview .content {
    padding: 0 15px 15px; }
    .post-preview .content h1 {
      font-size: 24px;
      font-family: inherit; }
    .post-preview .content .post-meta {
      margin: 15px 0 0; }
    .post-preview .content .btn {
      align-self: baseline; }

.post-wrap {
  display: grid;
  grid: auto / auto-flow 1fr;
  grid-gap: 15px 15px; }
  .post-wrap .post-nav-wrap {
    display: flex;
    margin-top: 15px; }
    .post-wrap .post-nav-wrap .navigation .nav-links {
      display: flex; }
      .post-wrap .post-nav-wrap .navigation .nav-links a {
        margin-left: 3px; }

.wp-post-image {
  width: 100%;
  height: auto; }

.comment-respond {
  border-top: solid 1px;
  padding-top: 5px; }
  .comment-respond .comment-reply-title {
    font-size: 18px; }
  .comment-respond .comment-form-comment label {
    display: none; }
  .comment-respond .comment-form-comment #comment {
    width: 100%; }

.blog-grid {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 15px; }

.search .post {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px inherit; }
  .search .post .featured-image {
    flex: 0 1 30%;
    min-height: 300px;
    background-position: center center;
    background-size: cover;
    position: relative;
    margin: 0 30px 15px 0; }
    .search .post .featured-image a {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
  .search .post .post-excerpt {
    flex: 0 1 65%;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 15px; }
    .search .post .post-excerpt h1 {
      font-size: 34px;
      margin: 0 0 15px; }
    .search .post .post-excerpt p {
      padding-bottom: 15px; }
    .search .post .post-excerpt a {
      color: inherit;
      text-decoration: none;
      display: inline-block;
      opacity: 1;
      transition: opacity 0.3s ease-in-out; }
      .search .post .post-excerpt a:hover {
        opacity: 1;
        transition: opacity 0.3s ease-in-out; }

@media (max-width: 1024px) {
  .search .post .featured-image {
    flex: 1 0 100%; }
  .search .post .post-excerpt {
    flex: 1 0 100%;
    padding: 0; } }

.search-page-title {
  padding: 30px 0; }

.no-search-results {
  padding: 90px 0 60px 0;
  text-align: center; }

.widget_search .search-form {
  display: flex;
  border: solid 1px #a9a9a9; }
  .widget_search .search-form label {
    width: 100%; }
  .widget_search .search-form .search-field {
    width: 100%;
    border: 0;
    padding: 8px 5px;
    text-indent: 10px;
    outline: 0; }
  .widget_search .search-form .search-submit {
    border: 0;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 0 10px 0 5px;
    outline: 0; }
    .widget_search .search-form .search-submit:hover {
      color: inherit;
      transition: all 0.3s ease-in-out; }

.widget_media_gallery .gallery .gallery-item {
  margin: 0; }
  .widget_media_gallery .gallery .gallery-item .gallery-icon .attachment-full {
    width: 100%;
    height: auto; }

.widget_media_gallery .gallery-columns-1 {
  display: grid;
  grid: auto/repeat(1, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-2 {
  display: grid;
  grid: auto/repeat(2, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-3 {
  display: grid;
  grid: auto/repeat(3, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-4 {
  display: grid;
  grid: auto/repeat(4, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-5 {
  display: grid;
  grid: auto/repeat(5, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-6 {
  display: grid;
  grid: auto/repeat(6, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-7 {
  display: grid;
  grid: auto/repeat(7, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-8 {
  display: grid;
  grid: auto/repeat(8, minmax(0px, 1fr));
  grid-gap: 5px; }

.widget_media_gallery .gallery-columns-9 {
  display: grid;
  grid: auto/repeat(9, minmax(0px, 1fr));
  grid-gap: 5px; }

h1 b, h1 strong {
  font-weight: 700; }

body {
  font-family: "Poppins";
  font-size: 15px; }
  body p {
    margin: 0 0 15px;
    line-height: 23px; }
    body p a {
      color: inherit; }
  body h1,
  body .h1-style, body h2,
  body .h2-style, body h3,
  body .h3-style, body h4,
  body .h4-style {
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: 400; }
  body h1,
  body .h1-style {
    font-family: "Poppins";
    font-size: 40px;
    line-height: 60px;
    font-weight: bold; }
  body h2,
  body .h2-style {
    font-family: "Poppins";
    font-size: 30px;
    line-height: 46px;
    font-weight: bold; }
  body h3,
  body .h3-style {
    font-family: "Poppins";
    font-size: 25px;
    line-height: 38px; }
  body h1 b,
  body h1 strong,
  body h2 b,
  body h2 strong,
  body h3 b,
  body h3 strong {
    font-weight: 700; }

::-webkit-input-placeholder {
  font-family: "Poppins"; }

:-moz-placeholder {
  font-family: "Poppins"; }

::-moz-placeholder {
  font-family: "Poppins"; }

:-ms-input-placeholder {
  font-family: "Poppins"; }

#loader-wrapper {
  display: none; }

.elementor .gsl_link-block_wrap {
  box-shadow: 0px 4px 8px 2px rgba(41, 50, 49, 0.2);
  border-radius: 10px;
  padding: 6%;
  position: relative;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .elementor .gsl_link-block_wrap .block-bg {
    display: none; }
  .elementor .gsl_link-block_wrap .icon_wrap {
    color: #74794D;
    transition: all 0.2s ease-in-out;
    max-width: 80px;
    margin: 0 0 20px; }
    .elementor .gsl_link-block_wrap .icon_wrap svg {
      width: 100%;
      height: auto; }
  .elementor .gsl_link-block_wrap .content_wrap {
    text-align: center; }
    .elementor .gsl_link-block_wrap .content_wrap .title {
      font-family: "Poppins";
      font-size: 17px;
      line-height: 1.2;
      color: #74794D;
      margin: 0;
      transition: all 0.2s ease-in-out;
      text-transform: capitalize; }
      @media (min-width: 1630px) {
        .elementor .gsl_link-block_wrap .content_wrap .title {
          font-size: 25px; } }
  .elementor .gsl_link-block_wrap .link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .elementor .gsl_link-block_wrap:hover {
    background-color: #74794D;
    transition: all 0.2s ease-in-out; }
    .elementor .gsl_link-block_wrap:hover .icon_wrap {
      color: #ffffff;
      transition: all 0.2s ease-in-out; }
    .elementor .gsl_link-block_wrap:hover .content_wrap .title {
      color: #ffffff;
      transition: all 0.2s ease-in-out; }

.elementor-widget-gsl-btn .gsl-btn_wrapper .gsl-btn,
.project-details .gsl-btn_wrapper .gsl-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 17px;
  min-width: 180px;
  text-decoration: none;
  text-align: center; }

.elementor-widget-gsl-btn .gsl-btn_wrapper.style-dark .gsl-btn,
.project-details .gsl-btn_wrapper.style-dark .gsl-btn {
  background-color: #27A1E9;
  color: #ffffff; }
  .elementor-widget-gsl-btn .gsl-btn_wrapper.style-dark .gsl-btn:hover,
  .project-details .gsl-btn_wrapper.style-dark .gsl-btn:hover {
    background-color: #384776;
    color: #ffffff;
    transition: all 0.2s ease-in-out; }

.elementor-widget-gsl-btn .gsl-btn_wrapper.style-light .gsl-btn,
.project-details .gsl-btn_wrapper.style-light .gsl-btn {
  background-color: #ffffff;
  color: #293231; }
  .elementor-widget-gsl-btn .gsl-btn_wrapper.style-light .gsl-btn:hover,
  .project-details .gsl-btn_wrapper.style-light .gsl-btn:hover {
    background-color: #74794D;
    color: #ffffff;
    transition: all 0.2s ease-in-out; }

.elementor-widget-gsl-btn .gsl-btn_wrapper.style-alternative .gsl-btn,
.project-details .gsl-btn_wrapper.style-alternative .gsl-btn {
  background-color: transparent;
  border: solid 1px #74794D;
  color: #74794D; }
  .elementor-widget-gsl-btn .gsl-btn_wrapper.style-alternative .gsl-btn:hover,
  .project-details .gsl-btn_wrapper.style-alternative .gsl-btn:hover {
    background-color: #74794D;
    color: #ffffff;
    transition: all 0.2s ease-in-out; }

.wpcf7 .wpcf7-form {
  display: grid;
  grid-gap: 15px; }
  .wpcf7 .wpcf7-form label {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .wpcf7 .wpcf7-form label .title {
      width: 100%;
      display: inline-block; }
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
    padding: 0;
    width: 48%;
    margin: 0px 5px; }
    .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
      border: solid 1px #293231;
      padding: 10px 20px;
      margin: 10px 0px;
      text-indent: 5px;
      color: #293231; }
    .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .country-select {
      margin: 10px 0px; }
      .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .country-select .wpcf7-form-control {
        padding-left: 50px;
        pointer-events: none; }
    .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      font-size: 14px; }
    .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance {
      display: inline-block;
      padding: 15px 0; }
      .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control {
        border: 0;
        text-indent: 0px;
        padding: 0; }
        .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control .wpcf7-list-item {
          margin: 0; }
        .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control label {
          cursor: pointer;
          position: relative; }
          .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control label .wpcf7-list-item-label {
            padding-left: 0px; }
            .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control label .wpcf7-list-item-label:before {
              content: '\2713';
              padding: 2px 8px;
              color: transparent;
              border: solid 1px #293231;
              margin-right: 10px;
              font-size: 20px; }
          .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control label input[type=checkbox] {
            position: absolute;
            opacity: 0; }
            .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-form-control label input[type=checkbox]:checked + .wpcf7-list-item-label:before {
              color: #293231; }
      .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.acceptance .wpcf7-not-valid-tip {
        top: auto;
        right: 0;
        transform: translateY(0);
        font-size: 14px; }
  .wpcf7 .wpcf7-form .wpcf7-submit {
    margin: 0;
    max-width: none;
    padding: 15px 20px;
    border: solid 1px #293231;
    transition: all 0.2s ease-in-out; }
    .wpcf7 .wpcf7-form .wpcf7-submit:hover {
      background-color: #384776;
      border-color: #384776;
      color: #ffffff;
      opacity: 1;
      transition: all 0.2s ease-in-out; }
  .wpcf7 .wpcf7-form .ajax-loader {
    background-image: none !important;
    border: solid 3px #E8E8E8;
    border-top: solid 3px #AFB777;
    height: 25px;
    width: 25px;
    left: auto;
    right: auto;
    top: auto;
    justify-self: center; }
    .wpcf7 .wpcf7-form .ajax-loader:before, .wpcf7 .wpcf7-form .ajax-loader:after {
      display: none; }
  .wpcf7 .wpcf7-form .wpcf7-response-output {
    margin: 0;
    padding: 0 15px;
    border: 0; }

.site-header.classic .main .container {
  display: block;
  width: 100%;
  grid: auto / 320px 1fr auto;
  grid-gap: 15px;
  background-color: white; }
  .site-header.classic .main .container .site-logo {
    margin: 15px 0;
    font-size: 20px;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    height: auto; }
  .site-header.classic .main .container .tagline {
    text-align: center;
    font-size: 15px;
    padding: 10px; }
  .site-header.classic .main .container .main-nav_wrap {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    align-self: end; }
    .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item {
      padding: 0;
      margin: 0;
      border-bottom: solid 4px transparent;
      transition: all 0.2s ease-in-out;
      display: block;
      margin: auto;
      right: 100%;
      left: 0; }
      .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item a {
        line-height: 1;
        padding: 15px 20px;
        position: sticky;
        display: inline-block; }
        .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item a:after {
          content: '';
          width: 1px;
          height: 16px;
          background-color: #72a1e8;
          position: sticky;
          right: 0;
          top: 50%;
          transform: translateY(-50%); }
      .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item .sub-menu {
        background-color: #D5D5D5;
        border-top: solid 4px #384776;
        color: #707070; }
        .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item .sub-menu .menu-item {
          border-bottom: 0; }
          .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item .sub-menu .menu-item a {
            padding: 10px 20px;
            display: block;
            transition: all 0.2s ease-in-out; }
            .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item .sub-menu .menu-item a:after {
              display: none; }
            .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item .sub-menu .menu-item a:hover {
              background-color: #384776;
              color: #F3F3F3;
              transition: all 0.2s ease-in-out; }
      .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item:hover {
        border-bottom: solid 4px #319ed8;
        transition: all 0.2s ease-in-out; }
        .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item:hover .sub-menu {
          visibility: visible;
          opacity: 1; }
      .site-header.classic .main .container .main-nav_wrap .main-nav .menu .menu-item.menu-item-has-children {
        border-bottom: solid 4px transparent; }
    .site-header.classic .main .container .main-nav_wrap #navicon {
      margin: 5px; }
      .site-header.classic .main .container .main-nav_wrap #navicon span {
        background-color: #74794D; }
  .site-header.classic .main .container .socials {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 5px;
    margin-right: 10px; }
    .site-header.classic .main .container .socials .s-link {
      margin-left: 10px;
      font-size: 28px;
      color: #293231; }
      .site-header.classic .main .container .socials .s-link:hover {
        color: #384776;
        transition: all 0.2s ease-in-out; }
  @media (max-width: 1024px) {
    .site-header.classic .main .container .socials {
      grid-column: 2;
      grid-row: 1;
      align-items: center;
      padding: 0; }
    .site-header.classic .main .container .main-nav_wrap {
      grid-column: 3;
      align-self: center; } }
  @media (max-width: 768px) {
    .site-header.classic .main .container {
      grid: auto / auto auto; }
      .site-header.classic .main .container .socials {
        display: none; } }

.mobile-nav {
  height: auto;
  max-height: 0;
  position: absolute;
  width: 100%;
  background-color: #293231;
  z-index: 200;
  overflow: hidden;
  transition: all 0.2s ease-in-out; }
  .mobile-nav .menu {
    padding: 30px 0; }
    .mobile-nav .menu .menu-item {
      text-align: center; }
      .mobile-nav .menu .menu-item:after {
        content: '';
        width: 30px;
        height: 1px;
        background-color: #ffffff;
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%); }
      .mobile-nav .menu .menu-item:last-of-type:after {
        display: none; }
      .mobile-nav .menu .menu-item a {
        color: #F3F3F3;
        padding: 15px;
        display: block;
        font-size: 20px; }
        .mobile-nav .menu .menu-item a:hover {
          color: #ffffff; }
      .mobile-nav .menu .menu-item.menu-item-has-children {
        padding-bottom: 15px; }
        .mobile-nav .menu .menu-item.menu-item-has-children a {
          padding-bottom: 5px; }
      .mobile-nav .menu .menu-item .menu-arrow {
        display: none; }
      .mobile-nav .menu .menu-item .sub-menu {
        display: block;
        padding: 0; }
        .mobile-nav .menu .menu-item .sub-menu .menu-item:after {
          display: none; }
        .mobile-nav .menu .menu-item .sub-menu .menu-item a {
          padding: 5px;
          font-size: 17px; }

.show-nav .mobile-nav {
  max-height: 600px;
  transition: all 0.2s ease-in-out; }

.site-footer {
  color: #ffffff;
  font-size: 15px; }
  .site-footer .main {
    background-color: #384776;
    padding: 60px 0; }
    .site-footer .main a:hover {
      text-decoration: underline; }
    .site-footer .main .container {
      grid: auto/400px repeat(3, 220px) auto;
      grid-gap: 30px; }
    .site-footer .main #widget-area-1 {
      max-width: 300px; }
    .site-footer .main .widget .widget-title {
      font-size: 15px; }
    .site-footer .main .socials .s-link {
      color: #ffffff;
      font-size: 46px;
      margin: 0 10px 10px 0;
      transition: all 0.2s ease-in-out; }
      .site-footer .main .socials .s-link:hover {
        color: #27A1E9;
        transition: all 0.2s ease-in-out; }
    .site-footer .main .widget_media_gallery {
      max-width: 580px;
      margin: 0 auto; }
    @media (max-width: 1630px) {
      .site-footer .main .container {
        display: block;
        text-align: center; }
        .site-footer .main .container #widget-area-1 {
          max-width: 768px;
          margin: 0 auto; }
        .site-footer .main .container .widget {
          margin-bottom: 30px; }
          .site-footer .main .container .widget .widget-title {
            margin: 0; }
          .site-footer .main .container .widget .menu {
            display: flex;
            justify-content: center; }
            .site-footer .main .container .widget .menu .menu-item {
              margin: 0 10px; } }
  .site-footer .sub-footer {
    background-color: #27A1E9; }
    .site-footer .sub-footer .container {
      padding: 10px 0; }
    .site-footer .sub-footer .sign-off {
      width: 100%; }
      .site-footer .sub-footer .sign-off .gsl-link {
        float: right;
        transition: all 0.2s ease-in-out; }
        .site-footer .sub-footer .sign-off .gsl-link:hover {
          color: #293231;
          transition: all 0.2s ease-in-out; }
      @media (max-width: 1630px) {
        .site-footer .sub-footer .sign-off {
          text-align: center; }
          .site-footer .sub-footer .sign-off .gsl-link {
            float: none;
            display: block; } }

.blog .page-content .container,
.single .page-content .container {
  align-items: baseline; }
  @media (max-width: 1024px) {
    .blog .page-content .container,
    .single .page-content .container {
      display: block; }
      .blog .page-content .container .sidebar,
      .single .page-content .container .sidebar {
        margin-top: 30px; } }

.blog .blog-grid,
.single .blog-grid {
  grid: auto/repeat(auto-fill, minmax(430px, 1fr)); }
  .blog .blog-grid .masonary-grid-sizer,
  .blog .blog-grid .masonary-gutter-sizer,
  .single .blog-grid .masonary-grid-sizer,
  .single .blog-grid .masonary-gutter-sizer {
    display: none; }

.sidebar {
  border-left: solid 1px #293231;
  padding-left: 30px;
  align-self: start; }

.post-preview {
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  height: 100%;
  background-color: #D5D5D5;
  color: darkblue; }
  .post-preview .post-preview_wrap {
    display: flex;
    height: 100%; }
    .post-preview .post-preview_wrap .featured-img {
      flex: 0 1 70%;
      border-radius: 20px;
      overflow: hidden;
      height: auto; }
    .post-preview .post-preview_wrap .content {
      flex: 0 1 40%;
      color: darkblue;
      justify-self: flex-end;
      padding: 30px;
      min-height: 340px; }
      .post-preview .post-preview_wrap .content .post-meta {
        margin: 0;
        display: none; }
      .post-preview .post-preview_wrap .content h1 {
        font-size: 20px;
        text-transform: none;
        font-weight: 400;
        line-height: 23px; }
      .post-preview .post-preview_wrap .content p {
        font-size: 15px;
        line-height: 1.4em;
        font-weight: 300;
        max-height: 110px;
        overflow: hidden;
        position: relative; }
        .post-preview .post-preview_wrap .content p:after {
          content: "";
          position: absolute;
          z-index: 1;
          top: calc(110px - 3em);
          left: 0;
          pointer-events: none;
          background-image: linear-gradient(to bottom, rgba(213, 213, 213, 0), #d5d5d5 90%);
          width: 100%;
          height: 3em; }
      .post-preview .post-preview_wrap .content .gsl-btn_wrapper .gsl-btn {
        color: #384776;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: bold; }
        .post-preview .post-preview_wrap .content .gsl-btn_wrapper .gsl-btn:hover {
          color: #ffffff;
          transition: all 0.2s ease-in-out; }
  .post-preview:not(.has-image) .post-preview_wrap .content {
    margin-left: 50%; }
  @media (max-width: 580px) {
    .post-preview .post-preview_wrap {
      flex-direction: column; }
      .post-preview .post-preview_wrap .featured-img {
        flex: 0 1 auto;
        height: 220px; }
      .post-preview .post-preview_wrap .content {
        flex: 0 1 auto;
        min-height: 220px; }
    .post-preview:not(.has-image) .post-preview_wrap .content {
      margin: 220px 0 0 !important; } }

.single-post .page-content .posts-wrap {
  display: block; }

.latest-news_wrap {
  margin: 0 auto;
  position: relative; }
  .latest-news_wrap .owl-nav .owl-prev, .latest-news_wrap .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px !important;
    outline: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out; }
    .latest-news_wrap .owl-nav .owl-prev:hover, .latest-news_wrap .owl-nav .owl-next:hover {
      opacity: 0.5;
      transition: all 0.2s ease-in-out; }
  .latest-news_wrap .owl-nav .owl-prev {
    left: -50px; }
  .latest-news_wrap .owl-nav .owl-next {
    right: -50px; }

.single-project .page-content .container {
  display: grid;
  grid: auto / auto 500px;
  grid-gap: 30px;
  align-items: stretch; }
  @media (max-width: 1024px) {
    .single-project .page-content .container {
      grid: auto / 1fr; }
      .single-project .page-content .container .details-column {
        grid-row: 1; } }
  .single-project .page-content .container .gallery-column .image-gallery_wrap {
    display: grid;
    grid: auto/repeat(auto-fill, minmax(160px, 1fr));
    grid-gap: 5px; }
    .single-project .page-content .container .gallery-column .image-gallery_wrap .gallery-canvas {
      grid-column: span 3;
      grid-row: span 3; }
      .single-project .page-content .container .gallery-column .image-gallery_wrap .gallery-canvas .owl-stage-outer,
      .single-project .page-content .container .gallery-column .image-gallery_wrap .gallery-canvas .owl-stage,
      .single-project .page-content .container .gallery-column .image-gallery_wrap .gallery-canvas .owl-item {
        height: 100%; }
      .single-project .page-content .container .gallery-column .image-gallery_wrap .gallery-canvas .image {
        height: 100%;
        min-height: 400px;
        background-size: cover;
        background-position: center; }
    .single-project .page-content .container .gallery-column .image-gallery_wrap .image-preview {
      background-size: cover;
      background-position: center;
      position: relative; }
      .single-project .page-content .container .gallery-column .image-gallery_wrap .image-preview .link {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #74794D;
        opacity: 0.7;
        transition: all 0.2s ease-in-out; }
        .single-project .page-content .container .gallery-column .image-gallery_wrap .image-preview .link:hover {
          opacity: 0.2;
          transition: all 0.2s ease-in-out; }
  .single-project .page-content .container .details-column .project-details {
    border-left: solid 1px #74794D;
    padding: 0 30px 5px;
    position: sticky;
    top: 15px; }
    .single-project .page-content .container .details-column .project-details .detail {
      display: block;
      margin-bottom: 15px; }
    .single-project .page-content .container .details-column .project-details .description {
      padding-bottom: 15px; }

.post-type-archive-project .page-content .container {
  display: block; }
  .post-type-archive-project .page-content .container .page-title {
    text-align: center;
    margin-bottom: 30px; }
  .post-type-archive-project .page-content .container .projects-grid {
    display: grid;
    grid: auto/repeat(auto-fill, minmax(360px, 1fr));
    grid-gap: 30px; }
    @media (max-width: 768px) {
      .post-type-archive-project .page-content .container .projects-grid {
        grid: auto / 1fr; } }

.project-preview {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column; }
  .project-preview .project-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative; }
    .project-preview .project-image .overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #293231;
      opacity: 0.3;
      transition: all 0.2s ease-in-out; }
  .project-preview .title-wrap {
    background-color: #293231;
    color: #ffffff;
    text-align: center;
    padding: 40px 15px;
    display: flex;
    justify-content: center;
    flex: 1 1 20%; }
    .project-preview .title-wrap .title {
      font-size: 20px;
      line-height: 1.2em;
      margin: 0;
      text-transform: none; }
  .project-preview .date-wrap {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    background-color: #74794D;
    color: #ffffff; }
  .project-preview .link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .project-preview:hover .project-image .overlay {
    opacity: 0;
    transition: all 0.2s ease-in-out; }

.recent-projects_wrap {
  margin: 0 auto;
  max-width: 1400px;
  position: relative; }
  .recent-projects_wrap .title-wrap {
    min-height: 130px; }
  .recent-projects_wrap .owl-nav .owl-prev, .recent-projects_wrap .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px !important;
    outline: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out; }
    .recent-projects_wrap .owl-nav .owl-prev:hover, .recent-projects_wrap .owl-nav .owl-next:hover {
      opacity: 0.5;
      transition: all 0.2s ease-in-out; }
  .recent-projects_wrap .owl-nav .owl-prev {
    left: -50px; }
  .recent-projects_wrap .owl-nav .owl-next {
    right: -50px; }

.call_back .wpcf7-form {
  display: flex; }
  .call_back .wpcf7-form .wpcf7-form-control-wrap {
    width: 35%; }
    .call_back .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
      width: 100%;
      color: black;
      background-color: white;
      border: none;
      padding: 10px; }
    .call_back .wpcf7-form .wpcf7-form-control-wrap select.wpcf7-form-control option {
      color: black; }
    .call_back .wpcf7-form .wpcf7-form-control-wrap select.wpcf7-form-control option:first-child {
      color: rgba(0, 0, 0, 0.7); }
  .call_back .wpcf7-form .wpcf7-submit {
    width: 130px;
    background-color: #C23135;
    border-color: #C23135;
    color: white;
    padding: 5px;
    transition: box-shadow; }
    .call_back .wpcf7-form .wpcf7-submit:hover {
      background-color: #C23135;
      border-color: #C23135;
      color: white;
      box-shadow: inset rgba(0, 0, 0, 0.6) 0px 0px 10px; }
