@charset "UTF-8";
/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
:root {
  --color-primary: #1e88e5;
  --color-primary-light: #64b5f6;
  --color-primary-dark: #072066;
  --color-accent: #2196f3;
  --color-white: #ffffff;
  --color-black: #000;
  --color-background: #072066;
  --color-surface: #ffffff;
  --color-surface-scase: #f8f9fa;
  --color-border: #e0e0e0;
  --color-text-primary: #000;
  --color-text-secondary: #424242;
  --color-text-muted: #000;
  --color-surface-mcase: #000;
  --box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  --box-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --menu-icon-color: #000;
}

body.dark-mode {
  --color-background: #000;
  --color-surface: #000;
  --color-surface-scase: #000;
  --color-border: #30363d;
  --color-white: #000;
  --color-black: #ffffff;
  --color-text-primary: rgba(255, 255, 255, 0.87);
  --color-text-secondary: rgba(255, 255, 255, 0.6);
  --color-text-muted: var(--color-text-secondary);
  --color-surface-mcase: #ffffff;
  --box-shadow: 0 0 20px rgba(30, 136, 229, 0.2);
  --box-shadow-sm: 0 1px 2px rgba(30, 136, 229, 0.15);
  --box-shadow-lg: 0 10px 15px -3px rgba(30, 136, 229, 0.2);
  --box-shadow-hover: var(--box-shadow);
  --menu-icon-color: #ffffff;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #424242;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: #1e88e5;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: rgb(22.8043824701, 115.7760956175, 197.3456175299);
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

:focus {
  outline: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 576px) {
  h2 {
    font-size: 1.125rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

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

a {
  color: #1e88e5;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: rgb(24.1458167331, 122.5864541833, 208.9541832669);
}

.text-primary {
  color: #1e88e5 !important;
}

.text-gradient {
  background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

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

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

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

.heading-lg {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.heading-md {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.125rem;
  color: #9e9e9e;
  margin-bottom: 1.5rem;
}

.font-heading {
  font-family: "Space Grotesk", sans-serif !important;
}

.font-body {
  font-family:
    "Urbanist",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
}

.font-mono {
  font-family: "Fira Code", monospace !important;
}

.font-size-xs {
  font-size: 0.75rem !important;
}

.font-size-sm {
  font-size: 0.875rem !important;
}

.font-size-base {
  font-size: 1rem !important;
}

.font-size-lg {
  font-size: 1.125rem !important;
}

.font-size-xl {
  font-size: 1.25rem !important;
}

.font-size-2xl {
  font-size: 1.5rem !important;
}

.font-size-3xl {
  font-size: 1.875rem !important;
}

.font-size-4xl {
  font-size: 2.25rem !important;
}

.font-size-5xl {
  font-size: 3rem !important;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.ml-6 {
  margin-left: 4rem !important;
}

.mr-6 {
  margin-right: 4rem !important;
}

.mx-6 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-6 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.m-6 {
  margin: 4rem !important;
}

.pt-6 {
  padding-top: 4rem !important;
}

.pb-6 {
  padding-bottom: 4rem !important;
}

.pl-6 {
  padding-left: 4rem !important;
}

.pr-6 {
  padding-right: 4rem !important;
}

.px-6 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.p-6 {
  padding: 4rem !important;
}

.mt-7 {
  margin-top: 5rem !important;
}

.mb-7 {
  margin-bottom: 5rem !important;
}

.ml-7 {
  margin-left: 5rem !important;
}

.mr-7 {
  margin-right: 5rem !important;
}

.mx-7 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-7 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.m-7 {
  margin: 5rem !important;
}

.pt-7 {
  padding-top: 5rem !important;
}

.pb-7 {
  padding-bottom: 5rem !important;
}

.pl-7 {
  padding-left: 5rem !important;
}

.pr-7 {
  padding-right: 5rem !important;
}

.px-7 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-7 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.p-7 {
  padding: 5rem !important;
}

.mt-8 {
  margin-top: 6rem !important;
}

.mb-8 {
  margin-bottom: 6rem !important;
}

.ml-8 {
  margin-left: 6rem !important;
}

.mr-8 {
  margin-right: 6rem !important;
}

.mx-8 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-8 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.m-8 {
  margin: 6rem !important;
}

.pt-8 {
  padding-top: 6rem !important;
}

.pb-8 {
  padding-bottom: 6rem !important;
}

.pl-8 {
  padding-left: 6rem !important;
}

.pr-8 {
  padding-right: 6rem !important;
}

.px-8 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-8 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.p-8 {
  padding: 6rem !important;
}

.mt-9 {
  margin-top: 8rem !important;
}

.mb-9 {
  margin-bottom: 8rem !important;
}

.ml-9 {
  margin-left: 8rem !important;
}

.mr-9 {
  margin-right: 8rem !important;
}

.mx-9 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-9 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.m-9 {
  margin: 8rem !important;
}

.pt-9 {
  padding-top: 8rem !important;
}

.pb-9 {
  padding-bottom: 8rem !important;
}

.pl-9 {
  padding-left: 8rem !important;
}

.pr-9 {
  padding-right: 8rem !important;
}

.px-9 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-9 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.p-9 {
  padding: 8rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.ml-10 {
  margin-left: 10rem !important;
}

.mr-10 {
  margin-right: 10rem !important;
}

.mx-10 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-10 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pl-10 {
  padding-left: 10rem !important;
}

.pr-10 {
  padding-right: 10rem !important;
}

.px-10 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.mt-11 {
  margin-top: 12rem !important;
}

.mb-11 {
  margin-bottom: 12rem !important;
}

.ml-11 {
  margin-left: 12rem !important;
}

.mr-11 {
  margin-right: 12rem !important;
}

.mx-11 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.my-11 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.m-11 {
  margin: 12rem !important;
}

.pt-11 {
  padding-top: 12rem !important;
}

.pb-11 {
  padding-bottom: 12rem !important;
}

.pl-11 {
  padding-left: 12rem !important;
}

.pr-11 {
  padding-right: 12rem !important;
}

.px-11 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.py-11 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.p-11 {
  padding: 12rem !important;
}

.mt-12 {
  margin-top: 15rem !important;
}

.mb-12 {
  margin-bottom: 15rem !important;
}

.ml-12 {
  margin-left: 15rem !important;
}

.mr-12 {
  margin-right: 15rem !important;
}

.mx-12 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.my-12 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.m-12 {
  margin: 15rem !important;
}

.pt-12 {
  padding-top: 15rem !important;
}

.pb-12 {
  padding-bottom: 15rem !important;
}

.pl-12 {
  padding-left: 15rem !important;
}

.pr-12 {
  padding-right: 15rem !important;
}

.px-12 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.py-12 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.p-12 {
  padding: 15rem !important;
}

.mt-13 {
  margin-top: 18rem !important;
}

.mb-13 {
  margin-bottom: 18rem !important;
}

.ml-13 {
  margin-left: 18rem !important;
}

.mr-13 {
  margin-right: 18rem !important;
}

.mx-13 {
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.my-13 {
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.m-13 {
  margin: 18rem !important;
}

.pt-13 {
  padding-top: 18rem !important;
}

.pb-13 {
  padding-bottom: 18rem !important;
}

.pl-13 {
  padding-left: 18rem !important;
}

.pr-13 {
  padding-right: 18rem !important;
}

.px-13 {
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.py-13 {
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.p-13 {
  padding: 18rem !important;
}

.mt-14 {
  margin-top: 20rem !important;
}

.mb-14 {
  margin-bottom: 20rem !important;
}

.ml-14 {
  margin-left: 20rem !important;
}

.mr-14 {
  margin-right: 20rem !important;
}

.mx-14 {
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.my-14 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.m-14 {
  margin: 20rem !important;
}

.pt-14 {
  padding-top: 20rem !important;
}

.pb-14 {
  padding-bottom: 20rem !important;
}

.pl-14 {
  padding-left: 20rem !important;
}

.pr-14 {
  padding-right: 20rem !important;
}

.px-14 {
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.py-14 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.p-14 {
  padding: 20rem !important;
}

.mt-15 {
  margin-top: 25rem !important;
}

.mb-15 {
  margin-bottom: 25rem !important;
}

.ml-15 {
  margin-left: 25rem !important;
}

.mr-15 {
  margin-right: 25rem !important;
}

.mx-15 {
  margin-left: 25rem !important;
  margin-right: 25rem !important;
}

.my-15 {
  margin-top: 25rem !important;
  margin-bottom: 25rem !important;
}

.m-15 {
  margin: 25rem !important;
}

.pt-15 {
  padding-top: 25rem !important;
}

.pb-15 {
  padding-bottom: 25rem !important;
}

.pl-15 {
  padding-left: 25rem !important;
}

.pr-15 {
  padding-right: 25rem !important;
}

.px-15 {
  padding-left: 25rem !important;
  padding-right: 25rem !important;
}

.py-15 {
  padding-top: 25rem !important;
  padding-bottom: 25rem !important;
}

.p-15 {
  padding: 25rem !important;
}

.mt-16 {
  margin-top: 30rem !important;
}

.mb-16 {
  margin-bottom: 30rem !important;
}

.ml-16 {
  margin-left: 30rem !important;
}

.mr-16 {
  margin-right: 30rem !important;
}

.mx-16 {
  margin-left: 30rem !important;
  margin-right: 30rem !important;
}

.my-16 {
  margin-top: 30rem !important;
  margin-bottom: 30rem !important;
}

.m-16 {
  margin: 30rem !important;
}

.pt-16 {
  padding-top: 30rem !important;
}

.pb-16 {
  padding-bottom: 30rem !important;
}

.pl-16 {
  padding-left: 30rem !important;
}

.pr-16 {
  padding-right: 30rem !important;
}

.px-16 {
  padding-left: 30rem !important;
  padding-right: 30rem !important;
}

.py-16 {
  padding-top: 30rem !important;
  padding-bottom: 30rem !important;
}

.p-16 {
  padding: 30rem !important;
}

.mt-17 {
  margin-top: 35rem !important;
}

.mb-17 {
  margin-bottom: 35rem !important;
}

.ml-17 {
  margin-left: 35rem !important;
}

.mr-17 {
  margin-right: 35rem !important;
}

.mx-17 {
  margin-left: 35rem !important;
  margin-right: 35rem !important;
}

.my-17 {
  margin-top: 35rem !important;
  margin-bottom: 35rem !important;
}

.m-17 {
  margin: 35rem !important;
}

.pt-17 {
  padding-top: 35rem !important;
}

.pb-17 {
  padding-bottom: 35rem !important;
}

.pl-17 {
  padding-left: 35rem !important;
}

.pr-17 {
  padding-right: 35rem !important;
}

.px-17 {
  padding-left: 35rem !important;
  padding-right: 35rem !important;
}

.py-17 {
  padding-top: 35rem !important;
  padding-bottom: 35rem !important;
}

.p-17 {
  padding: 35rem !important;
}

.mt-18 {
  margin-top: 40rem !important;
}

.mb-18 {
  margin-bottom: 40rem !important;
}

.ml-18 {
  margin-left: 40rem !important;
}

.mr-18 {
  margin-right: 40rem !important;
}

.mx-18 {
  margin-left: 40rem !important;
  margin-right: 40rem !important;
}

.my-18 {
  margin-top: 40rem !important;
  margin-bottom: 40rem !important;
}

.m-18 {
  margin: 40rem !important;
}

.pt-18 {
  padding-top: 40rem !important;
}

.pb-18 {
  padding-bottom: 40rem !important;
}

.pl-18 {
  padding-left: 40rem !important;
}

.pr-18 {
  padding-right: 40rem !important;
}

.px-18 {
  padding-left: 40rem !important;
  padding-right: 40rem !important;
}

.py-18 {
  padding-top: 40rem !important;
  padding-bottom: 40rem !important;
}

.p-18 {
  padding: 40rem !important;
}

.mt-19 {
  margin-top: 45rem !important;
}

.mb-19 {
  margin-bottom: 45rem !important;
}

.ml-19 {
  margin-left: 45rem !important;
}

.mr-19 {
  margin-right: 45rem !important;
}

.mx-19 {
  margin-left: 45rem !important;
  margin-right: 45rem !important;
}

.my-19 {
  margin-top: 45rem !important;
  margin-bottom: 45rem !important;
}

.m-19 {
  margin: 45rem !important;
}

.pt-19 {
  padding-top: 45rem !important;
}

.pb-19 {
  padding-bottom: 45rem !important;
}

.pl-19 {
  padding-left: 45rem !important;
}

.pr-19 {
  padding-right: 45rem !important;
}

.px-19 {
  padding-left: 45rem !important;
  padding-right: 45rem !important;
}

.py-19 {
  padding-top: 45rem !important;
  padding-bottom: 45rem !important;
}

.p-19 {
  padding: 45rem !important;
}

.mt-20 {
  margin-top: 50rem !important;
}

.mb-20 {
  margin-bottom: 50rem !important;
}

.ml-20 {
  margin-left: 50rem !important;
}

.mr-20 {
  margin-right: 50rem !important;
}

.mx-20 {
  margin-left: 50rem !important;
  margin-right: 50rem !important;
}

.my-20 {
  margin-top: 50rem !important;
  margin-bottom: 50rem !important;
}

.m-20 {
  margin: 50rem !important;
}

.pt-20 {
  padding-top: 50rem !important;
}

.pb-20 {
  padding-bottom: 50rem !important;
}

.pl-20 {
  padding-left: 50rem !important;
}

.pr-20 {
  padding-right: 50rem !important;
}

.px-20 {
  padding-left: 50rem !important;
  padding-right: 50rem !important;
}

.py-20 {
  padding-top: 50rem !important;
  padding-bottom: 50rem !important;
}

.p-20 {
  padding: 50rem !important;
}

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

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.d-none {
  display: none !important;
}

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

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

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

.container {
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1440px) {
  .container {
    max-width: 1296px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.left-50 {
  left: 50% !important;
}

.right-0 {
  right: 0 !important;
}

.top-0 {
  top: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.top-1 {
  top: 0.25rem !important;
}

.bottom-1 {
  bottom: 0.25rem !important;
}

.left-1 {
  left: 0.25rem !important;
}

.right-1 {
  right: 0.25rem !important;
}

.top-2 {
  top: 0.5rem !important;
}

.bottom-2 {
  bottom: 0.5rem !important;
}

.left-2 {
  left: 0.5rem !important;
}

.right-2 {
  right: 0.5rem !important;
}

.top-3 {
  top: 1rem !important;
}

.bottom-3 {
  bottom: 1rem !important;
}

.left-3 {
  left: 1rem !important;
}

.right-3 {
  right: 1rem !important;
}

.top-4 {
  top: 1.5rem !important;
}

.bottom-4 {
  bottom: 1.5rem !important;
}

.left-4 {
  left: 1.5rem !important;
}

.right-4 {
  right: 1.5rem !important;
}

.top-5 {
  top: 3rem !important;
}

.bottom-5 {
  bottom: 3rem !important;
}

.left-5 {
  left: 3rem !important;
}

.right-5 {
  right: 3rem !important;
}

.top-6 {
  top: 4rem !important;
}

.bottom-6 {
  bottom: 4rem !important;
}

.left-6 {
  left: 4rem !important;
}

.right-6 {
  right: 4rem !important;
}

.top-7 {
  top: 5rem !important;
}

.bottom-7 {
  bottom: 5rem !important;
}

.left-7 {
  left: 5rem !important;
}

.right-7 {
  right: 5rem !important;
}

.top-8 {
  top: 6rem !important;
}

.bottom-8 {
  bottom: 6rem !important;
}

.left-8 {
  left: 6rem !important;
}

.right-8 {
  right: 6rem !important;
}

.top-9 {
  top: 8rem !important;
}

.bottom-9 {
  bottom: 8rem !important;
}

.left-9 {
  left: 8rem !important;
}

.right-9 {
  right: 8rem !important;
}

.top-10 {
  top: 10rem !important;
}

.bottom-10 {
  bottom: 10rem !important;
}

.left-10 {
  left: 10rem !important;
}

.right-10 {
  right: 10rem !important;
}

.top-11 {
  top: 12rem !important;
}

.bottom-11 {
  bottom: 12rem !important;
}

.left-11 {
  left: 12rem !important;
}

.right-11 {
  right: 12rem !important;
}

.top-12 {
  top: 15rem !important;
}

.bottom-12 {
  bottom: 15rem !important;
}

.left-12 {
  left: 15rem !important;
}

.right-12 {
  right: 15rem !important;
}

.top-13 {
  top: 18rem !important;
}

.bottom-13 {
  bottom: 18rem !important;
}

.left-13 {
  left: 18rem !important;
}

.right-13 {
  right: 18rem !important;
}

.top-14 {
  top: 20rem !important;
}

.bottom-14 {
  bottom: 20rem !important;
}

.left-14 {
  left: 20rem !important;
}

.right-14 {
  right: 20rem !important;
}

.top-15 {
  top: 25rem !important;
}

.bottom-15 {
  bottom: 25rem !important;
}

.left-15 {
  left: 25rem !important;
}

.right-15 {
  right: 25rem !important;
}

.top-16 {
  top: 30rem !important;
}

.bottom-16 {
  bottom: 30rem !important;
}

.left-16 {
  left: 30rem !important;
}

.right-16 {
  right: 30rem !important;
}

.top-17 {
  top: 35rem !important;
}

.bottom-17 {
  bottom: 35rem !important;
}

.left-17 {
  left: 35rem !important;
}

.right-17 {
  right: 35rem !important;
}

.top-18 {
  top: 40rem !important;
}

.bottom-18 {
  bottom: 40rem !important;
}

.left-18 {
  left: 40rem !important;
}

.right-18 {
  right: 40rem !important;
}

.top-19 {
  top: 45rem !important;
}

.bottom-19 {
  bottom: 45rem !important;
}

.left-19 {
  left: 45rem !important;
}

.right-19 {
  right: 45rem !important;
}

.top-20 {
  top: 50rem !important;
}

.bottom-20 {
  bottom: 50rem !important;
}

.left-20 {
  left: 50rem !important;
}

.right-20 {
  right: 50rem !important;
}

.translate-center {
  transform: translate(-50%, -50%) !important;
}

.translate-x-center {
  transform: translateX(-50%) !important;
}

.translate-y-center {
  transform: translateY(-50%) !important;
}

.overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-decoration: none;
  background-color: transparent;
}

.text-truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

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

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

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

.text-primary {
  color: #1e88e5 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: #424242 !important;
}

.text-muted {
  color: #9e9e9e !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.bg-primary {
  background-color: #1e88e5 !important;
}

.bg-light {
  background-color: #e0e0e0 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-dark {
  background-color: #072066 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%) !important;
}

.section {
  padding: 3rem 0;
}

.z-high {
  z-index: 1000 !important;
}

.z-medium {
  z-index: 800 !important;
}

.z-low {
  z-index: 1 !important;
}

@media (min-width: 0) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1024px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1025px) {
  .d-md-c-none {
    display: none !important;
  }
  .d-md-c-block {
    display: block !important;
  }
  .d-md-c-inline {
    display: inline !important;
  }
  .d-md-c-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1280px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1440px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
}
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.border {
  border: 1px solid #e0e0e0 !important;
}

.border-top {
  border-top: 1px solid #e0e0e0 !important;
}

.border-right {
  border-right: 1px solid #e0e0e0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

.border-left {
  border-left: 1px solid #e0e0e0 !important;
}

.border-0 {
  border: 0 !important;
}

.border-primary {
  border-color: #1e88e5 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.border-dark {
  border-color: #424242 !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-sm {
  border-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 1rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-75 {
  height: 75% !important;
}

.h-50 {
  height: 50% !important;
}

.h-25 {
  height: 25% !important;
}

.h-auto {
  height: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-y {
  overflow: hidden !important;
  overflow-y: auto !important;
}

.overflow-x {
  overflow: hidden !important;
  overflow-x: auto !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.text-shadow--strong {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.75);
}

.text-shadow--intense {
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
}

.text-shadow--epic {
  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.6),
    0 8px 25px rgba(0, 0, 0, 0.8);
}

.text-shadow--glow {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
}

.text-shadow--hard {
  text-shadow: 3px 3px 0px #1a1a1a;
}

.text-shadowl--glow {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.text-shadowl--letterpress {
  text-shadow:
    0 1px 0px rgba(255, 255, 255, 0.4),
    0 1px 1px rgba(0, 0, 0, 0.15);
}

.text-shadowl--engraved {
  text-shadow:
    1px 1px 1px rgba(0, 0, 0, 0.15),
    -1px -1px 1px rgba(255, 255, 255, 0.5);
}

.text-shadowl--highlight {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.text-shadowl--white {
  text-shadow: 0 0 1px rgb(126, 123, 123);
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.icon-transition svg,
.icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  color: #ffffff;
}

.icon-transition svg {
  transition: all 0.3s ease-in-out;
}
.icon-transition svg:hover {
  transform: scale(1.1);
  color: #1e88e5;
}

.sm svg {
  width: 24px;
  height: 24px;
}

.md svg {
  width: 48px;
  height: 48px;
}

.lg svg {
  width: 64px;
  height: 64px;
}

.xl svg {
  width: 77px;
  height: 77px;
}

.xxl svg {
  width: 100px;
  height: 100px;
}

.primary svg {
  color: #1e88e5;
}

.primary-light svg {
  color: #64b5f6;
}

.primary-dark svg {
  color: #072066;
}

.secondary svg {
  color: #f5f5f5;
}

.secondary-light svg {
  color: #ffffff;
}

.secondary-dark svg {
  color: #e0e0e0;
}

.neutral-light svg {
  color: #f5f5f5;
}

.neutral-base svg {
  color: #9e9e9e;
}

.neutral-dark svg {
  color: #424242;
}

.neutral-darker svg {
  color: #000;
}

.white svg {
  color: #ffffff;
}

.gray svg {
  color: #9e9e9e;
}

.black svg {
  color: #000;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.d-grid {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

@media (min-width: 0) {
  .d-xs-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
@media (min-width: 576px) {
  .d-sm-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .d-md-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
@media (min-width: 1025px) {
  .d-md-c-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .d-lg-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
@media (min-width: 1440px) {
  .d-xl-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
@media (min-width: 1600px) {
  .d-xxl-grid {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
  }
}
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(1, 1fr);
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid {
    display: block;
  }
  .grid > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid > *:nth-child(1n) {
    margin-right: 0;
  }
}
.grid.gap-0 {
  gap: 0;
}
.grid.gap-x-0 {
  column-gap: 0;
}
.grid.gap-y-0 {
  row-gap: 0;
}
.grid.gap-1 {
  gap: 0.25rem;
}
.grid.gap-x-1 {
  column-gap: 0.25rem;
}
.grid.gap-y-1 {
  row-gap: 0.25rem;
}
.grid.gap-2 {
  gap: 0.5rem;
}
.grid.gap-x-2 {
  column-gap: 0.5rem;
}
.grid.gap-y-2 {
  row-gap: 0.5rem;
}
.grid.gap-3 {
  gap: 1rem;
}
.grid.gap-x-3 {
  column-gap: 1rem;
}
.grid.gap-y-3 {
  row-gap: 1rem;
}
.grid.gap-4 {
  gap: 1.5rem;
}
.grid.gap-x-4 {
  column-gap: 1.5rem;
}
.grid.gap-y-4 {
  row-gap: 1.5rem;
}
.grid.gap-5 {
  gap: 3rem;
}
.grid.gap-x-5 {
  column-gap: 3rem;
}
.grid.gap-y-5 {
  row-gap: 3rem;
}
.grid.gap-6 {
  gap: 4rem;
}
.grid.gap-x-6 {
  column-gap: 4rem;
}
.grid.gap-y-6 {
  row-gap: 4rem;
}
.grid.gap-7 {
  gap: 5rem;
}
.grid.gap-x-7 {
  column-gap: 5rem;
}
.grid.gap-y-7 {
  row-gap: 5rem;
}
.grid.gap-8 {
  gap: 6rem;
}
.grid.gap-x-8 {
  column-gap: 6rem;
}
.grid.gap-y-8 {
  row-gap: 6rem;
}
.grid.gap-9 {
  gap: 8rem;
}
.grid.gap-x-9 {
  column-gap: 8rem;
}
.grid.gap-y-9 {
  row-gap: 8rem;
}
.grid.gap-10 {
  gap: 10rem;
}
.grid.gap-x-10 {
  column-gap: 10rem;
}
.grid.gap-y-10 {
  row-gap: 10rem;
}
.grid.gap-11 {
  gap: 12rem;
}
.grid.gap-x-11 {
  column-gap: 12rem;
}
.grid.gap-y-11 {
  row-gap: 12rem;
}
.grid.gap-12 {
  gap: 15rem;
}
.grid.gap-x-12 {
  column-gap: 15rem;
}
.grid.gap-y-12 {
  row-gap: 15rem;
}
.grid.gap-13 {
  gap: 18rem;
}
.grid.gap-x-13 {
  column-gap: 18rem;
}
.grid.gap-y-13 {
  row-gap: 18rem;
}
.grid.gap-14 {
  gap: 20rem;
}
.grid.gap-x-14 {
  column-gap: 20rem;
}
.grid.gap-y-14 {
  row-gap: 20rem;
}
.grid.gap-15 {
  gap: 25rem;
}
.grid.gap-x-15 {
  column-gap: 25rem;
}
.grid.gap-y-15 {
  row-gap: 25rem;
}
.grid.gap-16 {
  gap: 30rem;
}
.grid.gap-x-16 {
  column-gap: 30rem;
}
.grid.gap-y-16 {
  row-gap: 30rem;
}
.grid.gap-17 {
  gap: 35rem;
}
.grid.gap-x-17 {
  column-gap: 35rem;
}
.grid.gap-y-17 {
  row-gap: 35rem;
}
.grid.gap-18 {
  gap: 40rem;
}
.grid.gap-x-18 {
  column-gap: 40rem;
}
.grid.gap-y-18 {
  row-gap: 40rem;
}
.grid.gap-19 {
  gap: 45rem;
}
.grid.gap-x-19 {
  column-gap: 45rem;
}
.grid.gap-y-19 {
  row-gap: 45rem;
}
.grid.gap-20 {
  gap: 50rem;
}
.grid.gap-x-20 {
  column-gap: 50rem;
}
.grid.gap-y-20 {
  row-gap: 50rem;
}

.grid-cols-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(1, 1fr);
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-1 {
    display: block;
  }
  .grid-cols-1 > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-1 > *:nth-child(1n) {
    margin-right: 0;
  }
}

.grid-cols-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-2 {
    display: block;
  }
  .grid-cols-2 > * {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-2 > *:nth-child(2n) {
    margin-right: 0;
  }
}

.grid-cols-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-3 {
    display: block;
  }
  .grid-cols-3 > * {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

.grid-cols-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-4 {
    display: block;
  }
  .grid-cols-4 > * {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-4 > *:nth-child(4n) {
    margin-right: 0;
  }
}

.grid-cols-5 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(5, 1fr);
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-5 {
    display: block;
  }
  .grid-cols-5 > * {
    display: inline-block;
    width: calc(20% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-5 > *:nth-child(5n) {
    margin-right: 0;
  }
}

.grid-cols-6 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(6, 1fr);
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-6 {
    display: block;
  }
  .grid-cols-6 > * {
    display: inline-block;
    width: calc(16.6666666667% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-6 > *:nth-child(6n) {
    margin-right: 0;
  }
}

.grid-cols-7 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(7, 1fr);
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-7 {
    display: block;
  }
  .grid-cols-7 > * {
    display: inline-block;
    width: calc(14.2857142857% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-7 > *:nth-child(7n) {
    margin-right: 0;
  }
}

.grid-cols-8 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(8, 1fr);
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-8 {
    display: block;
  }
  .grid-cols-8 > * {
    display: inline-block;
    width: calc(12.5% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-8 > *:nth-child(8n) {
    margin-right: 0;
  }
}

.grid-cols-9 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(9, 1fr);
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-9 {
    display: block;
  }
  .grid-cols-9 > * {
    display: inline-block;
    width: calc(11.1111111111% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-9 > *:nth-child(9n) {
    margin-right: 0;
  }
}

.grid-cols-10 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(10, 1fr);
  grid-template-columns: repeat(10, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-10 {
    display: block;
  }
  .grid-cols-10 > * {
    display: inline-block;
    width: calc(10% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-10 > *:nth-child(10n) {
    margin-right: 0;
  }
}

.grid-cols-11 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(11, 1fr);
  grid-template-columns: repeat(11, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-11 {
    display: block;
  }
  .grid-cols-11 > * {
    display: inline-block;
    width: calc(9.0909090909% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-11 > *:nth-child(11n) {
    margin-right: 0;
  }
}

.grid-cols-12 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid-cols-12 {
    display: block;
  }
  .grid-cols-12 > * {
    display: inline-block;
    width: calc(8.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .grid-cols-12 > *:nth-child(12n) {
    margin-right: 0;
  }
}

.grid-auto-fit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-auto-fit.min-200 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.grid-auto-fit.min-250 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-auto-fit.min-300 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-auto-fit.min-350 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.grid-auto-fit.min-400 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-auto-fill {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid-auto-fill.min-200 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.grid-auto-fill.min-250 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.grid-auto-fill.min-300 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid-auto-fill.min-350 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.grid-auto-fill.min-400 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.grid-rows-1 {
  -ms-grid-rows: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
}

.grid-rows-2 {
  -ms-grid-rows: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.grid-rows-3 {
  -ms-grid-rows: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.grid-rows-4 {
  -ms-grid-rows: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.grid-rows-5 {
  -ms-grid-rows: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
}

.grid-rows-6 {
  -ms-grid-rows: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.grid-rows-auto {
  -ms-grid-rows: repeat(auto-fit, 1fr);
  grid-template-rows: repeat(auto-fit, 1fr);
}

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

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

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

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

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

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

.col-span-7 {
  -ms-grid-column-span: 7;
  grid-column: span 7 / span 7;
}

.col-span-8 {
  -ms-grid-column-span: 8;
  grid-column: span 8 / span 8;
}

.col-span-9 {
  -ms-grid-column-span: 9;
  grid-column: span 9 / span 9;
}

.col-span-10 {
  -ms-grid-column-span: 10;
  grid-column: span 10 / span 10;
}

.col-span-11 {
  -ms-grid-column-span: 11;
  grid-column: span 11 / span 11;
}

.col-span-12 {
  -ms-grid-column-span: 12;
  grid-column: span 12 / span 12;
}

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

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

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

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

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

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

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

.row-span-full {
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  grid-row: 1/-1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-end-1 {
  grid-row-end: 1;
}

.row-start-2 {
  -ms-grid-row: 2;
  grid-row-start: 2;
  grid-row: 2 / span 1;
}

.row-end-2 {
  grid-row-end: 2;
}

.row-start-3 {
  -ms-grid-row: 3;
  grid-row-start: 3;
  grid-row: 3 / span 1;
}

.row-end-3 {
  grid-row-end: 3;
}

.row-start-4 {
  -ms-grid-row: 4;
  grid-row-start: 4;
  grid-row: 4 / span 1;
}

.row-end-4 {
  grid-row-end: 4;
}

.row-start-5 {
  -ms-grid-row: 5;
  grid-row-start: 5;
  grid-row: 5 / span 1;
}

.row-end-5 {
  grid-row-end: 5;
}

.row-start-6 {
  -ms-grid-row: 6;
  grid-row-start: 6;
  grid-row: 6 / span 1;
}

.row-end-6 {
  grid-row-end: 6;
}

.row-start-7 {
  -ms-grid-row: 7;
  grid-row-start: 7;
  grid-row: 7 / span 1;
}

.row-end-7 {
  grid-row-end: 7;
}

.grid-justify-items-start {
  -ms-grid-column-align: start;
  justify-items: start;
}

.grid-justify-items-end {
  -ms-grid-column-align: end;
  justify-items: end;
}

.grid-justify-items-center {
  -ms-grid-column-align: center;
  justify-items: center;
}

.grid-justify-items-stretch {
  -ms-grid-column-align: stretch;
  justify-items: stretch;
}

.grid-align-items-start {
  -ms-grid-row-align: start;
  align-items: start;
}

.grid-align-items-end {
  -ms-grid-row-align: end;
  align-items: end;
}

.grid-align-items-center {
  -ms-grid-row-align: center;
  align-items: center;
}

.grid-align-items-stretch {
  -ms-grid-row-align: stretch;
  align-items: stretch;
}

.grid-justify-content-start {
  justify-content: start;
}

.grid-justify-content-end {
  justify-content: end;
}

.grid-justify-content-center {
  justify-content: center;
}

.grid-justify-content-stretch {
  justify-content: stretch;
}

.grid-justify-content-around {
  justify-content: space-around;
}

.grid-justify-content-between {
  justify-content: space-between;
}

.grid-justify-content-evenly {
  justify-content: space-evenly;
}

.grid-align-content-start {
  align-content: start;
}

.grid-align-content-end {
  align-content: end;
}

.grid-align-content-center {
  align-content: center;
}

.grid-align-content-stretch {
  align-content: stretch;
}

.grid-align-content-around {
  align-content: space-around;
}

.grid-align-content-between {
  align-content: space-between;
}

.grid-align-content-evenly {
  align-content: space-evenly;
}

.grid-place-items-start {
  -ms-grid-column-align: start;
  -ms-grid-row-align: start;
  place-items: start;
}

.grid-place-items-end {
  -ms-grid-column-align: end;
  -ms-grid-row-align: end;
  place-items: end;
}

.grid-place-items-center {
  -ms-grid-column-align: center;
  -ms-grid-row-align: center;
  place-items: center;
}

.grid-place-items-stretch {
  -ms-grid-column-align: stretch;
  -ms-grid-row-align: stretch;
  place-items: stretch;
}

@media (min-width: 576px) {
  .sm\:grid-cols-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-1 {
    display: block;
  }
  .sm\:grid-cols-1 > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-1 > *:nth-child(1n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-2 {
    display: block;
  }
  .sm\:grid-cols-2 > * {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-2 > *:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-3 {
    display: block;
  }
  .sm\:grid-cols-3 > * {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-3 > *:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-4 {
    display: block;
  }
  .sm\:grid-cols-4 > * {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-4 > *:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-5 {
    display: block;
  }
  .sm\:grid-cols-5 > * {
    display: inline-block;
    width: calc(20% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-5 > *:nth-child(5n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-6 {
    display: block;
  }
  .sm\:grid-cols-6 > * {
    display: inline-block;
    width: calc(16.6666666667% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-6 > *:nth-child(6n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(7, 1fr);
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-7 {
    display: block;
  }
  .sm\:grid-cols-7 > * {
    display: inline-block;
    width: calc(14.2857142857% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-7 > *:nth-child(7n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(8, 1fr);
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-8 {
    display: block;
  }
  .sm\:grid-cols-8 > * {
    display: inline-block;
    width: calc(12.5% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-8 > *:nth-child(8n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(9, 1fr);
    grid-template-columns: repeat(9, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-9 {
    display: block;
  }
  .sm\:grid-cols-9 > * {
    display: inline-block;
    width: calc(11.1111111111% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-9 > *:nth-child(9n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(10, 1fr);
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-10 {
    display: block;
  }
  .sm\:grid-cols-10 > * {
    display: inline-block;
    width: calc(10% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-10 > *:nth-child(10n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-11 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(11, 1fr);
    grid-template-columns: repeat(11, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-11 {
    display: block;
  }
  .sm\:grid-cols-11 > * {
    display: inline-block;
    width: calc(9.0909090909% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-11 > *:nth-child(11n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(12, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 576px) and (-ms-high-contrast: active),
  (min-width: 576px) and (-ms-high-contrast: none) {
  .sm\:grid-cols-12 {
    display: block;
  }
  .sm\:grid-cols-12 > * {
    display: inline-block;
    width: calc(8.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .sm\:grid-cols-12 > *:nth-child(12n) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .sm\:grid-auto-fit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .sm\:grid-auto-fit.min-200 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .sm\:grid-auto-fit.min-250 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .sm\:grid-auto-fit.min-300 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .sm\:grid-auto-fit.min-350 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .sm\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1 / span 1;
  }
  .sm\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2 / span 2;
  }
  .sm\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3 / span 3;
  }
  .sm\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4 / span 4;
  }
  .sm\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5 / span 5;
  }
  .sm\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6 / span 6;
  }
  .sm\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7 / span 7;
  }
  .sm\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8 / span 8;
  }
  .sm\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9 / span 9;
  }
  .sm\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10 / span 10;
  }
  .sm\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11 / span 11;
  }
  .sm\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12 / span 12;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-1 {
    display: block;
  }
  .md\:grid-cols-1 > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-1 > *:nth-child(1n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-2 {
    display: block;
  }
  .md\:grid-cols-2 > * {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-2 > *:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-3 {
    display: block;
  }
  .md\:grid-cols-3 > * {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-3 > *:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-4 {
    display: block;
  }
  .md\:grid-cols-4 > * {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-4 > *:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-5 {
    display: block;
  }
  .md\:grid-cols-5 > * {
    display: inline-block;
    width: calc(20% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-5 > *:nth-child(5n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-6 {
    display: block;
  }
  .md\:grid-cols-6 > * {
    display: inline-block;
    width: calc(16.6666666667% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-6 > *:nth-child(6n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(7, 1fr);
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-7 {
    display: block;
  }
  .md\:grid-cols-7 > * {
    display: inline-block;
    width: calc(14.2857142857% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-7 > *:nth-child(7n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(8, 1fr);
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-8 {
    display: block;
  }
  .md\:grid-cols-8 > * {
    display: inline-block;
    width: calc(12.5% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-8 > *:nth-child(8n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(9, 1fr);
    grid-template-columns: repeat(9, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-9 {
    display: block;
  }
  .md\:grid-cols-9 > * {
    display: inline-block;
    width: calc(11.1111111111% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-9 > *:nth-child(9n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(10, 1fr);
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-10 {
    display: block;
  }
  .md\:grid-cols-10 > * {
    display: inline-block;
    width: calc(10% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-10 > *:nth-child(10n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-11 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(11, 1fr);
    grid-template-columns: repeat(11, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-11 {
    display: block;
  }
  .md\:grid-cols-11 > * {
    display: inline-block;
    width: calc(9.0909090909% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-11 > *:nth-child(11n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-cols-12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(12, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: active),
  (min-width: 1024px) and (-ms-high-contrast: none) {
  .md\:grid-cols-12 {
    display: block;
  }
  .md\:grid-cols-12 > * {
    display: inline-block;
    width: calc(8.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .md\:grid-cols-12 > *:nth-child(12n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .md\:grid-auto-fit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .md\:grid-auto-fit.min-200 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .md\:grid-auto-fit.min-250 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .md\:grid-auto-fit.min-300 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .md\:grid-auto-fit.min-350 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .md\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3 / span 3;
  }
  .md\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4 / span 4;
  }
  .md\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5 / span 5;
  }
  .md\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6 / span 6;
  }
  .md\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7 / span 7;
  }
  .md\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8 / span 8;
  }
  .md\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9 / span 9;
  }
  .md\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10 / span 10;
  }
  .md\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11 / span 11;
  }
  .md\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12 / span 12;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-1 {
    display: block;
  }
  .lg\:grid-cols-1 > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-1 > *:nth-child(1n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-2 {
    display: block;
  }
  .lg\:grid-cols-2 > * {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-2 > *:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-3 {
    display: block;
  }
  .lg\:grid-cols-3 > * {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-3 > *:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-4 {
    display: block;
  }
  .lg\:grid-cols-4 > * {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-4 > *:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-5 {
    display: block;
  }
  .lg\:grid-cols-5 > * {
    display: inline-block;
    width: calc(20% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-5 > *:nth-child(5n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-6 {
    display: block;
  }
  .lg\:grid-cols-6 > * {
    display: inline-block;
    width: calc(16.6666666667% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-6 > *:nth-child(6n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(7, 1fr);
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-7 {
    display: block;
  }
  .lg\:grid-cols-7 > * {
    display: inline-block;
    width: calc(14.2857142857% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-7 > *:nth-child(7n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(8, 1fr);
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-8 {
    display: block;
  }
  .lg\:grid-cols-8 > * {
    display: inline-block;
    width: calc(12.5% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-8 > *:nth-child(8n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(9, 1fr);
    grid-template-columns: repeat(9, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-9 {
    display: block;
  }
  .lg\:grid-cols-9 > * {
    display: inline-block;
    width: calc(11.1111111111% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-9 > *:nth-child(9n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(10, 1fr);
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-10 {
    display: block;
  }
  .lg\:grid-cols-10 > * {
    display: inline-block;
    width: calc(10% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-10 > *:nth-child(10n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-11 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(11, 1fr);
    grid-template-columns: repeat(11, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-11 {
    display: block;
  }
  .lg\:grid-cols-11 > * {
    display: inline-block;
    width: calc(9.0909090909% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-11 > *:nth-child(11n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-cols-12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(12, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .lg\:grid-cols-12 {
    display: block;
  }
  .lg\:grid-cols-12 > * {
    display: inline-block;
    width: calc(8.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .lg\:grid-cols-12 > *:nth-child(12n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .lg\:grid-auto-fit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .lg\:grid-auto-fit.min-200 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .lg\:grid-auto-fit.min-250 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .lg\:grid-auto-fit.min-300 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .lg\:grid-auto-fit.min-350 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .lg\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4 / span 4;
  }
  .lg\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6 / span 6;
  }
  .lg\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7 / span 7;
  }
  .lg\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8 / span 8;
  }
  .lg\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9 / span 9;
  }
  .lg\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10 / span 10;
  }
  .lg\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11 / span 11;
  }
  .lg\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12 / span 12;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-1 {
    display: block;
  }
  .xl\:grid-cols-1 > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-1 > *:nth-child(1n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-2 {
    display: block;
  }
  .xl\:grid-cols-2 > * {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-2 > *:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-3 {
    display: block;
  }
  .xl\:grid-cols-3 > * {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-3 > *:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-4 {
    display: block;
  }
  .xl\:grid-cols-4 > * {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-4 > *:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-5 {
    display: block;
  }
  .xl\:grid-cols-5 > * {
    display: inline-block;
    width: calc(20% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-5 > *:nth-child(5n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-6 {
    display: block;
  }
  .xl\:grid-cols-6 > * {
    display: inline-block;
    width: calc(16.6666666667% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-6 > *:nth-child(6n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(7, 1fr);
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-7 {
    display: block;
  }
  .xl\:grid-cols-7 > * {
    display: inline-block;
    width: calc(14.2857142857% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-7 > *:nth-child(7n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(8, 1fr);
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-8 {
    display: block;
  }
  .xl\:grid-cols-8 > * {
    display: inline-block;
    width: calc(12.5% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-8 > *:nth-child(8n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(9, 1fr);
    grid-template-columns: repeat(9, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-9 {
    display: block;
  }
  .xl\:grid-cols-9 > * {
    display: inline-block;
    width: calc(11.1111111111% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-9 > *:nth-child(9n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(10, 1fr);
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-10 {
    display: block;
  }
  .xl\:grid-cols-10 > * {
    display: inline-block;
    width: calc(10% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-10 > *:nth-child(10n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-11 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(11, 1fr);
    grid-template-columns: repeat(11, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-11 {
    display: block;
  }
  .xl\:grid-cols-11 > * {
    display: inline-block;
    width: calc(9.0909090909% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-11 > *:nth-child(11n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-cols-12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(12, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1440px) and (-ms-high-contrast: active),
  (min-width: 1440px) and (-ms-high-contrast: none) {
  .xl\:grid-cols-12 {
    display: block;
  }
  .xl\:grid-cols-12 > * {
    display: inline-block;
    width: calc(8.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .xl\:grid-cols-12 > *:nth-child(12n) {
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .xl\:grid-auto-fit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .xl\:grid-auto-fit.min-200 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .xl\:grid-auto-fit.min-250 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .xl\:grid-auto-fit.min-300 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .xl\:grid-auto-fit.min-350 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .xl\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1 / span 1;
  }
  .xl\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2 / span 2;
  }
  .xl\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3 / span 3;
  }
  .xl\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4 / span 4;
  }
  .xl\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5 / span 5;
  }
  .xl\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6 / span 6;
  }
  .xl\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7 / span 7;
  }
  .xl\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8 / span 8;
  }
  .xl\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9 / span 9;
  }
  .xl\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10 / span 10;
  }
  .xl\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11 / span 11;
  }
  .xl\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12 / span 12;
  }
}
.grid-item-auto {
  -ms-grid-column: auto;
  -ms-grid-row: auto;
  grid-column: auto;
  grid-row: auto;
}

.grid-item-square {
  aspect-ratio: 1/1;
}

.grid-item-landscape {
  aspect-ratio: 16/9;
}

.grid-item-portrait {
  aspect-ratio: 3/4;
}

.grid-debug .grid {
  border: 2px dashed red;
  background: rgba(255, 0, 0, 0.05);
}
.grid-debug [class*="col-span"],
.grid-debug [class*="row-span"],
.grid-debug .grid > * {
  border: 1px dashed blue;
  background: rgba(0, 0, 255, 0.05);
  position: relative;
}
.grid-debug [class*="col-span"]::after,
.grid-debug [class*="row-span"]::after,
.grid-debug .grid > *::after {
  content: attr(class);
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 10px;
  padding: 2px 4px;
  z-index: 1000;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.gap-0 {
  gap: 0 !important;
}

.gap-x-0 {
  column-gap: 0 !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-x-1 {
  column-gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-x-2 {
  column-gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-x-3 {
  column-gap: 1rem !important;
}

.gap-y-3 {
  row-gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-x-4 {
  column-gap: 1.5rem !important;
}

.gap-y-4 {
  row-gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-x-5 {
  column-gap: 3rem !important;
}

.gap-y-5 {
  row-gap: 3rem !important;
}

.gap-6 {
  gap: 4rem !important;
}

.gap-x-6 {
  column-gap: 4rem !important;
}

.gap-y-6 {
  row-gap: 4rem !important;
}

.gap-7 {
  gap: 5rem !important;
}

.gap-x-7 {
  column-gap: 5rem !important;
}

.gap-y-7 {
  row-gap: 5rem !important;
}

.gap-8 {
  gap: 6rem !important;
}

.gap-x-8 {
  column-gap: 6rem !important;
}

.gap-y-8 {
  row-gap: 6rem !important;
}

.gap-9 {
  gap: 8rem !important;
}

.gap-x-9 {
  column-gap: 8rem !important;
}

.gap-y-9 {
  row-gap: 8rem !important;
}

.gap-10 {
  gap: 10rem !important;
}

.gap-x-10 {
  column-gap: 10rem !important;
}

.gap-y-10 {
  row-gap: 10rem !important;
}

.gap-11 {
  gap: 12rem !important;
}

.gap-x-11 {
  column-gap: 12rem !important;
}

.gap-y-11 {
  row-gap: 12rem !important;
}

.gap-12 {
  gap: 15rem !important;
}

.gap-x-12 {
  column-gap: 15rem !important;
}

.gap-y-12 {
  row-gap: 15rem !important;
}

.gap-13 {
  gap: 18rem !important;
}

.gap-x-13 {
  column-gap: 18rem !important;
}

.gap-y-13 {
  row-gap: 18rem !important;
}

.gap-14 {
  gap: 20rem !important;
}

.gap-x-14 {
  column-gap: 20rem !important;
}

.gap-y-14 {
  row-gap: 20rem !important;
}

.gap-15 {
  gap: 25rem !important;
}

.gap-x-15 {
  column-gap: 25rem !important;
}

.gap-y-15 {
  row-gap: 25rem !important;
}

.gap-16 {
  gap: 30rem !important;
}

.gap-x-16 {
  column-gap: 30rem !important;
}

.gap-y-16 {
  row-gap: 30rem !important;
}

.gap-17 {
  gap: 35rem !important;
}

.gap-x-17 {
  column-gap: 35rem !important;
}

.gap-y-17 {
  row-gap: 35rem !important;
}

.gap-18 {
  gap: 40rem !important;
}

.gap-x-18 {
  column-gap: 40rem !important;
}

.gap-y-18 {
  row-gap: 40rem !important;
}

.gap-19 {
  gap: 45rem !important;
}

.gap-x-19 {
  column-gap: 45rem !important;
}

.gap-y-19 {
  row-gap: 45rem !important;
}

.gap-20 {
  gap: 50rem !important;
}

.gap-x-20 {
  column-gap: 50rem !important;
}

.gap-y-20 {
  row-gap: 50rem !important;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

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

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

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

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

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

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

.justify-content-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.justify-content-around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}

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

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

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

.align-items-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}

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

.d-flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-around {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-evenly {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-center-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-between-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-center-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-center-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-center-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.d-flex-baseline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-baseline-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-baseline-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-baseline-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-baseline-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-baseline-around {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex-baseline-evenly {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-end-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-start-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-column-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-column-center-all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-column-center-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (min-width: 0) {
  .d-xs-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xs-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xs-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xs-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xs-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 576px) {
  .d-sm-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-sm-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-sm-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-sm-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .d-md-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1025px) {
  .d-md-c-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-c-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-c-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-c-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-md-c-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  .d-lg-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-lg-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-lg-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-lg-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .d-xl-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xl-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xl-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xl-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1600px) {
  .d-xxl-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xxl-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xxl-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .d-xxl-flex-center-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex.gap-0 {
  gap: 0;
}
.flex.gap-x-0 {
  column-gap: 0;
}
.flex.gap-y-0 {
  row-gap: 0;
}
.flex.gap-1 {
  gap: 0.25rem;
}
.flex.gap-x-1 {
  column-gap: 0.25rem;
}
.flex.gap-y-1 {
  row-gap: 0.25rem;
}
.flex.gap-2 {
  gap: 0.5rem;
}
.flex.gap-x-2 {
  column-gap: 0.5rem;
}
.flex.gap-y-2 {
  row-gap: 0.5rem;
}
.flex.gap-3 {
  gap: 1rem;
}
.flex.gap-x-3 {
  column-gap: 1rem;
}
.flex.gap-y-3 {
  row-gap: 1rem;
}
.flex.gap-4 {
  gap: 1.5rem;
}
.flex.gap-x-4 {
  column-gap: 1.5rem;
}
.flex.gap-y-4 {
  row-gap: 1.5rem;
}
.flex.gap-5 {
  gap: 3rem;
}
.flex.gap-x-5 {
  column-gap: 3rem;
}
.flex.gap-y-5 {
  row-gap: 3rem;
}
.flex.gap-6 {
  gap: 4rem;
}
.flex.gap-x-6 {
  column-gap: 4rem;
}
.flex.gap-y-6 {
  row-gap: 4rem;
}
.flex.gap-7 {
  gap: 5rem;
}
.flex.gap-x-7 {
  column-gap: 5rem;
}
.flex.gap-y-7 {
  row-gap: 5rem;
}
.flex.gap-8 {
  gap: 6rem;
}
.flex.gap-x-8 {
  column-gap: 6rem;
}
.flex.gap-y-8 {
  row-gap: 6rem;
}
.flex.gap-9 {
  gap: 8rem;
}
.flex.gap-x-9 {
  column-gap: 8rem;
}
.flex.gap-y-9 {
  row-gap: 8rem;
}
.flex.gap-10 {
  gap: 10rem;
}
.flex.gap-x-10 {
  column-gap: 10rem;
}
.flex.gap-y-10 {
  row-gap: 10rem;
}
.flex.gap-11 {
  gap: 12rem;
}
.flex.gap-x-11 {
  column-gap: 12rem;
}
.flex.gap-y-11 {
  row-gap: 12rem;
}
.flex.gap-12 {
  gap: 15rem;
}
.flex.gap-x-12 {
  column-gap: 15rem;
}
.flex.gap-y-12 {
  row-gap: 15rem;
}
.flex.gap-13 {
  gap: 18rem;
}
.flex.gap-x-13 {
  column-gap: 18rem;
}
.flex.gap-y-13 {
  row-gap: 18rem;
}
.flex.gap-14 {
  gap: 20rem;
}
.flex.gap-x-14 {
  column-gap: 20rem;
}
.flex.gap-y-14 {
  row-gap: 20rem;
}
.flex.gap-15 {
  gap: 25rem;
}
.flex.gap-x-15 {
  column-gap: 25rem;
}
.flex.gap-y-15 {
  row-gap: 25rem;
}
.flex.gap-16 {
  gap: 30rem;
}
.flex.gap-x-16 {
  column-gap: 30rem;
}
.flex.gap-y-16 {
  row-gap: 30rem;
}
.flex.gap-17 {
  gap: 35rem;
}
.flex.gap-x-17 {
  column-gap: 35rem;
}
.flex.gap-y-17 {
  row-gap: 35rem;
}
.flex.gap-18 {
  gap: 40rem;
}
.flex.gap-x-18 {
  column-gap: 40rem;
}
.flex.gap-y-18 {
  row-gap: 40rem;
}
.flex.gap-19 {
  gap: 45rem;
}
.flex.gap-x-19 {
  column-gap: 45rem;
}
.flex.gap-y-19 {
  row-gap: 45rem;
}
.flex.gap-20 {
  gap: 50rem;
}
.flex.gap-x-20 {
  column-gap: 50rem;
}
.flex.gap-y-20 {
  row-gap: 50rem;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.inline-flex.gap-0 {
  gap: 0;
}
.inline-flex.gap-x-0 {
  column-gap: 0;
}
.inline-flex.gap-y-0 {
  row-gap: 0;
}
.inline-flex.gap-1 {
  gap: 0.25rem;
}
.inline-flex.gap-x-1 {
  column-gap: 0.25rem;
}
.inline-flex.gap-y-1 {
  row-gap: 0.25rem;
}
.inline-flex.gap-2 {
  gap: 0.5rem;
}
.inline-flex.gap-x-2 {
  column-gap: 0.5rem;
}
.inline-flex.gap-y-2 {
  row-gap: 0.5rem;
}
.inline-flex.gap-3 {
  gap: 1rem;
}
.inline-flex.gap-x-3 {
  column-gap: 1rem;
}
.inline-flex.gap-y-3 {
  row-gap: 1rem;
}
.inline-flex.gap-4 {
  gap: 1.5rem;
}
.inline-flex.gap-x-4 {
  column-gap: 1.5rem;
}
.inline-flex.gap-y-4 {
  row-gap: 1.5rem;
}
.inline-flex.gap-5 {
  gap: 3rem;
}
.inline-flex.gap-x-5 {
  column-gap: 3rem;
}
.inline-flex.gap-y-5 {
  row-gap: 3rem;
}
.inline-flex.gap-6 {
  gap: 4rem;
}
.inline-flex.gap-x-6 {
  column-gap: 4rem;
}
.inline-flex.gap-y-6 {
  row-gap: 4rem;
}
.inline-flex.gap-7 {
  gap: 5rem;
}
.inline-flex.gap-x-7 {
  column-gap: 5rem;
}
.inline-flex.gap-y-7 {
  row-gap: 5rem;
}
.inline-flex.gap-8 {
  gap: 6rem;
}
.inline-flex.gap-x-8 {
  column-gap: 6rem;
}
.inline-flex.gap-y-8 {
  row-gap: 6rem;
}
.inline-flex.gap-9 {
  gap: 8rem;
}
.inline-flex.gap-x-9 {
  column-gap: 8rem;
}
.inline-flex.gap-y-9 {
  row-gap: 8rem;
}
.inline-flex.gap-10 {
  gap: 10rem;
}
.inline-flex.gap-x-10 {
  column-gap: 10rem;
}
.inline-flex.gap-y-10 {
  row-gap: 10rem;
}
.inline-flex.gap-11 {
  gap: 12rem;
}
.inline-flex.gap-x-11 {
  column-gap: 12rem;
}
.inline-flex.gap-y-11 {
  row-gap: 12rem;
}
.inline-flex.gap-12 {
  gap: 15rem;
}
.inline-flex.gap-x-12 {
  column-gap: 15rem;
}
.inline-flex.gap-y-12 {
  row-gap: 15rem;
}
.inline-flex.gap-13 {
  gap: 18rem;
}
.inline-flex.gap-x-13 {
  column-gap: 18rem;
}
.inline-flex.gap-y-13 {
  row-gap: 18rem;
}
.inline-flex.gap-14 {
  gap: 20rem;
}
.inline-flex.gap-x-14 {
  column-gap: 20rem;
}
.inline-flex.gap-y-14 {
  row-gap: 20rem;
}
.inline-flex.gap-15 {
  gap: 25rem;
}
.inline-flex.gap-x-15 {
  column-gap: 25rem;
}
.inline-flex.gap-y-15 {
  row-gap: 25rem;
}
.inline-flex.gap-16 {
  gap: 30rem;
}
.inline-flex.gap-x-16 {
  column-gap: 30rem;
}
.inline-flex.gap-y-16 {
  row-gap: 30rem;
}
.inline-flex.gap-17 {
  gap: 35rem;
}
.inline-flex.gap-x-17 {
  column-gap: 35rem;
}
.inline-flex.gap-y-17 {
  row-gap: 35rem;
}
.inline-flex.gap-18 {
  gap: 40rem;
}
.inline-flex.gap-x-18 {
  column-gap: 40rem;
}
.inline-flex.gap-y-18 {
  row-gap: 40rem;
}
.inline-flex.gap-19 {
  gap: 45rem;
}
.inline-flex.gap-x-19 {
  column-gap: 45rem;
}
.inline-flex.gap-y-19 {
  row-gap: 45rem;
}
.inline-flex.gap-20 {
  gap: 50rem;
}
.inline-flex.gap-x-20 {
  column-gap: 50rem;
}
.inline-flex.gap-y-20 {
  row-gap: 50rem;
}

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

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

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

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

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

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

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

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

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

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

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

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

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

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

.grow {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}

.grow-0 {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
}

.grow-2 {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-grow: 2;
  flex-grow: 2;
}

.grow-3 {
  -webkit-box-flex: 3;
  -webkit-flex-grow: 3;
  -moz-flex-grow: 3;
  -ms-flex-grow: 3;
  flex-grow: 3;
}

.grow-4 {
  -webkit-box-flex: 4;
  -webkit-flex-grow: 4;
  -moz-flex-grow: 4;
  -ms-flex-grow: 4;
  flex-grow: 4;
}

.grow-5 {
  -webkit-box-flex: 5;
  -webkit-flex-grow: 5;
  -moz-flex-grow: 5;
  -ms-flex-grow: 5;
  flex-grow: 5;
}

.shrink {
  -webkit-flex-shrink: 1;
  -moz-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
}

.shrink-0 {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.shrink-2 {
  -webkit-flex-shrink: 2;
  -moz-flex-shrink: 2;
  -ms-flex-shrink: 2;
  flex-shrink: 2;
}

.shrink-3 {
  -webkit-flex-shrink: 3;
  -moz-flex-shrink: 3;
  -ms-flex-shrink: 3;
  flex-shrink: 3;
}

.basis-auto {
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
}

.basis-full {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}

.basis-1-2 {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}

.basis-1-3 {
  -webkit-flex-basis: 33.333333%;
  -moz-flex-basis: 33.333333%;
  -ms-flex-basis: 33.333333%;
  flex-basis: 33.333333%;
}

.basis-0 {
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
}

.basis-0 {
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
}

.basis-1 {
  -webkit-flex-basis: 0.25rem;
  -moz-flex-basis: 0.25rem;
  -ms-flex-basis: 0.25rem;
  flex-basis: 0.25rem;
}

.basis-2 {
  -webkit-flex-basis: 0.5rem;
  -moz-flex-basis: 0.5rem;
  -ms-flex-basis: 0.5rem;
  flex-basis: 0.5rem;
}

.basis-3 {
  -webkit-flex-basis: 1rem;
  -moz-flex-basis: 1rem;
  -ms-flex-basis: 1rem;
  flex-basis: 1rem;
}

.basis-4 {
  -webkit-flex-basis: 1.5rem;
  -moz-flex-basis: 1.5rem;
  -ms-flex-basis: 1.5rem;
  flex-basis: 1.5rem;
}

.basis-5 {
  -webkit-flex-basis: 3rem;
  -moz-flex-basis: 3rem;
  -ms-flex-basis: 3rem;
  flex-basis: 3rem;
}

.basis-6 {
  -webkit-flex-basis: 4rem;
  -moz-flex-basis: 4rem;
  -ms-flex-basis: 4rem;
  flex-basis: 4rem;
}

.basis-7 {
  -webkit-flex-basis: 5rem;
  -moz-flex-basis: 5rem;
  -ms-flex-basis: 5rem;
  flex-basis: 5rem;
}

.basis-8 {
  -webkit-flex-basis: 6rem;
  -moz-flex-basis: 6rem;
  -ms-flex-basis: 6rem;
  flex-basis: 6rem;
}

.basis-9 {
  -webkit-flex-basis: 8rem;
  -moz-flex-basis: 8rem;
  -ms-flex-basis: 8rem;
  flex-basis: 8rem;
}

.basis-10 {
  -webkit-flex-basis: 10rem;
  -moz-flex-basis: 10rem;
  -ms-flex-basis: 10rem;
  flex-basis: 10rem;
}

.basis-11 {
  -webkit-flex-basis: 12rem;
  -moz-flex-basis: 12rem;
  -ms-flex-basis: 12rem;
  flex-basis: 12rem;
}

.basis-12 {
  -webkit-flex-basis: 15rem;
  -moz-flex-basis: 15rem;
  -ms-flex-basis: 15rem;
  flex-basis: 15rem;
}

.basis-13 {
  -webkit-flex-basis: 18rem;
  -moz-flex-basis: 18rem;
  -ms-flex-basis: 18rem;
  flex-basis: 18rem;
}

.basis-14 {
  -webkit-flex-basis: 20rem;
  -moz-flex-basis: 20rem;
  -ms-flex-basis: 20rem;
  flex-basis: 20rem;
}

.basis-15 {
  -webkit-flex-basis: 25rem;
  -moz-flex-basis: 25rem;
  -ms-flex-basis: 25rem;
  flex-basis: 25rem;
}

.basis-16 {
  -webkit-flex-basis: 30rem;
  -moz-flex-basis: 30rem;
  -ms-flex-basis: 30rem;
  flex-basis: 30rem;
}

.basis-17 {
  -webkit-flex-basis: 35rem;
  -moz-flex-basis: 35rem;
  -ms-flex-basis: 35rem;
  flex-basis: 35rem;
}

.basis-18 {
  -webkit-flex-basis: 40rem;
  -moz-flex-basis: 40rem;
  -ms-flex-basis: 40rem;
  flex-basis: 40rem;
}

.basis-19 {
  -webkit-flex-basis: 45rem;
  -moz-flex-basis: 45rem;
  -ms-flex-basis: 45rem;
  flex-basis: 45rem;
}

.basis-20 {
  -webkit-flex-basis: 50rem;
  -moz-flex-basis: 50rem;
  -ms-flex-basis: 50rem;
  flex-basis: 50rem;
}

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

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

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

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.justify-around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}

.justify-evenly {
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}

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

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

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

.items-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}

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

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-center-x {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-center-y {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-around {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-evenly {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-stack {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .flex-stack {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.flex-stack-reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .flex-stack-reverse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media (min-width: 576px) {
  .sm\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .sm\:inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .sm\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .sm\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .md\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .md\:inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .md\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .lg\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .lg\:inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .lg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1440px) {
  .xl\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xl\:inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xl\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xl\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.btn {
  border: 1px solid transparent;
  border-radius: 50px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.375rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .btn {
    padding: 0.5rem 2rem;
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media (min-width: 1280px) {
  .btn {
    padding: 0.625rem 2.5rem;
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media (min-width: 1440px) {
  .btn {
    padding: 0.75rem 3rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.btn:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
  -moz-box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
  outline: none;
}
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.btn:hover:not(:disabled):not(.disabled) {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -moz-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
}
@media (min-width: 1024px) {
  .btn:hover:not(:disabled):not(.disabled) {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1280px) {
  .btn:hover:not(:disabled):not(.disabled) {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
.btn:hover:not(:disabled):not(.disabled) svg,
.btn:hover:not(:disabled):not(.disabled) i {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.btn:active:not(:disabled):not(.disabled) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.btn.btn-xs {
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .btn.btn-xs {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    border-radius: 25px;
  }
}
@media (min-width: 1280px) {
  .btn.btn-xs {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 25px;
  }
}
.btn.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  border-radius: 25px;
}
@media (min-width: 1024px) {
  .btn.btn-sm {
    padding: 0.625rem 1.875rem;
    font-size: 0.875rem;
    border-radius: 30px;
  }
}
@media (min-width: 1280px) {
  .btn.btn-sm {
    padding: 0.75rem 2.25rem;
    font-size: 0.875rem;
    border-radius: 30px;
  }
}
.btn.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 50px;
}
@media (min-width: 1024px) {
  .btn.btn-lg {
    padding: 1.125rem 3.125rem;
    font-size: 1.125rem;
    border-radius: 60px;
  }
}
@media (min-width: 1280px) {
  .btn.btn-lg {
    padding: 1.25rem 3.75rem;
    font-size: 1.125rem;
    border-radius: 60px;
  }
}
@media (min-width: 1440px) {
  .btn.btn-lg {
    padding: 1.375rem 4rem;
    font-size: 1.25rem;
    border-radius: 70px;
  }
}
.btn.btn-xl {
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
  border-radius: 60px;
}
@media (min-width: 1024px) {
  .btn.btn-xl {
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    border-radius: 70px;
  }
}
@media (min-width: 1280px) {
  .btn.btn-xl {
    padding: 1.375rem 4rem;
    font-size: 1.25rem;
    border-radius: 70px;
  }
}
@media (min-width: 1440px) {
  .btn.btn-xl {
    padding: 1.5rem 4.5rem;
    font-size: 1.5rem;
    border-radius: 80px;
  }
}
.btn.btn-square {
  border-radius: 0;
}
@media (min-width: 1024px) {
  .btn.btn-square {
    border-radius: 2px;
  }
}
.btn.btn-rounded {
  border-radius: 0.25rem;
}
@media (min-width: 1024px) {
  .btn.btn-rounded {
    border-radius: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .btn.btn-rounded {
    border-radius: 1rem;
  }
}
.btn.btn-pill {
  border-radius: 30px;
}
@media (min-width: 1024px) {
  .btn.btn-pill {
    border-radius: 40px;
  }
}
@media (min-width: 1280px) {
  .btn.btn-pill {
    border-radius: 50px;
  }
}
.btn.btn-circle {
  border-radius: 50%;
}
.btn.btn-block {
  width: 100%;
  display: flex;
}
.btn svg,
.btn i {
  width: 14px;
  height: 14px;
  margin-right: 0.375rem;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .btn svg,
  .btn i {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .btn svg,
  .btn i {
    width: 18px;
    height: 18px;
    margin-right: 0.625rem;
  }
}
.btn svg:last-child,
.btn i:last-child {
  margin-right: 0;
  margin-left: 0.375rem;
}
@media (min-width: 1024px) {
  .btn svg:last-child,
  .btn i:last-child {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .btn svg:last-child,
  .btn i:last-child {
    margin-left: 0.625rem;
  }
}
.btn svg:only-child,
.btn i:only-child {
  margin: 0;
}

.btn-primary {
  background-color: #1e88e5;
  color: #ffffff;
  border-color: #1e88e5;
}
.btn-primary:hover:not(:disabled):not(.disabled) {
  background-color: #072066;
  border-color: #072066;
  color: #ffffff;
}
.btn-primary:active:not(:disabled):not(.disabled) {
  background-color: rgb(6.3, 28.8, 91.8);
  border-color: rgb(6.3, 28.8, 91.8);
}

.btn-secondary {
  background-color: transparent;
  color: #1e88e5;
  border-color: #1e88e5;
}
.btn-secondary:hover:not(:disabled):not(.disabled) {
  background-color: #1e88e5;
  color: #ffffff;
  border-color: #1e88e5;
}
.btn-secondary:active:not(:disabled):not(.disabled) {
  background-color: #072066;
  border-color: #072066;
  color: #ffffff;
}

/* Force Google Calendar scheduling button to match primary button */
#calendar-button-container .btn.btn-primary,
#calendar-button-container button,
#calendar-button-container a,
#calendar-button-container div[role="button"] {
  font-family: inherit !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 3rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #1e88e5 !important;
  border: 1px solid #1e88e5 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

#calendar-button-container {
  margin-top: auto;
}

#calendar-button-container button:hover,
#calendar-button-container a:hover,
#calendar-button-container div[role="button"]:hover {
  background-color: #072066 !important;
  border-color: #072066 !important;
  color: #ffffff !important;
}

.btn-outline {
  background-color: #072066;
  color: #ffffff;
  border-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-outline:hover:not(:disabled):not(.disabled) {
  background-color: #1e88e5;
  color: #ffffff;
  border-color: #1e88e5;
}
.btn-outline:active:not(:disabled):not(.disabled) {
  background-color: #1e88e5;
  color: #ffffff;
  border-color: #1e88e5;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-primary);
  border-color: transparent;
}
.btn-ghost:hover:not(:disabled):not(.disabled) {
  background-color: transparent;
  color: #000;
  border-color: #ffffff;
}
.btn-ghost:active:not(:disabled):not(.disabled) {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-text {
  background-color: transparent;
  color: #1e88e5;
  border-color: transparent;
}
.btn-text:hover:not(:disabled):not(.disabled) {
  background-color: rgba(30, 136, 229, 0.1);
  color: #1e88e5;
  border-color: transparent;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.btn-text:active:not(:disabled):not(.disabled) {
  background-color: rgba(30, 136, 229, 0.2);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.btn-get-quotes {
  -webkit-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -moz-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  background-color: #1e88e5;
  color: #ffffff;
  border-color: #1e88e5;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .btn-get-quotes {
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
  }
}
.btn-get-quotes:hover:not(:disabled):not(.disabled) {
  background-color: #072066;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-get-quotes:active:not(:disabled):not(.disabled) {
  background-color: rgb(6.3, 28.8, 91.8);
  border-color: #ffffff;
}
.btn-get-quotes::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  -webkit-transition: left 0.5s;
  -moz-transition: left 0.5s;
  -ms-transition: left 0.5s;
  -o-transition: left 0.5s;
  transition: left 0.5s;
}
.btn-get-quotes:hover::before {
  left: 100%;
}

.btn-icon,
.btn-social {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  padding: 0 !important;
}
@media (min-width: 1024px) {
  .btn-icon,
  .btn-social {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .btn-icon,
  .btn-social {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }
}
@media (min-width: 1440px) {
  .btn-icon,
  .btn-social {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
  }
}
.btn-icon.btn-xs,
.btn-xs.btn-social {
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
}
@media (min-width: 1024px) {
  .btn-icon.btn-xs,
  .btn-xs.btn-social {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }
}
.btn-icon.btn-sm,
.btn-sm.btn-social {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
}
@media (min-width: 1024px) {
  .btn-icon.btn-sm,
  .btn-sm.btn-social {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
  }
}
.btn-icon.btn-lg,
.btn-lg.btn-social {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
}
@media (min-width: 1024px) {
  .btn-icon.btn-lg,
  .btn-lg.btn-social {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
  }
}
@media (min-width: 1280px) {
  .btn-icon.btn-lg,
  .btn-lg.btn-social {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
  }
}
.btn-icon.btn-xl,
.btn-xl.btn-social {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
}
@media (min-width: 1024px) {
  .btn-icon.btn-xl,
  .btn-xl.btn-social {
    width: 3.75rem;
    height: 3.75rem;
    min-width: 3.75rem;
  }
}
@media (min-width: 1280px) {
  .btn-icon.btn-xl,
  .btn-xl.btn-social {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
  }
}
.btn-icon svg,
.btn-social svg,
.btn-icon i,
.btn-social i {
  margin: 0 !important;
  width: 16px !important;
  height: 16px !important;
}
@media (min-width: 1024px) {
  .btn-icon svg,
  .btn-social svg,
  .btn-icon i,
  .btn-social i {
    width: 18px !important;
    height: 18px !important;
  }
}
@media (min-width: 1280px) {
  .btn-icon svg,
  .btn-social svg,
  .btn-icon i,
  .btn-social i {
    width: 20px !important;
    height: 20px !important;
  }
}

.btn-social {
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
  border-color: transparent;
}
.btn-social:hover:not(:disabled):not(.disabled) {
  color: #ffffff;
}
.btn-social.btn-twitter:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.btn-social.btn-facebook:hover {
  background-color: #4267b2;
  border-color: #4267b2;
}
.btn-social.btn-linkedin:hover {
  background-color: #0077b5;
  border-color: #0077b5;
}
.btn-social.btn-instagram:hover {
  background-color: #e4405f;
  border-color: #e4405f;
}
.btn-social.btn-youtube:hover {
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-social.btn-github:hover {
  background-color: #333;
  border-color: #333;
}

.btn-group {
  display: inline-flex;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    margin-left: 0 !important;
    margin-bottom: -1px;
    border-radius: 0.5rem !important;
  }
  .btn-group .btn:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 576px) {
  .btn-group .btn {
    position: relative;
    flex: 1 1 auto;
  }
  .btn-group .btn:not(:first-child) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .btn-group .btn:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .btn-group .btn:hover {
    z-index: 1;
  }
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .cta-buttons .btn {
    width: 100% !important;
  }
}
@media (min-width: 576px) {
  .cta-buttons {
    gap: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .cta-buttons {
    gap: 1.5rem !important;
  }
}

.btn-success {
  background-color: #28a745;
  color: #ffffff;
  border-color: #28a745;
}
.btn-success:hover:not(:disabled):not(.disabled) {
  background-color: #218838;
  border-color: #218838;
  color: #ffffff;
}

.btn-warning {
  background-color: #ffc107;
  color: #212529;
  border-color: #ffc107;
}
.btn-warning:hover:not(:disabled):not(.disabled) {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #212529;
}

.btn-danger {
  background-color: #dc3545;
  color: #ffffff;
  border-color: #dc3545;
}
.btn-danger:hover:not(:disabled):not(.disabled) {
  background-color: #c82333;
  border-color: #c82333;
  color: #ffffff;
}

.btn-light {
  background-color: #ffffff;
  color: #1e88e5;
  border-color: #ffffff;
}
.btn-light:hover:not(:disabled):not(.disabled) {
  background-color: rgb(229.5, 229.5, 229.5);
  color: #1e88e5;
  border-color: rgb(229.5, 229.5, 229.5);
}

.btn-dark {
  background-color: #212529;
  color: #ffffff;
  border-color: #212529;
}
.btn-dark:hover:not(:disabled):not(.disabled) {
  background-color: #16181b;
  color: #ffffff;
  border-color: #16181b;
}

.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  border: 1px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-loading-spin 1s linear infinite;
}
@media (min-width: 1024px) {
  .btn-loading::after {
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
}
@media (min-width: 1280px) {
  .btn-loading::after {
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
  }
}

@keyframes btn-loading-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
/* ========================================
   TECH PAGE LOADER - ITAgency
======================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #072066;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.loader-container {
  text-align: center;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 2;
}

.loader-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

/* Logo styles removed - no logo needed */
/* ========================================
   TECH LOADING SPINNER
======================================== */
.loader-spinner {
  position: relative;
  width: 120px;
  height: 120px;
}

.spinner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.spinner-ring::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid transparent;
  border-top: 2px solid #64b5f6;
  border-right: 2px solid #64b5f6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  animation: spinnerRotate 2s linear infinite;
  filter: drop-shadow(0 0 10px rgba(100, 181, 246, 0.6));
}
.spinner-ring::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 90px;
  height: 90px;
  border: 2px solid transparent;
  border-bottom: 2px solid #1e88e5;
  border-left: 2px solid #1e88e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  animation: spinnerRotate 1.5s linear infinite reverse;
  filter: drop-shadow(0 0 8px rgba(30, 136, 229, 0.8));
}
.spinner-ring div {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border: 1px solid transparent;
  border-top: 1px solid #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  animation: spinnerRotate 1s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
}
.spinner-ring div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #64b5f6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: centerPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(100, 181, 246, 0.8);
}

/* ========================================
   TECH PROGRESS BAR
======================================== */
.loader-progress {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(30, 136, 229, 0.3);
}
.loader-progress::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(100, 181, 246, 0.5),
    transparent
  );
  animation: progressScan 2s linear infinite;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #1e88e5, #64b5f6, #ffffff);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  width: 0%;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  position: relative;
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.6);
}
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
  animation: progressGlow 1s ease-in-out infinite;
}

/* ========================================
   TECH ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px) scale(0.8);
    -moz-transform: translateY(50px) scale(0.8);
    -ms-transform: translateY(50px) scale(0.8);
    -o-transform: translateY(50px) scale(0.8);
    transform: translateY(50px) scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
@keyframes spinnerRotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes centerPulse {
  0%,
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    -moz-transform: translate(-50%, -50%) scale(1.8);
    -ms-transform: translate(-50%, -50%) scale(1.8);
    -o-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.6;
  }
}
@keyframes progressScan {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -o-transform: translateX(300px);
    transform: translateX(300px);
  }
}
@keyframes progressGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes gridMove {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(50px, 50px);
    -moz-transform: translate(50px, 50px);
    -ms-transform: translate(50px, 50px);
    -o-transform: translate(50px, 50px);
    transform: translate(50px, 50px);
  }
}
/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
  .loader-spinner {
    width: 100px;
    height: 100px;
  }
  .loader-spinner::before {
    width: 100px;
    height: 100px;
  }
  .loader-spinner::after {
    top: 12px;
    left: 12px;
    width: 76px;
    height: 76px;
  }
  .loader-spinner div {
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
  }
  .loader-progress {
    width: 250px;
  }
}
@media (max-width: 576px) {
  .loader-spinner {
    width: 80px;
    height: 80px;
  }
  .loader-spinner::before {
    width: 80px;
    height: 80px;
  }
  .loader-spinner::after {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
  }
  .loader-spinner div {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
  .loader-progress {
    width: 200px;
    height: 3px;
  }
}
/* ========================================
   BODY OVERFLOW CONTROL
======================================== */
body.loading {
  overflow: hidden;
  height: 100vh;
}
body.loaded {
  overflow: hidden;
  height: auto;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.header {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 1rem 0;
  z-index: 800;
  height: 85px;
}
.header .container {
  position: relative;
}
@media (max-width: 1024px) {
  .header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.header .logo {
  height: 35px;
  z-index: 1001;
}
@media (max-width: 1024px) {
  .header .logo {
    width: 35%;
    height: 45px;
  }
}
@media (min-width: 1440px) {
  .header .logo {
    width: 20%;
    height: 55px;
    max-width: 200px;
  }
}
.header .logo .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .logo .overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 1025px) {
  .header .navbar {
    position: static;
    background: transparent;
    height: auto;
  }
}
@media (max-width: 1025px) {
  .header .navbar {
    position: fixed;
    left: 0;
    top: -100vh;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 1000;
    -webkit-transition: top 0.3s ease;
    -moz-transition: top 0.3s ease;
    -ms-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
    transition: top 0.3s ease;
    padding-top: 80px;
    overflow-y: auto;
  }
  .header .navbar.mobile-menu-open {
    top: 0;
  }
}
.header .navbar .nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    gap: 0;
    text-align: left;
    padding: 0 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu > li {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu > li {
    width: auto;
  }
}
.header .navbar .nav-menu .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu .nav-link {
    padding: 5px 0;
    font-size: 1rem;
  }
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .nav-link {
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.header .navbar .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #1e88e5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .nav-link::after {
    display: none;
  }
}
.header .navbar .nav-menu .nav-link:hover,
.header .navbar .nav-menu .nav-link.active {
  color: #1e88e5;
}
.header .navbar .nav-menu .nav-link:hover::after,
.header .navbar .nav-menu .nav-link.active::after {
  width: 100%;
}
.header .navbar .nav-menu .dropdown {
  position: relative;
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown {
    width: 100%;
  }
}
.header .navbar .nav-menu .dropdown .dropdown-toggle {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-toggle {
    padding: 5px 0;
    font-size: 1rem;
  }
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-toggle {
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.header .navbar .nav-menu .dropdown .dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-toggle::after {
    position: relative;
    left: 5px;
  }
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-toggle::after {
    font-size: 12px;
  }
}
.header .navbar .nav-menu .dropdown .dropdown-toggle.active::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header .navbar .nav-menu .dropdown .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #1e88e5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-toggle::before {
    display: none;
  }
}
.header .navbar .nav-menu .dropdown .dropdown-toggle:hover {
  color: #1e88e5;
}
.header .navbar .nav-menu .dropdown .dropdown-toggle:hover::before {
  width: 100%;
}
.header .navbar .nav-menu .dropdown .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-menu {
    position: static;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-left: 1rem;
    border-left: 2px solid rgba(30, 136, 229, 0.3);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .navbar .nav-menu .dropdown .dropdown-menu.dropdown-open {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-menu {
    position: absolute;
    top: 140%;
    left: -10px;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item {
    color: #ffffff;
    font-size: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item {
    color: #424242;
    font-size: 0.875rem;
  }
}
.header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(30, 136, 229, 0.1);
  color: #1e88e5;
  padding-left: 1.5rem;
}
@media (max-width: 1025px) {
  .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: rgba(30, 136, 229, 0.2);
  }
}
@media (min-width: 1025px) {
  .header .navbar .nav-menu .dropdown:hover .dropdown-toggle {
    color: #1e88e5;
  }
  .header .navbar .nav-menu .dropdown:hover .dropdown-toggle::before {
    width: 100%;
  }
  .header .navbar .nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.header .actions .theme-switcher {
  margin: 0 1rem;
}
.header .actions .theme-switcher .theme-toggle-btn {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 5px;
  transition: all 0.3s ease;
}
.header .actions .theme-switcher .theme-toggle-btn:hover {
  border-color: var(--color-primary);
}
.header .actions .theme-switcher .theme-toggle-btn svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  transition: color 0.3s ease;
}
.header .actions .theme-switcher .moon-icon {
  display: none;
}
.header .actions .theme-switcher .dark-mode .moon-icon {
  display: block;
}
.header .actions .theme-switcher .dark-mode .sun-icon {
  display: none;
}
.header .actions .btn-get-quotes {
  white-space: nowrap;
  z-index: 1001;
  visibility: visible;
}
@media (max-width: 1024px) {
  .header .actions .btn-get-quotes {
    visibility: hidden;
  }
}
.header .mobile-menu-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
@media (min-width: 1025px) {
  .header .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 1025px) {
  .header .mobile-menu-toggle {
    order: 3;
  }
}
.header .mobile-menu-toggle .hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 2px 0;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header .mobile-menu-toggle .hamburger-line:nth-child(1) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.header .mobile-menu-toggle .hamburger-line:nth-child(2) {
  opacity: 1;
}
.header .mobile-menu-toggle .hamburger-line:nth-child(3) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.header .mobile-menu-toggle.active .hamburger-line {
  background-color: #ffffff !important;
}
.header .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.header .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}
.header.header-transparent {
  background-color: transparent;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.header.header-scrolled {
  background-color: var(--color-surface);
  -webkit-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -moz-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.header.header-scrolled .mobile-menu-toggle .hamburger-line {
  background-color: var(--menu-icon-color);
}
@media (min-width: 1025px) {
  .header.header-scrolled .navbar .nav-menu .nav-link {
    color: var(--color-text-primary);
  }
}
@media (max-width: 1025px) {
  .header.header-scrolled .navbar .nav-menu .nav-link {
    color: #ffffff;
  }
}
.header.header-scrolled .navbar .nav-menu .nav-link:hover,
.header.header-scrolled .navbar .nav-menu .nav-link.active {
  color: #1e88e5;
}
@media (min-width: 1025px) {
  .header.header-scrolled .navbar .nav-menu .dropdown .dropdown-toggle {
    color: var(--color-text-primary);
  }
}
@media (max-width: 1025px) {
  .header.header-scrolled .navbar .nav-menu .dropdown .dropdown-toggle {
    color: #ffffff;
  }
}
.header.header-scrolled .navbar .nav-menu .dropdown .dropdown-toggle:hover {
  color: #1e88e5;
}

/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.article-showcase {
  padding: 3rem 0;
  background-color: var(--color-surface-scase);
}

.article-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(1, 1fr);
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .article-layout {
    display: block;
  }
  .article-layout > * {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }
  .article-layout > *:nth-child(1n) {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .article-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 1280px) and (-ms-high-contrast: active),
  (min-width: 1280px) and (-ms-high-contrast: none) {
  .article-layout {
    display: block;
  }
  .article-layout > * {
    display: inline-block;
    width: calc(33.3333333333% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }
  .article-layout > *:nth-child(3n) {
    margin-right: 0;
  }
}

.article-main {
  background-color: var(--color-surface);
  padding: 3rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: var(--box-shadow);
  -moz-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.article-header {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}

.article-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 576px) {
  .article-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}

.article-category {
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.article-category:hover {
  background-color: rgb(
    24.1458167331,
    122.5864541833,
    208.9541832669
  ) !important;
}

.article-date,
.article-read-time {
  font-size: 0.875rem;
  font-weight: 400;
}

.article-title {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .article-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .article-title {
    font-size: 3rem;
  }
}

.article-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.author-avatar:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.author-avatar .image {
  width: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: #9e9e9e;
  margin-bottom: 0;
}

.article-featured-image {
  margin: 3rem 0;
}
.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.article-featured-image img:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}

.image-caption {
  font-size: 0.875rem;
  font-style: italic;
  color: #9e9e9e;
  margin-top: 0.5rem;
}

.article-content {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}
.article-content .article-intro {
  font-size: 1.125rem;
  font-weight: 500;
  color: #424242;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.article-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 3rem 0 1rem 0;
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem 0;
}
.article-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.article-content .article-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.article-content .article-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
.article-content .article-list li::marker {
  color: #1e88e5;
}

.article-quote {
  background-color: rgb(243.75, 249.05, 253.7);
  border-left: 4px solid #1e88e5;
  padding: 1.5rem;
  margin: 3rem 0;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  color: #424242;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.article-quote:hover {
  background-color: rgb(232.5, 243.1, 252.4);
  border-left-color: rgb(24.1458167331, 122.5864541833, 208.9541832669);
}

.article-tags {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
}
.article-tags .tags-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.article-tags .tags-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.article-tags .tag {
  background-color: #e0e0e0;
  color: #424242;
  padding: 0.5rem 1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.article-tags .tag:hover {
  background-color: #1e88e5;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -moz-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
}
.article-tags .tag:active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.article-sidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.sidebar-widget {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.sidebar-widget .widget-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.popular-posts {
  background-color: var(--color-surface);
}
.popular-posts .popular-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.popular-posts .popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.popular-posts .popular-post:first-child {
  padding-top: 0;
}
.popular-posts .popular-post:hover {
  padding-left: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
}
@media (max-width: 1024px) {
  .popular-posts .popular-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}
.popular-posts .post-thumbnail {
  flex-shrink: 0;
}
.popular-posts .post-thumbnail img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.popular-posts .post-thumbnail img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .popular-posts .post-thumbnail img {
    width: 100%;
    height: 120px;
  }
}
@media (max-width: 1024px) {
  .popular-posts .post-thumbnail {
    width: 100%;
  }
}
.popular-posts .post-content {
  flex: 1;
}
.popular-posts .post-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.popular-posts .post-title a {
  color: var(--color-surface-mcase);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.popular-posts .post-title a:hover {
  color: #1e88e5;
}
.popular-posts .post-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.25rem;
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .popular-posts .post-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.newsletter p {
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.newsletter .newsletter-input {
  border: none;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsletter .newsletter-input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.newsletter .newsletter-input:hover {
  background-color: rgb(247.35, 247.35, 247.35);
}
.newsletter .newsletter-btn {
  border: none;
  cursor: pointer;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsletter .newsletter-btn:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -moz-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  background-color: rgb(242.25, 242.25, 242.25) !important;
}
.newsletter .newsletter-btn:active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.categories {
  background-color: var(--color-surface);
}
.categories .categories-list {
  list-style: none;
  padding: 0;
}
.categories .categories-list li {
  border-bottom: 1px solid #e0e0e0;
}
.categories .categories-list li:last-child {
  border-bottom: none;
}
.categories .categories-list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
}
.categories .categories-list li a:hover {
  color: #1e88e5;
  padding-left: 0.5rem;
  background-color: rgb(243.75, 249.05, 253.7);
}
.categories .categories-list li a .count {
  color: #9e9e9e;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.categories .categories-list li a:hover .count {
  color: rgb(21.4629482072, 108.9657370518, 185.7370517928);
}

.header .navbar {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .navbar:hover {
  -webkit-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  -moz-box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
  box-shadow: 0 0 20px rgba(116, 116, 116, 0.1);
}
.header .nav-link {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .nav-link:hover {
  color: #1e88e5;
}
.header .nav-link.active {
  color: #1e88e5;
  font-weight: 600;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 0.25rem;
}
.footer .footer-links li a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .footer-links li a:hover {
  color: #cccccc !important;
}
.footer .social-link {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .social-link:hover {
  color: #1e88e5 !important;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .article-main {
    padding: 1rem;
  }
  .article-title {
    font-size: 1.5rem !important;
  }
  .article-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}
@media (max-width: 576px) {
  .article-showcase {
    padding: 1rem 0;
  }
  .article-layout {
    gap: 1rem;
  }
  .popular-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .popular-post .post-thumbnail {
    width: 100%;
  }
  .popular-post .post-thumbnail img {
    width: 100%;
    height: 120px;
  }
}
/*
 * ITAgency - HTML Template
 * Main SCSS file
 */
.footer {
  background: transparent;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.footer .footer-main {
  position: relative;
  z-index: 1;
  padding: 6rem 0 1.5rem;
}
@media (max-width: 1024px) {
  .footer .footer-main {
    padding: 4rem 0 1rem;
  }
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .footer .footer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
}
.footer .footer-section {
  width: 100%;
  max-width: 300px;
}
.footer .footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
}
.footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #64b5f6;
}
.footer .footer-about .footer-logo {
  margin-bottom: 1rem;
}
.footer .footer-about .footer-logo .image {
  max-width: 150px;
  height: auto;
}
@media (max-width: 576px) {
  .footer .footer-about .footer-logo {
    text-align: center;
  }
}
.footer .footer-about .footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}
.footer .footer-about .footer-social {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.footer .footer-about .footer-social .social-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}
.footer .footer-about .footer-social .social-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer .footer-about .footer-social .social-links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
.footer .footer-about .footer-social .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(10px);
}
.footer .footer-about .footer-social .social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer .footer-about .footer-social .social-link:hover {
  background: rgba(100, 181, 246, 0.3);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
  -moz-box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
  box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
}
.footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-menu li {
  margin-bottom: 0.5rem;
}
.footer .footer-menu li:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .footer .footer-menu {
    padding-top: 10px;
    padding-left: 10px;
  }
}
.footer .footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.footer .footer-link:hover {
  color: #64b5f6;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}
.footer .footer-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.footer .footer-contact .footer-contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}
.footer .footer-contact .contact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.footer .footer-contact .contact-item:last-child {
  margin-bottom: 0;
}
.footer .footer-contact .contact-item .contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #64b5f6;
}
.footer .footer-contact .contact-item .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.footer .footer-contact .contact-item .contact-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.25rem;
}
.footer .footer-contact .contact-item .contact-text .contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64b5f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .footer-contact .contact-item .contact-text .contact-value {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.footer .footer-newsletter .newsletter-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}
.footer .footer-newsletter .newsletter-form {
  margin-bottom: 1.5rem;
}
.footer .footer-newsletter .newsletter-input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 4px;
  backdrop-filter: blur(10px);
}
.footer .footer-newsletter .newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .footer-newsletter .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer .footer-newsletter .newsletter-input:focus {
  background: rgba(255, 255, 255, 0.05);
}
.footer .footer-newsletter .newsletter-btn {
  width: 40px;
  height: 40px;
  background: #64b5f6;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .footer-newsletter .newsletter-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer .footer-newsletter .newsletter-btn:hover {
  background: #1e88e5;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.footer .footer-newsletter .newsletter-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  line-height: 1.4;
}
.footer .footer-newsletter .newsletter-checkbox input {
  display: none;
}
.footer .footer-newsletter .newsletter-checkbox input:checked + .checkmark {
  background-color: #64b5f6;
  border-color: #64b5f6;
}
.footer
  .footer-newsletter
  .newsletter-checkbox
  input:checked
  + .checkmark::after {
  display: block;
}
.footer .footer-newsletter .newsletter-checkbox .checkmark {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer .footer-newsletter .newsletter-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer .footer-newsletter .newsletter-checkbox .checkbox-text {
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-newsletter .newsletter-checkbox .checkbox-text a {
  color: #64b5f6;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .footer-newsletter .newsletter-checkbox .checkbox-text a:hover {
  text-decoration: underline;
  color: #ffffff;
}
.footer .footer-newsletter .footer-copyright {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-newsletter .footer-copyright p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media (max-width: 576px) {
  .footer .footer-newsletter .footer-copyright p {
    font-size: 0.75rem;
    text-align: center;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: #1e88e5;
  color: #ffffff;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(20px) scale(0.8);
  -moz-transform: translateY(20px) scale(0.8);
  -ms-transform: translateY(20px) scale(0.8);
  -o-transform: translateY(20px) scale(0.8);
  transform: translateY(20px) scale(0.8);
  z-index: 500;
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}
.scroll-to-top:hover {
  background: #072066;
  -webkit-transform: translateY(-3px) scale(1.05);
  -moz-transform: translateY(-3px) scale(1.05);
  -ms-transform: translateY(-3px) scale(1.05);
  -o-transform: translateY(-3px) scale(1.05);
  transform: translateY(-3px) scale(1.05);
  -webkit-box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
  -moz-box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}
.scroll-to-top:hover svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) scale(1);
  -moz-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  -o-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
.scroll-to-top:active {
  -webkit-transform: translateY(-1px) scale(0.95);
  -moz-transform: translateY(-1px) scale(0.95);
  -ms-transform: translateY(-1px) scale(0.95);
  -o-transform: translateY(-1px) scale(0.95);
  transform: translateY(-1px) scale(0.95);
}
.scroll-to-top.scrolling {
  pointer-events: none;
  opacity: 0.7;
}
.scroll-to-top.scrolling svg {
  animation: scrolling-spin 0.8s linear infinite;
}
.scroll-to-top:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.3);
  -moz-box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.3);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.3);
}
@media (max-width: 1024px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
  .scroll-to-top svg {
    width: 16px;
    height: 16px;
  }
}

@keyframes scrolling-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top {
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .scroll-to-top.show {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .scroll-to-top:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  .scroll-to-top svg {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
  @keyframes scrolling-spin {
    0%,
    100% {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
    }
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.footer-section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.footer-section[data-aos] {
  animation: none;
}
