@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,200;0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --white: rgb(255 255 255);
  /*  */
  --gray-50: #f9f9f9;
  --gray-100: #ebebeb;
  --gray-200: #cccccc;
  --gray-300: #b0b0b0;
  --gray-400: #969696;
  --gray-500: #7c7c7c;
  --gray-600: #616161;
  --gray-700: #494949;
  --gray-800: #323232;
  --gray-900: #1b1b1b;
  --gray-950: #111111;
  /* transparent */
  --transp-black-100: rgba(7, 8, 16, 0.07);
  --transp-black-300: rgba(7, 8, 16, 0.2);
  --transp-black-500: rgba(7, 8, 16, 0.4);
  --transp-black-700: rgba(7, 8, 16, 0.6);
  --transp-black-900: rgba(7, 8, 16, 0.8);
  --transp-white-100: rgba(255, 255, 255, 0.07);
  --transp-white-300: rgba(255, 255, 255, 0.2);
  --transp-white-500: rgba(255, 255, 255, 0.4);
  --transp-white-700: rgba(255, 255, 255, 0.6);
  --transp-white-900: rgba(255, 255, 255, 0.8);
  /* colors */
  --color1: #E90B00;
  --color1-hover: #9e0800;
  --color2: #C50000;
  --color3: #E6E7D5;
  /* shadows */
  --shadow-light: 0 1px 20px rgb(0 0 0 / 0.1);
  --shadow-dark: 0 2px 15px rgb(0 0 0 / 0.2);
  /* fonts */
  --font-8: 0.5rem;
  --font-9: 0.5625rem;
  --font-10: 0.625rem;
  --font-11: 0.6875rem;
  --font-12: 0.75rem;
  --font-14: 0.875rem;
  --font-16: 1rem;
  --font-18: 1.125rem;
  --font-20: 1.25rem;
  --font-24: 1.5rem;
  --font-30: 1.875rem;
  --font-36: 2.25rem;
  --font-48: 3rem;
  --font-52: 3.25rem;
  --font-60: 3.75rem;
  --font-72: 4.5rem;
  --font-96: 6rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============
   gap
   ============ */
.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.grid-container,
.flex-container {
  container-type: inline-size;
}

/* ============
   flex
   ============ */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-initial {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.flex-none {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

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

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

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

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

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

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

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

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

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

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

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

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

.self-auto {
  -ms-flex-item-align: auto;
      align-self: auto;
}

.self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.self-center {
  -ms-flex-item-align: center;
      align-self: center;
}

.self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.self-baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.basis-auto {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.basis-1\/2 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.basis-1\/3 {
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
}

.basis-2\/3 {
  -ms-flex-preferred-size: 66.666667%;
      flex-basis: 66.666667%;
}

.basis-1\/4 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.basis-2\/4 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.basis-3\/4 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

.basis-1\/5 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.basis-2\/5 {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.basis-3\/5 {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

.basis-4\/5 {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

.basis-1\/6 {
  -ms-flex-preferred-size: 16.666667%;
      flex-basis: 16.666667%;
}

.basis-2\/6 {
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
}

.basis-3\/6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.basis-4\/6 {
  -ms-flex-preferred-size: 66.666667%;
      flex-basis: 66.666667%;
}

.basis-5\/6 {
  -ms-flex-preferred-size: 83.333333%;
      flex-basis: 83.333333%;
}

.basis-1\/12 {
  -ms-flex-preferred-size: 8.333333%;
      flex-basis: 8.333333%;
}

.basis-2\/12 {
  -ms-flex-preferred-size: 16.666667%;
      flex-basis: 16.666667%;
}

.basis-3\/12 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.basis-4\/12 {
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
}

.basis-5\/12 {
  -ms-flex-preferred-size: 41.666667%;
      flex-basis: 41.666667%;
}

.basis-6\/12 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.basis-7\/12 {
  -ms-flex-preferred-size: 58.333333%;
      flex-basis: 58.333333%;
}

.basis-8\/12 {
  -ms-flex-preferred-size: 66.666667%;
      flex-basis: 66.666667%;
}

.basis-9\/12 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

.basis-10\/12 {
  -ms-flex-preferred-size: 83.333333%;
      flex-basis: 83.333333%;
}

.basis-11\/12 {
  -ms-flex-preferred-size: 91.666667%;
      flex-basis: 91.666667%;
}

.basis-full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

/* ============
   Grid
   ============ */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  /* grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); */
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@container (max-width: 630px) {
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@container (max-width: 630px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (max-width: 479px) {
  .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@container (max-width: 767px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (max-width: 479px) {
  .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@container (max-width: 767px) {
  .grid-cols-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@container (max-width: 630px) {
  .grid-cols-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@container (max-width: 479px) {
  .grid-cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@container (max-width: 767px) {
  .grid-cols-6 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@container (max-width: 630px) {
  .grid-cols-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@container (max-width: 479px) {
  .grid-cols-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grid-cols-none {
  grid-template-columns: none;
}

.col-auto {
  grid-column: auto;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-auto {
  grid-row: auto;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-start-auto {
  grid-column-start: auto;
}

.col-end-1 {
  grid-column-end: 1;
}

.col-end-2 {
  grid-column-end: 2;
}

.col-end-3 {
  grid-column-end: 3;
}

.col-end-4 {
  grid-column-end: 4;
}

.col-end-5 {
  grid-column-end: 5;
}

.col-end-6 {
  grid-column-end: 6;
}

.col-end-7 {
  grid-column-end: 7;
}

.col-end-auto {
  grid-column-end: auto;
}

.m-0 {
  margin-bottom: 0px !important;
}

.m-10 {
  margin-bottom: 10px !important;
}

.m-20 {
  margin-bottom: 20px !important;
}

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

.m-40 {
  margin-bottom: 40px !important;
}

.m-50 {
  margin-bottom: 50px !important;
}

.m-60 {
  margin-bottom: 60px !important;
}

/* ============
  Colors
   ============ */
.text-gray {
  color: var(--gray-700);
}

.text-color {
  color: var(--color1);
}

.text-green {
  color: var(--green-500);
}

.text-blue {
  color: var(--blue-500);
}

.text-red {
  color: var(--red-500);
}

.text-orange {
  color: var(--orange-500);
}

.text-yellow {
  color: var(--yellow-500);
}

.bg-green {
  background-color: var(--green-500);
}

.bg-blue {
  background-color: var(--blue-500);
}

.bg-red {
  background-color: var(--red-500);
}

.bg-orange {
  background-color: var(--orange-500);
}

.bg-yellow {
  background-color: var(--yellow-500);
}

/* ============
   Buttons
   ============ */
.btn,
button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 64px 12px 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 8px;
  border-style: none;
  color: var(--white);
  background-color: var(--color1);
  line-height: 1.5em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.btn::before,
button::before {
  content: "";
  position: absolute;
  bottom: 0px;
  top: 0px;
  right: 0px;
  background-image: url("../../images/bt-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 44px;
  z-index: 5;
}
.btn:hover,
button:hover {
  background-color: var(--color1-hover);
}
.btn .icon,
button .icon {
  font-size: var(--font-14);
  width: 15px;
}

button.btn.small,
.btn.small {
  min-height: 36px;
  padding: 6px 20px;
  font-size: var(--font-14);
  line-height: 1.25rem;
}
button.btn.small .icon,
.btn.small .icon {
  font-size: var(--font-10);
  width: 12px;
}

button.btn.outline,
.btn.outline {
  background-color: transparent;
  border: 2px solid var(--green-500);
  color: var(--green-500);
}
button.btn.outline:hover,
.btn.outline:hover {
  background-color: var(--green-500);
  color: var(--white);
}

button.btn.outline.gray,
.btn.outline.gray {
  background-color: transparent;
  border: 2px solid var(--gray-600);
  color: var(--gray-900);
}
button.btn.outline.gray:hover,
.btn.outline.gray:hover {
  background-color: var(--gray-600);
  color: var(--white);
}

/* colors */
button.btn.white,
.btn.white {
  background-color: var(--white);
  color: var(--gray-600);
}
button.btn.white:hover,
.btn.white:hover {
  background-color: var(--gray-200);
  color: var(--gray-600);
}

button.btn.gray-light,
.btn.gray-light {
  background-color: var(--gray-400);
  color: var(--white);
}
button.btn.gray-light:hover,
.btn.gray-light:hover {
  background-color: var(--gray-600);
  color: var(--white);
}

button.btn.gray,
.btn.gray {
  background-color: var(--gray-600);
  color: var(--white);
}
button.btn.gray:hover,
.btn.gray:hover {
  background-color: var(--gray-800);
  color: var(--white);
}

button.btn.black,
.btn.black {
  background-color: var(--gray-800);
  color: var(--white);
}
button.btn.black:hover,
.btn.black:hover {
  background-color: var(--gray-600);
  color: var(--white);
}

button.btn.red,
.btn.red {
  background-color: var(--red-500);
  color: var(--white);
}
button.btn.red:hover,
.btn.red:hover {
  background-color: var(--red-700);
  color: var(--white);
}

button.btn.orange,
.btn.orange {
  background-color: var(--orange-500);
  color: var(--white);
}
button.btn.orange:hover,
.btn.orange:hover {
  background-color: var(--orange-700);
  color: var(--white);
}

button.btn.yellow,
.btn.yellow {
  background-color: var(--yellow-500);
  color: var(--white);
}
button.btn.yellow:hover,
.btn.yellow:hover {
  background-color: var(--yellow-700);
  color: var(--white);
}

button.btn.green,
.btn.green {
  background-color: var(--green-500);
  color: var(--white);
}
button.btn.green:hover,
.btn.green:hover {
  background-color: var(--green-700);
  color: var(--white);
}

button.btn.blue,
.btn.blue {
  background-color: var(--blue-500);
  color: var(--white);
}
button.btn.blue:hover,
.btn.blue:hover {
  background-color: var(--blue-700);
  color: var(--white);
}

/* ============
   Base
   ============ */
html {
  scroll-behavior: smooth !important;
  height: 100%;
}

body {
  scroll-behavior: smooth !important;
  background-color: var(--gray-50);
  font-family: Poppins, Roboto, sans-serif;
  color: var(--gray-800);
  font-size: var(--font-18);
  line-height: 1.6em;
  overflow-x: clip;
  background-image: url("../../images/bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

@media (max-width: 1200px) {
  body {
    font-size: var(--font-16);
  }
}
.module {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow-x: clip;
}

.container {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  container-type: inline-size;
}

button,
a {
  cursor: pointer;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

img {
  max-width: 100%;
  display: block;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.icon {
  font-family: Icons, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1em !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.hidden {
  display: none !important;
}

/* ============
   Text
   ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0px;
}
p + h1, ul + h1,
p + h2,
ul + h2,
p + h3,
ul + h3,
p + h4,
ul + h4,
p + h5,
ul + h5,
p + h6,
ul + h6 {
  margin-top: 38px;
}

.text-5xl {
  font-size: var(--font-60);
  line-height: 1.2em;
}
@media (max-width: 1200px) {
  .text-5xl {
    font-size: var(--font-52);
  }
}
@media (max-width: 767px) {
  .text-5xl {
    font-size: var(--font-48);
  }
}
@media (max-width: 630px) {
  .text-5xl {
    font-size: var(--font-36);
  }
}

h1,
.text-4xl {
  font-size: var(--font-48);
  line-height: 1.2em;
  font-weight: 200;
}
@media (max-width: 1200px) {
  h1,
.text-4xl {
    font-size: var(--font-36);
  }
}
@media (max-width: 767px) {
  h1,
.text-4xl {
    font-size: var(--font-30);
    font-weight: 300;
  }
}

h2,
.text-3xl {
  font-size: var(--font-36);
  line-height: 1.2em;
  font-weight: 300;
}
@media (max-width: 1200px) {
  h2,
.text-3xl {
    font-size: var(--font-30);
  }
}
@media (max-width: 767px) {
  h2,
.text-3xl {
    font-size: var(--font-24);
  }
}

h3 {
  font-size: var(--font-30);
  line-height: 1.3em;
}
@media (max-width: 1200px) {
  h3 {
    font-size: var(--font-24);
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: var(--font-20);
  }
}

.text-2xl {
  font-size: var(--font-30);
  line-height: 1.4em;
}
@media (max-width: 1200px) {
  .text-2xl {
    font-size: var(--font-24);
  }
}
@media (max-width: 767px) {
  .text-2xl {
    font-size: var(--font-20);
  }
}

h4 {
  font-size: var(--font-24);
  line-height: 1.4em;
  font-weight: bold;
}
@media (max-width: 1200px) {
  h4 {
    font-size: var(--font-20);
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: var(--font-18);
  }
}

.text-xl {
  font-size: var(--font-24);
  line-height: 1.4em;
}
@media (max-width: 1200px) {
  .text-xl {
    font-size: var(--font-20);
  }
}
@media (max-width: 767px) {
  .text-xl {
    font-size: var(--font-18);
  }
}

h5,
.text-lg {
  font-size: var(--font-20);
}
@media (max-width: 1200px) {
  h5,
.text-lg {
    font-size: var(--font-18);
  }
}
@media (max-width: 767px) {
  h5,
.text-lg {
    font-size: var(--font-16);
  }
}

h6,
.text-base {
  font-size: var(--font-18);
}
@media (max-width: 767px) {
  h6,
.text-base {
    font-size: var(--font-14);
  }
}

.text-sm {
  font-size: var(--font-14);
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .text-sm {
    font-size: var(--font-12);
  }
}

.text-xs {
  font-size: var(--font-12);
  line-height: 1.5em;
}

p {
  margin-bottom: 12px;
  margin-top: 0px;
}
p:last-child {
  margin-bottom: 0px;
}

/* ============
   texts properties
   ============ */
.text-inline {
  display: inline;
}

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

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

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

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

.text-light {
  font-weight: 300;
}

.text-extralight {
  font-weight: 200;
}

.text-thin {
  font-weight: 100;
}

.text-normal {
  font-weight: normal;
}

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

.text-uppercase {
  text-transform: uppercase;
}

/* ============
   float and display properties
   ============ */
.left {
  float: left;
}

.right {
  float: right;
}

.relative {
  position: relative;
}

.inline-block {
  display: inline-block;
}

/* ============
   form
   ============ */

.input-general {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

input {
  background-color: var(--gray-200);
  border: none;
  border-radius: 16px;
  min-height: 44px;
  padding: 10px 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

::-webkit-input-placeholder {
  color: var(--gray-500);
}

:-ms-input-placeholder {
  color: var(--gray-500);
}

::-moz-placeholder {
  color: var(--gray-500);
}

::-ms-input-placeholder {
  color: var(--gray-500);
}

::placeholder {
  color: var(--gray-500);
}

.input-general:has(.btn) .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-general:has(.btn) input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* ============
   Menu
   ============ */
.navbar-general {
  height: 150px;
  position: relative;
  z-index: 900;
}
@media (max-width: 1400px) {
  .navbar-general {
    height: 120px;
  }
}
@media (max-width: 950px) {
  .navbar-general {
    height: 90px;
  }
}

.navbar {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  z-index: 2000;
  left: 0px;
  top: 0px;
  right: 0px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--white);
  -webkit-box-shadow: var(--shadow-light);
          box-shadow: var(--shadow-light);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  height: 110px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .navbar-container {
    height: 80px;
  }
}
@media (max-width: 950px) {
  .navbar-container {
    height: 50px;
  }
}

.navbar-bg {
  display: none;
}

/* ============
   menu
   ============ */
.navbar-menu {
  list-style-type: none;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  position: relative;
  z-index: 50;
}
@media (max-width: 950px) {
  .navbar-menu {
    background-color: var(--white);
    -webkit-box-shadow: var(--shadow-light);
            box-shadow: var(--shadow-light);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 20px 10px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    min-width: 200px;
  }
}

.navbar-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar-menu-link {
  text-decoration: none;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--gray-900);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-transform: uppercase;
  position: relative;
  font-size: var(--font-18);
}
.navbar-menu-link:before, .navbar-menu-link.active:before {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  content: "";
  position: absolute;
  bottom: 30%;
  right: 30px;
  left: 30px;
  height: 3px;
  background-color: var(--color1);
  opacity: 0;
}
.navbar-menu-link:hover:before, .navbar-menu-link.active:before {
  opacity: 1;
}

/* ============
   menu general
   ============ */
.navbar-menu-general {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 900;
  position: relative;
}
@media (max-width: 950px) {
  .navbar-menu-general {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}

.navbar-menu-bg {
  display: none;
  position: absolute;
  z-index: 0;
  background-color: var(--transp-black-700);
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
@media (max-width: 950px) {
  .navbar-menu-bg {
    display: block;
  }
}

/* ============
   logo brand
   ============ */
.navbar-brand {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.navbar-brand img {
  height: 100%;
}

/* ============
   responsive nav
   ============ */
.navbar-nav {
  display: none;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  cursor: pointer;
}
.navbar-nav svg {
  width: 42px;
  stroke: var(--gray-700);
}
@media (max-width: 950px) {
  .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* ============
   extra language
   ============ */
.navbar-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 950px) {
  .navbar-extra {
    padding-left: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 20px;
    gap: 10px;
    padding: 20px;
  }
}

.navbar-extra .navbar-menu-link {
  padding: 8px 20px 8px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  border: 2px solid var(--color);
  background-color: var(--color);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  line-height: 1.3em;
}
@media (max-width: 950px) {
  .navbar-extra .navbar-menu-link {
    border-radius: 30px;
    padding: 8px 25px;
  }
}
.navbar-extra .navbar-menu-link:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
}
.navbar-extra .navbar-menu-link.login {
  background-color: transparent;
  color: var(--color);
  padding-right: 30px;
  padding-left: 20px;
  border-radius: 0 30px 30px 0;
}
@media (max-width: 950px) {
  .navbar-extra .navbar-menu-link.login {
    border-radius: 30px;
    padding: 8px 25px;
  }
}
.navbar-extra .navbar-menu-link.login:hover {
  background-color: var(--color);
  border-color: var(--color);
  color: var(--white);
}

.dropdown.navbar-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: auto;
}
.dropdown.navbar-language .btn {
  padding: 20px;
  display: block;
}
.dropdown.navbar-language .up,
.dropdown.navbar-language .down {
  width: 10px;
  height: 10px;
  background-color: var(--gray-500);
}
.dropdown.navbar-language .dropdown-container-general {
  left: auto;
  right: 0px;
  min-width: 150px;
}
.dropdown.navbar-language .dropdown-container-arrow {
  left: auto;
  right: 13px;
  background-color: var(--white);
}
.dropdown.navbar-language .dropdown-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
}
.dropdown.navbar-language .dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.dropdown.navbar-language .dropdown-link img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: auto;
  margin-right: 10px;
}

.module.footer {
  background-color: var(--gray-800);
  color: var(--gray-100);
  overflow: hidden;
  margin-top: auto;
}

body div.module:nth-last-child(5) {
  margin-bottom: 20px;
}

/* ============
   dropdown
   ============ */
.dropdown {
  position: relative;
  z-index: auto;
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
}
.dropdown.left {
  margin-right: 15px;
  margin-bottom: 15px;
}

.dropdown-btn {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dropdown-btn-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.dropdown-arrow {
  margin-left: 10px;
}
.dropdown-arrow .up {
  display: none;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../../images2024/icons/arrows/arrow-medium-up.svg");
          mask-image: url("../../images2024/icons/arrows/arrow-medium-up.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--white);
}
.dropdown-arrow .down {
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../../images2024/icons/arrows/arrow-medium-down.svg");
          mask-image: url("../../images2024/icons/arrows/arrow-medium-down.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--white);
}

.dropdown-container-general {
  position: absolute;
  padding: 15px;
  margin-left: -15px;
  display: none;
  z-index: 100;
  top: 100%;
  left: 0px;
  min-width: 100%;
  max-width: 80vw;
  max-height: 80vh;
  overflow: auto;
}
.dropdown-container-general.open {
  display: block;
}

.dropdown-container {
  background-color: var(--gray-200);
  border-radius: 12px;
  padding: 15px;
  position: relative;
  -webkit-box-shadow: var(--shadow-light);
          box-shadow: var(--shadow-light);
}

.dropdown-container-arrow {
  background-color: var(--gray-200);
  position: absolute;
  z-index: 0;
  top: -3px;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 13px;
}

/* ============
   carousel
   ============ */
.carousel-slider {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.carousel-slides-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* To enable touch slide for touch devices */
@media (any-pointer: coarse) {
  .carousel-slides-container {
    overflow: auto;
  }
}
.carousel-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.carousel-slide-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}

.carousel-slide h2.placeholder {
  color: var(--font-200);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
}

/* Slider Controls */
.carousel-controls {
  pointer-events: none;
  z-index: 90;
}

.carousel-control {
  display: none;
  line-height: 1;
  font-size: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2px;
  text-decoration: none;
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  padding: 20px;
  pointer-events: all;
  z-index: 30;
}
.carousel-control .icon {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 20px;
  height: 20px;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--font-500);
}

.carousel-control.prev {
  left: 0px;
}
.carousel-control.prev .icon {
  -webkit-mask-image: url("../../images2024/icons/arrows/arrow-medium-left.svg");
          mask-image: url("../../images2024/icons/arrows/arrow-medium-left.svg");
}

.carousel-control.next {
  right: 0px;
}
.carousel-control.next .icon {
  -webkit-mask-image: url("../../images2024/icons/arrows/arrow-medium-right.svg");
          mask-image: url("../../images2024/icons/arrows/arrow-medium-right.svg");
}
.carousel-control:hover .icon,
.carousel-control:focus .icon {
  background-color: var(--gray-800);
}

.carousel-control-button {
  width: auto;
  border-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Pagination */
.carousel-pagination {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: all;
  position: static;
}

.carousel-pagination-item {
  display: block;
  background-color: var(--gray-300);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 6px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.carousel-pagination-item.active {
  background-color: var(--gray-700);
}

.carousel-progress {
  height: 8px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 500;
}

.carousel-progress-bar {
  height: 100%;
  background: var(--green-500);
  opacity: 0.5;
}

/* ============
   banner
   ============ */
.banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 1080px) {
  .banner {
    height: 680px;
    background-color: var(--white);
  }
}
.banner .container {
  position: relative;
  z-index: 10;
}

.banner-tx-title {
  font-size: var(--font-60);
  line-height: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .banner-tx-title {
    font-size: var(--font-52);
  }
}
@media (max-width: 767px) {
  .banner-tx-title {
    font-size: var(--font-48);
  }
}
@media (max-width: 630px) {
  .banner-tx-title {
    font-size: var(--font-36);
  }
}

.banner-tx-cont {
  position: relative;
  z-index: 10;
}
@media (min-width: 1080px) {
  .banner-tx-cont {
    width: 40%;
    margin-left: 60%;
  }
}
.banner-tx-cont p {
  font-size: var(--font-36);
  line-height: 1.2em;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .banner-tx-cont p {
    font-size: var(--font-30);
  }
}
@media (max-width: 767px) {
  .banner-tx-cont p {
    font-size: var(--font-24);
  }
}

.banner-img-general {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-bg {
  background-image: url("../../images/home-banner.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 300px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}
@media (min-width: 1080px) {
  .banner-bg {
    margin-bottom: 0px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 600px) {
  .banner-bg {
    min-height: 200px;
  }
}

/*  */
.home-esquadra-general {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 20px;
}
@media (max-width: 1070px) {
  .home-esquadra-general {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .home-esquadra-general {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-esquadra-tx {
  padding: 60px;
  position: relative;
  font-weight: 300;
  font-size: var(--font-30);
  line-height: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 1070px) {
  .home-esquadra-tx {
    padding: 40px;
    font-size: var(--font-24);
  }
}
@media (max-width: 800px) {
  .home-esquadra-tx {
    padding: 0;
    gap: 0px;
  }
}

.home-esquadra-bg1 {
  position: absolute;
  right: 0;
  z-index: -1;
  background-color: var(--color3);
  width: 100vw;
  bottom: 40px;
  top: 40px;
}
@media (max-width: 800px) {
  .home-esquadra-bg1 {
    right: -40px;
  }
}

.home-esquadra-bg2 {
  position: absolute;
  left: calc(100% + 20px);
  bottom: 40px;
  top: 40px;
  z-index: -1;
  background-color: var(--color3);
  width: 100vw;
}
@media (max-width: 1300px) {
  .home-esquadra-bg2 {
    display: none;
  }
}

.home-esquadra-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .home-esquadra-img img {
    width: 200px;
  }
}
/*  */
.home-projetos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@container (max-width: 767px) {
  .home-projetos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (max-width: 479px) {
  .home-projetos {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.home-solucoes {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
}
.page-title h1 {
  font-size: var(--font-60);
  line-height: 1.2em;
  font-weight: 200;
  color: var(--color1);
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .page-title h1 {
    font-size: var(--font-52);
  }
}
@media (max-width: 767px) {
  .page-title h1 {
    font-size: var(--font-48);
    font-weight: 300;
  }
}

.img-fora {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.img-fora:before {
  content: "";
  position: absolute;
  background-color: var(--gray-50);
  z-index: 4;
  width: 200px;
  height: 100px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: -100px;
  bottom: -40px;
}
.img-fora.small:before {
  width: 150px;
  height: 50px;
  right: -60px;
  bottom: -20px;
}

/* ============
   Quem somos
   ============ */
.box {
  padding: 40px;
  border: 1px solid var(--color1);
}

.quem-somos {
  display: grid;
  grid-template-columns: 2fr 4fr;
  margin-bottom: 60px;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@container (max-width: 630px) {
  .quem-somos {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.quem-somos-img {
  max-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ============
   Projetos
   ============ */
/* ============
   Solucoes
   ============ */
.estrutura {
  display: grid;
  grid-template-columns: 2fr 4fr;
  margin-bottom: 60px;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@container (max-width: 630px) {
  .estrutura {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.estrutura-img {
  max-height: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ============
   Contato
   ============ */