@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-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);
}

body.dark-mode {
    --color-background: #000;
    --color-surface: #000;
    --color-surface-scase: #000;
    --color-border: #30363d;
    --color-text-primary: rgba(255, 255, 255, 0.87);
    --color-text-secondary: rgba(255, 255, 255, 0.60);
    --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);
}


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

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: "Poppins", sans-serif !important;
}

.font-body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !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: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.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;
}

.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: 992px) {
    .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: 1200px) {
    .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: 1400px) {
    .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: 992px) {
    .d-lg-grid {
        display: -ms-grid;
        display: grid;
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .d-xl-grid {
        display: -ms-grid;
        display: grid;
        gap: 1rem;
    }
}

@media (min-width: 1400px) {
    .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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 1200px) and (-ms-high-contrast: active),
(min-width: 1200px) 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: 1200px) {
    .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: 992px) {
    .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: 1200px) {
    .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: 1400px) {
    .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: 992px) {
    .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: 1200px) {
    .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: 992px) {
    .btn {
        padding: 0.625rem 2.5rem;
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (min-width: 1200px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .btn.btn-lg {
        padding: 1.25rem 3.75rem;
        font-size: 1.125rem;
        border-radius: 60px;
    }
}

@media (min-width: 1200px) {
    .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: 992px) {
    .btn.btn-xl {
        padding: 1.375rem 4rem;
        font-size: 1.25rem;
        border-radius: 70px;
    }
}

@media (min-width: 1200px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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;
}

.btn-outline {
    background-color: #072066;
    color: #ffffff;
    border-color: #ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.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: #000;
    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: 992px) {
    .btn-icon,
    .btn-social {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
    }
}

@media (min-width: 1200px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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: auto;
    height: auto;
}


/*
 * ITAgency - HTML Template
 * Main SCSS file
 */

.header {
    position: sticky;
    top: 0px;
    width: 100%;
    padding: 1rem 0;
    z-index: 800;
}

.header .container {
    position: relative;
}

@media (max-width: 992px) {
    .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: 992px) {
    .header .logo {
        width: 18%;
        height: 50px;
    }
}

@media (min-width: 1200px) {
    .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: 992px) {
    .header .navbar {
        position: static;
        background: transparent;
        height: auto;
    }
}

@media (max-width: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .header .navbar .nav-menu>li {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .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: 992px) {
    .header .navbar .nav-menu .nav-link {
        padding: 5px 0;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .header .navbar .nav-menu .nav-link {
        padding: 1rem 0;
        font-size: 1.125rem;
        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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .header .navbar .nav-menu .dropdown .dropdown-toggle {
        padding: 5px 0;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .header .navbar .nav-menu .dropdown .dropdown-toggle {
        padding: 1rem 0;
        font-size: 1.125rem;
        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: 992px) {
    .header .navbar .nav-menu .dropdown .dropdown-toggle::after {
        position: relative;
        left: 5px;
    }
}

@media (max-width: 992px) {
    .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: 992px) {
    .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: 992px) {
    .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;
    }
}

@media (min-width: 992px) {
    .header .navbar .nav-menu .dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        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-transform: translateX(-50%) translateY(-10px);
        -moz-transform: translateX(-50%) translateY(-10px);
        -ms-transform: translateX(-50%) translateY(-10px);
        -o-transform: translateX(-50%) translateY(-10px);
        transform: translateX(-50%) translateY(-10px);
        -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;
    }
}

.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: 992px) {
    .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: 992px) {
    .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: 992px) {
    .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:hover {
        background-color: rgba(30, 136, 229, 0.2);
    }
}

@media (min-width: 992px) {
    .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: translateX(-50%) translateY(0);
        -moz-transform: translateX(-50%) translateY(0);
        -ms-transform: translateX(-50%) translateY(0);
        -o-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) 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: 992px) {
    .header .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 992px) {
    .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: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: #000;
}

@media (min-width: 992px) {
    .header.header-scrolled .navbar .nav-menu .nav-link {
        color: var(--color-text-primary);
    }
}

@media (max-width: 992px) {
    .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: 992px) {
    .header.header-scrolled .navbar .nav-menu .dropdown .dropdown-toggle {
        color: var(--color-text-primary);
    }
}

@media (max-width: 992px) {
    .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: 992px) {
    .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: 992px) and (-ms-high-contrast: active),
(min-width: 992px) 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: 992px) {
    .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 {
    background-color: rgb(249.9, 249.9, 249.9);
    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: 992px) {
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

.footer .footer-section {
    width: 100%;
}

.footer .footer-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(139 139 139 / 90%);
    position: relative;
}

.footer .footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #64b5f6;
}

@media (max-width: 1024px) {
    .footer .footer-title::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.footer .footer-about .footer-logo {
    margin-bottom: 1rem;
}

.footer .footer-about .footer-logo .image {
    max-width: 150px;
    height: auto;
}

.footer .footer-about .footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgb(139 139 139 / 90%);
}

.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;
}

.footer .footer-link {
    color: rgb(139 139 139 / 90%);
    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-disclaimer {
    color: rgb(139 139 139 / 90%);
}

.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: rgb(139 139 139 / 90%);
    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;
    }
}

.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;
}


/*
 * ITAgency - HTML Template
 * Main SCSS file
 */

body {
    background-image: url("../images/backgrounds/hand-ia-bgremove.png");
    background-color: var(--color-background);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
    overflow: hidden;
    overflow-y: auto;
}

.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.hero {
    position: relative;
    height: 92vh;
    z-index: 1;
    padding: 0;
}

@media (max-width: 1024px) {
    .hero {
        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;
    }
}

.hero .hero-content .hero-info .heading-hero {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .hero .hero-content .hero-info .heading-hero {
        font-size: 1.875rem;
    }
}

@media (min-width: 992px) {
    .hero .hero-content .hero-info .heading-hero {
        font-size: 2.25rem;
    }
}

.hero .hero-content .hero-info .typed {
    height: 40px;
}

.hero .hero-content .cta .social-links {
    max-width: 150px;
}

.hero .hero-content .cta .social-links .social-link svg {
    color: #1e88e5;
}

.main {
    background-color: var(--color-surface);
}

.main .main-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 8rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .main .main-content {
        display: block;
    }
    .main .main-content>* {
        display: inline-block;
        width: calc(100% - 8rem);
        margin-right: 8rem;
        vertical-align: top;
    }
    .main .main-content>*:nth-child(1n) {
        margin-right: 0;
    }
}

.main .main-content .services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-self: center;
}

@media (max-width: 1024px) {
    .main .main-content .services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .main .main-content .services .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.main .main-content .services .services-grid .service-card {
    width: 100%;
    height: 292px;
    background-color: var(--color-surface);
    padding: 1.5rem;
    gap: 1rem;
    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;
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -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);
}

.main .main-content .services .services-grid .service-card:hover {
    -webkit-transform: scale(1.02) translateY(-5px);
    -moz-transform: scale(1.02) translateY(-5px);
    -ms-transform: scale(1.02) translateY(-5px);
    -o-transform: scale(1.02) translateY(-5px);
    transform: scale(1.02) translateY(-5px);
    -webkit-box-shadow: var(--box-shadow-hover);
    -moz-box-shadow: var(--box-shadow-hover);
    box-shadow: var(--box-shadow-hover);
    -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);
}

.main .main-content .services .services-grid .service-card[data-aos] {
    will-change: transform, opacity;
}

.main .main-content .services .services-grid .service-card[data-aos]:hover {
    -webkit-transform: scale(1.02) translateY(-5px);
    -moz-transform: scale(1.02) translateY(-5px);
    -ms-transform: scale(1.02) translateY(-5px);
    -o-transform: scale(1.02) translateY(-5px);
    transform: scale(1.02) translateY(-5px);
}

.main .main-content .services .services-grid .service-card[data-aos].aos-animate:hover {
    -webkit-transform: scale(1.02) translateY(-5px);
    -moz-transform: scale(1.02) translateY(-5px);
    -ms-transform: scale(1.02) translateY(-5px);
    -o-transform: scale(1.02) translateY(-5px);
    transform: scale(1.02) translateY(-5px);
}

.main .main-content .services .services-grid .service-card .service-icon {
    color: #072066;
}

.main .main-content .services .services-grid .service-card .service-icon svg {
    width: 100px;
    height: 100px;
}

.main .main-content .services .services-grid .service-card .service-description {
    text-align: center;
}

.main .main-content .process .circular-processes {
    position: relative;
    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) {
    .main .main-content .process .circular-processes {
        height: 850px;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes {
        height: auto;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
}

.main .main-content .process .circular-processes .central-image {
    width: 300px;
    height: 300px;
    margin-top: 25px;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .central-image {
        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%);
        z-index: 1;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .central-image {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        width: 200px;
        height: 200px;
        order: 2;
        margin: 1rem auto !important;
        display: block;
    }
}

.main .main-content .process .circular-processes .central-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .main-content .process .circular-processes .central-image:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .central-image:hover {
        -webkit-transform: translate(-50%, -50%) scale(1.02) translateY(-5px);
        -moz-transform: translate(-50%, -50%) scale(1.02) translateY(-5px);
        -ms-transform: translate(-50%, -50%) scale(1.02) translateY(-5px);
        -o-transform: translate(-50%, -50%) scale(1.02) translateY(-5px);
        transform: translate(-50%, -50%) scale(1.02) translateY(-5px);
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .central-image: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 (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info {
        position: absolute;
    }
    .main .main-content .process .circular-processes .process-info.top {
        top: 0px;
    }
    .main .main-content .process .circular-processes .process-info.rigth {
        right: 0px;
    }
    .main .main-content .process .circular-processes .process-info.left {
        left: 0px;
    }
    .main .main-content .process .circular-processes .process-info.bottom {
        bottom: 0px;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .process-info {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 1rem auto;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.05);
        -webkit-border-radius: 1rem;
        -moz-border-radius: 1rem;
        border-radius: 1rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(30, 136, 229, 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;
        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;
    }
    .main .main-content .process .circular-processes .process-info.top {
        order: 1;
    }
    .main .main-content .process .circular-processes .process-info.rigth {
        order: 2;
    }
    .main .main-content .process .circular-processes .process-info.bottom {
        order: 4;
    }
    .main .main-content .process .circular-processes .process-info.left {
        order: 3;
    }
    .main .main-content .process .circular-processes .process-info:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(30, 136, 229, 0.3);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.main .main-content .process .circular-processes .process-info .process-icon {
    position: relative;
    color: #072066;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-icon svg {
        width: 8rem;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-icon svg {
        width: 3rem;
    }
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-icon {
        top: 0px;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-icon {
        flex-shrink: 0;
    }
}

.main .main-content .process .circular-processes .process-info .process-text {
    position: relative;
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-text {
        top: 10px;
        left: 10px;
        max-width: 220px;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-text {
        flex: 1;
        top: 0;
        left: 0;
        max-width: none;
    }
}

.main .main-content .process .circular-processes .process-info .process-text .text {
    color: #072066;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-text .text {
        font-size: 1.5rem;
        max-width: 220px;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-text .text {
        font-size: 1rem;
    }
}

.main .main-content .process .circular-processes .process-info .process-text p {
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-text p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .process-info .process-text p {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .main .main-content .process .circular-processes .process-info:hover .process-icon {
        top: -20px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
}

@media (max-width: 1024px) {
    .main .main-content .process .circular-processes .central-image {
        order: 2;
    }
}

.main .main-content .portfolio .portfolio-filters-container {
    margin-bottom: 3rem;
}

.main .main-content .portfolio .portfolio-filters {
    list-style: none;
    margin: 0;
    padding: 0;
    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;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .main .main-content .portfolio .portfolio-filters {
        gap: 0.25rem;
    }
}

.main .main-content .portfolio .portfolio-filters .filter-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--color-text-secondary);
    border: 2px solid #e0e0e0;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    -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);
    white-space: nowrap;
}

@media (max-width: 576px) {
    .main .main-content .portfolio .portfolio-filters .filter-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

.main .main-content .portfolio .portfolio-filters .filter-btn:hover {
    color: #1e88e5;
    border-color: #1e88e5;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.main .main-content .portfolio .portfolio-filters .filter-btn.active {
    background-color: #1e88e5;
    color: #ffffff;
    border-color: #1e88e5;
    -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);
}

.main .main-content .portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1200px) {
    .main .main-content .portfolio .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .main .main-content .portfolio .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main .main-content .portfolio .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.main .main-content .portfolio .portfolio-grid .portfolio-item {
    width: 100%;
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main .main-content .portfolio .portfolio-grid .portfolio-item.isotope-item {
    z-index: 2;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item[data-aos] {
    will-change: transform, opacity;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item[data-aos]:hover .portfolio-card {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.main .main-content .portfolio .portfolio-grid .portfolio-item[data-aos].aos-animate:hover .portfolio-card {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card {
    background-color: var(--color-surface);
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -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.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);
    overflow: hidden;
    height: 100%;
    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-justify-content: stretch;
    -moz-justify-content: stretch;
    -ms-justify-content: stretch;
    justify-content: stretch;
    -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;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
    -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);
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card:hover .portfolio-image .image {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card .portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    -webkit-border-radius: 1rem 1rem 0 0;
    -moz-border-radius: 1rem 1rem 0 0;
    border-radius: 1rem 1rem 0 0;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card .portfolio-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card .portfolio-info {
    padding: 1.5rem;
    flex-grow: 1;
    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;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card .portfolio-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.main .main-content .portfolio .portfolio-grid .portfolio-item .portfolio-card .portfolio-info .portfolio-category {
    font-size: 0.875rem;
    color: #1e88e5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main .main-content .portfolio .portfolio-empty {
    text-align: center;
    padding: 6rem 1.5rem;
    color: #9e9e9e;
}

.main .main-content .portfolio .portfolio-empty h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.main .main-content .portfolio .portfolio-empty p {
    font-size: 1rem;
}

.main .main-content .portfolio .portfolio-loading {
    text-align: center;
    padding: 4rem;
}

.main .main-content .portfolio .portfolio-loading::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #1e88e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.main .main-content .pricing-plants .options-plants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .main .main-content .pricing-plants .options-plants {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .main .main-content .pricing-plants .options-plants {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main .main-content .pricing-plants .options-plants {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.main .main-content .pricing-plants .options-plants .plants,
.main .main-content .pricing-plants .options-plants .most-popular {
    position: relative;
    display: grid;
    gap: 0.5rem;
    background-color: var(--color-surface);
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main .main-content .pricing-plants .options-plants .plants .tag-most-popular,
.main .main-content .pricing-plants .options-plants .most-popular .tag-most-popular {
    position: absolute;
    top: 0px;
    right: 1.5rem;
    color: #000;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    visibility: hidden;
}

.main .main-content .pricing-plants .options-plants .plants .plant-header h2,
.main .main-content .pricing-plants .options-plants .most-popular .plant-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.main .main-content .pricing-plants .options-plants .plants .price .price-main,
.main .main-content .pricing-plants .options-plants .most-popular .price .price-main {
    color: var(--color-text-primary);
    font-size: 2.2rem;
    font-weight: 600;
}

.main .main-content .pricing-plants .options-plants .plants .price .price-main .price-discount,
.main .main-content .pricing-plants .options-plants .most-popular .price .price-main .price-discount {
    color: #9e9e9e;
    text-decoration: line-through;
}

.main .main-content .pricing-plants .options-plants .plants .benefits,
.main .main-content .pricing-plants .options-plants .most-popular .benefits {
    padding-top: 10px;
}

.main .main-content .pricing-plants .options-plants .plants .benefits .line,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .line {
    border: 1px solid rgba(250, 247, 247, 0.1);
}

.main .main-content .pricing-plants .options-plants .plants .benefits .benefits-list,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .benefits-list {
    padding-top: 10px;
}

.main .main-content .pricing-plants .options-plants .plants .benefits .benefits-list .benefit-item,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .benefits-list .benefit-item {
    display: flex;
    align-items: center;
    justify-content: baseline;
    margin-bottom: 5px;
}

.main .main-content .pricing-plants .options-plants .plants .benefits .benefits-list .benefit-item .benefit-icon,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .benefits-list .benefit-item .benefit-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.main .main-content .pricing-plants .options-plants .plants .benefits .benefits-list .benefit-item .circle-x-svg,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .benefits-list .benefit-item .circle-x-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.main .main-content .pricing-plants .options-plants .plants .benefits .benefits-list .benefit-item .circle-x-svg svg,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .benefits-list .benefit-item .circle-x-svg svg {
    color: inherit;
}

.main .main-content .pricing-plants .options-plants .plants .benefits .benefits-list .benefit-item .text,
.main .main-content .pricing-plants .options-plants .most-popular .benefits .benefits-list .benefit-item .text {
    color: var(--color-text-muted);
}

.main .main-content .pricing-plants .options-plants .plants:hover,
.main .main-content .pricing-plants .options-plants .most-popular:hover {
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
}

.main .main-content .pricing-plants .options-plants .most-popular {
    background-color: #072066;
}

.main .main-content .pricing-plants .options-plants .most-popular .tag-most-popular {
    visibility: visible;
}

.main .main-content .pricing-plants .options-plants .most-popular .plant-header {
    color: #9e9e9e;
}

.main .main-content .pricing-plants .options-plants .most-popular .plant-header h2 {
    color: #ffffff;
}

.main .main-content .pricing-plants .options-plants .most-popular .price .price-main {
    color: #ffffff;
}

.main .main-content .pricing-plants .options-plants .most-popular .benefits-list .benefit-item .benefit-icon {
    color: #9e9e9e;
}

.main .main-content .pricing-plants .options-plants .most-popular .benefits-list .benefit-item .text {
    color: #ffffff !important;
}

.main .main-content .pricing-plants .options-plants .most-popular .benefits-list .benefit-item .circle-x-svg svg {
    color: #9e9e9e !important;
}

.main .main-content .testimonials {
    height: auto;
    min-height: 500px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .main .main-content .testimonials {
        min-height: auto;
    }
}

.main .main-content .testimonials .testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden !important;
    padding-bottom: 20px;
}

.main .main-content .testimonials .testimonials-carousel.universal-slider {
    display: flex !important;
    gap: 10px;
}

.main .main-content .testimonials .testimonials-carousel.universal-slider .comment {
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

@media (min-width: 993px) {
    .main .main-content .testimonials .testimonials-carousel.universal-slider .comment {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        width: 33.333% !important;
        margin: 0 10px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .main .main-content .testimonials .testimonials-carousel.universal-slider .comment {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .main .main-content .testimonials .testimonials-carousel.universal-slider .comment {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 10px;
    }
}

.main .main-content .testimonials .testimonials-carousel .slider-pagination {
    margin-top: 30px;
}

.main .main-content .testimonials .testimonials-carousel .slider-pagination .pagination-dot {
    background: #9e9e9e;
}

.main .main-content .testimonials .testimonials-carousel .slider-pagination .pagination-dot:hover {
    background: rgb(121.4342629482, 184.358565737, 239.5657370518);
}

.main .main-content .testimonials .testimonials-carousel .slider-pagination .pagination-dot.active {
    background: #1e88e5;
}

.main .main-content .testimonials .testimonials-grid {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .main .main-content .testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .main .main-content .testimonials .testimonials-grid {
        padding: 0 10px;
        gap: 15px;
    }
}

.main .main-content .testimonials .testimonials-grid .comment:hover {
    transform: translateY(-5px);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.main .main-content .testimonials .comment {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    width: 100%;
    height: 300px;
    padding: 1.5rem;
    border-radius: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
    .main .main-content .testimonials .comment {
        height: auto;
        min-height: 280px;
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment {
        padding: 0.5rem;
        min-height: 250px;
    }
}

.main .main-content .testimonials .comment .d-flex.flex-column {
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.main .main-content .testimonials .comment .quote-icon {
    width: 70px;
    height: 70px;
    color: #072066;
    transform: scaleX(-1) scaleY(-1);
    opacity: 0.8;
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment .quote-icon {
        width: 50px;
        height: 50px;
    }
}

.main .main-content .testimonials .comment .message .text {
    font-size: 1rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment .message .text {
        font-size: 0.875rem;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
}

.main .main-content .testimonials .comment .info-user {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
    gap: 15px;
    height: auto;
    min-height: 60px;
}

.main .main-content .testimonials .comment .info-user .image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment .info-user .image {
        width: 40px;
        height: 40px;
    }
}

.main .main-content .testimonials .comment .info-user .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .main-content .testimonials .comment .info-user .info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main .main-content .testimonials .comment .info-user .info .name {
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment .info-user .info .name {
        font-size: 0.875rem;
    }
}

.main .main-content .testimonials .comment .info-user .info .role {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment .info-user .info .role {
        font-size: 0.75rem;
    }
}

.main .main-content .testimonials .comment .info-user .info .rating {
    display: flex;
    gap: 1px;
}

.main .main-content .testimonials .comment .info-user .info .rating .star {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

@media (max-width: 575px) {
    .main .main-content .testimonials .comment .info-user .info .rating .star {
        width: 16px;
        height: 16px;
    }
}

.main .main-content .testimonials .testimonials-grid .comment {
    height: auto;
    min-height: 320px;
}

.main .main-content .testimonials .testimonials-grid .comment .d-flex.flex-column {
    align-items: flex-start;
}

.main .main-content .testimonials .testimonials-grid .comment .message .text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.6;
}

.main .main-content .testimonials .testimonials-grid .comment .info-user {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.main .main-content .client-companies .customers-carousel .slider-container {
    gap: 30px;
}

.main .main-content .client-companies .customers-carousel .client-company {
    height: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.main .main-content .client-companies .customers-carousel .client-company .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
}

.main .main-content .client-companies .customers-carousel .client-company:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.main .main-content .client-companies .customers-carousel .client-company:hover .image {
    filter: grayscale(0%);
}

.main .main-content .team {
    height: 600px;
}

@media (max-width: 1024px) {
    .main .main-content .team {
        height: auto;
    }
}

.main .main-content .team .team-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .main .main-content .team .team-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .main .main-content .team .team-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main .main-content .team .team-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.main .main-content .team .team-content .item-team {
    position: relative;
    background-color: var(--color-surface);
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 350px;
}

.main .main-content .team .team-content .item-team: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);
}

.main .main-content .team .team-content .item-team .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.main .main-content .team .team-content .item-team .social-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-surface);
    width: 100%;
    max-width: 200px;
    padding: 0.5rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
}

.main .main-content .team .team-content .item-team .social-info .info {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.main .main-content .team .team-content .item-team .social-info .info .name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    text-align: center;
}

.main .main-content .team .team-content .item-team .social-info .info .rol {
    font-size: 0.875rem;
    font-weight: 400;
    color: #1e88e5;
    text-align: center;
}

.main .main-content .team .team-content .item-team .social-info .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.main .main-content .team .team-content .item-team .social-info .social-links svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    -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;
}

.main .main-content .team .team-content .item-team .social-info .social-links svg:hover {
    color: #1e88e5;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.main .main-content .blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .main .main-content .blog .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .main .main-content .blog .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main .main-content .blog .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.main .main-content .blog .blog-grid .blog-card {
    position: relative;
    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-justify-content: stretch;
    -moz-justify-content: stretch;
    -ms-justify-content: stretch;
    justify-content: stretch;
    -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;
    height: 430px;
    background-color: var(--color-surface);
    -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);
    -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);
    overflow: hidden;
}

.main .main-content .blog .blog-grid .blog-card[data-aos] {
    will-change: transform, opacity;
}

.main .main-content .blog .blog-grid .blog-card[data-aos]:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.main .main-content .blog .blog-grid .blog-card[data-aos].aos-animate:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.main .main-content .blog .blog-grid .blog-card:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
    -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);
}

.main .main-content .blog .blog-grid .blog-card:hover .blog-image .image {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.main .main-content .blog .blog-grid .blog-card:hover .read-more {
    color: #64b5f6;
}

.main .main-content .blog .blog-grid .blog-card:hover .read-more svg {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

.main .main-content .blog .blog-grid .blog-card .blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.main .main-content .blog .blog-grid .blog-card .blog-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -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);
}

.main .main-content .blog .blog-grid .blog-card .blog-image .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.main .main-content .blog .blog-grid .blog-card .blog-image .blog-category .category-tag {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    -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;
}

.main .main-content .blog .blog-grid .blog-card .blog-content {
    padding: 1.5rem;
    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: 0.5rem;
    height: 100%;
    flex-grow: 1;
}

.main .main-content .blog .blog-grid .blog-card .blog-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;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.main .main-content .blog .blog-grid .blog-card .blog-meta .blog-date,
.main .main-content .blog .blog-grid .blog-card .blog-meta .blog-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: 0.25rem;
    color: #9e9e9e;
    font-size: 0.875rem;
}

.main .main-content .blog .blog-grid .blog-card .blog-meta .blog-date svg,
.main .main-content .blog .blog-grid .blog-card .blog-meta .blog-author svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 576px) {
    .main .main-content .blog .blog-grid .blog-card .blog-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;
    }
}

.main .main-content .blog .blog-grid .blog-card .blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 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;
}

.main .main-content .blog .blog-grid .blog-card .blog-title:hover {
    color: #1e88e5;
}

.main .main-content .blog .blog-grid .blog-card .blog-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.main .main-content .blog .blog-grid .blog-card .blog-footer {
    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;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.main .main-content .blog .blog-grid .blog-card .blog-footer .read-more {
    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.25rem;
    color: #1e88e5;
    font-weight: 500;
    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;
}

.main .main-content .blog .blog-grid .blog-card .blog-footer .read-more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    -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;
}

.main .main-content .blog .blog-grid .blog-card .blog-footer .read-more:hover {
    color: #64b5f6;
}

.main .main-content .blog .blog-grid .blog-card .blog-footer .blog-stats .reading-time {
    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.25rem;
    color: #9e9e9e;
    font-size: 0.75rem;
}

.main .main-content .blog .blog-grid .blog-card .blog-footer .blog-stats .reading-time svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

@media (max-width: 576px) {
    .main .main-content .blog .blog-grid .blog-card .blog-footer {
        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: 1024px) {
    .main .main-content .blog .blog-grid .blog-card .blog-image {
        height: 180px;
    }
    .main .main-content .blog .blog-grid .blog-card .blog-content {
        padding: 1rem;
    }
    .main .main-content .blog .blog-grid .blog-card .blog-title {
        font-size: 1rem;
    }
}

.main .main-content .contact-form .contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.main .main-content .contact-form .contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .main .main-content .contact-form .contact-form-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.main .main-content .contact-form .contact-info-card {
    background: linear-gradient(135deg, #072066 0%, #1e88e5 100%);
    color: #ffffff;
    padding: 1.5rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.main .main-content .contact-form .contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.main .main-content .contact-form .contact-info-card .contact-info-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.main .main-content .contact-form .contact-info-card .contact-info-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.main .main-content .contact-form .contact-info-card .contact-info-header p {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.main .main-content .contact-form .contact-info-card .contact-details {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-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;
    margin-bottom: 1rem;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-item:last-child {
    margin-bottom: 0;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-item .contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-item .contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-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;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-item .contact-text .label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main .main-content .contact-form .contact-info-card .contact-details .contact-detail-item .contact-text .value {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.main .main-content .contact-form .contact-info-card .contact-social {
    position: relative;
    z-index: 1;
}

.main .main-content .contact-form .contact-info-card .contact-social .social-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.main .main-content .contact-form .contact-info-card .contact-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;
}

.main .main-content .contact-form .contact-info-card .contact-social .social-links .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    -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;
    -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;
}

.main .main-content .contact-form .contact-info-card .contact-social .social-links .social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.main .main-content .contact-form .contact-info-card .contact-social .social-links .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.main .main-content .contact-form .contact-form-card {
    background-color: var(--color-surface);
    padding: 1.5rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: var(--box-shadow-lg);
    -moz-box-shadow: var(--box-shadow-lg);
    box-shadow: var(--box-shadow-lg);
}

.main .main-content .contact-form .contact-form-card .contact-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .main .main-content .contact-form .contact-form-card .contact-form-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group {
    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: 0.25rem;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group.form-group-full {
    grid-column: 1/-1;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #424242;
    margin: 0;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-input,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-select,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-textarea {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    -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;
    background: #ffffff;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-input:focus,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-select:focus,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-textarea:focus {
    outline: none;
    border-color: #1e88e5;
    -webkit-box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
    -moz-box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-input:invalid:not(:focus):not(:placeholder-shown),
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-select:invalid:not(:focus):not(:placeholder-shown),
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-input::placeholder,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-select::placeholder,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-textarea::placeholder {
    color: #9e9e9e;
    opacity: 0.7;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-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: 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;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.5;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkbox:checked+.form-checkmark {
    background-color: #1e88e5;
    border-color: #1e88e5;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkbox:checked+.form-checkmark::after {
    display: block;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    -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;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkbox-text {
    color: #424242;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkbox-text .form-link {
    color: #1e88e5;
    text-decoration: none;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-checkbox-container .form-checkbox-text .form-link:hover {
    text-decoration: underline;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-error {
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: -8px;
    display: none;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-group .form-error.show {
    display: block;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-actions {
    grid-column: 1/-1;
    margin-top: 0.25rem;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-actions .form-submit-btn {
    width: 100%;
    position: relative;
    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;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .main .main-content .contact-form .contact-form-card .contact-form-fields .form-actions .form-submit-btn {
        width: auto;
        min-width: 180px;
    }
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-actions .form-submit-btn .btn-loading {
    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;
    gap: 0.5rem;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-actions .form-submit-btn .btn-loading .loading-spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-actions .form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status {
    grid-column: 1/-1;
    margin-top: 0.5rem;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-success,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-error-general {
    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;
    padding: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-success svg,
.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-error-general svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-success svg {
    fill: #22c55e;
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-error-general {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.main .main-content .contact-form .contact-form-card .contact-form-fields .form-status .form-error-general svg {
    fill: #dc3545;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .main .main-content .contact-form .contact-info-card {
        padding: 1.5rem;
    }
    .main .main-content .contact-form .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .main .main-content .contact-form .contact-info-card {
        padding: 1rem;
    }
    .main .main-content .contact-form .contact-form-card {
        padding: 1rem;
    }
}

.counting-info {
    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;
    height: 500px;
}

@media (max-width: 992px) {
    .counting-info {
        padding: 100px 0;
    }
}

@media (max-width: 1024px) {
    .counting-info {
        height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .counting-info {
        padding: 60px 0;
    }
}

.counting-info .counting-content {
    max-width: 900px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .counting-info .counting-content {
        display: block;
    }
    .counting-info .counting-content>* {
        display: inline-block;
        width: calc(50% - 4rem);
        margin-right: 4rem;
        vertical-align: top;
    }
    .counting-info .counting-content>*:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .counting-info .counting-content {
        max-width: 600px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        text-align: center;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast: active),
(max-width: 1024px) and (-ms-high-contrast: none) {
    .counting-info .counting-content {
        display: block;
    }
    .counting-info .counting-content>* {
        display: inline-block;
        width: calc(100% - 1.5rem);
        margin-right: 1.5rem;
        vertical-align: top;
    }
    .counting-info .counting-content>*:nth-child(1n) {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .counting-info .counting-content .info {
        order: 1;
    }
    .counting-info .counting-content .box-counting {
        order: 2;
        justify-self: center;
    }
}

.counting-info .counting-content .info {
    max-width: 299px;
}

@media (max-width: 1024px) {
    .counting-info .counting-content .info {
        max-width: 80%;
        margin: 0 auto;
    }
}

.counting-info .counting-content .info .title,
.counting-info .counting-content .info .text {
    color: #ffffff;
}

.counting-info .counting-content .info .title {
    max-width: 250px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .counting-info .counting-content .info .title {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.counting-info .counting-content .info .title .subinfo {
    color: #1e88e5;
    font-weight: 600;
}

.counting-info .counting-content .info .text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.counting-info .counting-content .box-counting {
    align-self: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .counting-info .counting-content .box-counting {
        display: block;
    }
    .counting-info .counting-content .box-counting>* {
        display: inline-block;
        width: calc(33.3333333333% - 1rem);
        margin-right: 1rem;
        vertical-align: top;
    }
    .counting-info .counting-content .box-counting>*:nth-child(3n) {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .counting-info .counting-content .box-counting {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast: active),
(max-width: 1024px) and (-ms-high-contrast: none) {
    .counting-info .counting-content .box-counting {
        display: block;
    }
    .counting-info .counting-content .box-counting>* {
        display: inline-block;
        width: calc(50% - 1.5rem);
        margin-right: 1.5rem;
        vertical-align: top;
    }
    .counting-info .counting-content .box-counting>*:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .counting-info .counting-content .box-counting {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
    .counting-info .counting-content .box-counting {
        display: block;
    }
    .counting-info .counting-content .box-counting>* {
        display: inline-block;
        width: calc(100% - 1rem);
        margin-right: 1rem;
        vertical-align: top;
    }
    .counting-info .counting-content .box-counting>*:nth-child(1n) {
        margin-right: 0;
    }
}

.counting-info .counting-content .box-counting .counts {
    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;
    color: #ffffff;
    background-color: rgba(30, 136, 229, 0.2);
    width: 180px;
    height: 160px;
}

.counting-info .counting-content .box-counting .counts .number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.counting-info .counting-content .box-counting .counts .label {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.counting-info .counting-content .box-counting .counts svg {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.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: 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;
    background-color: transparent;
    position: relative;
    height: 500px;
}

.contact-info .contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info .contact-header {
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .contact-info .contact-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-info .contact-header {
        margin-bottom: 1rem;
    }
}

.contact-info .contact-header .contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .contact-info .contact-header .contact-title {
        font-size: 1.5rem;
    }
}

.contact-info .contact-header .contact-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .contact-info .contact-header .contact-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info .contact-header .contact-description {
        font-size: 0.875rem;
    }
}

.contact-info .contact-actions .contact-cta {
    margin-bottom: 0.5rem;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    -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);
}

@media (max-width: 1024px) {
    .contact-info .contact-actions .contact-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info .contact-actions .contact-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
    }
}

.contact-info .contact-actions .contact-cta: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 25px rgba(30, 136, 229, 0.3);
    -moz-box-shadow: 0 10px 25px rgba(30, 136, 229, 0.3);
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.3);
}


/*
 * ITAgency - HTML Template
 * Main SCSS file
 */

.terms-page .terms-header,
.terms-page .privacy-header,
.privacy-page .terms-header,
.privacy-page .privacy-header {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .terms-page .terms-header,
    .terms-page .privacy-header,
    .privacy-page .terms-header,
    .privacy-page .privacy-header {
        padding: 4rem 0 1.5rem;
    }
}

.terms-page .terms-header::before,
.terms-page .privacy-header::before,
.privacy-page .terms-header::before,
.privacy-page .privacy-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08) 1px, transparent 1px), radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    opacity: 0.3;
}

.terms-page .terms-header .heading-lg,
.terms-page .privacy-header .heading-lg,
.privacy-page .terms-header .heading-lg,
.privacy-page .privacy-header .heading-lg {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .terms-page .terms-header .heading-lg,
    .terms-page .privacy-header .heading-lg,
    .privacy-page .terms-header .heading-lg,
    .privacy-page .privacy-header .heading-lg {
        font-size: 1.875rem;
    }
}

@media (max-width: 576px) {
    .terms-page .terms-header .heading-lg,
    .terms-page .privacy-header .heading-lg,
    .privacy-page .terms-header .heading-lg,
    .privacy-page .privacy-header .heading-lg {
        font-size: 1.5rem;
    }
}

.terms-page .terms-header .subtitle,
.terms-page .privacy-header .subtitle,
.privacy-page .terms-header .subtitle,
.privacy-page .privacy-header .subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 1rem;
}

@media (max-width: 1024px) {
    .terms-page .terms-header .subtitle,
    .terms-page .privacy-header .subtitle,
    .privacy-page .terms-header .subtitle,
    .privacy-page .privacy-header .subtitle {
        font-size: 1rem;
    }
}

.terms-page .terms-header .last-updated,
.terms-page .privacy-header .last-updated,
.privacy-page .terms-header .last-updated,
.privacy-page .privacy-header .last-updated {
    font-size: 0.875rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.terms-page .terms-content .terms-sidebar,
.terms-page .terms-content .privacy-sidebar,
.terms-page .privacy-content .terms-sidebar,
.terms-page .privacy-content .privacy-sidebar,
.privacy-page .terms-content .terms-sidebar,
.privacy-page .terms-content .privacy-sidebar,
.privacy-page .privacy-content .terms-sidebar,
.privacy-page .privacy-content .privacy-sidebar {
    width: 280px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .terms-page .terms-content .terms-sidebar,
    .terms-page .terms-content .privacy-sidebar,
    .terms-page .privacy-content .terms-sidebar,
    .terms-page .privacy-content .privacy-sidebar,
    .privacy-page .terms-content .terms-sidebar,
    .privacy-page .terms-content .privacy-sidebar,
    .privacy-page .privacy-content .terms-sidebar,
    .privacy-page .privacy-content .privacy-sidebar {
        display: none;
    }
}

.terms-page .terms-content .terms-sidebar .sidebar-sticky,
.terms-page .terms-content .privacy-sidebar .sidebar-sticky,
.terms-page .privacy-content .terms-sidebar .sidebar-sticky,
.terms-page .privacy-content .privacy-sidebar .sidebar-sticky,
.privacy-page .terms-content .terms-sidebar .sidebar-sticky,
.privacy-page .terms-content .privacy-sidebar .sidebar-sticky,
.privacy-page .privacy-content .terms-sidebar .sidebar-sticky,
.privacy-page .privacy-content .privacy-sidebar .sidebar-sticky {
    position: sticky;
    top: 120px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    -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);
}

.terms-page .terms-content .terms-sidebar .sidebar-sticky h3,
.terms-page .terms-content .privacy-sidebar .sidebar-sticky h3,
.terms-page .privacy-content .terms-sidebar .sidebar-sticky h3,
.terms-page .privacy-content .privacy-sidebar .sidebar-sticky h3,
.privacy-page .terms-content .terms-sidebar .sidebar-sticky h3,
.privacy-page .terms-content .privacy-sidebar .sidebar-sticky h3,
.privacy-page .privacy-content .terms-sidebar .sidebar-sticky h3,
.privacy-page .privacy-content .privacy-sidebar .sidebar-sticky h3 {
    color: #000;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1e88e5;
    padding-bottom: 0.5rem;
}

.terms-page .terms-content .terms-sidebar .sidebar-menu,
.terms-page .terms-content .privacy-sidebar .sidebar-menu,
.terms-page .privacy-content .terms-sidebar .sidebar-menu,
.terms-page .privacy-content .privacy-sidebar .sidebar-menu,
.privacy-page .terms-content .terms-sidebar .sidebar-menu,
.privacy-page .terms-content .privacy-sidebar .sidebar-menu,
.privacy-page .privacy-content .terms-sidebar .sidebar-menu,
.privacy-page .privacy-content .privacy-sidebar .sidebar-menu {
    list-style: none;
}

.terms-page .terms-content .terms-sidebar .sidebar-menu li,
.terms-page .terms-content .privacy-sidebar .sidebar-menu li,
.terms-page .privacy-content .terms-sidebar .sidebar-menu li,
.terms-page .privacy-content .privacy-sidebar .sidebar-menu li,
.privacy-page .terms-content .terms-sidebar .sidebar-menu li,
.privacy-page .terms-content .privacy-sidebar .sidebar-menu li,
.privacy-page .privacy-content .terms-sidebar .sidebar-menu li,
.privacy-page .privacy-content .privacy-sidebar .sidebar-menu li {
    margin-bottom: 0.25rem;
}

.terms-page .terms-content .terms-sidebar .sidebar-menu li:last-child,
.terms-page .terms-content .privacy-sidebar .sidebar-menu li:last-child,
.terms-page .privacy-content .terms-sidebar .sidebar-menu li:last-child,
.terms-page .privacy-content .privacy-sidebar .sidebar-menu li:last-child,
.privacy-page .terms-content .terms-sidebar .sidebar-menu li:last-child,
.privacy-page .terms-content .privacy-sidebar .sidebar-menu li:last-child,
.privacy-page .privacy-content .terms-sidebar .sidebar-menu li:last-child,
.privacy-page .privacy-content .privacy-sidebar .sidebar-menu li:last-child {
    margin-bottom: 0;
}

.terms-page .terms-content .terms-sidebar .sidebar-link,
.terms-page .terms-content .privacy-sidebar .sidebar-link,
.terms-page .privacy-content .terms-sidebar .sidebar-link,
.terms-page .privacy-content .privacy-sidebar .sidebar-link,
.privacy-page .terms-content .terms-sidebar .sidebar-link,
.privacy-page .terms-content .privacy-sidebar .sidebar-link,
.privacy-page .privacy-content .terms-sidebar .sidebar-link,
.privacy-page .privacy-content .privacy-sidebar .sidebar-link {
    display: block;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #424242;
    text-decoration: none;
    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;
}

.terms-page .terms-content .terms-sidebar .sidebar-link:hover,
.terms-page .terms-content .privacy-sidebar .sidebar-link:hover,
.terms-page .privacy-content .terms-sidebar .sidebar-link:hover,
.terms-page .privacy-content .privacy-sidebar .sidebar-link:hover,
.privacy-page .terms-content .terms-sidebar .sidebar-link:hover,
.privacy-page .terms-content .privacy-sidebar .sidebar-link:hover,
.privacy-page .privacy-content .terms-sidebar .sidebar-link:hover,
.privacy-page .privacy-content .privacy-sidebar .sidebar-link:hover {
    background-color: rgba(30, 136, 229, 0.1);
    color: #1e88e5;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

.terms-page .terms-content .terms-sidebar .sidebar-link.active,
.terms-page .terms-content .privacy-sidebar .sidebar-link.active,
.terms-page .privacy-content .terms-sidebar .sidebar-link.active,
.terms-page .privacy-content .privacy-sidebar .sidebar-link.active,
.privacy-page .terms-content .terms-sidebar .sidebar-link.active,
.privacy-page .terms-content .privacy-sidebar .sidebar-link.active,
.privacy-page .privacy-content .terms-sidebar .sidebar-link.active,
.privacy-page .privacy-content .privacy-sidebar .sidebar-link.active {
    background-color: #1e88e5;
    color: #ffffff;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

.terms-page .terms-content .terms-main,
.terms-page .terms-content .privacy-main,
.terms-page .privacy-content .terms-main,
.terms-page .privacy-content .privacy-main,
.privacy-page .terms-content .terms-main,
.privacy-page .terms-content .privacy-main,
.privacy-page .privacy-content .terms-main,
.privacy-page .privacy-content .privacy-main {
    flex: 1;
    max-width: 100%;
}

@media (min-width: 992px) {
    .terms-page .terms-content .terms-main,
    .terms-page .terms-content .privacy-main,
    .terms-page .privacy-content .terms-main,
    .terms-page .privacy-content .privacy-main,
    .privacy-page .terms-content .terms-main,
    .privacy-page .terms-content .privacy-main,
    .privacy-page .privacy-content .terms-main,
    .privacy-page .privacy-content .privacy-main {
        padding-left: 3rem;
    }
}

.terms-page .terms-content .term-section,
.terms-page .terms-content .privacy-section,
.terms-page .privacy-content .term-section,
.terms-page .privacy-content .privacy-section,
.privacy-page .terms-content .term-section,
.privacy-page .terms-content .privacy-section,
.privacy-page .privacy-content .term-section,
.privacy-page .privacy-content .privacy-section {
    margin-bottom: 6rem;
}

.terms-page .terms-content .term-section:last-child,
.terms-page .terms-content .privacy-section:last-child,
.terms-page .privacy-content .term-section:last-child,
.terms-page .privacy-content .privacy-section:last-child,
.privacy-page .terms-content .term-section:last-child,
.privacy-page .terms-content .privacy-section:last-child,
.privacy-page .privacy-content .term-section:last-child,
.privacy-page .privacy-content .privacy-section:last-child {
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .term-section,
    .terms-page .terms-content .privacy-section,
    .terms-page .privacy-content .term-section,
    .terms-page .privacy-content .privacy-section,
    .privacy-page .terms-content .term-section,
    .privacy-page .terms-content .privacy-section,
    .privacy-page .privacy-content .term-section,
    .privacy-page .privacy-content .privacy-section {
        margin-bottom: 4rem;
    }
}

.terms-page .terms-content .section-title,
.terms-page .privacy-content .section-title,
.privacy-page .terms-content .section-title,
.privacy-page .privacy-content .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #1e88e5;
    position: relative;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .section-title,
    .terms-page .privacy-content .section-title,
    .privacy-page .terms-content .section-title,
    .privacy-page .privacy-content .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.terms-page .terms-content .section-title::after,
.terms-page .privacy-content .section-title::after,
.privacy-page .terms-content .section-title::after,
.privacy-page .privacy-content .section-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #072066;
}

.terms-page .terms-content .subsection-title,
.terms-page .privacy-content .subsection-title,
.privacy-page .terms-content .subsection-title,
.privacy-page .privacy-content .subsection-title {
    font-size: 1.125rem;
    color: #072066;
    margin: 1.5rem 0 0.5rem;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .subsection-title,
    .terms-page .privacy-content .subsection-title,
    .privacy-page .terms-content .subsection-title,
    .privacy-page .privacy-content .subsection-title {
        font-size: 1rem;
        margin: 1rem 0 0.5rem;
    }
}

.terms-page .terms-content p,
.terms-page .privacy-content p,
.privacy-page .terms-content p,
.privacy-page .privacy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #424242;
}

@media (max-width: 1024px) {
    .terms-page .terms-content p,
    .terms-page .privacy-content p,
    .privacy-page .terms-content p,
    .privacy-page .privacy-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.terms-page .terms-content .terms-list,
.terms-page .terms-content .privacy-list,
.terms-page .privacy-content .terms-list,
.terms-page .privacy-content .privacy-list,
.privacy-page .terms-content .terms-list,
.privacy-page .terms-content .privacy-list,
.privacy-page .privacy-content .terms-list,
.privacy-page .privacy-content .privacy-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-page .terms-content .terms-list li,
.terms-page .terms-content .privacy-list li,
.terms-page .privacy-content .terms-list li,
.terms-page .privacy-content .privacy-list li,
.privacy-page .terms-content .terms-list li,
.privacy-page .terms-content .privacy-list li,
.privacy-page .privacy-content .terms-list li,
.privacy-page .privacy-content .privacy-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #424242;
    position: relative;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .terms-list li,
    .terms-page .terms-content .privacy-list li,
    .terms-page .privacy-content .terms-list li,
    .terms-page .privacy-content .privacy-list li,
    .privacy-page .terms-content .terms-list li,
    .privacy-page .terms-content .privacy-list li,
    .privacy-page .privacy-content .terms-list li,
    .privacy-page .privacy-content .privacy-list li {
        font-size: 0.875rem;
    }
}

.terms-page .terms-content .terms-list li::marker,
.terms-page .terms-content .privacy-list li::marker,
.terms-page .privacy-content .terms-list li::marker,
.terms-page .privacy-content .privacy-list li::marker,
.privacy-page .terms-content .terms-list li::marker,
.privacy-page .terms-content .privacy-list li::marker,
.privacy-page .privacy-content .terms-list li::marker,
.privacy-page .privacy-content .privacy-list li::marker {
    color: #1e88e5;
}

.terms-page .terms-content .terms-list li:last-child,
.terms-page .terms-content .privacy-list li:last-child,
.terms-page .privacy-content .terms-list li:last-child,
.terms-page .privacy-content .privacy-list li:last-child,
.privacy-page .terms-content .terms-list li:last-child,
.privacy-page .terms-content .privacy-list li:last-child,
.privacy-page .privacy-content .terms-list li:last-child,
.privacy-page .privacy-content .privacy-list li:last-child {
    margin-bottom: 0;
}

.terms-page .terms-content .terms-list li strong,
.terms-page .terms-content .privacy-list li strong,
.terms-page .privacy-content .terms-list li strong,
.terms-page .privacy-content .privacy-list li strong,
.privacy-page .terms-content .terms-list li strong,
.privacy-page .terms-content .privacy-list li strong,
.privacy-page .privacy-content .terms-list li strong,
.privacy-page .privacy-content .privacy-list li strong {
    color: #000;
    font-weight: 600;
}

.terms-page .terms-content .highlight-box,
.terms-page .terms-content .warning-box,
.terms-page .terms-content .info-box,
.terms-page .privacy-content .highlight-box,
.terms-page .privacy-content .warning-box,
.terms-page .privacy-content .info-box,
.privacy-page .terms-content .highlight-box,
.privacy-page .terms-content .warning-box,
.privacy-page .terms-content .info-box,
.privacy-page .privacy-content .highlight-box,
.privacy-page .privacy-content .warning-box,
.privacy-page .privacy-content .info-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 1rem;
    border-left: 4px solid;
    -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 (max-width: 1024px) {
    .terms-page .terms-content .highlight-box,
    .terms-page .terms-content .warning-box,
    .terms-page .terms-content .info-box,
    .terms-page .privacy-content .highlight-box,
    .terms-page .privacy-content .warning-box,
    .terms-page .privacy-content .info-box,
    .privacy-page .terms-content .highlight-box,
    .privacy-page .terms-content .warning-box,
    .privacy-page .terms-content .info-box,
    .privacy-page .privacy-content .highlight-box,
    .privacy-page .privacy-content .warning-box,
    .privacy-page .privacy-content .info-box {
        padding: 1rem;
        margin: 1rem 0;
    }
}

.terms-page .terms-content .highlight-box p,
.terms-page .terms-content .warning-box p,
.terms-page .terms-content .info-box p,
.terms-page .privacy-content .highlight-box p,
.terms-page .privacy-content .warning-box p,
.terms-page .privacy-content .info-box p,
.privacy-page .terms-content .highlight-box p,
.privacy-page .terms-content .warning-box p,
.privacy-page .terms-content .info-box p,
.privacy-page .privacy-content .highlight-box p,
.privacy-page .privacy-content .warning-box p,
.privacy-page .privacy-content .info-box p {
    margin-bottom: 0.5rem;
}

.terms-page .terms-content .highlight-box p:last-child,
.terms-page .terms-content .warning-box p:last-child,
.terms-page .terms-content .info-box p:last-child,
.terms-page .privacy-content .highlight-box p:last-child,
.terms-page .privacy-content .warning-box p:last-child,
.terms-page .privacy-content .info-box p:last-child,
.privacy-page .terms-content .highlight-box p:last-child,
.privacy-page .terms-content .warning-box p:last-child,
.privacy-page .terms-content .info-box p:last-child,
.privacy-page .privacy-content .highlight-box p:last-child,
.privacy-page .privacy-content .warning-box p:last-child,
.privacy-page .privacy-content .info-box p:last-child {
    margin-bottom: 0;
}

.terms-page .terms-content .highlight-box a,
.terms-page .terms-content .warning-box a,
.terms-page .terms-content .info-box a,
.terms-page .privacy-content .highlight-box a,
.terms-page .privacy-content .warning-box a,
.terms-page .privacy-content .info-box a,
.privacy-page .terms-content .highlight-box a,
.privacy-page .terms-content .warning-box a,
.privacy-page .terms-content .info-box a,
.privacy-page .privacy-content .highlight-box a,
.privacy-page .privacy-content .warning-box a,
.privacy-page .privacy-content .info-box a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
}

.terms-page .terms-content .highlight-box a:hover,
.terms-page .terms-content .warning-box a:hover,
.terms-page .terms-content .info-box a:hover,
.terms-page .privacy-content .highlight-box a:hover,
.terms-page .privacy-content .warning-box a:hover,
.terms-page .privacy-content .info-box a:hover,
.privacy-page .terms-content .highlight-box a:hover,
.privacy-page .terms-content .warning-box a:hover,
.privacy-page .terms-content .info-box a:hover,
.privacy-page .privacy-content .highlight-box a:hover,
.privacy-page .privacy-content .warning-box a:hover,
.privacy-page .privacy-content .info-box a:hover {
    text-decoration: underline;
}

.terms-page .terms-content .highlight-box,
.terms-page .privacy-content .highlight-box,
.privacy-page .terms-content .highlight-box,
.privacy-page .privacy-content .highlight-box {
    background-color: rgba(30, 136, 229, 0.05);
    border-left-color: #1e88e5;
}

.terms-page .terms-content .warning-box,
.terms-page .privacy-content .warning-box,
.privacy-page .terms-content .warning-box,
.privacy-page .privacy-content .warning-box {
    background-color: rgba(255, 193, 7, 0.05);
    border-left-color: #ffc107;
}

.terms-page .terms-content .info-box,
.terms-page .privacy-content .info-box,
.privacy-page .terms-content .info-box,
.privacy-page .privacy-content .info-box {
    background-color: rgba(23, 162, 184, 0.05);
    border-left-color: #17a2b8;
}

.terms-page .terms-content .contact-info,
.terms-page .privacy-content .contact-info,
.privacy-page .terms-content .contact-info,
.privacy-page .privacy-content .contact-info {
    background-color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .contact-info,
    .terms-page .privacy-content .contact-info,
    .privacy-page .terms-content .contact-info,
    .privacy-page .privacy-content .contact-info {
        padding: 1rem;
    }
}

.terms-page .terms-content .contact-info .contact-item,
.terms-page .privacy-content .contact-info .contact-item,
.privacy-page .terms-content .contact-info .contact-item,
.privacy-page .privacy-content .contact-info .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;
    margin-bottom: 0.5rem;
}

.terms-page .terms-content .contact-info .contact-item:last-child,
.terms-page .privacy-content .contact-info .contact-item:last-child,
.privacy-page .terms-content .contact-info .contact-item:last-child,
.privacy-page .privacy-content .contact-info .contact-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .terms-page .terms-content .contact-info .contact-item,
    .terms-page .privacy-content .contact-info .contact-item,
    .privacy-page .terms-content .contact-info .contact-item,
    .privacy-page .privacy-content .contact-info .contact-item {
        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;
    }
}

.terms-page .terms-content .contact-info .contact-item span:first-child,
.terms-page .privacy-content .contact-info .contact-item span:first-child,
.privacy-page .terms-content .contact-info .contact-item span:first-child,
.privacy-page .privacy-content .contact-info .contact-item span:first-child {
    min-width: 140px;
    color: #000;
    font-weight: 500;
}

@media (max-width: 576px) {
    .terms-page .terms-content .contact-info .contact-item span:first-child,
    .terms-page .privacy-content .contact-info .contact-item span:first-child,
    .privacy-page .terms-content .contact-info .contact-item span:first-child,
    .privacy-page .privacy-content .contact-info .contact-item span:first-child {
        min-width: auto;
    }
}

.terms-page .terms-content .contact-info .contact-item a,
.terms-page .privacy-content .contact-info .contact-item a,
.privacy-page .terms-content .contact-info .contact-item a,
.privacy-page .privacy-content .contact-info .contact-item a {
    color: #1e88e5;
    text-decoration: none;
}

.terms-page .terms-content .contact-info .contact-item a:hover,
.terms-page .privacy-content .contact-info .contact-item a:hover,
.privacy-page .terms-content .contact-info .contact-item a:hover,
.privacy-page .privacy-content .contact-info .contact-item a:hover {
    text-decoration: underline;
}

.terms-page .terms-content .terms-footer,
.terms-page .terms-content .privacy-footer,
.terms-page .privacy-content .terms-footer,
.terms-page .privacy-content .privacy-footer,
.privacy-page .terms-content .terms-footer,
.privacy-page .terms-content .privacy-footer,
.privacy-page .privacy-content .terms-footer,
.privacy-page .privacy-content .privacy-footer {
    margin-top: 6rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .terms-footer,
    .terms-page .terms-content .privacy-footer,
    .terms-page .privacy-content .terms-footer,
    .terms-page .privacy-content .privacy-footer,
    .privacy-page .terms-content .terms-footer,
    .privacy-page .terms-content .privacy-footer,
    .privacy-page .privacy-content .terms-footer,
    .privacy-page .privacy-content .privacy-footer {
        margin-top: 4rem;
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .terms-page .terms-content .terms-footer .d-flex,
    .terms-page .terms-content .privacy-footer .d-flex,
    .terms-page .privacy-content .terms-footer .d-flex,
    .terms-page .privacy-content .privacy-footer .d-flex,
    .privacy-page .terms-content .terms-footer .d-flex,
    .privacy-page .terms-content .privacy-footer .d-flex,
    .privacy-page .privacy-content .terms-footer .d-flex,
    .privacy-page .privacy-content .privacy-footer .d-flex {
        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;
        text-align: center;
    }
}

.terms-page .terms-content .terms-footer .text-muted,
.terms-page .terms-content .privacy-footer .text-muted,
.terms-page .privacy-content .terms-footer .text-muted,
.terms-page .privacy-content .privacy-footer .text-muted,
.privacy-page .terms-content .terms-footer .text-muted,
.privacy-page .terms-content .privacy-footer .text-muted,
.privacy-page .privacy-content .terms-footer .text-muted,
.privacy-page .privacy-content .privacy-footer .text-muted {
    color: #9e9e9e;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .terms-page .terms-content .terms-footer .text-muted,
    .terms-page .terms-content .privacy-footer .text-muted,
    .terms-page .privacy-content .terms-footer .text-muted,
    .terms-page .privacy-content .privacy-footer .text-muted,
    .privacy-page .terms-content .terms-footer .text-muted,
    .privacy-page .terms-content .privacy-footer .text-muted,
    .privacy-page .privacy-content .terms-footer .text-muted,
    .privacy-page .privacy-content .privacy-footer .text-muted {
        font-size: 0.75rem;
    }
}

html {
    scroll-behavior: smooth;
}

.terms-sidebar .sidebar-link.active,
.privacy-sidebar .sidebar-link.active {
    background-color: #1e88e5;
    color: #ffffff;
}


/*
 * ITAgency - HTML Template
 * Main SCSS file
 */

.page-header {
    position: relative;
    min-height: 400px;
    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;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .page-header {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .page-header {
        min-height: 300px;
    }
}

.page-header .page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header .page-header-bg .digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@media (max-width: 1024px) {
    .page-header .page-header-bg .digital-grid {
        background-size: 40px 40px;
    }
}

@media (max-width: 576px) {
    .page-header .page-header-bg .digital-grid {
        background-size: 30px 30px;
    }
}

.page-header .page-header-bg .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-header .page-header-bg .particles-container .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 15s infinite ease-in-out;
}

.page-header .page-header-bg .particles-container .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.page-header .page-header-bg .particles-container .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 14s;
    width: 6px;
    height: 6px;
}

.page-header .page-header-bg .particles-container .particle:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.page-header .page-header-bg .particles-container .particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: -6s;
    animation-duration: 18s;
    width: 3px;
    height: 3px;
}

.page-header .page-header-bg .particles-container .particle:nth-child(5) {
    top: 30%;
    left: 60%;
    animation-delay: -8s;
    animation-duration: 13s;
    width: 5px;
    height: 5px;
}

.page-header .page-header-bg .particles-container .particle:nth-child(6) {
    top: 70%;
    left: 70%;
    animation-delay: -10s;
    animation-duration: 15s;
}

.page-header .page-header-bg .particles-container .particle:nth-child(7) {
    top: 10%;
    left: 40%;
    animation-delay: -12s;
    animation-duration: 17s;
    width: 7px;
    height: 7px;
}

.page-header .page-header-bg .particles-container .particle:nth-child(8) {
    top: 90%;
    left: 50%;
    animation-delay: -14s;
    animation-duration: 11s;
}

.page-header .page-header-bg .particles-container .particle:nth-child(9) {
    top: 50%;
    left: 15%;
    animation-delay: -16s;
    animation-duration: 19s;
    width: 8px;
    height: 8px;
}

.page-header .page-header-bg .particles-container .particle:nth-child(10) {
    top: 25%;
    left: 85%;
    animation-delay: -18s;
    animation-duration: 14s;
}

.page-header .page-header-bg .particles-container .particle:nth-child(11) {
    top: 75%;
    left: 5%;
    animation-delay: -20s;
    animation-duration: 16s;
    width: 6px;
    height: 6px;
}

.page-header .page-header-bg .particles-container .particle:nth-child(12) {
    top: 45%;
    left: 95%;
    animation-delay: -22s;
    animation-duration: 12s;
}

.page-header .page-header-bg .geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header .page-header-bg .geometric-overlay .geometric-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header .page-header-bg .geometric-overlay .geometric-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -50px;
    border-radius: 50%;
    animation: geometric-rotate 25s linear infinite;
}

.page-header .page-header-bg .geometric-overlay .geometric-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    animation: geometric-pulse 8s ease-in-out infinite;
}

.page-header .page-header-bg .geometric-overlay .geometric-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    border-radius: 50%;
    animation: geometric-float 12s ease-in-out infinite;
}

.page-header .page-header-bg .geometric-overlay .geometric-shape.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    animation: geometric-rotate 20s linear infinite reverse;
}

.page-header .page-header-content {
    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;
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

@media (max-width: 576px) {
    .page-header .page-header-content {
        padding: 0 0.5rem;
    }
}

.page-header .breadcrumb {
    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;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .page-header .breadcrumb {
        margin-bottom: 0.5rem;
    }
}

.page-header .breadcrumb .breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    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;
}

.page-header .breadcrumb .breadcrumb-link:hover {
    color: #ffffff;
}

.page-header .breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    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;
}

.page-header .breadcrumb .breadcrumb-separator svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.page-header .breadcrumb .breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.page-header .page-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 1024px) {
    .page-header .page-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 576px) {
    .page-header .page-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

.page-header .page-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 1024px) {
    .page-header .page-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header .page-description {
        font-size: 0.875rem;
    }
}

.page-header .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.page-header .floating-elements .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.page-header .floating-elements .floating-circle.floating-circle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation: floating-1 20s ease-in-out infinite;
}

.page-header .floating-elements .floating-circle.floating-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 8%;
    animation: floating-2 15s ease-in-out infinite;
}

.page-header .floating-elements .floating-circle.floating-circle-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 5%;
    animation: floating-3 18s ease-in-out infinite;
}

@keyframes particle-float {
    0%,
    100% {
        -webkit-transform: translateY(0px) translateX(0px);
        -moz-transform: translateY(0px) translateX(0px);
        -ms-transform: translateY(0px) translateX(0px);
        -o-transform: translateY(0px) translateX(0px);
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        -webkit-transform: translateY(-20px) translateX(10px);
        -moz-transform: translateY(-20px) translateX(10px);
        -ms-transform: translateY(-20px) translateX(10px);
        -o-transform: translateY(-20px) translateX(10px);
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        -webkit-transform: translateY(-10px) translateX(-15px);
        -moz-transform: translateY(-10px) translateX(-15px);
        -ms-transform: translateY(-10px) translateX(-15px);
        -o-transform: translateY(-10px) translateX(-15px);
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        -webkit-transform: translateY(-30px) translateX(5px);
        -moz-transform: translateY(-30px) translateX(5px);
        -ms-transform: translateY(-30px) translateX(5px);
        -o-transform: translateY(-30px) translateX(5px);
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

@keyframes grid-move {
    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);
    }
}

@keyframes geometric-rotate {
    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 geometric-pulse {
    0%,
    100% {
        -webkit-transform: rotate(45deg) scale(1);
        -moz-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
        -o-transform: rotate(45deg) scale(1);
        transform: rotate(45deg) scale(1);
        opacity: 0.1;
    }
    50% {
        -webkit-transform: rotate(45deg) scale(1.1);
        -moz-transform: rotate(45deg) scale(1.1);
        -ms-transform: rotate(45deg) scale(1.1);
        -o-transform: rotate(45deg) scale(1.1);
        transform: rotate(45deg) scale(1.1);
        opacity: 0.2;
    }
}

@keyframes geometric-float {
    0%,
    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes floating-1 {
    0%,
    100% {
        -webkit-transform: translateY(0px) translateX(0px);
        -moz-transform: translateY(0px) translateX(0px);
        -ms-transform: translateY(0px) translateX(0px);
        -o-transform: translateY(0px) translateX(0px);
        transform: translateY(0px) translateX(0px);
    }
    33% {
        -webkit-transform: translateY(-30px) translateX(20px);
        -moz-transform: translateY(-30px) translateX(20px);
        -ms-transform: translateY(-30px) translateX(20px);
        -o-transform: translateY(-30px) translateX(20px);
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        -webkit-transform: translateY(20px) translateX(-10px);
        -moz-transform: translateY(20px) translateX(-10px);
        -ms-transform: translateY(20px) translateX(-10px);
        -o-transform: translateY(20px) translateX(-10px);
        transform: translateY(20px) translateX(-10px);
    }
}

@keyframes floating-2 {
    0%,
    100% {
        -webkit-transform: translateY(0px) translateX(0px);
        -moz-transform: translateY(0px) translateX(0px);
        -ms-transform: translateY(0px) translateX(0px);
        -o-transform: translateY(0px) translateX(0px);
        transform: translateY(0px) translateX(0px);
    }
    50% {
        -webkit-transform: translateY(-25px) translateX(15px);
        -moz-transform: translateY(-25px) translateX(15px);
        -ms-transform: translateY(-25px) translateX(15px);
        -o-transform: translateY(-25px) translateX(15px);
        transform: translateY(-25px) translateX(15px);
    }
}

@keyframes floating-3 {
    0%,
    100% {
        -webkit-transform: translateY(0px) translateX(0px);
        -moz-transform: translateY(0px) translateX(0px);
        -ms-transform: translateY(0px) translateX(0px);
        -o-transform: translateY(0px) translateX(0px);
        transform: translateY(0px) translateX(0px);
    }
    25% {
        -webkit-transform: translateY(15px) translateX(-20px);
        -moz-transform: translateY(15px) translateX(-20px);
        -ms-transform: translateY(15px) translateX(-20px);
        -o-transform: translateY(15px) translateX(-20px);
        transform: translateY(15px) translateX(-20px);
    }
    75% {
        -webkit-transform: translateY(-20px) translateX(10px);
        -moz-transform: translateY(-20px) translateX(10px);
        -ms-transform: translateY(-20px) translateX(10px);
        -o-transform: translateY(-20px) translateX(10px);
        transform: translateY(-20px) translateX(10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-header .particle,
    .page-header .geometric-shape,
    .page-header .floating-circle,
    .page-header .digital-grid {
        animation: none;
    }
}


/*
 * ITAgency - HTML Template
 * Main SCSS file
 */

.button-group .inline {
    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;
}

.button-group h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 2px solid #1e88e5;
    padding-bottom: 0.25rem;
    display: inline-block;
}

.button-group .btn-group {
    margin-right: 0;
    margin-bottom: 0;
}

.button-group .cta-buttons {
    margin-right: 0;
    margin-bottom: 0;
}


/*
 * ITAgency - HTML Template
 * Main SCSS file
 */

.demo-h1 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.demo-h2 {
    font-family: "Poppins", sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-h5 {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-h6 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}


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


/* Cookie Consent Popup Styles */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #072066 0%, #1e88e5 100%);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-text p:last-child {
    margin-bottom: 0;
}

.cookie-text a {
    color: #64b5f6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-buttons .btn-primary {
    background: #ffffff;
    color: #072066;
}

.cookie-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* Responsive Design for Cookie Popup */

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-text h4 {
        font-size: 1rem;
    }
    .cookie-text p {
        font-size: 0.85rem;
    }
    .cookie-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}