@charset "UTF-8";
/**
 * Stylesheet
 */
:root {
  --screen-width: 1140px;
  --mobile-breakpoint: 768px;
  --transition-speed: 0.3s;
  --radius:1rem;
  --bg-blue: rgba(46, 142, 206, 0.05);
  --light-blue: #2E8ECE;
  --light-blue-hover: #2571a4;
  --dark-blue: #212635;
  --dark-blue-hover:#191d28;
  --light-bg: rgba(46, 142, 206, 0.08);
  --menu-bg: var(--dark-blue);
  --menu-bg-highlight: var(--light-blue);
  --menu-bg-hover: var(--light-blue);
  --menu-color: #fff;
  --menu-hover-color: var(--light-blue);
  --menu-dropdown-bg: #fff;
  --menu-dropdown-bg-hover: var(--light-blue);
  --menu-dropdown-color: var(--dark-blue);
  --menu-dropdown-color-hover:#fff;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html,
body {
  width: 100%;
  height: 100%;
}

html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 15px;
}

body {
  background: #fff;
  color: #222;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

section > .wrap,
.site-header > .wrap,
.site-content,
.wrap-footers .wrap {
  width: 96%;
  max-width: var(--screen-width);
  margin-left: auto;
  margin-right: auto;
}

.pre-heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--light-blue);
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: normal;
  text-rendering: optimizeLegibility;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 2.3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.5em;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--light-blue);
  transition: 0.2s all;
}
a:hover {
  color: var(--dark-blue);
}
a.tel {
  text-decoration: none;
}
a.tel i {
  color: var(--dark-blue);
}

.button {
  display: inline-block;
  padding: 0.8em 1.5em;
  border-radius: 2em;
  color: #fff;
  background: var(--light-blue);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
.button:hover, .button:focus, .button:active {
  color: #fff;
  background: var(--light-blue-hover);
}
.button.outline {
  color: var(--light-blue);
  border: 2px solid var(--light-blue);
  background: none;
}
.button.outline:hover, .button.outline:focus, .button.outline:active {
  color: var(--light-blue-hover);
  border-color: var(--light-blue-hover);
}
.button.inline {
  border: 0;
  background: none;
  color: var(--dark-blue);
  padding: 0;
}
.button.inline:before {
  font-family: FontAwesome;
  content: "\f0da";
  color: var(--light-blue);
  margin-right: 0.3em;
  font-size: 1.2em;
}
.button.inline:hover {
  color: var(--light-blue-hover);
}

picture {
  display: block;
  line-height: 0;
  position: relative;
}
picture.cover {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
picture.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img {
  max-width: 100%;
  height: auto;
}
img.round {
  border-radius: 50%;
}

ul {
  margin: 0 0 1em 0;
  padding: 0 0 0 1em;
  list-style-position: inside;
  overflow: hidden;
}
ul:last-child {
  margin-bottom: 0;
}
ul.checklist {
  list-style: none;
  padding: 0;
}
ul.checklist li {
  margin: 0.3rem 0 0.3rem 2rem;
}
ul.checklist li:before {
  font-family: FontAwesome;
  content: "\f00c";
  font-size: 20px;
  color: var(--light-blue);
  margin-left: -1.8rem;
  margin-right: 0.8em;
}
ul.cols-2 {
  columns: 2;
}

blockquote {
  margin: 0;
  padding: 0 1em 0 3em;
  position: relative;
}
blockquote::before {
  content: "“";
  font-family: serif;
  font-weight: bold;
  font-size: 4em;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--light-blue);
  line-height: 1;
}
blockquote p {
  margin: 0 0 1rem 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.float-image {
  border: 0.2em solid #fff;
  border-radius: 0.5em;
  overflow: hidden;
  box-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto 2em;
  width: fit-content;
  max-width: 90%;
}
.float-image.no-border {
  border: 0;
  box-shadow: none;
}
@media (min-width: 650px) {
  .float-image {
    max-width: 50%;
  }
  .float-image.left {
    float: left;
    margin: 0 3em 2em 0;
  }
  .float-image.right {
    float: right;
    margin: 0 0 2em 3em;
  }
}

.eleventy-plugin-youtube-embed {
  margin: 0 0 2em 0;
}
.eleventy-plugin-youtube-embed:last-child {
  margin-bottom: 0;
}
.eleventy-plugin-youtube-embed iframe {
  border-radius: var(--radius);
}

.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1em;
  margin-bottom: 3em;
}
.columns:first-child {
  margin-top: 0;
}
.columns:last-child {
  margin-bottom: 0;
}
@media (min-width: 700px) {
  .columns.count-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columns.count-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columns.count-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spacer {
  margin: 0;
  min-height: 2em;
}
.spacer.xl {
  font-size: 2em;
}
.spacer.xxl {
  font-size: 3em;
}
.spacer.xxxl {
  font-size: 4em;
}

/**
 * Stylesheet
 */
.site-header {
  margin-bottom: 1em;
}
.site-header .wrap {
  display: grid;
  grid-template-columns: auto min-content;
  grid-template-areas: "logo toggle" "contact contact" "nav nav";
  align-items: center;
  gap: 1em;
  row-gap: 0;
}
@media (max-width: 850px) {
  .site-header .wrap {
    grid-template-columns: auto min-content min-content;
    grid-template-areas: "logo contact toggle" "nav nav nav";
  }
}
@media (min-width: 850px) {
  .site-header .wrap {
    grid-template-columns: auto min-content;
    grid-template-areas: "logo contact" "nav nav";
  }
}
.site-header .logo {
  grid-area: logo;
  margin: 0;
  padding: 1rem 0;
}
.site-header .logo a {
  display: inline-block;
  text-decoration: inherit;
}
.site-header .contact {
  grid-area: contact;
  font-size: 1.3em;
  text-align: center;
}
.site-header .contact p {
  margin: 0;
}
@media (max-width: 850px) {
  .site-header .contact p {
    white-space: nowrap;
  }
}
.site-header .contact a {
  text-decoration: none;
  color: inherit;
}
.site-header .contact a i {
  color: var(--light-blue);
}
.site-header .contact a:focus, .site-header .contact a:active, .site-header .contact a:hover {
  color: var(--light-blue);
}
.site-header .menu-toggle-button {
  cursor: pointer;
  grid-area: toggle;
  display: none;
  white-space: nowrap;
  font-size: 1.2em;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  padding: 0.3em;
  border-radius: 1rem;
}
@media (max-width: 850px) {
  .site-header .menu-toggle-button {
    display: inline-block;
  }
}
.site-header .menu-toggle-button i {
  margin: 0 0.25em;
}
.site-header .menu-toggle-button:active, .site-header .menu-toggle-button:hover {
  color: var(--light-blue);
  border: 1px solid var(--light-blue);
}
.site-header .navbar {
  grid-area: nav;
}
.site-header.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
.site-header.sticky .phone {
  white-space: nowrap;
}
@media (max-width: 850px) {
  .site-header.sticky .wrap {
    grid-template-columns: auto min-content min-content;
    grid-template-areas: "logo contact toggle" "nav nav nav";
  }
  .site-header.sticky .wrap .contact .phone {
    font-size: 0.8em;
  }
  .site-header.sticky .wrap .menu-toggle-button {
    border: 0;
    padding: 0;
    font-size: 1.4em;
  }
  .site-header.sticky .wrap .menu-toggle-button .txt {
    display: none;
  }
}
@media (min-width: 850px) {
  .site-header.sticky .wrap {
    grid-template-columns: auto auto auto min-content;
    grid-template-areas: "logo . nav contact";
  }
  .site-header.sticky .wrap .navbar {
    --nav-radius:0;
    --menu-bg:transparent;
    --menu-color:#333;
    --menu-color-hover:#000;
  }
}

/**
 * Stylesheet
 */
.navbar {
  --nav-radius:2rem;
  position: relative;
  background: var(--menu-bg);
  border-radius: var(--nav-radius);
  text-align: center;
}
.navbar .menu-toggle-checkbox {
  display: none;
}
.navbar .menu-toggle-checkbox:checked ~ .nav-list {
  max-height: 1000px;
  opacity: 1;
}
.navbar .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  text-align: left;
}
@media (max-width: 850px) {
  .navbar .nav-list {
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-in-out, opacity var(--transition-speed) ease-in-out;
  }
}
.navbar .nav-list .nav-item {
  position: relative;
}
@media (max-width: 850px) {
  .navbar .nav-list .nav-item {
    width: 100%;
  }
}
@media (min-width: 850px) {
  .navbar .nav-list .nav-item:first-child > a {
    border-radius: var(--nav-radius) 0 0 var(--nav-radius);
  }
  .navbar .nav-list .nav-item.nav-contact {
    margin-left: auto;
  }
  .navbar .nav-list .nav-item.nav-contact > a {
    border-radius: 0 var(--nav-radius) var(--nav-radius) 0;
  }
}
.navbar .nav-list .nav-item.current-parent > a {
  font-weight: bold;
}
.navbar .nav-list .nav-item:hover > .nav-drop-ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-list .nav-item .nav-link {
  display: block;
  padding: 1rem;
  color: var(--menu-color);
  text-decoration: none;
  transition: background-color var(--transition-speed);
}
@media (min-width: 850px) {
  .navbar .nav-list .nav-item .nav-link {
    padding: 1rem 2rem;
  }
  .sticky .navbar .nav-list .nav-item .nav-link {
    padding: 1rem;
  }
}
.navbar .nav-list .nav-item .nav-link button {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 1;
  color: inherit;
}
.navbar .nav-list .nav-item .nav-link:hover {
  background-color: var(--menu-bg-hover);
  color: #fff;
}
.navbar .nav-list .nav-item .nav-link.active {
  font-weight: bold;
}
.navbar .nav-drop-ul {
  position: absolute;
  z-index: 900;
  display: block;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--menu-dropdown-bg);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
body.loaded .navbar .nav-drop-ul {
  transform: translateY(-10px);
  transition: opacity var(--transition-speed), visibility var(--transition-speed), transform var(--transition-speed);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 850px) {
  .navbar .nav-drop-ul {
    position: static;
    transform: none;
    box-shadow: none;
    background: color-mix(in srgb, var(--menu-dropdown-bg) 97%, black);
    max-height: 0;
    overflow: hidden;
  }
  .nav-item:hover .navbar .nav-drop-ul {
    max-height: 500px;
  }
}
.navbar .nav-drop-ul .nav-drop-li {
  position: relative;
}
.navbar .nav-drop-ul .nav-drop-li:hover > .nav-drop-ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-drop-ul .nav-drop-li .nav-drop-link {
  padding: 0.75rem 1rem;
  color: var(--menu-dropdown-color);
}
.navbar .nav-drop-ul .nav-drop-li .nav-drop-link:hover {
  color: var(--menu-dropdown-color-hover);
  background-color: var(--menu-dropdown-bg-hover);
}

/**
 * Stylesheet
 */
/**
 * Main section
 */
.site-content {
  padding-top: 2em;
  padding-bottom: 2em;
}

.section-box {
  border: 2px solid var(--dark-blue);
  padding: 2em;
  border-radius: var(--radius);
  margin-top: 1em;
  margin-bottom: 3em;
}
.section-box:first-child {
  margin-top: 0;
}
.section-box:last-child {
  margin-bottom: 0;
}

/**
 * Glide Carousel
 */
.glide .glide__slide picture {
  position: unset;
}
.glide button.glide__arrow {
  border: 0;
  background: none;
  box-shadow: none;
  font-size: 2em;
  padding: 0;
  opacity: 0.7;
  transition: 0.2s all;
}
.glide button.glide__arrow:hover {
  opacity: 1;
}
.glide .glide__bullets {
  bottom: 0;
}
.glide .glide__bullets button.glide__bullet {
  background-color: var(--light-blue);
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  transition: 0.2s all;
  opacity: 0.5;
}
.glide .glide__bullets button.glide__bullet--active {
  opacity: 1;
  background-color: var(--light-blue-hover);
  transform: scale(1.3);
}

/**
 * Hero Carousel
 */
section.hero-carousel {
  position: relative;
  z-index: 2;
  margin-bottom: 2em;
}
section.hero-carousel:last-child {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  section.hero-carousel .glide .glide__slides {
    max-height: 600px;
  }
}
@media (min-width: 700px) {
  section.hero-carousel .glide .glide__slides {
    height: 600px;
  }
}
section.hero-carousel .glide .glide__slide {
  position: relative;
}
section.hero-carousel .glide .glide__slide picture {
  display: block;
  height: 100%;
}
section.hero-carousel .glide .glide__slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}
section.hero-carousel .glide .glide__slide picture:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  content: "";
}
section.hero-carousel .glide .glide__slide .overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--screen-width);
  max-width: 95%;
  color: #fff;
}
section.hero-carousel .glide .glide__arrows .glide__arrow--left {
  left: 0.5em;
}
section.hero-carousel .glide .glide__arrows .glide__arrow--right {
  right: 0.5em;
}
@media (max-width: 1300px) {
  section.hero-carousel .glide .glide__arrows {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
  }
  section.hero-carousel .glide .glide__arrows button.glide__arrow {
    color: var(--light-blue);
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
    right: unset;
    opacity: 1;
    padding: 0.5em;
  }
  section.hero-carousel .glide .glide__arrows button.glide__arrow:hover, section.hero-carousel .glide .glide__arrows button.glide__arrow:active, section.hero-carousel .glide .glide__arrows button.glide__arrow:focus {
    color: var(--light-blue-hover);
  }
}

/**
 * Testimonials carousel
 */
#glide-testimonials {
  padding-bottom: 2em;
}
#glide-testimonials blockquote {
  margin: 0 4em 2em;
}
#glide-testimonials .glide__arrows .glide__arrow {
  color: var(--light-blue);
}
#glide-testimonials .glide__arrows .glide__arrow--left {
  left: 0;
}
#glide-testimonials .glide__arrows .glide__arrow--right {
  right: 0;
}
#glide-testimonials .glide__bullets {
  bottom: 1em;
}

/**
 * About section
 */
section.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media (min-width: 500px) {
  section.about {
    grid-template-columns: 1fr 2fr;
    gap: 3em;
  }
  section.about.col-reverse {
    direction: rtl;
  }
  section.about.col-reverse > div {
    direction: initial;
  }
}

/**
 * Topics section
 */
section.topics {
  --padding: 3em;
  background: var(--bg-blue);
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
section.topics p.buttons {
  text-align: center;
  padding-top: 1em;
}
section.topics .group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media (min-width: 600px) {
  section.topics .group {
    grid-template-columns: repeat(3, 1fr);
  }
  section.topics .group p.buttons {
    grid-column: span 3;
  }
}
@media (min-width: 800px) {
  section.topics .group {
    gap: 3em;
  }
}
section.topics .group .item a {
  display: block;
  color: inherit;
  text-decoration: none;
}
section.topics .group .item a:hover img {
  opacity: 0.3;
  transform: 1.05, 1.05;
  transition-timing-function: ease-out;
  transition-duration: 250ms;
}
section.topics .group .item picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--dark-blue);
  border-radius: 2rem;
  margin-bottom: 1rem;
  border: 0;
}
section.topics .group .item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1, 1);
  transition: 0.4s all linear;
  border: 0;
}
section.topics .group .item h3 {
  font-size: 1.3em;
  margin-bottom: 0.5rem;
}

/**
 * Contact section
 */
section.contact {
  --padding: 5em;
  background: var(--dark-blue);
  color: #fff;
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
section.contact .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media (min-width: 550px) {
  section.contact .wrap {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 800px) {
  section.contact .wrap {
    gap: 4em;
    grid-template-columns: 1fr 3fr;
  }
}
section.contact .wrap form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media (min-width: 800px) {
  section.contact .wrap form {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "name email" "message message" "buttons buttons";
  }
  section.contact .wrap form p.name {
    grid-area: name;
  }
  section.contact .wrap form p.email {
    grid-area: email;
  }
  section.contact .wrap form p.message {
    grid-area: message;
  }
  section.contact .wrap form p.buttons {
    grid-area: buttons;
  }
}
section.contact .wrap form p {
  margin: 0;
}
section.contact .wrap form p label {
  display: block;
  cursor: pointer;
}
section.contact .wrap form p label span.label {
  display: inline-block;
}
section.contact .wrap form p input[type=text],
section.contact .wrap form p input[type=tel],
section.contact .wrap form p input[type=email],
section.contact .wrap form p textarea {
  display: block;
  width: 100%;
  padding: 0.5em;
  border-radius: 0.5em;
  background: #fff;
  color: #555;
  line-height: 1.4;
  box-sizing: border-box;
  border: 1px solid var(--dark-blue);
  outline: none;
}
section.contact .wrap form p input[type=text]:focus-visible, section.contact .wrap form p input[type=text]:focus,
section.contact .wrap form p input[type=tel]:focus-visible,
section.contact .wrap form p input[type=tel]:focus,
section.contact .wrap form p input[type=email]:focus-visible,
section.contact .wrap form p input[type=email]:focus,
section.contact .wrap form p textarea:focus-visible,
section.contact .wrap form p textarea:focus {
  border: 1px solid var(--light-blue);
  color: #000;
}
section.contact .wrap form button {
  border: 0;
  cursor: pointer;
}

section.difference {
  --padding: 3em;
  background: var(--light-bg);
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  border: 2px solid var(--dark-blue);
  border-radius: var(--radius);
  margin-top: 1em;
  margin-bottom: 3em;
}
section.difference:first-child {
  margin-top: 0;
}
section.difference:last-child {
  margin-bottom: 0;
}
section.difference .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media (min-width: 600px) {
  section.difference .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
  }
  section.difference .wrap .section-heading {
    grid-column: span 3;
    text-align: center;
  }
}
section.difference .wrap .section-scores {
  display: flex;
  flex-direction: column;
  gap: 1em;
  --circle-size: 2.2em;
  --circle-border-color: #000;
}
section.difference .wrap .section-scores .score {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.difference .wrap .section-scores .score:nth-child(1) {
  --circle-border-color:#e96656;
}
section.difference .wrap .section-scores .score:nth-child(2) {
  --circle-border-color:#34d293;
}
section.difference .wrap .section-scores .score:nth-child(3) {
  --circle-border-color:#3ab0e2;
}
section.difference .wrap .section-scores .score:nth-child(4) {
  --circle-border-color:#e7ac44;
}
section.difference .wrap .section-scores .score .number {
  width: var(--circle-size);
  height: var(--circle-size);
  border: 4px solid var(--circle-border-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}
section.difference .wrap .section-scores .score h3 {
  margin: 0;
  font-size: 1.1em;
}
section.difference .wrap .section-scores .score p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

/**
 * Success Stories
 */
section.success-stories {
  --padding: 6em;
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
section.success-stories .glide .glide__slide {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;
}
@media (min-width: 650px) {
  section.success-stories .glide .glide__slide {
    grid-template-columns: 5fr 6fr;
    grid-gap: 2em;
    direction: rtl;
  }
  section.success-stories .glide .glide__slide .content {
    direction: initial;
  }
}
@media (min-width: 800px) {
  section.success-stories .glide .glide__slide {
    grid-template-columns: 5fr 7fr;
  }
}
section.success-stories .glide .glide__slide .media picture {
  border-radius: 0.5em;
  overflow: hidden;
  text-align: center;
}
section.success-stories .glide .glide__slide .media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.success-stories .glide .glide__arrows .glide__arrow {
  color: var(--dark-blue);
}
section.success-stories .glide .glide__arrows .glide__arrow--left {
  left: 0;
}
@media (min-width: 1240px) {
  section.success-stories .glide .glide__arrows .glide__arrow--left {
    left: -1.5em;
  }
}
section.success-stories .glide .glide__arrows .glide__arrow--right {
  right: 0;
}
@media (min-width: 1240px) {
  section.success-stories .glide .glide__arrows .glide__arrow--right {
    right: -1.5em;
  }
}
@media (max-width: 1300px) {
  section.success-stories .glide__arrows {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
  }
  section.success-stories .glide__arrows button.glide__arrow {
    color: var(--light-blue);
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
    right: unset;
    opacity: 1;
    padding: 0.5em;
  }
  section.success-stories .glide__arrows button.glide__arrow:hover, section.success-stories .glide__arrows button.glide__arrow:active, section.success-stories .glide__arrows button.glide__arrow:focus {
    color: var(--light-blue-hover);
  }
}

/**
 * General form styling
 */
form {
  --input-bg: #f6f6f6;
  --input-border: 1px solid #ddd;
  --input-border-radius: 0.5em;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea {
  background: var(--input-bg);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
}
form button[type=submit],
form input[type=submit] {
  color: #fff;
  background: var(--light-blue);
  border: 0;
  border-radius: var(--input-border-radius);
  padding: 1.1em 1.5em;
  cursor: pointer;
  transition: 0.2s all;
}
form button[type=submit]:hover, form button[type=submit]:focus,
form input[type=submit]:hover,
form input[type=submit]:focus {
  background: var(--light-blue-hover);
}

/**
 * Contact form specifics
 */
form.contact {
  display: grid;
  grid-template-areas: "name name" "email phone" "message message" "buttons buttons";
  grid-template-columns: repeat(2, 1fr);
  gap: min(4vw, 2em);
  row-gap: 1em;
}
form.contact p {
  margin: 0;
}
form.contact p.name {
  grid-area: name;
}
form.contact p.email {
  grid-area: email;
}
form.contact p.phone {
  grid-area: phone;
}
form.contact p.message {
  grid-area: message;
}
form.contact p.buttons {
  grid-area: buttons;
}
form.contact p label {
  display: block;
  cursor: pointer;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.2em;
}
form.contact p input[type=text],
form.contact p input[type=email],
form.contact p input[type=tel],
form.contact p textarea {
  padding: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

/**
 * Stylesheet
 */
.site-footer-cta {
  --padding:2em;
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background: var(--dark-blue);
  color: #fff;
  margin-top: 2em;
}
.site-footer-cta .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media (min-width: 600px) {
  .site-footer-cta .wrap {
    grid-template-columns: auto min-content;
  }
  .site-footer-cta .wrap .button {
    white-space: nowrap;
  }
}

.site-footer {
  --padding:2em;
  padding-top: var(--padding);
}
.site-footer .info .wrap {
  padding-top: 1em;
  gap: 1em;
}
@media (max-width: 850px) {
  .site-footer .info .wrap {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3em;
  }
  .site-footer .info .wrap > :first-child {
    grid-column: span 2;
  }
}
@media (min-width: 850px) {
  .site-footer .info .wrap {
    display: flex;
    gap: 3em;
  }
  .site-footer .info .wrap > div {
    flex: 1;
  }
}
.site-footer .final {
  margin-top: 2em;
  border-top: 1px solid rgba(33, 38, 53, 0.4);
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}
.site-footer .about {
  padding: 0;
}
.site-footer .about picture {
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 300px;
  max-width: 100%;
}
.site-footer .about p.phone a {
  color: inherit;
  text-decoration: inherit;
  font-size: 1.2em;
}
.site-footer .about p.phone a:hover {
  color: var(--light-blue);
}
.site-footer .about p.phone i {
  color: var(--light-blue);
  margin-right: 0.25em;
}
.site-footer ul.menu {
  padding: 0;
}
.site-footer ul.menu li {
  list-style: none;
}
.site-footer ul.menu li a {
  display: block;
  padding: 0.2em 0;
  text-decoration: none;
}
.site-footer ul.social-icons {
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
  font-size: 1.9em;
}
.site-footer ul.social-icons:last-child {
  margin-bottom: 0;
}
.site-footer ul.social-icons li {
  display: inline-block;
  margin-left: 0.5rem;
}
.site-footer ul.social-icons li:first-child {
  margin-left: 0;
}
.site-footer ul.social-icons li a {
  display: inline-block;
  color: var(--dark-blue);
  transition: 0.2s all;
}
.site-footer ul.social-icons li a:active, .site-footer ul.social-icons li a:hover {
  color: var(--light-blue);
}

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