/*!
Theme Name: webbistarter
Theme URI: http://underscores.me/
Author: Amar Deric
Author URI: http://underscores.me/
Description: A starter theme for Webbi WordPress projects.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webbistarter
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

webbistarter is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap");
@font-face {
  font-family: "Butler";
  src: url("./assets/fonts/Butler.woff2") format("woff2"), url("./assets/fonts/Butler.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("./assets/fonts/Lato-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h1, h2, h3, h4 {
  font-family: "Butler", serif !important;
}

p, a, body {
  font-family: "Lato", sans-serif !important;
}

p {
  margin-bottom: 1.5em;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}
a:visited {
  color: #800080;
}
a:hover, a:focus, a:active {
  color: #191970;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

.footer {
  background-color: #384757;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  color: #d7d7d9;
}
@media screen and (max-width: 980px) {
  .footer {
    padding: 3rem 1rem;
  }
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
.footer__content {
  max-width: 500px;
}
.footer__content h3 {
  margin-bottom: 10px;
}
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .footer__bottom {
    text-align: center;
    margin-top: 40px;
  }
}
.footer__bottom p {
  font-size: 12px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 980px) {
  .footer__social {
    margin: 0 auto;
  }
}
.footer__social a {
  color: #d7d7d9;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.footer__social a:hover {
  color: rgb(162.6923076923, 162.6923076923, 167.3076923077);
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.top-header {
  background-color: #353535;
  color: #d7d7d9;
  padding: 10px 0;
}
@media (max-width: 980px) {
  .top-header {
    display: none;
  }
}
.top-header__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-header p {
  margin: 0;
  padding: 0;
}
.top-header__social-links {
  display: flex;
  gap: 10px;
}
.top-header__social-links a {
  color: #d7d7d9;
  font-size: 1rem;
  transition: color 0.3s;
}
.top-header__social-links a:hover {
  color: rgb(162.6923076923, 162.6923076923, 167.3076923077);
}

#masthead {
  background-color: #384757;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.site-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-branding img {
  max-height: 60px;
  width: auto;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}
.main-navigation ul li {
  position: relative;
}
.main-navigation ul li a {
  text-decoration: none;
  color: #d7d7d9;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  display: block;
  overflow: hidden;
}
.main-navigation ul li a::before, .main-navigation ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 100%;
  width: 0;
  background-color: #d7d7d9;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out, right 0.3s ease-in-out;
}
.main-navigation ul li a::before {
  left: 50%;
  transform: translateY(-50%);
}
.main-navigation ul li a::after {
  right: 50%;
  transform: translateY(-50%);
}
.main-navigation ul li a:hover::before, .main-navigation ul li a:hover::after {
  width: 2px;
}
.main-navigation ul li a:hover::before {
  left: 0;
}
.main-navigation ul li a:hover::after {
  right: 0;
}
.main-navigation ul li.current_page_item a {
  border-left: 2px solid #d7d7d9;
  border-right: 2px solid #d7d7d9;
}
@media (max-width: 980px) {
  .main-navigation ul li.current_page_item a {
    border-left: none;
    border-right: none;
  }
}

button.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .site-header__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-navigation {
    width: 100%;
    margin-top: 1rem;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 10px;
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .main-navigation ul {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .main-navigation ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .main-navigation .active {
    display: flex;
    transition: max-height 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  button.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px;
    margin-left: auto;
    position: absolute;
    right: 10px;
    top: 100px;
  }
  button.menu-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #d7d7d9;
    position: relative;
  }
  button.menu-toggle .hamburger::before, button.menu-toggle .hamburger::after {
    content: "";
    width: 25px;
    height: 3px;
    background-color: #d7d7d9;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
  }
  button.menu-toggle .hamburger::before {
    top: -8px;
  }
  button.menu-toggle .hamburger::after {
    top: 8px;
  }
  button.menu-toggle[aria-expanded=true] .hamburger {
    background-color: transparent;
  }
  button.menu-toggle[aria-expanded=true] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  button.menu-toggle[aria-expanded=true] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .site-header__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .site-branding {
    position: absolute;
    top: 10px;
  }
  .site-branding img {
    max-height: 50px;
    width: auto;
  }
  button.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    position: static;
  }
  .main-navigation {
    width: 100%;
    margin-top: 1rem;
  }
  .main-navigation ul {
    margin-top: 15px;
  }
}
/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* 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;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

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

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* Blocks
--------------------------------------------- */
.hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  height: 700px;
}
@media (max-width: 980px) {
  .hero {
    height: 400px;
  }
}
.hero__background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center center; /* Centers image horizontally & vertically */
  background-size: cover; /* Ensures the image covers the entire div */
  background-repeat: no-repeat; /* Prevents image repetition */
  /* Overlay added here */
}
.hero__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
  z-index: 1; /* Ensure it stays on top of the background */
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 600px;
}
.hero__content {
  position: absolute;
  text-align: center;
  color: #fff;
  z-index: 2;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers both horizontally & vertically */
  width: 100%;
  max-width: 1200px; /* Optional: Adjust based on design */
  padding: 20px;
}
@media (max-width: 980px) {
  .hero__content {
    top: 60%;
    max-width: 980px;
  }
}
.hero__content .hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Butler", serif !important;
  font-weight: 700;
}
@media (max-width: 980px) {
  .hero__content .hero__title {
    font-size: 1.4rem;
  }
}
.hero__content .hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.hero__content .hero__button {
  display: inline-block;
  padding: 1rem 4rem;
  background: #e7ddc7;
  color: #384757;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 0.1rem;
  transition: background 0.3s;
  text-transform: uppercase;
}
.hero__content .hero__button:hover {
  background: rgb(200.4, 177.65, 127.6);
}

.columns-block {
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
}
.columns-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 0;
}
@media screen and (max-width: 980px) {
  .columns-block__inner {
    padding: 3rem 0.3rem;
  }
}
.columns-block__inner-container {
  border-top: 5px solid #e7ddc7;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .columns-block__inner-container {
    flex-direction: column;
  }
}
.columns-block__column {
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 40px 40px;
  flex: 1;
  display: flex;
  flex-direction: column; /* Ensures content is stacked */
  justify-content: space-between; /* Pushes button to bottom */
}
.columns-block__column p {
  margin-top: 15px;
  margin-bottom: 30px;
  flex-grow: 1;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}
.columns-block__column a {
  background-color: #384757;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 25px;
  text-decoration: none;
  transition: 0.5s;
  margin-top: auto;
}
.columns-block__column a:hover {
  background-color: rgb(36.027972028, 45.6783216783, 55.972027972);
  transition: 0.5s;
}

.text-columns {
  display: flex;
  flex-wrap: wrap;
  background-color: #384757;
}
.text-columns__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 0;
}
@media screen and (max-width: 980px) {
  .text-columns__inner {
    padding: 3rem 1rem;
  }
}
.text-columns__inner-container {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 60px;
}
@media screen and (max-width: 980px) {
  .text-columns__inner-container {
    flex-direction: column;
    gap: 10px;
  }
}
.text-columns__column {
  padding: 40px 0;
}
@media screen and (max-width: 980px) {
  .text-columns__column {
    padding: 20px 0;
  }
}
.text-columns__column h2 {
  color: #d7d7d9;
}
.text-columns__column p {
  margin-top: 15px;
  margin-bottom: 30px;
  color: #d7d7d9;
}
.text-columns__column i {
  color: #e7ddc7;
  font-size: 28px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.5s;
  margin-bottom: 20px;
}
.text-columns__column i:hover {
  color: rgb(158.2, 129.95, 67.8);
  transition: 0.5s;
}

.text-banner {
  background-color: #e7ddc7;
  padding: 80px 0;
}
@media screen and (max-width: 980px) {
  .text-banner {
    padding: 40px 20px;
  }
}
.text-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #555a5f;
  font-size: 2rem;
}
@media screen and (max-width: 980px) {
  .text-banner__content {
    flex-direction: column;
    text-align: center;
  }
}
.text-banner__content p {
  margin-bottom: 0;
}
.text-banner__content a {
  background-color: #384757;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 25px;
  text-decoration: none;
  transition: 0.5s;
  font-size: 1.2rem;
}
@media screen and (max-width: 980px) {
  .text-banner__content a {
    margin-top: 20px;
  }
}
.text-banner__content a:hover {
  background-color: rgb(36.027972028, 45.6783216783, 55.972027972);
  transition: 0.5s;
}

.staff-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 20px;
  text-align: center;
}
.staff-intro__header {
  max-width: 700px;
  margin: 0 auto;
}
.staff-intro__header h2 {
  font-size: 2.5rem;
}
.staff-intro__break {
  margin: 40px auto;
  background-color: #e7ddc7;
  width: 40px;
}
.staff-intro p {
  margin: 0;
  padding: 0;
}
.staff-intro__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}
@media (min-width: 1000px) {
  .staff-intro__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.staff-intro__card {
  background: #384757;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.staff-intro__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.staff-intro__card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.staff-intro__card-content {
  background: #353535;
  padding: 20px;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.staff-intro__card-content h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.staff-intro__title, .staff-intro__email {
  font-size: 1rem;
  color: #d7d7d9;
}
.staff-intro__email a {
  color: #d7d7d9;
  text-decoration: none;
  transition: color 0.5s ease;
  text-decoration: underline;
}
.staff-intro__email a:hover {
  color: rgb(162.6923076923, 162.6923076923, 167.3076923077);
  transition: color 0.5s ease;
}

.services-block {
  background-color: #f5f5f5;
  padding: 6rem 0;
}
@media screen and (max-width: 980px) {
  .services-block {
    padding: 3rem 1rem;
  }
}
.services-block__header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.services-block__header h2 {
  font-size: 2.5rem;
}
.services-block__break {
  margin: 20px auto;
  background-color: #e7ddc7;
  width: 40px;
  height: 5px;
}
.services-block p {
  margin: 0;
  padding: 0;
}
.services-block__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-block__inner-container {
  border-top: 5px solid #e7ddc7;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .services-block__inner-container {
    flex-direction: column;
  }
}
.services-block__column {
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column; /* Ensures content is stacked */
  justify-content: space-between; /* Pushes button to bottom */
  align-items: center;
  text-align: center;
}
.services-block__column img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}
.services-block__column p {
  flex-grow: 1; /* Ensures text takes up available space */
  margin-top: 15px;
  margin-bottom: 30px;
}
.services-block__column a {
  display: inline-block;
  background-color: #384757;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 25px;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  margin-top: auto; /* Pushes the button to the bottom */
}
.services-block__column a:hover {
  background-color: rgb(36.027972028, 45.6783216783, 55.972027972);
}

.partner-prompt {
  padding: 180px 0;
  position: relative;
  background-size: cover;
  background-position: bottom;
  color: white;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .partner-prompt {
    padding: 3rem 1rem;
  }
}
.partner-prompt__break {
  margin: 20px auto;
  background-color: #e7ddc7;
  width: 40px;
}
.partner-prompt__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.partner-prompt__content h3 {
  font-size: 2rem;
}
.partner-prompt__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.partner-prompt__cta-button {
  display: inline-block;
  background-color: #384757;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 25px;
  text-decoration: none;
  transition: 0.5s;
}
.partner-prompt__cta-button:hover {
  background-color: rgb(75.972027972, 96.3216783217, 118.027972028);
  transition: 0.5s;
  color: #fff;
}
.partner-prompt__cta-button:visited {
  color: #fff;
}

.banner-header {
  position: relative;
  background-size: cover;
  background-position: bottom;
  color: white;
  text-align: center;
  padding: 180px 0;
}
.banner-header--main {
  padding: 120px 0;
}
.banner-header__break {
  margin: 20px auto;
  background-color: #e7ddc7;
  width: 40px;
}
.banner-header__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #384757;
}
.banner-header__content--dark {
  color: #d7d7d9;
}
.banner-header__content h1 {
  font-size: 3rem;
}
.banner-header__content h2 {
  font-size: 2.5rem;
}
.banner-header__content h3 {
  font-size: 2rem;
}
.banner-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
}
.banner-header__overlay--dark {
  background: rgba(0, 0, 0, 0.3);
}
.banner-header__cta-button {
  display: inline-block;
  background-color: #384757;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 25px;
  text-decoration: none;
  transition: 0.5s;
}
.banner-header__cta-button:hover {
  background-color: rgb(75.972027972, 96.3216783217, 118.027972028);
  transition: 0.5s;
  color: #fff;
}

.img-w-txt {
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  padding: 6rem 0;
}
@media screen and (max-width: 980px) {
  .img-w-txt {
    padding: 3rem 1rem;
  }
}
.img-w-txt__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .img-w-txt__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.img-w-txt__inner img {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 980px) {
  .img-w-txt__inner img {
    max-width: 100%;
  }
}
.img-w-txt__inner img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.img-w-txt p {
  line-height: 1.6;
}
.img-w-txt__title {
  font-size: 3rem;
  font-weight: 700;
  color: #384757;
  margin: 0;
  padding: 0;
}
.img-w-txt__subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(185.1, 155.975, 91.9);
  margin-bottom: 0;
}
.img-w-txt--dark {
  background-color: #384757;
}
.img-w-txt--dark h2 {
  color: #d7d7d9;
}
.img-w-txt--dark p {
  color: #d7d7d9;
}
.img-w-txt--dark p.img-w-txt__subtitle {
  color: rgb(185.1, 155.975, 91.9);
}
.img-w-txt--right {
  text-align: right;
}

.img-rows {
  padding: 6rem 0;
}
@media (max-width: 980px) {
  .img-rows {
    padding: 3rem 1rem;
  }
}
.img-rows__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.img-rows__inner.img-rows__left {
  flex-direction: row;
}
.img-rows__inner.img-rows__right {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .img-rows__inner {
    flex-direction: column !important;
    text-align: center;
  }
}
.img-rows__img {
  flex: 1;
  max-width: 50%;
}
.img-rows__img img {
  width: 100%;
  min-height: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-rows__img img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .img-rows__img {
    max-width: 100%;
  }
  .img-rows__img img {
    min-height: 250px;
  }
}
.img-rows__txt {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}
@media (max-width: 768px) {
  .img-rows__txt {
    max-width: 100%;
  }
}
.img-rows__subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(185.1, 155.975, 91.9);
  margin-bottom: 0.5rem;
}
.img-rows__content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.img-rows__content h3 {
  font-size: 2rem;
}

.staff-block {
  padding: 6rem 0;
}
@media (max-width: 980px) {
  .staff-block {
    padding: 3rem 1rem;
  }
}
.staff-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.staff-block__inner.staff-block__left {
  flex-direction: row;
}
.staff-block__inner.staff-block__right {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .staff-block__inner {
    flex-direction: column !important;
    text-align: center;
  }
}
.staff-block__img {
  flex: 1;
  max-width: 50%;
}
.staff-block__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.staff-block__img img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .staff-block__img {
    max-width: 100%;
  }
}
.staff-block__txt {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}
@media (max-width: 768px) {
  .staff-block__txt {
    max-width: 100%;
  }
}
.staff-block__subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(185.1, 155.975, 91.9);
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .staff-block__subtitle {
    text-align: start;
  }
}
.staff-block__content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 980px) {
  .staff-block__content {
    text-align: start;
  }
}
.staff-block__content h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 20px;
}
.staff-block__content ul {
  margin-bottom: 10px;
}
.staff-block__content p {
  padding: 0;
  margin: 0;
}
.staff-block__contact {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.staff-block__contact a {
  color: #384757;
  text-decoration: none;
  padding: 10px;
  border: 1px solid #e7ddc7;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background-color: #e7ddc7;
}
@media (max-width: 980px) {
  .staff-block__contact a {
    font-size: 0.8rem;
  }
}
.staff-block__contact a:hover {
  background-color: transparent;
  color: #384757;
}
.staff-block__languages {
  margin-top: 10px;
}
.staff-block__languages i {
  color: #384757;
}

.contact-block {
  background-color: #f5f5f5;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-block__inner {
  max-width: 900px;
  width: 100%;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-block__inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.contact-block__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #384757;
  margin-bottom: 10px;
}
.contact-block__description {
  font-size: 1.2rem;
  color: rgb(185.1, 155.975, 91.9);
  margin-bottom: 20px;
}
.contact-block__form {
  margin-top: 20px;
}
.contact-block__form input,
.contact-block__form textarea,
.contact-block__form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
  background-color: #fff;
  font-family: inherit;
  appearance: none;
}
.contact-block__form select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="%23666"><path d="M7 10l5 5 5-5z"></path></svg>') no-repeat right 15px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-block__form input:focus,
.contact-block__form textarea:focus,
.contact-block__form select:focus {
  border-color: #384757;
  outline: none;
}
.contact-block__form textarea {
  height: 150px;
  resize: none;
}
.contact-block__form .wpcf7-submit {
  width: 100%;
  background-color: #384757;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.contact-block__form .wpcf7-submit:hover {
  background-color: rgb(36.027972028, 45.6783216783, 55.972027972);
}
.contact-block__form .wpcf7-response-output {
  margin-top: 10px;
  font-size: 1rem;
  color: #e7ddc7;
}
@media (max-width: 768px) {
  .contact-block__inner {
    padding: 2rem;
  }
  .contact-block__title {
    font-size: 2rem;
  }
  .contact-block__description {
    font-size: 1rem;
  }
  .contact-block__form input,
  .contact-block__form textarea,
  .contact-block__form select {
    padding: 12px;
  }
  .contact-block__form .wpcf7-submit {
    font-size: 1rem;
  }
}

.offices-block {
  background-color: #f5f5f5;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
.offices-block__inner {
  max-width: 1200px;
  width: 100%;
}
.offices-block__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 2rem;
}
.offices-block__card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 450px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offices-block__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.offices-block__card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #384757;
  margin-bottom: 1rem;
}
.offices-block__card .offices-block__card-address {
  font-size: 1.2rem;
  color: rgb(185.1, 155.975, 91.9);
  margin-bottom: 1.5rem;
}
.offices-block__card .offices-block__card-map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.offices-block__card .offices-block__card-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .offices-block .offices-block__cards {
    justify-content: center;
  }
  .offices-block .offices-block__card {
    max-width: 100%;
  }
}

.accordion-block__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.accordion-block__item {
  background-color: #d7d7d9;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.accordion-block__item:last-child {
  margin-bottom: 0;
}
.accordion-block__header {
  background-color: #384757;
  color: #d7d7d9;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.accordion-block__header:hover, .accordion-block__header.active {
  background-color: rgb(36.027972028, 45.6783216783, 55.972027972);
  transform: scale(1.01);
}
.accordion-block__content {
  background-color: #e7ddc7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.accordion-block__content-inner {
  padding: 20px;
}
.accordion-block__content.active {
  padding: 20px;
}

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