@charset "UTF-8"; /* * MultiIT - HTML Template * Main SCSS file */ /* ---------- GLOBAL COLOR PALETTE ---------- */ /* ---------- MEAL-THEMED COLOR PALETTE ---------- */ /* ---------- DERIVED VARIABLES ---------- */ /* ---------- TYPOGRAPHY ---------- */ /* ---------- SHADOWS / BREAKPOINTS / SPACING ---------- */ /* ---------- RADII / TRANSITIONS / Z-INDEX / GRID ---------- */ /* ---------- CSS VARIABLES FOR THE APP ---------- */ :root { /* Global colors */ --color-primary: #A26A20; --color-primary-light: #C2A76E; --color-primary-dark: #1C1C1C; --color-primary-gradient:linear-gradient(135deg, #A26A20 0%, #C2A76E 100%); --color-secondary: #A67C52; --color-secondary-light: #F5E9D7; --color-secondary-dark: #4A5A3D; --color-accent: #C98A8A; /* Neutral colors */ --color-white: #ffffff; --color-gray: #e0e0e0; --color-dark-gray: #495057; --color-black: #212529; /* Breakfast theme */ --color-breakfast: #F5E9D7; --color-breakfast-light: #FFF6ED; --color-breakfast-dark: #A67C52; --color-breakfast-gradient:linear-gradient(135deg, #F5E9D7 0%, #C98A8A 100%); --color-breakfast-accent: #C98A8A; /* Lunch theme */ --color-lunch: #A5D88A; --color-lunch-light: #F0EAE2; --color-lunch-dark: #B85C38; --color-lunch-gradient: linear-gradient(135deg, #BCE5A4 0%, #A5D88A 100%); --color-lunch-accent: #4A5A3D; /* Dinner theme */ --color-dinner: #AAB7D3; --color-dinner-light: #3F3F3F; --color-dinner-dark: #5C1A1B; --color-dinner-gradient: linear-gradient(135deg, #7A8FD1 0%, #7A8FD1 100%); --color-dinner-accent: #C2A76E; /* Typography */ --font-family-sans: Urbanist, -apple-system, BlinkMacSystemFont, sans-serif; --font-family-heading: Space Grotesk, sans-serif; --font-family-mono: Fira Code, monospace; /* Shadows */ --box-shadow: 0 0 20px rgba(0, 0, 0, 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); /* Surfaces and borders */ --color-surface: #ffffff; --color-surface-alt: #212529; --color-border: #e0e0e0; /* Text */ --color-text-primary: #212529; --color-text-secondary: #495057; --color-text-muted: #6c757d; } /* * MultiIT - HTML Template * Main SCSS file */ /* * MultiIT - 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: "Urbanist", -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.6; color: #495057; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; } a { color: #A26A20; text-decoration: none; background-color: transparent; transition: all 0.3s ease-in-out; } a:hover { color: rgb(137.7, 90.1, 27.2); 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; } /* * MultiIT - HTML Template * Main SCSS file */ @font-face { font-family: "Lexend"; src: url("../fonts/Lexend/Lexend-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: "Lexend"; src: url("../fonts/Lexend/Lexend-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: "Lexend"; src: url("../fonts/Lexend/Lexend-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; } @font-face { font-family: "Lexend"; src: url("../fonts/Lexend/Lexend-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: "Lexend"; src: url("../fonts/Lexend/Lexend-Black.ttf") format("truetype"); font-weight: 900; font-style: normal; font-display: swap; } body { font-family: "Lexend", -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: "Lexend", 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: #A26A20; text-decoration: none; transition: all 0.3s ease-in-out; } a:hover { color: rgb(145.8, 95.4, 28.8); } .text-primary { color: #A26A20 !important; } .text-gradient { background: linear-gradient(135deg, #A26A20 0%, #C2A76E 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: #e0e0e0; margin-bottom: 1.5rem; } .font-heading { font-family: "Lexend", sans-serif !important; } .font-body { font-family: "Lexend", -apple-system, BlinkMacSystemFont, sans-serif !important; } .font-mono { font-family: "Lexend", 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; } /* * MultiIT - HTML Template * Main SCSS file */ .mt-0 { margin-top: 0 !important; } .mb-0 { margin-bottom: 0 !important; } .ml-0 { margin-left: 0 !important; } .mr-0 { margin-right: 0 !important; } .mx-0 { margin-left: 0 !important; margin-right: 0 !important; } .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; } .m-0 { margin: 0 !important; } .pt-0 { padding-top: 0 !important; } .pb-0 { padding-bottom: 0 !important; } .pl-0 { padding-left: 0 !important; } .pr-0 { padding-right: 0 !important; } .px-0 { padding-left: 0 !important; padding-right: 0 !important; } .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; } .p-0 { padding: 0 !important; } .mt-1 { margin-top: 0.25rem !important; } .mb-1 { margin-bottom: 0.25rem !important; } .ml-1 { margin-left: 0.25rem !important; } .mr-1 { margin-right: 0.25rem !important; } .mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } .my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; } .m-1 { margin: 0.25rem !important; } .pt-1 { padding-top: 0.25rem !important; } .pb-1 { padding-bottom: 0.25rem !important; } .pl-1 { padding-left: 0.25rem !important; } .pr-1 { padding-right: 0.25rem !important; } .px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; } .py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; } .p-1 { padding: 0.25rem !important; } .mt-2 { margin-top: 0.5rem !important; } .mb-2 { margin-bottom: 0.5rem !important; } .ml-2 { margin-left: 0.5rem !important; } .mr-2 { margin-right: 0.5rem !important; } .mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } .my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; } .m-2 { margin: 0.5rem !important; } .pt-2 { padding-top: 0.5rem !important; } .pb-2 { padding-bottom: 0.5rem !important; } .pl-2 { padding-left: 0.5rem !important; } .pr-2 { padding-right: 0.5rem !important; } .px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; } .py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; } .p-2 { padding: 0.5rem !important; } .mt-3 { margin-top: 1rem !important; } .mb-3 { margin-bottom: 1rem !important; } .ml-3 { margin-left: 1rem !important; } .mr-3 { margin-right: 1rem !important; } .mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; } .my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; } .m-3 { margin: 1rem !important; } .pt-3 { padding-top: 1rem !important; } .pb-3 { padding-bottom: 1rem !important; } .pl-3 { padding-left: 1rem !important; } .pr-3 { padding-right: 1rem !important; } .px-3 { padding-left: 1rem !important; padding-right: 1rem !important; } .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; } .p-3 { padding: 1rem !important; } .mt-4 { margin-top: 1.5rem !important; } .mb-4 { margin-bottom: 1.5rem !important; } .ml-4 { margin-left: 1.5rem !important; } .mr-4 { margin-right: 1.5rem !important; } .mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } .my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; } .m-4 { margin: 1.5rem !important; } .pt-4 { padding-top: 1.5rem !important; } .pb-4 { padding-bottom: 1.5rem !important; } .pl-4 { padding-left: 1.5rem !important; } .pr-4 { padding-right: 1.5rem !important; } .px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; } .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; } .p-4 { padding: 1.5rem !important; } .mt-5 { margin-top: 3rem !important; } .mb-5 { margin-bottom: 3rem !important; } .ml-5 { margin-left: 3rem !important; } .mr-5 { margin-right: 3rem !important; } .mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; } .my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; } .m-5 { margin: 3rem !important; } .pt-5 { padding-top: 3rem !important; } .pb-5 { padding-bottom: 3rem !important; } .pl-5 { padding-left: 3rem !important; } .pr-5 { padding-right: 3rem !important; } .px-5 { padding-left: 3rem !important; padding-right: 3rem !important; } .py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; } .p-5 { padding: 3rem !important; } .mt-6 { margin-top: 4rem !important; } .mb-6 { margin-bottom: 4rem !important; } .ml-6 { margin-left: 4rem !important; } .mr-6 { margin-right: 4rem !important; } .mx-6 { margin-left: 4rem !important; margin-right: 4rem !important; } .my-6 { margin-top: 4rem !important; margin-bottom: 4rem !important; } .m-6 { margin: 4rem !important; } .pt-6 { padding-top: 4rem !important; } .pb-6 { padding-bottom: 4rem !important; } .pl-6 { padding-left: 4rem !important; } .pr-6 { padding-right: 4rem !important; } .px-6 { padding-left: 4rem !important; padding-right: 4rem !important; } .py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; } .p-6 { padding: 4rem !important; } .mt-7 { margin-top: 5rem !important; } .mb-7 { margin-bottom: 5rem !important; } .ml-7 { margin-left: 5rem !important; } .mr-7 { margin-right: 5rem !important; } .mx-7 { margin-left: 5rem !important; margin-right: 5rem !important; } .my-7 { margin-top: 5rem !important; margin-bottom: 5rem !important; } .m-7 { margin: 5rem !important; } .pt-7 { padding-top: 5rem !important; } .pb-7 { padding-bottom: 5rem !important; } .pl-7 { padding-left: 5rem !important; } .pr-7 { padding-right: 5rem !important; } .px-7 { padding-left: 5rem !important; padding-right: 5rem !important; } .py-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; } .p-7 { padding: 5rem !important; } .mt-8 { margin-top: 6rem !important; } .mb-8 { margin-bottom: 6rem !important; } .ml-8 { margin-left: 6rem !important; } .mr-8 { margin-right: 6rem !important; } .mx-8 { margin-left: 6rem !important; margin-right: 6rem !important; } .my-8 { margin-top: 6rem !important; margin-bottom: 6rem !important; } .m-8 { margin: 6rem !important; } .pt-8 { padding-top: 6rem !important; } .pb-8 { padding-bottom: 6rem !important; } .pl-8 { padding-left: 6rem !important; } .pr-8 { padding-right: 6rem !important; } .px-8 { padding-left: 6rem !important; padding-right: 6rem !important; } .py-8 { padding-top: 6rem !important; padding-bottom: 6rem !important; } .p-8 { padding: 6rem !important; } .mt-9 { margin-top: 8rem !important; } .mb-9 { margin-bottom: 8rem !important; } .ml-9 { margin-left: 8rem !important; } .mr-9 { margin-right: 8rem !important; } .mx-9 { margin-left: 8rem !important; margin-right: 8rem !important; } .my-9 { margin-top: 8rem !important; margin-bottom: 8rem !important; } .m-9 { margin: 8rem !important; } .pt-9 { padding-top: 8rem !important; } .pb-9 { padding-bottom: 8rem !important; } .pl-9 { padding-left: 8rem !important; } .pr-9 { padding-right: 8rem !important; } .px-9 { padding-left: 8rem !important; padding-right: 8rem !important; } .py-9 { padding-top: 8rem !important; padding-bottom: 8rem !important; } .p-9 { padding: 8rem !important; } .mt-10 { margin-top: 10rem !important; } .mb-10 { margin-bottom: 10rem !important; } .ml-10 { margin-left: 10rem !important; } .mr-10 { margin-right: 10rem !important; } .mx-10 { margin-left: 10rem !important; margin-right: 10rem !important; } .my-10 { margin-top: 10rem !important; margin-bottom: 10rem !important; } .m-10 { margin: 10rem !important; } .pt-10 { padding-top: 10rem !important; } .pb-10 { padding-bottom: 10rem !important; } .pl-10 { padding-left: 10rem !important; } .pr-10 { padding-right: 10rem !important; } .px-10 { padding-left: 10rem !important; padding-right: 10rem !important; } .py-10 { padding-top: 10rem !important; padding-bottom: 10rem !important; } .p-10 { padding: 10rem !important; } .mt-11 { margin-top: 12rem !important; } .mb-11 { margin-bottom: 12rem !important; } .ml-11 { margin-left: 12rem !important; } .mr-11 { margin-right: 12rem !important; } .mx-11 { margin-left: 12rem !important; margin-right: 12rem !important; } .my-11 { margin-top: 12rem !important; margin-bottom: 12rem !important; } .m-11 { margin: 12rem !important; } .pt-11 { padding-top: 12rem !important; } .pb-11 { padding-bottom: 12rem !important; } .pl-11 { padding-left: 12rem !important; } .pr-11 { padding-right: 12rem !important; } .px-11 { padding-left: 12rem !important; padding-right: 12rem !important; } .py-11 { padding-top: 12rem !important; padding-bottom: 12rem !important; } .p-11 { padding: 12rem !important; } .mt-12 { margin-top: 15rem !important; } .mb-12 { margin-bottom: 15rem !important; } .ml-12 { margin-left: 15rem !important; } .mr-12 { margin-right: 15rem !important; } .mx-12 { margin-left: 15rem !important; margin-right: 15rem !important; } .my-12 { margin-top: 15rem !important; margin-bottom: 15rem !important; } .m-12 { margin: 15rem !important; } .pt-12 { padding-top: 15rem !important; } .pb-12 { padding-bottom: 15rem !important; } .pl-12 { padding-left: 15rem !important; } .pr-12 { padding-right: 15rem !important; } .px-12 { padding-left: 15rem !important; padding-right: 15rem !important; } .py-12 { padding-top: 15rem !important; padding-bottom: 15rem !important; } .p-12 { padding: 15rem !important; } .mt-13 { margin-top: 18rem !important; } .mb-13 { margin-bottom: 18rem !important; } .ml-13 { margin-left: 18rem !important; } .mr-13 { margin-right: 18rem !important; } .mx-13 { margin-left: 18rem !important; margin-right: 18rem !important; } .my-13 { margin-top: 18rem !important; margin-bottom: 18rem !important; } .m-13 { margin: 18rem !important; } .pt-13 { padding-top: 18rem !important; } .pb-13 { padding-bottom: 18rem !important; } .pl-13 { padding-left: 18rem !important; } .pr-13 { padding-right: 18rem !important; } .px-13 { padding-left: 18rem !important; padding-right: 18rem !important; } .py-13 { padding-top: 18rem !important; padding-bottom: 18rem !important; } .p-13 { padding: 18rem !important; } .mt-14 { margin-top: 20rem !important; } .mb-14 { margin-bottom: 20rem !important; } .ml-14 { margin-left: 20rem !important; } .mr-14 { margin-right: 20rem !important; } .mx-14 { margin-left: 20rem !important; margin-right: 20rem !important; } .my-14 { margin-top: 20rem !important; margin-bottom: 20rem !important; } .m-14 { margin: 20rem !important; } .pt-14 { padding-top: 20rem !important; } .pb-14 { padding-bottom: 20rem !important; } .pl-14 { padding-left: 20rem !important; } .pr-14 { padding-right: 20rem !important; } .px-14 { padding-left: 20rem !important; padding-right: 20rem !important; } .py-14 { padding-top: 20rem !important; padding-bottom: 20rem !important; } .p-14 { padding: 20rem !important; } .mt-15 { margin-top: 25rem !important; } .mb-15 { margin-bottom: 25rem !important; } .ml-15 { margin-left: 25rem !important; } .mr-15 { margin-right: 25rem !important; } .mx-15 { margin-left: 25rem !important; margin-right: 25rem !important; } .my-15 { margin-top: 25rem !important; margin-bottom: 25rem !important; } .m-15 { margin: 25rem !important; } .pt-15 { padding-top: 25rem !important; } .pb-15 { padding-bottom: 25rem !important; } .pl-15 { padding-left: 25rem !important; } .pr-15 { padding-right: 25rem !important; } .px-15 { padding-left: 25rem !important; padding-right: 25rem !important; } .py-15 { padding-top: 25rem !important; padding-bottom: 25rem !important; } .p-15 { padding: 25rem !important; } .mt-16 { margin-top: 30rem !important; } .mb-16 { margin-bottom: 30rem !important; } .ml-16 { margin-left: 30rem !important; } .mr-16 { margin-right: 30rem !important; } .mx-16 { margin-left: 30rem !important; margin-right: 30rem !important; } .my-16 { margin-top: 30rem !important; margin-bottom: 30rem !important; } .m-16 { margin: 30rem !important; } .pt-16 { padding-top: 30rem !important; } .pb-16 { padding-bottom: 30rem !important; } .pl-16 { padding-left: 30rem !important; } .pr-16 { padding-right: 30rem !important; } .px-16 { padding-left: 30rem !important; padding-right: 30rem !important; } .py-16 { padding-top: 30rem !important; padding-bottom: 30rem !important; } .p-16 { padding: 30rem !important; } .mt-17 { margin-top: 35rem !important; } .mb-17 { margin-bottom: 35rem !important; } .ml-17 { margin-left: 35rem !important; } .mr-17 { margin-right: 35rem !important; } .mx-17 { margin-left: 35rem !important; margin-right: 35rem !important; } .my-17 { margin-top: 35rem !important; margin-bottom: 35rem !important; } .m-17 { margin: 35rem !important; } .pt-17 { padding-top: 35rem !important; } .pb-17 { padding-bottom: 35rem !important; } .pl-17 { padding-left: 35rem !important; } .pr-17 { padding-right: 35rem !important; } .px-17 { padding-left: 35rem !important; padding-right: 35rem !important; } .py-17 { padding-top: 35rem !important; padding-bottom: 35rem !important; } .p-17 { padding: 35rem !important; } .mt-18 { margin-top: 40rem !important; } .mb-18 { margin-bottom: 40rem !important; } .ml-18 { margin-left: 40rem !important; } .mr-18 { margin-right: 40rem !important; } .mx-18 { margin-left: 40rem !important; margin-right: 40rem !important; } .my-18 { margin-top: 40rem !important; margin-bottom: 40rem !important; } .m-18 { margin: 40rem !important; } .pt-18 { padding-top: 40rem !important; } .pb-18 { padding-bottom: 40rem !important; } .pl-18 { padding-left: 40rem !important; } .pr-18 { padding-right: 40rem !important; } .px-18 { padding-left: 40rem !important; padding-right: 40rem !important; } .py-18 { padding-top: 40rem !important; padding-bottom: 40rem !important; } .p-18 { padding: 40rem !important; } .mt-19 { margin-top: 45rem !important; } .mb-19 { margin-bottom: 45rem !important; } .ml-19 { margin-left: 45rem !important; } .mr-19 { margin-right: 45rem !important; } .mx-19 { margin-left: 45rem !important; margin-right: 45rem !important; } .my-19 { margin-top: 45rem !important; margin-bottom: 45rem !important; } .m-19 { margin: 45rem !important; } .pt-19 { padding-top: 45rem !important; } .pb-19 { padding-bottom: 45rem !important; } .pl-19 { padding-left: 45rem !important; } .pr-19 { padding-right: 45rem !important; } .px-19 { padding-left: 45rem !important; padding-right: 45rem !important; } .py-19 { padding-top: 45rem !important; padding-bottom: 45rem !important; } .p-19 { padding: 45rem !important; } .mt-20 { margin-top: 50rem !important; } .mb-20 { margin-bottom: 50rem !important; } .ml-20 { margin-left: 50rem !important; } .mr-20 { margin-right: 50rem !important; } .mx-20 { margin-left: 50rem !important; margin-right: 50rem !important; } .my-20 { margin-top: 50rem !important; margin-bottom: 50rem !important; } .m-20 { margin: 50rem !important; } .pt-20 { padding-top: 50rem !important; } .pb-20 { padding-bottom: 50rem !important; } .pl-20 { padding-left: 50rem !important; } .pr-20 { padding-right: 50rem !important; } .px-20 { padding-left: 50rem !important; padding-right: 50rem !important; } .py-20 { padding-top: 50rem !important; padding-bottom: 50rem !important; } .p-20 { padding: 50rem !important; } .mx-auto { margin-left: auto !important; margin-right: auto !important; } .ml-auto { margin-left: auto !important; } .mr-auto { margin-right: auto !important; } .d-none { display: none !important; } .d-inline { display: inline !important; } .d-inline-block { display: inline-block !important; } .d-block { display: block !important; } .container { width: 100%; padding-right: 0.5rem; padding-left: 0.5rem; margin-right: auto; margin-left: auto; } @media (min-width: 1440px) { .container { max-width: 1296px; } } @media (max-width: 1024px) { .container { padding-right: 1.5rem; padding-left: 1.5rem; } } .container-fluid { width: 100%; padding-right: 1rem; padding-left: 1rem; margin-right: auto; margin-left: auto; } .position-relative { position: relative !important; } .position-absolute { position: absolute !important; } .position-fixed { position: fixed !important; } .position-sticky { position: sticky !important; } .top-0 { top: 0 !important; } .top-50 { top: 50% !important; } .bottom-0 { bottom: 0 !important; } .left-0 { left: 0 !important; } .left-50 { left: 50% !important; } .right-0 { right: 0 !important; } .top-0 { top: 0 !important; } .bottom-0 { bottom: 0 !important; } .left-0 { left: 0 !important; } .right-0 { right: 0 !important; } .top-1 { top: 0.25rem !important; } .bottom-1 { bottom: 0.25rem !important; } .left-1 { left: 0.25rem !important; } .right-1 { right: 0.25rem !important; } .top-2 { top: 0.5rem !important; } .bottom-2 { bottom: 0.5rem !important; } .left-2 { left: 0.5rem !important; } .right-2 { right: 0.5rem !important; } .top-3 { top: 1rem !important; } .bottom-3 { bottom: 1rem !important; } .left-3 { left: 1rem !important; } .right-3 { right: 1rem !important; } .top-4 { top: 1.5rem !important; } .bottom-4 { bottom: 1.5rem !important; } .left-4 { left: 1.5rem !important; } .right-4 { right: 1.5rem !important; } .top-5 { top: 3rem !important; } .bottom-5 { bottom: 3rem !important; } .left-5 { left: 3rem !important; } .right-5 { right: 3rem !important; } .top-6 { top: 4rem !important; } .bottom-6 { bottom: 4rem !important; } .left-6 { left: 4rem !important; } .right-6 { right: 4rem !important; } .top-7 { top: 5rem !important; } .bottom-7 { bottom: 5rem !important; } .left-7 { left: 5rem !important; } .right-7 { right: 5rem !important; } .top-8 { top: 6rem !important; } .bottom-8 { bottom: 6rem !important; } .left-8 { left: 6rem !important; } .right-8 { right: 6rem !important; } .top-9 { top: 8rem !important; } .bottom-9 { bottom: 8rem !important; } .left-9 { left: 8rem !important; } .right-9 { right: 8rem !important; } .top-10 { top: 10rem !important; } .bottom-10 { bottom: 10rem !important; } .left-10 { left: 10rem !important; } .right-10 { right: 10rem !important; } .top-11 { top: 12rem !important; } .bottom-11 { bottom: 12rem !important; } .left-11 { left: 12rem !important; } .right-11 { right: 12rem !important; } .top-12 { top: 15rem !important; } .bottom-12 { bottom: 15rem !important; } .left-12 { left: 15rem !important; } .right-12 { right: 15rem !important; } .top-13 { top: 18rem !important; } .bottom-13 { bottom: 18rem !important; } .left-13 { left: 18rem !important; } .right-13 { right: 18rem !important; } .top-14 { top: 20rem !important; } .bottom-14 { bottom: 20rem !important; } .left-14 { left: 20rem !important; } .right-14 { right: 20rem !important; } .top-15 { top: 25rem !important; } .bottom-15 { bottom: 25rem !important; } .left-15 { left: 25rem !important; } .right-15 { right: 25rem !important; } .top-16 { top: 30rem !important; } .bottom-16 { bottom: 30rem !important; } .left-16 { left: 30rem !important; } .right-16 { right: 30rem !important; } .top-17 { top: 35rem !important; } .bottom-17 { bottom: 35rem !important; } .left-17 { left: 35rem !important; } .right-17 { right: 35rem !important; } .top-18 { top: 40rem !important; } .bottom-18 { bottom: 40rem !important; } .left-18 { left: 40rem !important; } .right-18 { right: 40rem !important; } .top-19 { top: 45rem !important; } .bottom-19 { bottom: 45rem !important; } .left-19 { left: 45rem !important; } .right-19 { right: 45rem !important; } .top-20 { top: 50rem !important; } .bottom-20 { bottom: 50rem !important; } .left-20 { left: 50rem !important; } .right-20 { right: 50rem !important; } .translate-center { transform: translate(-50%, -50%) !important; } .translate-x-center { transform: translateX(-50%) !important; } .translate-y-center { transform: translateY(-50%) !important; } .overlay-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; text-decoration: none; background-color: transparent; } .text-truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; } .text-center { text-align: center !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-primary { color: #A26A20 !important; } .text-white { color: #ffffff !important; } .text-dark { color: #495057 !important; } .text-muted { color: #e0e0e0 !important; } .text-accent { color: var(--color-accent) !important; } .bg-primary { background-color: #A26A20 !important; } .bg-light { background-color: #f8f9fa !important; } .bg-white { background-color: #ffffff !important; } .bg-dark { background-color: #1C1C1C !important; } .bg-transparent { background-color: transparent !important; } .bg-gradient { background: linear-gradient(135deg, #A26A20 0%, #C2A76E 100%) !important; } .section { padding: 3rem 0; } .z-high { z-index: 1000 !important; } .z-medium { z-index: 800 !important; } .z-low { z-index: 1 !important; } @media (min-width: 0) { .d-xs-none { display: none !important; } .d-xs-block { display: block !important; } .d-xs-inline { display: inline !important; } .d-xs-inline-block { display: inline-block !important; } } @media (min-width: 576px) { .d-sm-none { display: none !important; } .d-sm-block { display: block !important; } .d-sm-inline { display: inline !important; } .d-sm-inline-block { display: inline-block !important; } } @media (min-width: 1024px) { .d-md-none { display: none !important; } .d-md-block { display: block !important; } .d-md-inline { display: inline !important; } .d-md-inline-block { display: inline-block !important; } } @media (min-width: 1025px) { .d-md-c-none { display: none !important; } .d-md-c-block { display: block !important; } .d-md-c-inline { display: inline !important; } .d-md-c-inline-block { display: inline-block !important; } } @media (min-width: 1280px) { .d-lg-none { display: none !important; } .d-lg-block { display: block !important; } .d-lg-inline { display: inline !important; } .d-lg-inline-block { display: inline-block !important; } } @media (min-width: 1440px) { .d-xl-none { display: none !important; } .d-xl-block { display: block !important; } .d-xl-inline { display: inline !important; } .d-xl-inline-block { display: inline-block !important; } } @media (min-width: 1600px) { .d-xxl-none { display: none !important; } .d-xxl-block { display: block !important; } .d-xxl-inline { display: inline !important; } .d-xxl-inline-block { display: inline-block !important; } } .shadow-sm { box-shadow: "0 1px 2px rgba(0, 0, 0, 0.05)" !important; } .shadow { box-shadow: "0 0 20px rgba(0, 0, 0, 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 #f8f9fa !important; } .border-top { border-top: 1px solid #f8f9fa !important; } .border-right { border-right: 1px solid #f8f9fa !important; } .border-bottom { border-bottom: 1px solid #f8f9fa !important; } .border-left { border-left: 1px solid #f8f9fa !important; } .border-0 { border: 0 !important; } .border-primary { border-color: #A26A20 !important; } .border-white { border-color: #ffffff !important; } .border-dark { border-color: #495057 !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); } .text-main { max-width: 800px; } /* Entrance animations */ @keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } /* Animaciones de salida suaves (como AOS) */ @keyframes slideOutUp { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-20px); } } @keyframes slideOutDown { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(20px); } } @keyframes slideOutLeft { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-20px); } } @keyframes slideOutRight { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(20px); } } .title-above { position: relative; max-width: 190px; margin: 0px auto; margin-bottom: 10px; } .title-above.left { margin-left: 0; } .title-above.right { margin-right: 0; } .title-above::after { content: ""; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background-color: #4A5A3D; } /* Clases para aplicar animaciones de salida */ .slide-exit-up { animation: slideOutUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; } .slide-exit-down { animation: slideOutDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; } .slide-exit-left { animation: slideOutLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; } .slide-exit-right { animation: slideOutRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; } .hero-main-bg { position: relative; width: 1296px; height: 70vh; min-height: 500px; 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; overflow: hidden; margin: 0px auto; margin-bottom: 3rem; } @media (max-width: 1296px) { .hero-main-bg { width: 100%; min-width: 300px; } } .hero-main-bg .hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: brightness(0.5); z-index: 1; } .hero-main-bg .hero-background .hero-image { width: 100%; height: 100%; object-fit: cover; } .hero-main-bg .container { position: relative; z-index: 2; } .hero-main-bg .hero-content { max-width: 800px; margin: 0 auto; } .hero-main-bg .hero-content .hero-title { font-size: 3.2rem; font-weight: 700; color: #ffffff; margin-bottom: 1.5rem; line-height: 1.1; font-family: "Space Grotesk", sans-serif; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); } @media (max-width: 1024px) { .hero-main-bg .hero-content .hero-title { font-size: 2.25rem; } } @media (max-width: 576px) { .hero-main-bg .hero-content .hero-title { font-size: 1.875rem; } } .hero-main-bg .hero-content .hero-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); line-height: 1.6; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); } @media (max-width: 1024px) { .hero-main-bg .hero-content .hero-subtitle { font-size: 1.125rem; } } .visually-hidden { opacity: 0; position: absolute; pointer-events: none; } /* * MultiIT - 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: #A26A20; } .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: #A26A20; } .primary-light svg { color: #C2A76E; } .primary-dark svg { color: #1C1C1C; } .secondary svg { color: #A67C52; } .secondary-light svg { color: #ffffff; } .secondary-dark svg { color: #4A5A3D; } .neutral-light svg { color: #f8f9fa; } .neutral-base svg { color: #e0e0e0; } .neutral-dark svg { color: #495057; } .neutral-darker svg { color: #212529; } .white svg { color: #ffffff; } .gray svg { color: #e0e0e0; } .black svg { color: #212529; } /* * MultiIT - HTML Template * Main SCSS file */ .d-grid { display: -ms-grid; display: grid; gap: 1rem; } @media (min-width: 0) { .d-xs-grid { display: -ms-grid; display: grid; gap: 1rem; } } @media (min-width: 576px) { .d-sm-grid { display: -ms-grid; display: grid; gap: 1rem; } } @media (min-width: 1024px) { .d-md-grid { display: -ms-grid; display: grid; gap: 1rem; } } @media (min-width: 1025px) { .d-md-c-grid { display: -ms-grid; display: grid; gap: 1rem; } } @media (min-width: 1280px) { .d-lg-grid { display: -ms-grid; display: grid; gap: 1rem; } } @media (min-width: 1440px) { .d-xl-grid { display: -ms-grid; display: grid; gap: 1rem; } } @media (min-width: 1600px) { .d-xxl-grid { display: -ms-grid; display: grid; gap: 1rem; } } .grid { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid { display: block; } .grid > * { display: inline-block; width: calc(100% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid > *:nth-child(1n) { margin-right: 0; } } .grid.gap-0 { gap: 0; } .grid.gap-x-0 { column-gap: 0; } .grid.gap-y-0 { row-gap: 0; } .grid.gap-1 { gap: 0.25rem; } .grid.gap-x-1 { column-gap: 0.25rem; } .grid.gap-y-1 { row-gap: 0.25rem; } .grid.gap-2 { gap: 0.5rem; } .grid.gap-x-2 { column-gap: 0.5rem; } .grid.gap-y-2 { row-gap: 0.5rem; } .grid.gap-3 { gap: 1rem; } .grid.gap-x-3 { column-gap: 1rem; } .grid.gap-y-3 { row-gap: 1rem; } .grid.gap-4 { gap: 1.5rem; } .grid.gap-x-4 { column-gap: 1.5rem; } .grid.gap-y-4 { row-gap: 1.5rem; } .grid.gap-5 { gap: 3rem; } .grid.gap-x-5 { column-gap: 3rem; } .grid.gap-y-5 { row-gap: 3rem; } .grid.gap-6 { gap: 4rem; } .grid.gap-x-6 { column-gap: 4rem; } .grid.gap-y-6 { row-gap: 4rem; } .grid.gap-7 { gap: 5rem; } .grid.gap-x-7 { column-gap: 5rem; } .grid.gap-y-7 { row-gap: 5rem; } .grid.gap-8 { gap: 6rem; } .grid.gap-x-8 { column-gap: 6rem; } .grid.gap-y-8 { row-gap: 6rem; } .grid.gap-9 { gap: 8rem; } .grid.gap-x-9 { column-gap: 8rem; } .grid.gap-y-9 { row-gap: 8rem; } .grid.gap-10 { gap: 10rem; } .grid.gap-x-10 { column-gap: 10rem; } .grid.gap-y-10 { row-gap: 10rem; } .grid.gap-11 { gap: 12rem; } .grid.gap-x-11 { column-gap: 12rem; } .grid.gap-y-11 { row-gap: 12rem; } .grid.gap-12 { gap: 15rem; } .grid.gap-x-12 { column-gap: 15rem; } .grid.gap-y-12 { row-gap: 15rem; } .grid.gap-13 { gap: 18rem; } .grid.gap-x-13 { column-gap: 18rem; } .grid.gap-y-13 { row-gap: 18rem; } .grid.gap-14 { gap: 20rem; } .grid.gap-x-14 { column-gap: 20rem; } .grid.gap-y-14 { row-gap: 20rem; } .grid.gap-15 { gap: 25rem; } .grid.gap-x-15 { column-gap: 25rem; } .grid.gap-y-15 { row-gap: 25rem; } .grid.gap-16 { gap: 30rem; } .grid.gap-x-16 { column-gap: 30rem; } .grid.gap-y-16 { row-gap: 30rem; } .grid.gap-17 { gap: 35rem; } .grid.gap-x-17 { column-gap: 35rem; } .grid.gap-y-17 { row-gap: 35rem; } .grid.gap-18 { gap: 40rem; } .grid.gap-x-18 { column-gap: 40rem; } .grid.gap-y-18 { row-gap: 40rem; } .grid.gap-19 { gap: 45rem; } .grid.gap-x-19 { column-gap: 45rem; } .grid.gap-y-19 { row-gap: 45rem; } .grid.gap-20 { gap: 50rem; } .grid.gap-x-20 { column-gap: 50rem; } .grid.gap-y-20 { row-gap: 50rem; } .grid-cols-1 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-1 { display: block; } .grid-cols-1 > * { display: inline-block; width: calc(100% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-1 > *:nth-child(1n) { margin-right: 0; } } .grid-cols-2 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-2 { display: block; } .grid-cols-2 > * { display: inline-block; width: calc(50% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-2 > *:nth-child(2n) { margin-right: 0; } } .grid-cols-3 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-3 { display: block; } .grid-cols-3 > * { display: inline-block; width: calc(33.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-3 > *:nth-child(3n) { margin-right: 0; } } .grid-cols-4 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-4 { display: block; } .grid-cols-4 > * { display: inline-block; width: calc(25% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-4 > *:nth-child(4n) { margin-right: 0; } } .grid-cols-5 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(5, 1fr); grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-5 { display: block; } .grid-cols-5 > * { display: inline-block; width: calc(20% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-5 > *:nth-child(5n) { margin-right: 0; } } .grid-cols-6 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(6, 1fr); grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-6 { display: block; } .grid-cols-6 > * { display: inline-block; width: calc(16.6666666667% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-6 > *:nth-child(6n) { margin-right: 0; } } .grid-cols-7 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(7, 1fr); grid-template-columns: repeat(7, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-7 { display: block; } .grid-cols-7 > * { display: inline-block; width: calc(14.2857142857% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-7 > *:nth-child(7n) { margin-right: 0; } } .grid-cols-8 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(8, 1fr); grid-template-columns: repeat(8, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-8 { display: block; } .grid-cols-8 > * { display: inline-block; width: calc(12.5% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-8 > *:nth-child(8n) { margin-right: 0; } } .grid-cols-9 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(9, 1fr); grid-template-columns: repeat(9, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-9 { display: block; } .grid-cols-9 > * { display: inline-block; width: calc(11.1111111111% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-9 > *:nth-child(9n) { margin-right: 0; } } .grid-cols-10 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(10, 1fr); grid-template-columns: repeat(10, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-10 { display: block; } .grid-cols-10 > * { display: inline-block; width: calc(10% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-10 > *:nth-child(10n) { margin-right: 0; } } .grid-cols-11 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(11, 1fr); grid-template-columns: repeat(11, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-11 { display: block; } .grid-cols-11 > * { display: inline-block; width: calc(9.0909090909% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-11 > *:nth-child(11n) { margin-right: 0; } } .grid-cols-12 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(12, 1fr); grid-template-columns: repeat(12, 1fr); gap: 1.5rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .grid-cols-12 { display: block; } .grid-cols-12 > * { display: inline-block; width: calc(8.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .grid-cols-12 > *:nth-child(12n) { margin-right: 0; } } .grid-auto-fit { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .grid-auto-fit.min-200 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .grid-auto-fit.min-250 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .grid-auto-fit.min-300 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .grid-auto-fit.min-350 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } .grid-auto-fit.min-400 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(400px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); } .grid-auto-fill { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } .grid-auto-fill.min-200 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fill, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } .grid-auto-fill.min-250 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fill, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } .grid-auto-fill.min-300 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } .grid-auto-fill.min-350 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fill, minmax(350px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); } .grid-auto-fill.min-400 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fill, minmax(400px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); } .grid-rows-1 { -ms-grid-rows: repeat(1, 1fr); grid-template-rows: repeat(1, 1fr); } .grid-rows-2 { -ms-grid-rows: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); } .grid-rows-3 { -ms-grid-rows: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); } .grid-rows-4 { -ms-grid-rows: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); } .grid-rows-5 { -ms-grid-rows: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); } .grid-rows-6 { -ms-grid-rows: repeat(6, 1fr); grid-template-rows: repeat(6, 1fr); } .grid-rows-auto { -ms-grid-rows: repeat(auto-fit, 1fr); grid-template-rows: repeat(auto-fit, 1fr); } .col-span-1 { -ms-grid-column-span: 1; grid-column: span 1/span 1; } .col-span-2 { -ms-grid-column-span: 2; grid-column: span 2/span 2; } .col-span-3 { -ms-grid-column-span: 3; grid-column: span 3/span 3; } .col-span-4 { -ms-grid-column-span: 4; grid-column: span 4/span 4; } .col-span-5 { -ms-grid-column-span: 5; grid-column: span 5/span 5; } .col-span-6 { -ms-grid-column-span: 6; grid-column: span 6/span 6; } .col-span-7 { -ms-grid-column-span: 7; grid-column: span 7/span 7; } .col-span-8 { -ms-grid-column-span: 8; grid-column: span 8/span 8; } .col-span-9 { -ms-grid-column-span: 9; grid-column: span 9/span 9; } .col-span-10 { -ms-grid-column-span: 10; grid-column: span 10/span 10; } .col-span-11 { -ms-grid-column-span: 11; grid-column: span 11/span 11; } .col-span-12 { -ms-grid-column-span: 12; grid-column: span 12/span 12; } .col-span-full { -ms-grid-column: 1; -ms-grid-column-span: 12; grid-column: 1/-1; } .row-span-1 { -ms-grid-row-span: 1; grid-row: span 1/span 1; } .row-span-2 { -ms-grid-row-span: 2; grid-row: span 2/span 2; } .row-span-3 { -ms-grid-row-span: 3; grid-row: span 3/span 3; } .row-span-4 { -ms-grid-row-span: 4; grid-row: span 4/span 4; } .row-span-5 { -ms-grid-row-span: 5; grid-row: span 5/span 5; } .row-span-6 { -ms-grid-row-span: 6; grid-row: span 6/span 6; } .row-span-full { -ms-grid-row: 1; -ms-grid-row-span: 6; grid-row: 1/-1; } .col-start-1 { -ms-grid-column: 1; grid-column-start: 1; grid-column: 1/span 1; } .col-end-1 { grid-column-end: 1; } .col-start-2 { -ms-grid-column: 2; grid-column-start: 2; grid-column: 2/span 1; } .col-end-2 { grid-column-end: 2; } .col-start-3 { -ms-grid-column: 3; grid-column-start: 3; grid-column: 3/span 1; } .col-end-3 { grid-column-end: 3; } .col-start-4 { -ms-grid-column: 4; grid-column-start: 4; grid-column: 4/span 1; } .col-end-4 { grid-column-end: 4; } .col-start-5 { -ms-grid-column: 5; grid-column-start: 5; grid-column: 5/span 1; } .col-end-5 { grid-column-end: 5; } .col-start-6 { -ms-grid-column: 6; grid-column-start: 6; grid-column: 6/span 1; } .col-end-6 { grid-column-end: 6; } .col-start-7 { -ms-grid-column: 7; grid-column-start: 7; grid-column: 7/span 1; } .col-end-7 { grid-column-end: 7; } .col-start-8 { -ms-grid-column: 8; grid-column-start: 8; grid-column: 8/span 1; } .col-end-8 { grid-column-end: 8; } .col-start-9 { -ms-grid-column: 9; grid-column-start: 9; grid-column: 9/span 1; } .col-end-9 { grid-column-end: 9; } .col-start-10 { -ms-grid-column: 10; grid-column-start: 10; grid-column: 10/span 1; } .col-end-10 { grid-column-end: 10; } .col-start-11 { -ms-grid-column: 11; grid-column-start: 11; grid-column: 11/span 1; } .col-end-11 { grid-column-end: 11; } .col-start-12 { -ms-grid-column: 12; grid-column-start: 12; grid-column: 12/span 1; } .col-end-12 { grid-column-end: 12; } .col-start-13 { -ms-grid-column: 13; grid-column-start: 13; grid-column: 13/span 1; } .col-end-13 { grid-column-end: 13; } .row-start-1 { -ms-grid-row: 1; grid-row-start: 1; grid-row: 1/span 1; } .row-end-1 { grid-row-end: 1; } .row-start-2 { -ms-grid-row: 2; grid-row-start: 2; grid-row: 2/span 1; } .row-end-2 { grid-row-end: 2; } .row-start-3 { -ms-grid-row: 3; grid-row-start: 3; grid-row: 3/span 1; } .row-end-3 { grid-row-end: 3; } .row-start-4 { -ms-grid-row: 4; grid-row-start: 4; grid-row: 4/span 1; } .row-end-4 { grid-row-end: 4; } .row-start-5 { -ms-grid-row: 5; grid-row-start: 5; grid-row: 5/span 1; } .row-end-5 { grid-row-end: 5; } .row-start-6 { -ms-grid-row: 6; grid-row-start: 6; grid-row: 6/span 1; } .row-end-6 { grid-row-end: 6; } .row-start-7 { -ms-grid-row: 7; grid-row-start: 7; grid-row: 7/span 1; } .row-end-7 { grid-row-end: 7; } .grid-justify-items-start { -ms-grid-column-align: start; justify-items: start; } .grid-justify-items-end { -ms-grid-column-align: end; justify-items: end; } .grid-justify-items-center { -ms-grid-column-align: center; justify-items: center; } .grid-justify-items-stretch { -ms-grid-column-align: stretch; justify-items: stretch; } .grid-align-items-start { -ms-grid-row-align: start; align-items: start; } .grid-align-items-end { -ms-grid-row-align: end; align-items: end; } .grid-align-items-center { -ms-grid-row-align: center; align-items: center; } .grid-align-items-stretch { -ms-grid-row-align: stretch; align-items: stretch; } .grid-justify-content-start { justify-content: start; } .grid-justify-content-end { justify-content: end; } .grid-justify-content-center { justify-content: center; } .grid-justify-content-stretch { justify-content: stretch; } .grid-justify-content-around { justify-content: space-around; } .grid-justify-content-between { justify-content: space-between; } .grid-justify-content-evenly { justify-content: space-evenly; } .grid-align-content-start { align-content: start; } .grid-align-content-end { align-content: end; } .grid-align-content-center { align-content: center; } .grid-align-content-stretch { align-content: stretch; } .grid-align-content-around { align-content: space-around; } .grid-align-content-between { align-content: space-between; } .grid-align-content-evenly { align-content: space-evenly; } .grid-place-items-start { -ms-grid-column-align: start; -ms-grid-row-align: start; place-items: start; } .grid-place-items-end { -ms-grid-column-align: end; -ms-grid-row-align: end; place-items: end; } .grid-place-items-center { -ms-grid-column-align: center; -ms-grid-row-align: center; place-items: center; } .grid-place-items-stretch { -ms-grid-column-align: stretch; -ms-grid-row-align: stretch; place-items: stretch; } @media (min-width: 576px) { .sm\:grid-cols-1 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-1 { display: block; } .sm\:grid-cols-1 > * { display: inline-block; width: calc(100% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-1 > *:nth-child(1n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-2 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-2 { display: block; } .sm\:grid-cols-2 > * { display: inline-block; width: calc(50% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-2 > *:nth-child(2n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-3 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-3 { display: block; } .sm\:grid-cols-3 > * { display: inline-block; width: calc(33.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-3 > *:nth-child(3n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-4 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-4 { display: block; } .sm\:grid-cols-4 > * { display: inline-block; width: calc(25% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-4 > *:nth-child(4n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-5 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(5, 1fr); grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-5 { display: block; } .sm\:grid-cols-5 > * { display: inline-block; width: calc(20% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-5 > *:nth-child(5n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-6 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(6, 1fr); grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-6 { display: block; } .sm\:grid-cols-6 > * { display: inline-block; width: calc(16.6666666667% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-6 > *:nth-child(6n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-7 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(7, 1fr); grid-template-columns: repeat(7, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-7 { display: block; } .sm\:grid-cols-7 > * { display: inline-block; width: calc(14.2857142857% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-7 > *:nth-child(7n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-8 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(8, 1fr); grid-template-columns: repeat(8, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-8 { display: block; } .sm\:grid-cols-8 > * { display: inline-block; width: calc(12.5% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-8 > *:nth-child(8n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-9 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(9, 1fr); grid-template-columns: repeat(9, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-9 { display: block; } .sm\:grid-cols-9 > * { display: inline-block; width: calc(11.1111111111% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-9 > *:nth-child(9n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-10 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(10, 1fr); grid-template-columns: repeat(10, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-10 { display: block; } .sm\:grid-cols-10 > * { display: inline-block; width: calc(10% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-10 > *:nth-child(10n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-11 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(11, 1fr); grid-template-columns: repeat(11, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-11 { display: block; } .sm\:grid-cols-11 > * { display: inline-block; width: calc(9.0909090909% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-11 > *:nth-child(11n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-cols-12 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(12, 1fr); grid-template-columns: repeat(12, 1fr); gap: 1.5rem; } } @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) { .sm\:grid-cols-12 { display: block; } .sm\:grid-cols-12 > * { display: inline-block; width: calc(8.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .sm\:grid-cols-12 > *:nth-child(12n) { margin-right: 0; } } @media (min-width: 576px) { .sm\:grid-auto-fit { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .sm\:grid-auto-fit.min-200 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .sm\:grid-auto-fit.min-250 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .sm\:grid-auto-fit.min-300 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .sm\:grid-auto-fit.min-350 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } .sm\:col-span-1 { -ms-grid-column-span: 1; grid-column: span 1/span 1; } .sm\:col-span-2 { -ms-grid-column-span: 2; grid-column: span 2/span 2; } .sm\:col-span-3 { -ms-grid-column-span: 3; grid-column: span 3/span 3; } .sm\:col-span-4 { -ms-grid-column-span: 4; grid-column: span 4/span 4; } .sm\:col-span-5 { -ms-grid-column-span: 5; grid-column: span 5/span 5; } .sm\:col-span-6 { -ms-grid-column-span: 6; grid-column: span 6/span 6; } .sm\:col-span-7 { -ms-grid-column-span: 7; grid-column: span 7/span 7; } .sm\:col-span-8 { -ms-grid-column-span: 8; grid-column: span 8/span 8; } .sm\:col-span-9 { -ms-grid-column-span: 9; grid-column: span 9/span 9; } .sm\:col-span-10 { -ms-grid-column-span: 10; grid-column: span 10/span 10; } .sm\:col-span-11 { -ms-grid-column-span: 11; grid-column: span 11/span 11; } .sm\:col-span-12 { -ms-grid-column-span: 12; grid-column: span 12/span 12; } } @media (min-width: 1024px) { .md\:grid-cols-1 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-1 { display: block; } .md\:grid-cols-1 > * { display: inline-block; width: calc(100% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-1 > *:nth-child(1n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-2 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-2 { display: block; } .md\:grid-cols-2 > * { display: inline-block; width: calc(50% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-2 > *:nth-child(2n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-3 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-3 { display: block; } .md\:grid-cols-3 > * { display: inline-block; width: calc(33.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-3 > *:nth-child(3n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-4 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-4 { display: block; } .md\:grid-cols-4 > * { display: inline-block; width: calc(25% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-4 > *:nth-child(4n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-5 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(5, 1fr); grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-5 { display: block; } .md\:grid-cols-5 > * { display: inline-block; width: calc(20% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-5 > *:nth-child(5n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-6 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(6, 1fr); grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-6 { display: block; } .md\:grid-cols-6 > * { display: inline-block; width: calc(16.6666666667% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-6 > *:nth-child(6n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-7 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(7, 1fr); grid-template-columns: repeat(7, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-7 { display: block; } .md\:grid-cols-7 > * { display: inline-block; width: calc(14.2857142857% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-7 > *:nth-child(7n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-8 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(8, 1fr); grid-template-columns: repeat(8, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-8 { display: block; } .md\:grid-cols-8 > * { display: inline-block; width: calc(12.5% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-8 > *:nth-child(8n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-9 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(9, 1fr); grid-template-columns: repeat(9, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-9 { display: block; } .md\:grid-cols-9 > * { display: inline-block; width: calc(11.1111111111% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-9 > *:nth-child(9n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-10 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(10, 1fr); grid-template-columns: repeat(10, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-10 { display: block; } .md\:grid-cols-10 > * { display: inline-block; width: calc(10% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-10 > *:nth-child(10n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-11 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(11, 1fr); grid-template-columns: repeat(11, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-11 { display: block; } .md\:grid-cols-11 > * { display: inline-block; width: calc(9.0909090909% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-11 > *:nth-child(11n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-cols-12 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(12, 1fr); grid-template-columns: repeat(12, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .md\:grid-cols-12 { display: block; } .md\:grid-cols-12 > * { display: inline-block; width: calc(8.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .md\:grid-cols-12 > *:nth-child(12n) { margin-right: 0; } } @media (min-width: 1024px) { .md\:grid-auto-fit { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .md\:grid-auto-fit.min-200 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .md\:grid-auto-fit.min-250 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .md\:grid-auto-fit.min-300 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .md\:grid-auto-fit.min-350 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } .md\:col-span-1 { -ms-grid-column-span: 1; grid-column: span 1/span 1; } .md\:col-span-2 { -ms-grid-column-span: 2; grid-column: span 2/span 2; } .md\:col-span-3 { -ms-grid-column-span: 3; grid-column: span 3/span 3; } .md\:col-span-4 { -ms-grid-column-span: 4; grid-column: span 4/span 4; } .md\:col-span-5 { -ms-grid-column-span: 5; grid-column: span 5/span 5; } .md\:col-span-6 { -ms-grid-column-span: 6; grid-column: span 6/span 6; } .md\:col-span-7 { -ms-grid-column-span: 7; grid-column: span 7/span 7; } .md\:col-span-8 { -ms-grid-column-span: 8; grid-column: span 8/span 8; } .md\:col-span-9 { -ms-grid-column-span: 9; grid-column: span 9/span 9; } .md\:col-span-10 { -ms-grid-column-span: 10; grid-column: span 10/span 10; } .md\:col-span-11 { -ms-grid-column-span: 11; grid-column: span 11/span 11; } .md\:col-span-12 { -ms-grid-column-span: 12; grid-column: span 12/span 12; } } @media (min-width: 1280px) { .lg\:grid-cols-1 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-1 { display: block; } .lg\:grid-cols-1 > * { display: inline-block; width: calc(100% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-1 > *:nth-child(1n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-2 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-2 { display: block; } .lg\:grid-cols-2 > * { display: inline-block; width: calc(50% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-2 > *:nth-child(2n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-3 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-3 { display: block; } .lg\:grid-cols-3 > * { display: inline-block; width: calc(33.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-3 > *:nth-child(3n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-4 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-4 { display: block; } .lg\:grid-cols-4 > * { display: inline-block; width: calc(25% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-4 > *:nth-child(4n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-5 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(5, 1fr); grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-5 { display: block; } .lg\:grid-cols-5 > * { display: inline-block; width: calc(20% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-5 > *:nth-child(5n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-6 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(6, 1fr); grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-6 { display: block; } .lg\:grid-cols-6 > * { display: inline-block; width: calc(16.6666666667% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-6 > *:nth-child(6n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-7 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(7, 1fr); grid-template-columns: repeat(7, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-7 { display: block; } .lg\:grid-cols-7 > * { display: inline-block; width: calc(14.2857142857% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-7 > *:nth-child(7n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-8 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(8, 1fr); grid-template-columns: repeat(8, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-8 { display: block; } .lg\:grid-cols-8 > * { display: inline-block; width: calc(12.5% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-8 > *:nth-child(8n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-9 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(9, 1fr); grid-template-columns: repeat(9, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-9 { display: block; } .lg\:grid-cols-9 > * { display: inline-block; width: calc(11.1111111111% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-9 > *:nth-child(9n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-10 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(10, 1fr); grid-template-columns: repeat(10, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-10 { display: block; } .lg\:grid-cols-10 > * { display: inline-block; width: calc(10% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-10 > *:nth-child(10n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-11 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(11, 1fr); grid-template-columns: repeat(11, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-11 { display: block; } .lg\:grid-cols-11 > * { display: inline-block; width: calc(9.0909090909% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-11 > *:nth-child(11n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-cols-12 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(12, 1fr); grid-template-columns: repeat(12, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .lg\:grid-cols-12 { display: block; } .lg\:grid-cols-12 > * { display: inline-block; width: calc(8.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .lg\:grid-cols-12 > *:nth-child(12n) { margin-right: 0; } } @media (min-width: 1280px) { .lg\:grid-auto-fit { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .lg\:grid-auto-fit.min-200 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .lg\:grid-auto-fit.min-250 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .lg\:grid-auto-fit.min-300 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .lg\:grid-auto-fit.min-350 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } .lg\:col-span-1 { -ms-grid-column-span: 1; grid-column: span 1/span 1; } .lg\:col-span-2 { -ms-grid-column-span: 2; grid-column: span 2/span 2; } .lg\:col-span-3 { -ms-grid-column-span: 3; grid-column: span 3/span 3; } .lg\:col-span-4 { -ms-grid-column-span: 4; grid-column: span 4/span 4; } .lg\:col-span-5 { -ms-grid-column-span: 5; grid-column: span 5/span 5; } .lg\:col-span-6 { -ms-grid-column-span: 6; grid-column: span 6/span 6; } .lg\:col-span-7 { -ms-grid-column-span: 7; grid-column: span 7/span 7; } .lg\:col-span-8 { -ms-grid-column-span: 8; grid-column: span 8/span 8; } .lg\:col-span-9 { -ms-grid-column-span: 9; grid-column: span 9/span 9; } .lg\:col-span-10 { -ms-grid-column-span: 10; grid-column: span 10/span 10; } .lg\:col-span-11 { -ms-grid-column-span: 11; grid-column: span 11/span 11; } .lg\:col-span-12 { -ms-grid-column-span: 12; grid-column: span 12/span 12; } } @media (min-width: 1440px) { .xl\:grid-cols-1 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-1 { display: block; } .xl\:grid-cols-1 > * { display: inline-block; width: calc(100% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-1 > *:nth-child(1n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-2 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-2 { display: block; } .xl\:grid-cols-2 > * { display: inline-block; width: calc(50% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-2 > *:nth-child(2n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-3 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-3 { display: block; } .xl\:grid-cols-3 > * { display: inline-block; width: calc(33.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-3 > *:nth-child(3n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-4 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-4 { display: block; } .xl\:grid-cols-4 > * { display: inline-block; width: calc(25% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-4 > *:nth-child(4n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-5 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(5, 1fr); grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-5 { display: block; } .xl\:grid-cols-5 > * { display: inline-block; width: calc(20% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-5 > *:nth-child(5n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-6 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(6, 1fr); grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-6 { display: block; } .xl\:grid-cols-6 > * { display: inline-block; width: calc(16.6666666667% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-6 > *:nth-child(6n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-7 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(7, 1fr); grid-template-columns: repeat(7, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-7 { display: block; } .xl\:grid-cols-7 > * { display: inline-block; width: calc(14.2857142857% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-7 > *:nth-child(7n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-8 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(8, 1fr); grid-template-columns: repeat(8, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-8 { display: block; } .xl\:grid-cols-8 > * { display: inline-block; width: calc(12.5% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-8 > *:nth-child(8n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-9 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(9, 1fr); grid-template-columns: repeat(9, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-9 { display: block; } .xl\:grid-cols-9 > * { display: inline-block; width: calc(11.1111111111% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-9 > *:nth-child(9n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-10 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(10, 1fr); grid-template-columns: repeat(10, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-10 { display: block; } .xl\:grid-cols-10 > * { display: inline-block; width: calc(10% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-10 > *:nth-child(10n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-11 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(11, 1fr); grid-template-columns: repeat(11, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-11 { display: block; } .xl\:grid-cols-11 > * { display: inline-block; width: calc(9.0909090909% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-11 > *:nth-child(11n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-cols-12 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(12, 1fr); grid-template-columns: repeat(12, 1fr); gap: 1.5rem; } } @media screen and (min-width: 1440px) and (-ms-high-contrast: active), (min-width: 1440px) and (-ms-high-contrast: none) { .xl\:grid-cols-12 { display: block; } .xl\:grid-cols-12 > * { display: inline-block; width: calc(8.3333333333% - 1.5rem); margin-right: 1.5rem; vertical-align: top; } .xl\:grid-cols-12 > *:nth-child(12n) { margin-right: 0; } } @media (min-width: 1440px) { .xl\:grid-auto-fit { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .xl\:grid-auto-fit.min-200 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .xl\:grid-auto-fit.min-250 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .xl\:grid-auto-fit.min-300 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .xl\:grid-auto-fit.min-350 { display: -ms-grid; display: grid; -ms-grid-columns: repeat(auto-fit, minmax(350px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } .xl\:col-span-1 { -ms-grid-column-span: 1; grid-column: span 1/span 1; } .xl\:col-span-2 { -ms-grid-column-span: 2; grid-column: span 2/span 2; } .xl\:col-span-3 { -ms-grid-column-span: 3; grid-column: span 3/span 3; } .xl\:col-span-4 { -ms-grid-column-span: 4; grid-column: span 4/span 4; } .xl\:col-span-5 { -ms-grid-column-span: 5; grid-column: span 5/span 5; } .xl\:col-span-6 { -ms-grid-column-span: 6; grid-column: span 6/span 6; } .xl\:col-span-7 { -ms-grid-column-span: 7; grid-column: span 7/span 7; } .xl\:col-span-8 { -ms-grid-column-span: 8; grid-column: span 8/span 8; } .xl\:col-span-9 { -ms-grid-column-span: 9; grid-column: span 9/span 9; } .xl\:col-span-10 { -ms-grid-column-span: 10; grid-column: span 10/span 10; } .xl\:col-span-11 { -ms-grid-column-span: 11; grid-column: span 11/span 11; } .xl\:col-span-12 { -ms-grid-column-span: 12; grid-column: span 12/span 12; } } .grid-item-auto { -ms-grid-column: auto; -ms-grid-row: auto; grid-column: auto; grid-row: auto; } .grid-item-square { aspect-ratio: 1/1; } .grid-item-landscape { aspect-ratio: 16/9; } .grid-item-portrait { aspect-ratio: 3/4; } .grid-debug .grid { border: 2px dashed red; background: rgba(255, 0, 0, 0.05); } .grid-debug [class*=col-span], .grid-debug [class*=row-span], .grid-debug .grid > * { border: 1px dashed blue; background: rgba(0, 0, 255, 0.05); position: relative; } .grid-debug [class*=col-span]::after, .grid-debug [class*=row-span]::after, .grid-debug .grid > *::after { content: attr(class); position: absolute; top: 0; left: 0; background: rgba(0, 0, 0, 0.8); color: white; font-size: 10px; padding: 2px 4px; z-index: 1000; } /* * MultiIT - HTML Template * Main SCSS file */ .gap-0 { gap: 0 !important; } .gap-x-0 { column-gap: 0 !important; } .gap-y-0 { row-gap: 0 !important; } .gap-1 { gap: 0.25rem !important; } .gap-x-1 { column-gap: 0.25rem !important; } .gap-y-1 { row-gap: 0.25rem !important; } .gap-2 { gap: 0.5rem !important; } .gap-x-2 { column-gap: 0.5rem !important; } .gap-y-2 { row-gap: 0.5rem !important; } .gap-3 { gap: 1rem !important; } .gap-x-3 { column-gap: 1rem !important; } .gap-y-3 { row-gap: 1rem !important; } .gap-4 { gap: 1.5rem !important; } .gap-x-4 { column-gap: 1.5rem !important; } .gap-y-4 { row-gap: 1.5rem !important; } .gap-5 { gap: 3rem !important; } .gap-x-5 { column-gap: 3rem !important; } .gap-y-5 { row-gap: 3rem !important; } .gap-6 { gap: 4rem !important; } .gap-x-6 { column-gap: 4rem !important; } .gap-y-6 { row-gap: 4rem !important; } .gap-7 { gap: 5rem !important; } .gap-x-7 { column-gap: 5rem !important; } .gap-y-7 { row-gap: 5rem !important; } .gap-8 { gap: 6rem !important; } .gap-x-8 { column-gap: 6rem !important; } .gap-y-8 { row-gap: 6rem !important; } .gap-9 { gap: 8rem !important; } .gap-x-9 { column-gap: 8rem !important; } .gap-y-9 { row-gap: 8rem !important; } .gap-10 { gap: 10rem !important; } .gap-x-10 { column-gap: 10rem !important; } .gap-y-10 { row-gap: 10rem !important; } .gap-11 { gap: 12rem !important; } .gap-x-11 { column-gap: 12rem !important; } .gap-y-11 { row-gap: 12rem !important; } .gap-12 { gap: 15rem !important; } .gap-x-12 { column-gap: 15rem !important; } .gap-y-12 { row-gap: 15rem !important; } .gap-13 { gap: 18rem !important; } .gap-x-13 { column-gap: 18rem !important; } .gap-y-13 { row-gap: 18rem !important; } .gap-14 { gap: 20rem !important; } .gap-x-14 { column-gap: 20rem !important; } .gap-y-14 { row-gap: 20rem !important; } .gap-15 { gap: 25rem !important; } .gap-x-15 { column-gap: 25rem !important; } .gap-y-15 { row-gap: 25rem !important; } .gap-16 { gap: 30rem !important; } .gap-x-16 { column-gap: 30rem !important; } .gap-y-16 { row-gap: 30rem !important; } .gap-17 { gap: 35rem !important; } .gap-x-17 { column-gap: 35rem !important; } .gap-y-17 { row-gap: 35rem !important; } .gap-18 { gap: 40rem !important; } .gap-x-18 { column-gap: 40rem !important; } .gap-y-18 { row-gap: 40rem !important; } .gap-19 { gap: 45rem !important; } .gap-x-19 { column-gap: 45rem !important; } .gap-y-19 { row-gap: 45rem !important; } .gap-20 { gap: 50rem !important; } .gap-x-20 { column-gap: 50rem !important; } .gap-y-20 { row-gap: 50rem !important; } .d-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .flex-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .flex-wrap { -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .flex-nowrap { -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .justify-content-start { -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; } .justify-content-end { -webkit-box-pack: end; -webkit-justify-content: flex-end; -moz-justify-content: flex-end; -ms-justify-content: flex-end; justify-content: flex-end; } .justify-content-center { -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; } .justify-content-between { -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; } .justify-content-around { -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; justify-content: space-around; } .align-items-start { -webkit-box-align: start; -webkit-align-items: flex-start; -moz-align-items: flex-start; -ms-align-items: flex-start; align-items: flex-start; } .align-items-end { -webkit-box-align: end; -webkit-align-items: flex-end; -moz-align-items: flex-end; -ms-align-items: flex-end; align-items: flex-end; } .align-items-center { -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; } .align-items-baseline { -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; } .align-items-stretch { -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; } .d-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-around { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; justify-content: space-around; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-evenly { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-evenly; -moz-justify-content: space-evenly; -ms-justify-content: space-evenly; justify-content: space-evenly; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-between-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-center-horizontal { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-center-vertical { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-center-wrap { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .d-flex-baseline { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-baseline-start { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-baseline-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-baseline-end { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: end; -webkit-justify-content: flex-end; -moz-justify-content: flex-end; -ms-justify-content: flex-end; justify-content: flex-end; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-baseline-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-baseline-around { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; justify-content: space-around; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-flex-baseline-evenly { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-evenly; -moz-justify-content: space-evenly; -ms-justify-content: space-evenly; justify-content: space-evenly; -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-end-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: end; -webkit-justify-content: flex-end; -moz-justify-content: flex-end; -ms-justify-content: flex-end; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-start-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-column-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-column-center-all { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-column-center-end { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: end; -webkit-align-items: flex-end; -moz-align-items: flex-end; -ms-align-items: flex-end; align-items: flex-end; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } @media (min-width: 0) { .d-xs-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xs-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xs-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xs-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xs-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 576px) { .d-sm-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-sm-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-sm-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-sm-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-sm-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 1024px) { .d-md-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 1025px) { .d-md-c-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-c-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-c-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-c-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-md-c-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 1280px) { .d-lg-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-lg-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-lg-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-lg-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-lg-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 1440px) { .d-xl-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xl-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xl-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xl-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xl-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 1600px) { .d-xxl-flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xxl-inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xxl-flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xxl-flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .d-xxl-flex-center-column { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } .flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex.gap-0 { gap: 0; } .flex.gap-x-0 { column-gap: 0; } .flex.gap-y-0 { row-gap: 0; } .flex.gap-1 { gap: 0.25rem; } .flex.gap-x-1 { column-gap: 0.25rem; } .flex.gap-y-1 { row-gap: 0.25rem; } .flex.gap-2 { gap: 0.5rem; } .flex.gap-x-2 { column-gap: 0.5rem; } .flex.gap-y-2 { row-gap: 0.5rem; } .flex.gap-3 { gap: 1rem; } .flex.gap-x-3 { column-gap: 1rem; } .flex.gap-y-3 { row-gap: 1rem; } .flex.gap-4 { gap: 1.5rem; } .flex.gap-x-4 { column-gap: 1.5rem; } .flex.gap-y-4 { row-gap: 1.5rem; } .flex.gap-5 { gap: 3rem; } .flex.gap-x-5 { column-gap: 3rem; } .flex.gap-y-5 { row-gap: 3rem; } .flex.gap-6 { gap: 4rem; } .flex.gap-x-6 { column-gap: 4rem; } .flex.gap-y-6 { row-gap: 4rem; } .flex.gap-7 { gap: 5rem; } .flex.gap-x-7 { column-gap: 5rem; } .flex.gap-y-7 { row-gap: 5rem; } .flex.gap-8 { gap: 6rem; } .flex.gap-x-8 { column-gap: 6rem; } .flex.gap-y-8 { row-gap: 6rem; } .flex.gap-9 { gap: 8rem; } .flex.gap-x-9 { column-gap: 8rem; } .flex.gap-y-9 { row-gap: 8rem; } .flex.gap-10 { gap: 10rem; } .flex.gap-x-10 { column-gap: 10rem; } .flex.gap-y-10 { row-gap: 10rem; } .flex.gap-11 { gap: 12rem; } .flex.gap-x-11 { column-gap: 12rem; } .flex.gap-y-11 { row-gap: 12rem; } .flex.gap-12 { gap: 15rem; } .flex.gap-x-12 { column-gap: 15rem; } .flex.gap-y-12 { row-gap: 15rem; } .flex.gap-13 { gap: 18rem; } .flex.gap-x-13 { column-gap: 18rem; } .flex.gap-y-13 { row-gap: 18rem; } .flex.gap-14 { gap: 20rem; } .flex.gap-x-14 { column-gap: 20rem; } .flex.gap-y-14 { row-gap: 20rem; } .flex.gap-15 { gap: 25rem; } .flex.gap-x-15 { column-gap: 25rem; } .flex.gap-y-15 { row-gap: 25rem; } .flex.gap-16 { gap: 30rem; } .flex.gap-x-16 { column-gap: 30rem; } .flex.gap-y-16 { row-gap: 30rem; } .flex.gap-17 { gap: 35rem; } .flex.gap-x-17 { column-gap: 35rem; } .flex.gap-y-17 { row-gap: 35rem; } .flex.gap-18 { gap: 40rem; } .flex.gap-x-18 { column-gap: 40rem; } .flex.gap-y-18 { row-gap: 40rem; } .flex.gap-19 { gap: 45rem; } .flex.gap-x-19 { column-gap: 45rem; } .flex.gap-y-19 { row-gap: 45rem; } .flex.gap-20 { gap: 50rem; } .flex.gap-x-20 { column-gap: 50rem; } .flex.gap-y-20 { row-gap: 50rem; } .inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .inline-flex.gap-0 { gap: 0; } .inline-flex.gap-x-0 { column-gap: 0; } .inline-flex.gap-y-0 { row-gap: 0; } .inline-flex.gap-1 { gap: 0.25rem; } .inline-flex.gap-x-1 { column-gap: 0.25rem; } .inline-flex.gap-y-1 { row-gap: 0.25rem; } .inline-flex.gap-2 { gap: 0.5rem; } .inline-flex.gap-x-2 { column-gap: 0.5rem; } .inline-flex.gap-y-2 { row-gap: 0.5rem; } .inline-flex.gap-3 { gap: 1rem; } .inline-flex.gap-x-3 { column-gap: 1rem; } .inline-flex.gap-y-3 { row-gap: 1rem; } .inline-flex.gap-4 { gap: 1.5rem; } .inline-flex.gap-x-4 { column-gap: 1.5rem; } .inline-flex.gap-y-4 { row-gap: 1.5rem; } .inline-flex.gap-5 { gap: 3rem; } .inline-flex.gap-x-5 { column-gap: 3rem; } .inline-flex.gap-y-5 { row-gap: 3rem; } .inline-flex.gap-6 { gap: 4rem; } .inline-flex.gap-x-6 { column-gap: 4rem; } .inline-flex.gap-y-6 { row-gap: 4rem; } .inline-flex.gap-7 { gap: 5rem; } .inline-flex.gap-x-7 { column-gap: 5rem; } .inline-flex.gap-y-7 { row-gap: 5rem; } .inline-flex.gap-8 { gap: 6rem; } .inline-flex.gap-x-8 { column-gap: 6rem; } .inline-flex.gap-y-8 { row-gap: 6rem; } .inline-flex.gap-9 { gap: 8rem; } .inline-flex.gap-x-9 { column-gap: 8rem; } .inline-flex.gap-y-9 { row-gap: 8rem; } .inline-flex.gap-10 { gap: 10rem; } .inline-flex.gap-x-10 { column-gap: 10rem; } .inline-flex.gap-y-10 { row-gap: 10rem; } .inline-flex.gap-11 { gap: 12rem; } .inline-flex.gap-x-11 { column-gap: 12rem; } .inline-flex.gap-y-11 { row-gap: 12rem; } .inline-flex.gap-12 { gap: 15rem; } .inline-flex.gap-x-12 { column-gap: 15rem; } .inline-flex.gap-y-12 { row-gap: 15rem; } .inline-flex.gap-13 { gap: 18rem; } .inline-flex.gap-x-13 { column-gap: 18rem; } .inline-flex.gap-y-13 { row-gap: 18rem; } .inline-flex.gap-14 { gap: 20rem; } .inline-flex.gap-x-14 { column-gap: 20rem; } .inline-flex.gap-y-14 { row-gap: 20rem; } .inline-flex.gap-15 { gap: 25rem; } .inline-flex.gap-x-15 { column-gap: 25rem; } .inline-flex.gap-y-15 { row-gap: 25rem; } .inline-flex.gap-16 { gap: 30rem; } .inline-flex.gap-x-16 { column-gap: 30rem; } .inline-flex.gap-y-16 { row-gap: 30rem; } .inline-flex.gap-17 { gap: 35rem; } .inline-flex.gap-x-17 { column-gap: 35rem; } .inline-flex.gap-y-17 { row-gap: 35rem; } .inline-flex.gap-18 { gap: 40rem; } .inline-flex.gap-x-18 { column-gap: 40rem; } .inline-flex.gap-y-18 { row-gap: 40rem; } .inline-flex.gap-19 { gap: 45rem; } .inline-flex.gap-x-19 { column-gap: 45rem; } .inline-flex.gap-y-19 { row-gap: 45rem; } .inline-flex.gap-20 { gap: 50rem; } .inline-flex.gap-x-20 { column-gap: 50rem; } .inline-flex.gap-y-20 { row-gap: 50rem; } .flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .flex-row-reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -webkit-flex-direction: row-reverse; -moz-flex-direction: row-reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .flex-col-reverse { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -webkit-flex-direction: column-reverse; -moz-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .flex-wrap { -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .flex-wrap-reverse { -webkit-flex-wrap: wrap-reverse; -moz-flex-wrap: wrap-reverse; -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } .flex-nowrap { -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-auto { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; } .flex-initial { -webkit-box-flex: 1; -webkit-flex: 0 1 auto; -moz-flex: 0 1 auto; -ms-flex: 0 1 auto; flex: 0 1 auto; } .flex-none { -webkit-box-flex: 0; -webkit-flex: none; -moz-flex: none; -ms-flex: none; flex: none; } .flex-1 { -webkit-box-flex: 1; -webkit-flex: 1 1 0%; -moz-flex: 1 1 0%; -ms-flex: 1 1 0%; flex: 1 1 0%; } .flex-2 { -webkit-box-flex: 1; -webkit-flex: 2 1 0%; -moz-flex: 2 1 0%; -ms-flex: 2 1 0%; flex: 2 1 0%; } .flex-3 { -webkit-box-flex: 1; -webkit-flex: 3 1 0%; -moz-flex: 3 1 0%; -ms-flex: 3 1 0%; flex: 3 1 0%; } .flex-4 { -webkit-box-flex: 1; -webkit-flex: 4 1 0%; -moz-flex: 4 1 0%; -ms-flex: 4 1 0%; flex: 4 1 0%; } .flex-5 { -webkit-box-flex: 1; -webkit-flex: 5 1 0%; -moz-flex: 5 1 0%; -ms-flex: 5 1 0%; flex: 5 1 0%; } .grow { -webkit-box-flex: 1; -webkit-flex-grow: 1; -moz-flex-grow: 1; -ms-flex-grow: 1; flex-grow: 1; } .grow-0 { -webkit-flex-grow: 0; -moz-flex-grow: 0; -ms-flex-grow: 0; flex-grow: 0; } .grow-2 { -webkit-box-flex: 2; -webkit-flex-grow: 2; -moz-flex-grow: 2; -ms-flex-grow: 2; flex-grow: 2; } .grow-3 { -webkit-box-flex: 3; -webkit-flex-grow: 3; -moz-flex-grow: 3; -ms-flex-grow: 3; flex-grow: 3; } .grow-4 { -webkit-box-flex: 4; -webkit-flex-grow: 4; -moz-flex-grow: 4; -ms-flex-grow: 4; flex-grow: 4; } .grow-5 { -webkit-box-flex: 5; -webkit-flex-grow: 5; -moz-flex-grow: 5; -ms-flex-grow: 5; flex-grow: 5; } .shrink { -webkit-flex-shrink: 1; -moz-flex-shrink: 1; -ms-flex-shrink: 1; flex-shrink: 1; } .shrink-0 { -webkit-flex-shrink: 0; -moz-flex-shrink: 0; -ms-flex-shrink: 0; flex-shrink: 0; } .shrink-2 { -webkit-flex-shrink: 2; -moz-flex-shrink: 2; -ms-flex-shrink: 2; flex-shrink: 2; } .shrink-3 { -webkit-flex-shrink: 3; -moz-flex-shrink: 3; -ms-flex-shrink: 3; flex-shrink: 3; } .basis-auto { -webkit-flex-basis: auto; -moz-flex-basis: auto; -ms-flex-basis: auto; flex-basis: auto; } .basis-full { -webkit-flex-basis: 100%; -moz-flex-basis: 100%; -ms-flex-basis: 100%; flex-basis: 100%; } .basis-1-2 { -webkit-flex-basis: 50%; -moz-flex-basis: 50%; -ms-flex-basis: 50%; flex-basis: 50%; } .basis-1-3 { -webkit-flex-basis: 33.333333%; -moz-flex-basis: 33.333333%; -ms-flex-basis: 33.333333%; flex-basis: 33.333333%; } .basis-0 { -webkit-flex-basis: 0; -moz-flex-basis: 0; -ms-flex-basis: 0; flex-basis: 0; } .basis-0 { -webkit-flex-basis: 0; -moz-flex-basis: 0; -ms-flex-basis: 0; flex-basis: 0; } .basis-1 { -webkit-flex-basis: 0.25rem; -moz-flex-basis: 0.25rem; -ms-flex-basis: 0.25rem; flex-basis: 0.25rem; } .basis-2 { -webkit-flex-basis: 0.5rem; -moz-flex-basis: 0.5rem; -ms-flex-basis: 0.5rem; flex-basis: 0.5rem; } .basis-3 { -webkit-flex-basis: 1rem; -moz-flex-basis: 1rem; -ms-flex-basis: 1rem; flex-basis: 1rem; } .basis-4 { -webkit-flex-basis: 1.5rem; -moz-flex-basis: 1.5rem; -ms-flex-basis: 1.5rem; flex-basis: 1.5rem; } .basis-5 { -webkit-flex-basis: 3rem; -moz-flex-basis: 3rem; -ms-flex-basis: 3rem; flex-basis: 3rem; } .basis-6 { -webkit-flex-basis: 4rem; -moz-flex-basis: 4rem; -ms-flex-basis: 4rem; flex-basis: 4rem; } .basis-7 { -webkit-flex-basis: 5rem; -moz-flex-basis: 5rem; -ms-flex-basis: 5rem; flex-basis: 5rem; } .basis-8 { -webkit-flex-basis: 6rem; -moz-flex-basis: 6rem; -ms-flex-basis: 6rem; flex-basis: 6rem; } .basis-9 { -webkit-flex-basis: 8rem; -moz-flex-basis: 8rem; -ms-flex-basis: 8rem; flex-basis: 8rem; } .basis-10 { -webkit-flex-basis: 10rem; -moz-flex-basis: 10rem; -ms-flex-basis: 10rem; flex-basis: 10rem; } .basis-11 { -webkit-flex-basis: 12rem; -moz-flex-basis: 12rem; -ms-flex-basis: 12rem; flex-basis: 12rem; } .basis-12 { -webkit-flex-basis: 15rem; -moz-flex-basis: 15rem; -ms-flex-basis: 15rem; flex-basis: 15rem; } .basis-13 { -webkit-flex-basis: 18rem; -moz-flex-basis: 18rem; -ms-flex-basis: 18rem; flex-basis: 18rem; } .basis-14 { -webkit-flex-basis: 20rem; -moz-flex-basis: 20rem; -ms-flex-basis: 20rem; flex-basis: 20rem; } .basis-15 { -webkit-flex-basis: 25rem; -moz-flex-basis: 25rem; -ms-flex-basis: 25rem; flex-basis: 25rem; } .basis-16 { -webkit-flex-basis: 30rem; -moz-flex-basis: 30rem; -ms-flex-basis: 30rem; flex-basis: 30rem; } .basis-17 { -webkit-flex-basis: 35rem; -moz-flex-basis: 35rem; -ms-flex-basis: 35rem; flex-basis: 35rem; } .basis-18 { -webkit-flex-basis: 40rem; -moz-flex-basis: 40rem; -ms-flex-basis: 40rem; flex-basis: 40rem; } .basis-19 { -webkit-flex-basis: 45rem; -moz-flex-basis: 45rem; -ms-flex-basis: 45rem; flex-basis: 45rem; } .basis-20 { -webkit-flex-basis: 50rem; -moz-flex-basis: 50rem; -ms-flex-basis: 50rem; flex-basis: 50rem; } .justify-start { -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; } .justify-end { -webkit-box-pack: end; -webkit-justify-content: flex-end; -moz-justify-content: flex-end; -ms-justify-content: flex-end; justify-content: flex-end; } .justify-center { -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; } .justify-between { -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; } .justify-around { -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; justify-content: space-around; } .justify-evenly { -webkit-justify-content: space-evenly; -moz-justify-content: space-evenly; -ms-justify-content: space-evenly; justify-content: space-evenly; } .items-start { -webkit-box-align: start; -webkit-align-items: flex-start; -moz-align-items: flex-start; -ms-align-items: flex-start; align-items: flex-start; } .items-end { -webkit-box-align: end; -webkit-align-items: flex-end; -moz-align-items: flex-end; -ms-align-items: flex-end; align-items: flex-end; } .items-center { -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; } .items-baseline { -webkit-box-align: baseline; -webkit-align-items: baseline; -moz-align-items: baseline; -ms-align-items: baseline; align-items: baseline; } .items-stretch { -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; } .flex-center { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-center-x { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-center-y { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-between { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-around { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; justify-content: space-around; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-evenly { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-evenly; -moz-justify-content: space-evenly; -ms-justify-content: space-evenly; justify-content: space-evenly; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex-stack { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; gap: 1rem; } @media (min-width: 1024px) { .flex-stack { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } .flex-stack-reverse { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: reverse; -webkit-flex-direction: column-reverse; -moz-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; gap: 1rem; } @media (min-width: 1024px) { .flex-stack-reverse { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } @media (min-width: 576px) { .sm\:flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .sm\:inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .sm\:flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .sm\:flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } } @media (min-width: 1024px) { .md\:flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .md\:inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .md\:flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .md\:flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } } @media (min-width: 1280px) { .lg\:flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .lg\:inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .lg\:flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .lg\:flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } } @media (min-width: 1440px) { .xl\:flex { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .xl\:inline-flex { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-align-items: stretch; -ms-align-items: stretch; align-items: stretch; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .xl\:flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .xl\:flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } } /* * MultiIT - HTML Template * Main SCSS file */ .btn { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; color: #ffffff; background-color: #A26A20; border: 2px solid #A26A20; border-radius: 25px; font-weight: 600; font-size: 1rem; cursor: pointer; text-decoration: none; overflow: hidden; box-shadow: inset 0 0 0 rgba(255, 217, 0, 0), 0 2px 5px rgba(0, 0, 0, 0.1); transition: box-shadow 0.4s ease, background-color 0.3s ease, border-color 0.4s ease; } .btn.breakfast, .btn.lunche, .btn.dinner { color: #212529; } .btn.breakfast { background-color: #F5E9D7; border: 2px solid #F5E9D7; } .btn.lunche { background-color: #A5D88A; border: 2px solid #A5D88A; } .btn.dinner { background-color: #AAB7D3; border: 2px solid #AAB7D3; } .btn.drink { color: #212529; background-color: #A5D88A; border: 2px solid #A5D88A; } .btn:hover { border-color: #c0a16b; box-shadow: inset 0 0 0 rgba(255, 217, 0, 0), 0 8px 20px rgba(255, 217, 0, 0.35); } .btn:active { transform: scale(0.98); box-shadow: inset 0 0 10px rgba(192, 161, 107, 0.4), 0 3px 8px rgba(0, 0, 0, 0.2); } .btn:focus::after, .btn:active::after { transform: translate(-50%, -50%) scale(15); opacity: 1; transition: transform 0.5s ease, opacity 1s ease; } .btn:disabled { opacity: 0.6; cursor: not-allowed; } .btn > * { position: relative; z-index: 1; } .btn.xs { padding: 0.2rem 1rem; } .btn.sm { padding: 0.4rem 1rem; } .btn-primary { background-color: var(--button-color); border-color: var(--button-color); } .btn-primary:hover { background-color: rgba(255, 217, 0, 0.85); border-color: #c0a16b; } .btn-secondary { background-color: var(--color-accent); border-color: var(--color-accent); } .btn-secondary:hover { background-color: var(--color-accent); border-color: #c0a16b; } .btn-outline { background: transparent; color: var(--button-color); border-color: var(--button-color); } .btn-outline:hover { border-color: #c0a16b; background-color: rgba(255, 217, 0, 0.1); } .btn-outline:active { background-color: rgba(255, 217, 0, 0.15); } .btn-outline:disabled { opacity: 0.6; cursor: not-allowed; color: var(--button-color); } .btn-ghost { background-color: var(--color-background); border-color: transparent; } .btn-ghost:hover { background-color: rgba(255, 217, 0, 0.1); box-shadow: none; } .btn-icon { width: 3rem; height: 3rem; min-width: 3rem; padding: 0 !important; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background-color: var(--button-color); border: 2px solid var(--button-color); transition: all 0.4s ease; } .btn-icon:hover { background-color: rgba(255, 217, 0, 0.85); border-color: #c0a16b; } .btn-icon svg, .btn-icon i { width: 1.5rem; height: 1.5rem; transition: transform 0.3s ease; } .btn-icon svg:hover, .btn-icon i:hover { transform: scale(1.2); } .btn-get-quotes { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; border: 2px solid var(--button-color); border-radius: 14px; background-color: #111827; color: #ffffff !important; font-weight: 600; font-size: 1rem; cursor: pointer; text-decoration: none; overflow: hidden; transition: all 0.4s ease, background-color 0.4s ease, transform 0.3s ease, border-color 0.4s ease; } .btn-get-quotes:hover { background-color: #1c1c1c; border-color: #c0a16b; transform: translateY(-2px); } .btn-get-quotes:active { transform: translateY(0); } .btn-get-quotes::before { content: none; } .btn-get-quotes:disabled { opacity: 0.6; cursor: not-allowed; color: #ffffff !important; } .btn-submit { background: var(--color-primary); color: #fff; padding: 12px; border: none; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease; } .btn-submit:hover { background: rgb(145.8, 95.4, 28.8); transform: translateY(-2px); } .btn-buy { background: rgb(192, 161, 107); color: #fff; width: 100%; text-align: center; font-weight: 600; font-size: 1rem; padding: 7px; border: none; border-radius: 10px; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease; display: block; } .btn-more { background: #A26A20; color: #ffffff !important; border-color: transparent; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); position: relative; overflow: hidden; transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.4s ease; } .btn-more:hover { background: rgb(145.8, 95.4, 28.8); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); } .btn-more:active { transform: translateY(0); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .btn-more::after { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255, 255, 255, 0.15); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease; z-index: 0; } .btn-more:hover::after { width: 220%; height: 220%; opacity: 1; } .btn-more > * { position: relative; z-index: 1; } /* * MultiIT - HTML Template * Main SCSS file */ .page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #ffffff; display: flex; justify-content: center; align-items: center; z-index: 9999; } .page-loader .cooking-scene { width: 120px; height: 120px; display: flex; justify-content: center; align-items: center; position: relative; } @keyframes levitate { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } } @keyframes bubble { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(-20px); opacity: 0; } } @keyframes smoke { 0% { transform: translateY(0) scale(1); opacity: 0.8; } 100% { transform: translateY(-30px) scale(1.2); opacity: 0; } } @keyframes shimmer { 0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; } } .breakfast-load { overflow: visible; } .breakfast-load .cooking-animation { animation: toss-pan 2s ease-in-out infinite; transform-origin: 112px 60px; } .breakfast-load .egg-in-pan { animation: slide-egg 2s ease-in-out infinite; } .breakfast-load .yolk { animation: yolk-bubble 1.5s ease-in-out infinite alternate; transform-origin: center; } .breakfast-load .smoke-particle { opacity: 0; } .breakfast-load .p1 { animation: rise-p1 4s linear infinite; } .breakfast-load .p2 { animation: rise-p2 3.5s linear infinite -2s; } .breakfast-load .p3 { animation: rise-p3 5s linear infinite -3.5s; } @keyframes toss-pan { 0%, 100% { transform: rotate(0deg) translateY(0); } 25% { transform: rotate(-8deg) translateY(-10px); } 50% { transform: rotate(0deg) translateY(0); } 75% { transform: rotate(8deg) translateY(-10px); } } @keyframes slide-egg { 0%, 50%, 100% { transform: translateX(0); } 25% { transform: translateX(8px); } 75% { transform: translateX(-8px); } } @keyframes yolk-bubble { from { transform: scale(1); } to { transform: scale(1.05); } } @keyframes rise-p1 { 0% { opacity: 0; transform: translate(45px, 55px) scale(0.8); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(55px, 20px) scale(1.5); } } @keyframes rise-p2 { 0% { opacity: 0; transform: translate(60px, 55px) scale(0.7); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(65px, 15px) scale(1.3); } } @keyframes rise-p3 { 0% { opacity: 0; transform: translate(75px, 55px) scale(0.9); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(80px, 25px) scale(1.6); } } .coffee { animation: levitate 1.5s ease-in-out infinite; } .coffee .steam path { animation: smoke 1.5s ease-in-out infinite alternate; } .lunch-load { animation: levitate 1.5s ease-in-out infinite; } .lunch-load .smoke path { animation: smoke 1.5s ease-in-out infinite; } .dinner-load { animation: shimmer 2s ease-in-out infinite; } .soda { animation: levitate 1.5s ease-in-out infinite; } .soda .bubble { animation: bubble 1.5s ease-in-out infinite; } .soda .bubble:nth-child(4) { animation-delay: 0s; } .soda .bubble:nth-child(5) { animation-delay: 0.3s; } .soda .bubble:nth-child(6) { animation-delay: 0.6s; } .contact-load { overflow: visible; animation: envelope-bounce 2s ease-in-out infinite; } .contact-load .flap { animation: flap-open 2s ease-in-out infinite; transform-origin: 60px 45px; } .contact-load .letter { animation: letter-slide 2s ease-in-out infinite; } .contact-load .letter-line { animation: text-fade 2s ease-in-out infinite; } .contact-load .send-particle { opacity: 0; } .contact-load .p1 { animation: fly-particle-1 2s ease-out infinite; } .contact-load .p2 { animation: fly-particle-2 2s ease-out infinite -0.3s; } .contact-load .p3 { animation: fly-particle-3 2s ease-out infinite -0.6s; } @keyframes envelope-bounce { 0%, 100% { transform: translateY(0) rotate(0deg); } 10% { transform: translateY(-5px) rotate(-2deg); } 20% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(1deg); } } @keyframes flap-open { 0%, 40% { transform: rotateX(0deg); opacity: 1; } 50%, 90% { transform: rotateX(180deg); opacity: 0.3; } 100% { transform: rotateX(0deg); opacity: 1; } } @keyframes letter-slide { 0%, 40% { transform: translateY(0); opacity: 0; } 50% { transform: translateY(-15px); opacity: 1; } 90% { transform: translateY(-15px); opacity: 1; } 100% { transform: translateY(0); opacity: 0; } } @keyframes text-fade { 0%, 40% { opacity: 0; } 50%, 90% { opacity: 1; } 100% { opacity: 0; } } @keyframes fly-particle-1 { 0% { opacity: 0; transform: translate(0, 0) scale(0.5); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(25px, -20px) scale(1.2); } } @keyframes fly-particle-2 { 0% { opacity: 0; transform: translate(0, 0) scale(0.5); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(30px, -15px) scale(1); } } @keyframes fly-particle-3 { 0% { opacity: 0; transform: translate(0, 0) scale(0.5); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(28px, -25px) scale(1.3); } } /* * MultiIT - HTML Template * Main SCSS file */ .cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; height: 100%; background-color: #fff; box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2); transition: right 0.3s ease; z-index: 9999; display: flex; flex-direction: column; border-left: 1px solid #eee; } .cart-sidebar.active { right: 0; } .cart-sidebar .cart-sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid #eee; } .cart-sidebar .cart-sidebar-header h2 { font-size: 1.3rem; font-weight: 600; color: #A26A20; } .cart-sidebar .cart-sidebar-header .close-cart { font-size: 1.5rem; background: none; border: none; cursor: pointer; color: #333; transition: color 0.2s; } .cart-sidebar .cart-sidebar-header .close-cart:hover { color: #A26A20; } .cart-sidebar .cart-sidebar-content { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; } .cart-sidebar .cart-sidebar-content .cart-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; border-bottom: 1px solid #f2f2f2; padding-bottom: 0.7rem; } .cart-sidebar .cart-sidebar-content .cart-item img { width: 50px; height: 50px; border-radius: 8px; object-fit: contain; } .cart-sidebar .cart-sidebar-content .cart-item .cart-info { flex: 1; margin-left: 0.7rem; } .cart-sidebar .cart-sidebar-content .cart-item .cart-info .title { font-size: 0.95rem; font-weight: 600; color: #333; } .cart-sidebar .cart-sidebar-content .cart-item .cart-info .price { font-size: 0.9rem; color: #777; } .cart-sidebar .cart-sidebar-content .cart-item .cart-controls { display: flex; align-items: center; gap: 5px; } .cart-sidebar .cart-sidebar-content .cart-item .cart-controls button { border: none; background: #eee; padding: 4px 8px; border-radius: 4px; cursor: pointer; font-weight: 600; } .cart-sidebar .cart-sidebar-content .cart-item .cart-controls button:hover { background: #ddd; } .cart-sidebar .cart-sidebar-content .cart-item .cart-controls .quantity { min-width: 20px; text-align: center; font-weight: 500; } .cart-sidebar .cart-sidebar-content .cart-item .cart-controls .remove { background: transparent; color: #ff5e5e; font-size: 1rem; } .cart-sidebar .cart-sidebar-content .cart-item .cart-controls .remove:hover { background: transparent; } .cart-sidebar .cart-sidebar-footer { border-top: 1px solid #eee; padding: 1rem 1.5rem; } .cart-sidebar .cart-sidebar-footer .checkout-btn { width: 100%; background: #A26A20; color: #fff; border: none; padding: 10px 0; font-size: 1rem; border-radius: 8px; cursor: pointer; transition: background 0.2s ease; } .cart-sidebar .cart-sidebar-footer .checkout-btn:hover { background-color: rgba(162, 106, 32, 0.85); } /* Overlay behind the sidebar */ .cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 2500; } .cart-overlay.active { opacity: 1; pointer-events: all; } .cart-notification { position: fixed; bottom: 25px; right: 25px; background: #222; color: #fff; padding: 10px 18px; border-radius: 8px; opacity: 0; transform: translateY(30px); transition: all 0.3s ease; z-index: 9999; font-size: 15px; } .cart-notification.show { opacity: 1; transform: translateY(0); } /* * MultiIT - HTML Template * Main SCSS file */ .header { position: fixed; top: 0px; left: 0px; width: 100%; padding: 0.75rem 2rem 0.75rem 28px; z-index: 1000; } @media (max-width: 1024px) { .header { padding: 0.5rem 1.25rem 0.5rem 18px; } } .header .container { position: relative; width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; 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 { position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-align: center; -webkit-align-items: center; align-items: center; height: 55px; margin-left: 0; text-decoration: none; } .header .logo .image { height: 100%; width: auto; max-height: 55px; object-fit: contain; border-radius: 8px; mix-blend-mode: multiply; } @media (max-width: 576px) { .header .logo { height: 45px; } .header .logo .image { max-height: 45px; } } .header .logo .overlay-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } @media (min-width: 1025px) { .header .navbar { position: static; background: transparent; height: auto; } } @media (max-width: 1025px) { .header .navbar { position: fixed; left: 0; top: -100vh; width: 100%; height: 100vh; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -moz-align-items: flex-start; -ms-align-items: flex-start; align-items: flex-start; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; z-index: 1000; -webkit-transition: top 0.3s ease; -moz-transition: top 0.3s ease; -ms-transition: top 0.3s ease; -o-transition: top 0.3s ease; transition: top 0.3s ease; padding-top: 80px; overflow-y: auto; } .header .navbar.mobile-menu-open { top: 0; } } .header .navbar .nav-menu { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; gap: 10px; list-style: none; margin: 0; padding: 0; width: 100%; } @media (min-width: 1025px) { .header .navbar .nav-menu { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; gap: 30px; } } @media (max-width: 1025px) { .header .navbar .nav-menu { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -moz-align-items: flex-start; -ms-align-items: flex-start; align-items: flex-start; gap: 0; text-align: left; padding: 0 1.5rem; max-width: 400px; margin: 0 auto; } } @media (max-width: 1025px) { .header .navbar .nav-menu > li { width: 100%; } } @media (min-width: 1025px) { .header .navbar .nav-menu > li { width: auto; } } .header .navbar .nav-menu .nav-link { position: relative; color: #212529; 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; text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7); display: block; } @media (min-width: 1025px) { .header .navbar .nav-menu .nav-link { padding: 5px 0; font-size: 1rem; } } @media (max-width: 1025px) { .header .navbar .nav-menu .nav-link { padding: 1rem 0; width: 100%; border-bottom: 1px solid rgba(33, 37, 41, 0.1); } } .header .navbar .nav-menu .nav-link::after { content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background-color: #A26A20; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); } @media (max-width: 1025px) { .header .navbar .nav-menu .nav-link::after { display: none; } } .header .navbar .nav-menu .nav-link:hover, .header .navbar .nav-menu .nav-link.active { color: #A26A20; } .header .navbar .nav-menu .nav-link:hover::after, .header .navbar .nav-menu .nav-link.active::after { width: 100%; } .header .navbar .nav-menu .dropdown { position: relative; } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown { width: 100%; } } .header .navbar .nav-menu .dropdown .dropdown-toggle { cursor: pointer; color: #212529; 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; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); position: relative; display: block; } @media (min-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-toggle { padding: 5px 0; font-size: 1rem; } } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-toggle { padding: 1rem 0; width: 100%; border-bottom: 1px solid rgba(33, 37, 41, 0.1); display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } .header .navbar .nav-menu .dropdown .dropdown-toggle::after { content: "▼"; font-size: 10px; -webkit-transition: transform 0.3s ease; -moz-transition: transform 0.3s ease; -ms-transition: transform 0.3s ease; -o-transition: transform 0.3s ease; transition: transform 0.3s ease; } @media (min-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-toggle::after { position: relative; left: 5px; } } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-toggle::after { font-size: 12px; } } .header .navbar .nav-menu .dropdown .dropdown-toggle.active::after { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } .header .navbar .nav-menu .dropdown .dropdown-toggle::before { content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background-color: #A26A20; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-toggle::before { display: none; } } .header .navbar .nav-menu .dropdown .dropdown-toggle:hover { color: #A26A20; } .header .navbar .nav-menu .dropdown .dropdown-toggle:hover::before { width: 100%; } .header .navbar .nav-menu .dropdown .dropdown-menu { list-style: none; margin: 0; padding: 0; } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-menu { position: static; background-color: rgba(33, 37, 41, 0.05); backdrop-filter: blur(10px); margin-left: 1rem; border-left: 2px solid rgba(162, 106, 32, 0.3); opacity: 0; visibility: hidden; max-height: 0; overflow: hidden; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .header .navbar .nav-menu .dropdown .dropdown-menu.dropdown-open { opacity: 1; visibility: visible; max-height: 500px; padding: 0.5rem 0; margin-top: 0.5rem; } } @media (min-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-menu { position: absolute; top: 140%; left: -10px; -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); -ms-transform: translateY(-10px); -o-transform: translateY(-10px); transform: translateY(-10px); background-color: #212529; -webkit-box-shadow: "0 10px 15px -3px rgba(0, 0, 0, 0.1)"; -moz-box-shadow: "0 10px 15px -3px rgba(0, 0, 0, 0.1)"; box-shadow: "0 10px 15px -3px rgba(0, 0, 0, 0.1)"; min-width: 180px; padding: 0.5rem 0; z-index: 900; opacity: 0; visibility: hidden; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } } .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item { display: block; padding: 0.5rem 1rem; text-decoration: none; font-family: "Urbanist", -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 400; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item { color: #212529; font-size: 1rem; text-align: left; border-bottom: 1px solid rgba(33, 37, 41, 0.05); } .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:last-child { border-bottom: none; } } @media (min-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item { color: #495057; font-size: 0.875rem; } } .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:hover { background-color: rgba(162, 106, 32, 0.1); color: #A26A20; padding-left: 1.5rem; } @media (max-width: 1025px) { .header .navbar .nav-menu .dropdown .dropdown-menu .dropdown-item:hover { background-color: rgba(162, 106, 32, 0.2); } } @media (min-width: 1025px) { .header .navbar .nav-menu .dropdown:hover .dropdown-toggle { color: #A26A20; } .header .navbar .nav-menu .dropdown:hover .dropdown-toggle::before { width: 100%; } .header .navbar .nav-menu .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } } .header .shopping-cart { position: relative; 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; cursor: pointer; padding-right: 30px; } .header .shopping-cart .image { position: absolute; object-fit: contain; width: 100%; height: 100%; } .header .shopping-cart .counting { position: relative; top: -2px; left: 4px; color: #A26A20; font-weight: 500; font-size: 0.9rem; text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7); } .header .actions .theme-switcher { margin: 0 1rem; } .header .actions .theme-switcher .theme-toggle-btn { background-color: var(--color-surface); border: 1px solid var(--color-border); border-radius: 50%; cursor: pointer; width: 40px; height: 40px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; padding: 5px; transition: all 0.3s ease; } .header .actions .theme-switcher .theme-toggle-btn:hover { border-color: var(--color-primary); } .header .actions .theme-switcher .theme-toggle-btn svg { width: 22px; height: 22px; color: var(--color-primary); transition: color 0.3s ease; } .header .actions .theme-switcher .moon-icon { display: none; } .header .actions .theme-switcher .dark-mode .moon-icon { display: block; } .header .actions .theme-switcher .dark-mode .sun-icon { display: none; } .header .actions .btn-get-quotes { white-space: nowrap; z-index: 1001; visibility: visible; } @media (max-width: 1024px) { .header .actions .btn-get-quotes { visibility: hidden; } } .header .mobile-menu-toggle { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; -moz-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; z-index: 1001; position: relative; } @media (min-width: 1025px) { .header .mobile-menu-toggle { display: none; } } @media (max-width: 1025px) { .header .mobile-menu-toggle { order: 3; } } .header .mobile-menu-toggle .hamburger-line { width: 25px; height: 3px; background-color: #212529; 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: #ffffff; -webkit-box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; -moz-box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; box-shadow: "0 0 20px rgba(0, 0, 0, 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; } @media (max-width: 1025px) { .header.header-scrolled .navbar .nav-menu .nav-link { color: #212529; } } .header.header-scrolled .navbar .nav-menu .nav-link:hover, .header.header-scrolled .navbar .nav-menu .nav-link.active { color: #A26A20; } @media (max-width: 1025px) { .header.header-scrolled .navbar .nav-menu .dropdown .dropdown-toggle { color: #212529; } } .header.header-scrolled .navbar .nav-menu .dropdown .dropdown-toggle:hover { color: #A26A20; } /* * MultiIT - HTML Template * Main SCSS file */ .blog-featured-image { position: relative; width: 100%; height: 600px; margin-bottom: 4rem; overflow: hidden; -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.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: 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; } .blog-featured-image .image { position: absolute; width: 100%; height: 100%; object-fit: cover; } .blog-featured-image .blog-header { 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; position: relative; margin-bottom: 4rem; text-align: center; z-index: 100; } .blog-featured-image .blog-header .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: 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; gap: 1rem; margin-bottom: 1.5rem; } @media (max-width: 576px) { .blog-featured-image .blog-header .blog-meta { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; gap: 0.5rem; } } .blog-featured-image .blog-header .blog-meta .blog-category { background: #A26A20; color: #ffffff; padding: 0.25rem 1rem; -webkit-border-radius: 0.5rem; -moz-border-radius: 0.5rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; } .blog-featured-image .blog-header .blog-meta .blog-date, .blog-featured-image .blog-header .blog-meta .blog-read-time { font-size: 0.875rem; color: #ffffff; font-weight: 500; } .blog-featured-image .blog-header .blog-meta .blog-date { color: #A26A20; } .blog-featured-image .blog-header .blog-title { color: #ffffff; font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 3rem; max-width: 1000px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); } @media (max-width: 1024px) { .blog-featured-image .blog-header .blog-title { font-size: 2.25rem; } } @media (max-width: 576px) { .blog-featured-image .blog-header .blog-title { font-size: 1.875rem; } } .blog-featured-image .blog-header .blog-author-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; gap: 1rem; padding: 10px; } .blog-featured-image .blog-header .blog-author-info .author-avatar { width: 50px; height: 50px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; overflow: hidden; } .blog-featured-image .blog-header .blog-author-info .author-avatar img { width: 100%; height: 100%; object-fit: cover; } .blog-featured-image .blog-header .blog-author-info .author-details { 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; text-align: left; } .blog-featured-image .blog-header .blog-author-info .author-details .author-name { font-size: 1.125rem; font-weight: 600; color: #212529; margin-bottom: 2px; } .blog-featured-image .blog-header .blog-author-info .author-details .author-bio { font-size: 0.875rem; color: #ffffff; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); } .blog-detail { position: relative; max-width: 1000px; } .blog-detail .blog-content { margin-bottom: 4rem; } .blog-detail .blog-content .content-wrapper { line-height: 1.8; } .blog-detail .blog-content .content-wrapper .lead-paragraph { font-size: 1.25rem; font-weight: 500; color: #495057; margin-bottom: 3rem; line-height: 1.6; } @media (max-width: 1024px) { .blog-detail .blog-content .content-wrapper .lead-paragraph { font-size: 1.125rem; } } .blog-detail .blog-content .content-wrapper p { font-size: 1.125rem; color: #495057; margin-bottom: 1.5rem; } @media (max-width: 1024px) { .blog-detail .blog-content .content-wrapper p { font-size: 1rem; } } .blog-detail .blog-content .content-wrapper h2 { font-size: 1.5rem; font-weight: 700; color: #212529; margin-top: 4rem; margin-bottom: 1rem; } @media (max-width: 1024px) { .blog-detail .blog-content .content-wrapper h2 { font-size: 1.25rem; } } .blog-detail .blog-reactions { 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: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid #f8f9fa; border-bottom: 1px solid #f8f9fa; margin-bottom: 4rem; } @media (max-width: 576px) { .blog-detail .blog-reactions { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column; align-items: flex-start; } } .blog-detail .blog-reactions .reaction-stats .reaction-count { font-size: 0.875rem; color: #495057; } .blog-detail .blog-reactions .reaction-buttons { 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; gap: 1rem; } @media (max-width: 576px) { .blog-detail .blog-reactions .reaction-buttons { align-self: stretch; justify-content: flex-start; } } .blog-detail .blog-reactions .reaction-btn, .blog-detail .blog-reactions .share-btn { 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; padding: 0.5rem 1rem; border: 1px solid #f8f9fa; background: #ffffff; -webkit-border-radius: 0.5rem; -moz-border-radius: 0.5rem; border-radius: 0.5rem; cursor: pointer; -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; font-size: 0.875rem; font-weight: 500; } .blog-detail .blog-reactions .reaction-btn svg, .blog-detail .blog-reactions .share-btn svg { width: 18px; height: 18px; fill: #495057; -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; } .blog-detail .blog-reactions .reaction-btn:hover, .blog-detail .blog-reactions .share-btn:hover { border-color: #A26A20; background: rgba(162, 106, 32, 0.05); } .blog-detail .blog-reactions .reaction-btn:hover svg, .blog-detail .blog-reactions .share-btn:hover svg { fill: #A26A20; } .blog-detail .blog-reactions .reaction-btn.active { border-color: #ef4444; background: rgba(239, 68, 68, 0.1); color: #ef4444; } .blog-detail .blog-reactions .reaction-btn.active .heart { fill: #ef4444; animation: heartBeat 0.6s ease-in-out; } .blog-detail .blog-reactions .reaction-btn.active .reaction-text { color: #ef4444; } .blog-detail .blog-reactions .reaction-btn .reaction-number { background: #A26A20; color: #ffffff; padding: 2px 8px; -webkit-border-radius: 0.25rem; -moz-border-radius: 0.25rem; border-radius: 0.25rem; font-size: 0.75rem; min-width: 20px; text-align: center; } .blog-detail .comments-section .comments-title { font-size: 1.5rem; font-weight: 700; color: #212529; margin-bottom: 3rem; } .blog-detail .comments-section .comment-form { 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; margin-bottom: 4rem; } .blog-detail .comments-section .comment-form .user-avatar { width: 40px; height: 40px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; overflow: hidden; -webkit-flex-shrink: 0; -moz-flex-shrink: 0; -ms-flex-shrink: 0; flex-shrink: 0; } .blog-detail .comments-section .comment-form .user-avatar img { width: 100%; height: 100%; object-fit: cover; } .blog-detail .comments-section .comment-form .comment-input-wrapper { -webkit-box-flex: 1; -webkit-flex-grow: 1; -moz-flex-grow: 1; -ms-flex-grow: 1; flex-grow: 1; } .blog-detail .comments-section .comment-form .comment-input-wrapper .comment-input { width: 100%; min-height: 80px; padding: 1rem; border: 1px solid #f8f9fa; -webkit-border-radius: 0.5rem; -moz-border-radius: 0.5rem; border-radius: 0.5rem; font-size: 0.875rem; line-height: 1.5; resize: vertical; -webkit-transition: border-color 0.3s ease; -moz-transition: border-color 0.3s ease; -ms-transition: border-color 0.3s ease; -o-transition: border-color 0.3s ease; transition: border-color 0.3s ease; margin-bottom: 0.5rem; } .blog-detail .comments-section .comment-form .comment-input-wrapper .comment-input:focus { outline: none; border-color: #A26A20; } .blog-detail .comments-section .comment-form .comment-input-wrapper .comment-input::placeholder { color: #495057; } .blog-detail .comments-section .comment-form .comment-input-wrapper .comment-submit { background: #A26A20; color: #ffffff; border: none; padding: 0.5rem 1.5rem; -webkit-border-radius: 0.5rem; -moz-border-radius: 0.5rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; -webkit-transition: background-color 0.3s ease; -moz-transition: background-color 0.3s ease; -ms-transition: background-color 0.3s ease; -o-transition: background-color 0.3s ease; transition: background-color 0.3s ease; } .blog-detail .comments-section .comment-form .comment-input-wrapper .comment-submit:hover { background: #1C1C1C; } .blog-detail .comments-section .comments-list .comment { 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; margin-bottom: 1.5rem; } .blog-detail .comments-section .comments-list .comment.reply { margin-left: 4rem; padding-left: 1.5rem; border-left: 2px solid #f8f9fa; } @media (max-width: 576px) { .blog-detail .comments-section .comments-list .comment.reply { margin-left: 1.5rem; padding-left: 1rem; } } .blog-detail .comments-section .comments-list .comment .comment-avatar { width: 40px; height: 40px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; overflow: hidden; -webkit-flex-shrink: 0; -moz-flex-shrink: 0; -ms-flex-shrink: 0; flex-shrink: 0; } .blog-detail .comments-section .comments-list .comment .comment-avatar img { width: 100%; height: 100%; object-fit: cover; } .blog-detail .comments-section .comments-list .comment .comment-content { -webkit-box-flex: 1; -webkit-flex-grow: 1; -moz-flex-grow: 1; -ms-flex-grow: 1; flex-grow: 1; min-width: 0; } .blog-detail .comments-section .comments-list .comment .comment-header { 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; margin-bottom: 0.5rem; } .blog-detail .comments-section .comments-list .comment .comment-header .comment-author { font-weight: 600; color: #212529; font-size: 0.875rem; } .blog-detail .comments-section .comments-list .comment .comment-header .author-badge { background: #A26A20; color: #ffffff; padding: 2px 6px; -webkit-border-radius: 0.25rem; -moz-border-radius: 0.25rem; border-radius: 0.25rem; font-size: 0.75rem; font-weight: 500; } .blog-detail .comments-section .comments-list .comment .comment-header .comment-time { font-size: 0.75rem; color: #495057; } .blog-detail .comments-section .comments-list .comment .comment-text { font-size: 0.875rem; line-height: 1.6; color: #495057; margin-bottom: 1rem; } .blog-detail .comments-section .comments-list .comment .comment-actions { 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; } .blog-detail .comments-section .comments-list .comment .comment-actions .comment-like, .blog-detail .comments-section .comments-list .comment .comment-actions .comment-reply { 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: 4px; background: transparent; border: none; color: #495057; font-size: 0.75rem; cursor: pointer; -webkit-transition: color 0.3s ease; -moz-transition: color 0.3s ease; -ms-transition: color 0.3s ease; -o-transition: color 0.3s ease; transition: color 0.3s ease; } .blog-detail .comments-section .comments-list .comment .comment-actions .comment-like:hover, .blog-detail .comments-section .comments-list .comment .comment-actions .comment-reply:hover { color: #A26A20; } .blog-detail .comments-section .comments-list .comment .comment-actions .comment-like svg, .blog-detail .comments-section .comments-list .comment .comment-actions .comment-reply svg { width: 14px; height: 14px; fill: currentColor; } .blog-detail .comments-section .load-more-comments { text-align: center; margin-top: 3rem; } .blog-detail .comments-section .load-more-comments .load-more-btn { background: transparent; color: #A26A20; border: 1px solid #A26A20; padding: 0.5rem 1.5rem; -webkit-border-radius: 0.5rem; -moz-border-radius: 0.5rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; cursor: pointer; -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; } .blog-detail .comments-section .load-more-comments .load-more-btn:hover { background: #A26A20; color: #ffffff; } @keyframes heartBeat { 0% { transform: scale(1); } 14% { transform: scale(1.3); } 28% { transform: scale(1); } 42% { transform: scale(1.3); } 70% { transform: scale(1); } } /* * MultiIT - HTML Template * Main SCSS file */ .site-footer { background: var(--color-surface-mcase); color: #ffffff; padding: 3rem 0 0; } .site-footer .footer-container { max-width: 1140px; margin: 0 auto; padding: 0 1rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; } .site-footer .footer-brand { 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: 10px; } @media (max-width: 576px) { .site-footer .footer-brand { 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; } } .site-footer .footer-brand .logo { position: relative; width: 75%; } @media (max-width: 576px) { .site-footer .footer-brand .logo { width: 50%; } } .site-footer .footer-brand .logo .image { width: 100%; height: 100%; object-fit: contain; } .site-footer .footer-brand .logo .overlay-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .site-footer .footer-brand .tagline { font-size: 1rem; line-height: 1.5; max-width: 250px; } .site-footer .footer-title { font-family: "Space Grotesk", sans-serif; font-size: 1.125rem; margin-bottom: 0.5rem; color: #F5E9D7; } .site-footer .footer-nav ul, .site-footer .footer-contact ul { list-style: none; padding: 0; margin: 0; } .site-footer .footer-nav ul li, .site-footer .footer-contact ul li { margin-bottom: 0.25rem; } .site-footer .footer-nav ul li a, .site-footer .footer-contact ul li a { color: #ffffff; text-decoration: none; transition: all 0.3s ease-in-out; } .site-footer .footer-nav ul li a:hover, .site-footer .footer-contact ul li a:hover { color: #A26A20; } .site-footer .footer-newsletter .newsletter-form { display: flex; margin-bottom: 1rem; } .site-footer .footer-newsletter .newsletter-form input { flex: 1; padding: 0.5rem; border: none; border-radius: 0.5rem 0 0 0.5rem; font-family: "Urbanist", -apple-system, BlinkMacSystemFont, sans-serif; } @media (max-width: 1024px) { .site-footer .footer-newsletter .newsletter-form input { max-width: 175px; } } .site-footer .footer-newsletter .newsletter-form button { background: #A67C52; color: #212529; padding: 0.5rem 1rem; border: none; border-radius: 0 0.5rem 0.5rem 0; cursor: pointer; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .site-footer .footer-newsletter .newsletter-form button:hover { background: #4A5A3D; color: #ffffff; } .site-footer .footer-newsletter .footer-social { display: flex; gap: 0.8rem; } .site-footer .footer-newsletter .footer-social a { width: 35px; height: 35px; 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; border-radius: 50%; background-color: rgba(255, 255, 255, 0.05); font-size: 1rem; padding: 5px; } .site-footer .footer-newsletter .footer-social a:hover { background-color: var(--color-primary); color: #000; } .site-footer .footer-newsletter .footer-social a svg { width: 22px; height: 22px; color: var(--color-surface); fill: currentColor; } .site-footer .footer-bottom { margin-top: 3rem; padding: 1rem 0; background: #A26A20; text-align: center; font-size: 0.875rem; color: #ffffff; } .scroll-to-top { position: fixed; bottom: 3rem; right: 3rem; width: 50px; height: 50px; background: #A26A20; 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: #1C1C1C; -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(162, 106, 32, 0.4); -moz-box-shadow: 0 6px 20px rgba(162, 106, 32, 0.4); box-shadow: 0 6px 20px rgba(162, 106, 32, 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(162, 106, 32, 0.3); -moz-box-shadow: 0 0 0 3px rgba(162, 106, 32, 0.3); box-shadow: 0 0 0 3px rgba(162, 106, 32, 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; } /* * MultiIT - HTML Template * Main SCSS file */ html, body { overflow: hidden; overflow-y: auto; background: #ffffff; } .controls { width: 30%; margin: 0px auto; 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; gap: 15px; } .controls button { width: 60px; height: 60px; font-size: 30px; font-weight: bold; border: none; border-radius: 50%; background-color: #ffffff; color: #212529; cursor: pointer; -webkit-box-shadow: 0 4px 15px rgba(124, 124, 124, 0.3); -moz-box-shadow: 0 4px 15px rgba(124, 124, 124, 0.3); box-shadow: 0 4px 15px rgba(124, 124, 124, 0.3); 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; } .controls button:active { transform: scale(0.95); } @media (max-width: 576px) { .controls button { width: 40px; height: 40px; } } .hero-meals { position: relative; width: 100%; height: 100vh; 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; overflow: hidden; } .hero-meals.breakfasts { background-color: #F5E9D7; } .hero-meals.lunches { background-color: #A5D88A; } .hero-meals.dinners { background-color: #AAB7D3; } .hero-meals .main-title { font-weight: 700; max-width: 480px; text-align: center; padding: 10px; margin-bottom: 10px; font-size: 1.6rem; color: #222; } .hero-meals .main-title .subtitle-tag { display: block; font-size: 0.85rem; font-weight: 500; color: #C25920; letter-spacing: 2.5px; margin-top: 6px; text-transform: uppercase; } @media (min-height: 300px) and (max-height: 800px) { .hero-meals .main-title { position: absolute; } } @media (min-height: 300px) and (max-height: 600px) { .hero-meals .main-title { top: 65px; left: 20px; font-size: 1.1rem; max-width: 300px; text-align: left; } } @media (min-height: 600px) and (max-height: 700px) { .hero-meals .main-title { top: 9%; text-align: center; } } @media (min-height: 701px) and (max-height: 800px) { .hero-meals .main-title { top: 13%; left: 20px; font-size: 1.5rem; text-align: left; max-width: 400px; } } @media (min-height: 710px) and (max-height: 800px) { .hero-meals .main-title { top: 10%; text-align: center; } } .hero-meals .hero-meals-box.js-enhanced .meal-item { opacity: 0; position: absolute; pointer-events: none; } .hero-meals .circle { position: relative; top: 80px; width: 600px; height: 600px; border-radius: 50%; border: 2px dashed #212529; z-index: 2; } @media (min-height: 300px) and (max-height: 700px) { .hero-meals .circle { width: 300px; height: 300px; } } @media (min-width: 300px) and (max-width: 576px) { .hero-meals .circle { width: 470px; height: 470px; } } @media (min-width: 576px) and (max-width: 700px) { .hero-meals .circle { width: 330px; height: 330px; } } .hero-meals .circle .min-circle { border-radius: 50%; overflow: hidden; } .hero-meals .circle .min-circle .image { width: 100%; height: 100%; object-fit: cover; } .hero-meals .line { position: absolute; bottom: 0px; left: 0px; background-color: #ffffff; width: 100%; height: 40%; 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; z-index: 2; } .hero-meals .line .main-meal { position: relative; top: -110px; width: 35%; height: 300px; 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: 300px) and (max-width: 576px) { .hero-meals .line .main-meal { top: -80px; width: 100%; height: 300px; } } @media (min-width: 576px) and (max-width: 700px) { .hero-meals .line .main-meal { top: 10px; } } @media (min-height: 300px) and (max-height: 600px) { .hero-meals .line .main-meal { top: -30px; } } .hero-meals .line .main-meal .box-image { width: 300px; height: 300px; } @media (min-width: 300px) and (max-width: 576px) { .hero-meals .line .main-meal .box-image { width: 200px; height: 200px; } } @media (min-height: 300px) and (max-height: 600px) { .hero-meals .line .main-meal .box-image { width: 100px; height: 100px; } } .hero-meals .line .main-meal .box-image .image { width: 100%; height: 100%; object-fit: cover; } .hero-meals .line .main-meal .controls { position: absolute; top: 20px; display: flex; gap: 20px; width: 100%; min-width: 420px; height: 200px; 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: 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; z-index: 1; } @media (min-width: 300px) and (max-width: 576px) { .hero-meals .line .main-meal .controls { top: -20px; min-width: 300px; padding: 0px 20px 0px 20px; margin-top: 0px; } } @media (min-height: 300px) and (max-height: 576px) { .hero-meals .line .main-meal .controls { top: 55px; height: 40px; } .hero-meals .line .main-meal .controls button { font-size: 1.2rem; width: 40px; height: 40px; } } .hero-meals .line .main-meal .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; text-align: center; max-width: 520px; padding: 0 15px; } .hero-meals .line .main-meal .info .title { font-weight: 700; font-size: 1.55rem; color: #1a1a1a; max-width: 100%; height: auto; margin-bottom: 8px; } .hero-meals .line .main-meal .info .description { font-size: 0.95rem; line-height: 1.6; color: #555555; margin: 0; max-width: 500px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; } @media (max-width: 576px) { .hero-meals .line .main-meal .info { max-width: 100%; } .hero-meals .line .main-meal .info .title { font-size: 1.25rem; } .hero-meals .line .main-meal .info .description { font-size: 0.85rem; line-height: 1.5; -webkit-line-clamp: 4; } } .hero-meals .line .main-meal .info .price-add { 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; width: 250px; } .hero-meals .line .main-meal .info .price-add .price { font-size: 1.5rem; font-weight: 500; } @media (max-width: 576px) { .hero-meals .line .main-meal .info .title { font-size: 1.2rem; max-width: 250px; } .hero-meals .line .main-meal .info .price-add { width: 220px; } .hero-meals .line .main-meal .info .price-add .price { font-size: 1.3rem; } } @media (min-height: 300px) and (max-height: 576px) { .hero-meals .line .main-meal .info { padding-top: 5px !important; } .hero-meals .line .main-meal .info .title { font-size: 0.8rem; height: 20px; } .hero-meals .line .main-meal .info .price-add .price { font-size: 0.83rem; } } .hero-coffee { position: relative; height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 0px; } @media (max-width: 1024px) { .hero-coffee { display: grid; grid-template-columns: 1fr; gap: 0px; display: grid; grid-template-rows: 1fr 1fr; gap: 0px; } } .hero-coffee .show-coffee, .hero-coffee .list-coffee, .hero-coffee .info-coffee { 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-coffee .show-coffee { position: relative; background-color: #e0e0e0; overflow: hidden; } .hero-coffee .show-coffee .image-bg { position: absolute; width: 100%; height: 100%; object-fit: contain; z-index: 1; } .hero-coffee .show-coffee .image { position: absolute; width: 300px; z-index: 2; transition: transform 0.5s ease; } .hero-coffee .list-coffee { position: absolute; width: 100%; height: 100vh; } @media (max-width: 1024px) { .hero-coffee .list-coffee .box-coffee { 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; } } .hero-coffee .list-coffee .circular-image { position: relative; width: 50px; height: 50px; 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; border-radius: 50%; transition: background-color 0.3s ease; } .hero-coffee .list-coffee .circular-image .image { position: relative; top: 1px; left: 5px; z-index: 2; } @media (max-width: 1024px) { .hero-coffee .list-coffee .circular-image .image { left: 0px; transform: rotate(88deg); } } .hero-coffee .list-coffee .circular-image.active { background-color: #e0e0e0; } .hero-coffee .list-coffee .circular-image::after { content: ""; position: fixed; width: 50px; height: 50px; border-radius: 50%; background-color: #e0e0e0; opacity: 0; pointer-events: none; z-index: 1; top: var(--start-top); left: var(--start-left); } .hero-coffee .list-coffee .circular-image.moving::after { opacity: 1; animation: move-circle 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; } @keyframes move-circle { 0% { opacity: 1; transform: translate(0, 0); } 100% { transform: translate(var(--move-x), var(--move-y)); opacity: 1; } } .hero-coffee .info-coffee { position: relative; text-align: left; padding: 10px; } .hero-coffee .info-coffee .box-info-coffee { position: relative; height: 230px; margin-bottom: 60px; display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 10px; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .hero-coffee .info-coffee .box-info-coffee { display: block; } .hero-coffee .info-coffee .box-info-coffee > * { display: inline-block; width: calc(100% - 10px); margin-right: 10px; vertical-align: top; } .hero-coffee .info-coffee .box-info-coffee > *:nth-child(1n) { margin-right: 0; } } .hero-coffee .info-coffee .box-info-coffee .title { color: #A26A20; } .hero-coffee .info-coffee .box-info-coffee .description { max-width: 500px; font-weight: 200; } @media (max-width: 1024px) { .hero-coffee .info-coffee .box-info-coffee { margin-top: 40px; margin-bottom: 30px; } .hero-coffee .info-coffee .box-info-coffee .title { font-size: 1.5rem; margin-bottom: 0rem; } .hero-coffee .info-coffee .box-info-coffee .description { font-size: 0.9rem; } } .hero-coffee .info-coffee .box-info-coffee .options { 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; } .hero-coffee .info-coffee .box-info-coffee .options .price { font-size: 1.4rem; font-weight: 500; margin-right: 20px; } @media (max-width: 1024px) { .hero-coffee .info-coffee .box-info-coffee .options .price { font-size: 1.2rem; } } @media (max-width: 1024px) { .hero-coffee .info-coffee .controls { width: 70%; } } @keyframes rotate-out-left { 0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); } 100% { opacity: 0; transform: translate(300px, 300px) rotate(35deg) scale(0.8); } } @keyframes rotate-in-left { 0% { opacity: 0; transform: translate(-300px, -300px) rotate(-35deg) scale(0.8); } 100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); } } @keyframes rotate-out-right { 0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); } 100% { opacity: 0; transform: translate(300px, -300px) rotate(-35deg) scale(0.8); } } @keyframes rotate-in-right { 0% { opacity: 0; transform: translate(-300px, 300px) rotate(35deg) scale(0.8); } 100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); } } .hero-drinks { position: relative; background-color: #e0e0e0; height: 100vh; 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; overflow: hidden; } .hero-drinks .show-drink { position: relative; } .hero-drinks .show-drink.js-enhanced .drink-item { opacity: 0; visibility: hidden; position: absolute; pointer-events: none; } .hero-drinks .show-drink .drink-item { position: absolute; width: 100%; height: 100%; 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; padding-right: 40px; visibility: hidden; opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(0); z-index: 2; } @media (max-width: 576px) { .hero-drinks .show-drink .drink-item { padding: 10px; height: 90%; } } .hero-drinks .show-drink .drink-item .image-drink { height: 60%; margin-top: 20px; overflow: hidden; } @media (max-width: 1024px) { .hero-drinks .show-drink .drink-item .image-drink { height: 50%; } } .hero-drinks .show-drink .drink-item .image-drink .image { width: 100%; height: 100%; object-fit: contain; } .hero-drinks .show-drink .drink-item .info-drink { position: relative; max-width: 300px; padding-left: 10px; } .hero-drinks .show-drink .drink-item .info-drink .description { font-weight: 200; } .hero-drinks .show-drink .drink-item .info-drink .price-action { 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: 20px; } @media (max-width: 576px) { .hero-drinks .show-drink .drink-item .info-drink .price-action { 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; } } .hero-drinks .show-drink .drink-item .info-drink .controls { width: 100%; margin-top: 50px; } .hero-drinks .main-image-drink { position: absolute; top: 0px; right: 0px; width: 37%; height: 100vh; background-color: #ffffff; clip-path: ellipse(70% 70% at 100% 50%); z-index: 1; } @media (max-width: 1024px) { .hero-drinks .main-image-drink { opacity: 0.2; } } .hero-drinks .main-image-drink .image { width: 100%; height: 100%; object-fit: cover; will-change: transform, opacity; } .hero-drinks .dots { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 3; } .hero-drinks .dots .dot { width: 14px; height: 14px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.3); transition: background-color 0.3s ease, transform 0.3s ease; cursor: pointer; } .hero-drinks .dots .dot.active { background-color: #A26A20; transform: scale(1.2); } .hero-drinks .drinks-animated-wrapper { position: relative; z-index: 2; width: 100%; height: 100%; 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; } .hero-drinks .drinks-animated-wrapper .main-drink-display { 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: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; padding-right: 40px; max-width: 1200px; } @media (max-width: 576px) { .hero-drinks .drinks-animated-wrapper .main-drink-display { padding: 10px; } } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-image-box { height: 60vh; max-height: 500px; margin-top: 20px; overflow: visible; } @media (max-width: 1024px) { .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-image-box { height: 50vh; } } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-image-box .drink-main-image { width: 100%; height: 100%; object-fit: contain; will-change: transform, opacity; } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box { position: relative; max-width: 300px; padding-left: 10px; } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .title, .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .description, .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .price-action { will-change: transform, opacity; } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .title { font-size: 1.5rem; font-weight: 500; } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .description { font-weight: 200; margin: 10px 0; } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .price-action { 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: 20px; margin-top: 20px; } @media (max-width: 576px) { .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .price-action { 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; } } .hero-drinks .drinks-animated-wrapper .main-drink-display .drink-info-box .price-action .price { font-size: 1.5rem; font-weight: 500; } .hero-drinks .drinks-animated-wrapper .main-drink-display .controls { width: 100%; margin-top: 50px; } @media (max-width: 1024px) { .hero-drinks .drinks-animated-wrapper .main-drink-display .controls { margin-top: 0px; } } .contact-section { padding: 1.5rem 0; background: linear-gradient(135deg, rgba(194, 167, 110, 0.05) 0%, white 100%); } .contact-section .contact-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } .contact-section .contact-header { text-align: center; margin-bottom: 4rem; } .contact-section .contact-header .contact-title { font-size: 1.875rem; font-weight: 700; color: #A26A20; margin-bottom: 0.5rem; } @media (min-width: 1024px) { .contact-section .contact-header .contact-title { font-size: 2.25rem; } } @media (min-width: 1280px) { .contact-section .contact-header .contact-title { font-size: 3rem; } } .contact-section .contact-header .contact-subtitle { font-size: 1.125rem; color: #495057; max-width: 600px; margin: 0 auto; line-height: 1.6; } .contact-section .contact-content { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 3rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .contact-section .contact-content { display: block; } .contact-section .contact-content > * { display: inline-block; width: calc(100% - 3rem); margin-right: 3rem; vertical-align: top; } .contact-section .contact-content > *:nth-child(1n) { margin-right: 0; } } @media (min-width: 1280px) { .contact-section .contact-content { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: start; } } @media screen and (min-width: 1280px) and (-ms-high-contrast: active), (min-width: 1280px) and (-ms-high-contrast: none) { .contact-section .contact-content { display: block; } .contact-section .contact-content > * { display: inline-block; width: calc(50% - 4rem); margin-right: 4rem; vertical-align: top; } .contact-section .contact-content > *:nth-child(2n) { margin-right: 0; } } .contact-section .contact-content .contact-info { background: #ffffff; -webkit-border-radius: 1rem; -moz-border-radius: 1rem; border-radius: 1rem; -webkit-box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; -moz-box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; } @media (min-width: 1024px) { .contact-section .contact-content .contact-info { padding: 3rem; } } .contact-section .contact-content .contact-info .info-title { font-size: 1.5rem; font-weight: 600; color: #1C1C1C; margin-bottom: 1.5rem; } .contact-section .contact-content .contact-info .info-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; margin-bottom: 1.5rem; } .contact-section .contact-content .contact-info .info-item:last-child { margin-bottom: 0; } .contact-section .contact-content .contact-info .info-item .info-icon { 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; width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #A26A20 0%, #C2A76E 100%); -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; margin-right: 1rem; } .contact-section .contact-content .contact-info .info-item .info-icon svg { width: 24px; height: 24px; color: #ffffff; fill: #ffffff; } .contact-section .contact-content .contact-info .info-item .info-content { flex: 1; } .contact-section .contact-content .contact-info .info-item .info-content .info-label { font-size: 0.875rem; font-weight: 600; color: #A26A20; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.25rem; } .contact-section .contact-content .contact-info .info-item .info-content .info-text { font-size: 1rem; color: #495057; line-height: 1.6; } .contact-section .contact-content .contact-info .info-item .info-content .info-text a { color: #495057; -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; } .contact-section .contact-content .contact-info .info-item .info-content .info-text a:hover { color: #A26A20; } .contact-section .contact-content .contact-info .social-links { margin-top: 3rem; padding-top: 1.5rem; border-top: 2px solid #e0e0e0; } .contact-section .contact-content .contact-info .social-links .social-title { font-size: 1.125rem; font-weight: 600; color: #1C1C1C; margin-bottom: 1rem; } .contact-section .contact-content .contact-info .social-links .social-icons { 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; } .contact-section .contact-content .contact-info .social-links .social-icons 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: 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: 44px; height: 44px; background: #f8f9fa; -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; } .contact-section .contact-content .contact-info .social-links .social-icons a svg { width: 20px; height: 20px; color: #495057; fill: #495057; -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; } .contact-section .contact-content .contact-info .social-links .social-icons a:hover { background: #A26A20; -webkit-transform: translateY(-3px); -moz-transform: translateY(-3px); -ms-transform: translateY(-3px); -o-transform: translateY(-3px); transform: translateY(-3px); } .contact-section .contact-content .contact-info .social-links .social-icons a:hover svg { color: #ffffff; fill: #ffffff; } .contact-section .contact-content .contact-form { background: #ffffff; -webkit-border-radius: 1rem; -moz-border-radius: 1rem; border-radius: 1rem; -webkit-box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; -moz-box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; box-shadow: "0 0 20px rgba(0, 0, 0, 0.1)"; } @media (min-width: 1024px) { .contact-section .contact-content .contact-form { padding: 3rem; } } .contact-section .contact-content .contact-form .form-title { font-size: 1.5rem; font-weight: 600; color: #1C1C1C; margin-bottom: 1.5rem; } .contact-section .contact-content .form-group { margin-bottom: 1.5rem; } .contact-section .contact-content .form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: #1C1C1C; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; } .contact-section .contact-content .form-group label .required { color: #C98A8A; margin-left: 4px; } .contact-section .contact-content .form-group input, .contact-section .contact-content .form-group textarea, .contact-section .contact-content .form-group select { width: 100%; padding: 1rem; font-family: "Lexend", sans-serif; font-size: 1rem; color: #495057; background: #ffffff; border: 2px solid #e0e0e0; -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; } .contact-section .contact-content .form-group input:focus, .contact-section .contact-content .form-group textarea:focus, .contact-section .contact-content .form-group select:focus { outline: none; border-color: #A26A20; -webkit-box-shadow: 0 0 0 3px rgba(162, 106, 32, 0.1); -moz-box-shadow: 0 0 0 3px rgba(162, 106, 32, 0.1); box-shadow: 0 0 0 3px rgba(162, 106, 32, 0.1); } .contact-section .contact-content .form-group input::placeholder, .contact-section .contact-content .form-group textarea::placeholder, .contact-section .contact-content .form-group select::placeholder { color: rgb(140.8125, 150, 159.1875); } .contact-section .contact-content .form-group textarea { min-height: 150px; resize: vertical; } .contact-section .contact-content .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; } .contact-section .contact-content .form-group.error input, .contact-section .contact-content .form-group.error textarea, .contact-section .contact-content .form-group.error select { border-color: #C98A8A; } .contact-section .contact-content .form-row { display: -ms-grid; display: grid; -ms-grid-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr); gap: 1rem; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .contact-section .contact-content .form-row { display: block; } .contact-section .contact-content .form-row > * { display: inline-block; width: calc(100% - 1rem); margin-right: 1rem; vertical-align: top; } .contact-section .contact-content .form-row > *:nth-child(1n) { margin-right: 0; } } @media (min-width: 1024px) { .contact-section .contact-content .form-row { display: -ms-grid; display: grid; -ms-grid-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr); gap: 1rem; } } @media screen and (min-width: 1024px) and (-ms-high-contrast: active), (min-width: 1024px) and (-ms-high-contrast: none) { .contact-section .contact-content .form-row { display: block; } .contact-section .contact-content .form-row > * { display: inline-block; width: calc(50% - 1rem); margin-right: 1rem; vertical-align: top; } .contact-section .contact-content .form-row > *:nth-child(2n) { margin-right: 0; } } .contact-section .contact-content .error-message { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: #C98A8A; } .contact-section .contact-content .form-actions { margin-top: 3rem; 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; } @media (min-width: 1024px) { .contact-section .contact-content .form-actions { -webkit-box-pack: end; -webkit-justify-content: flex-end; -moz-justify-content: flex-end; -ms-justify-content: flex-end; justify-content: flex-end; } } .contact-section .contact-content .btn { cursor: pointer; border: 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) { .contact-section .contact-content .btn { padding: 0.5rem 2rem; font-size: 1rem; line-height: 1.4; } } @media (min-width: 1280px) { .contact-section .contact-content .btn { padding: 0.625rem 2.5rem; font-size: 1rem; line-height: 1.4; } } @media (min-width: 1440px) { .contact-section .contact-content .btn { padding: 0.75rem 3rem; font-size: 1rem; line-height: 1.5; } } .contact-section .contact-content .btn.btn-primary { background: linear-gradient(135deg, #A26A20 0%, #C2A76E 100%); color: #ffffff; font-weight: 600; padding: 1rem 3rem; } @media (min-width: 1024px) { .contact-section .contact-content .btn.btn-primary { padding: 1rem 4rem; } } .contact-section .contact-content .btn.btn-primary: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 20px rgba(162, 106, 32, 0.3); -moz-box-shadow: 0 10px 20px rgba(162, 106, 32, 0.3); box-shadow: 0 10px 20px rgba(162, 106, 32, 0.3); } .contact-section .contact-content .btn.btn-primary:active { -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } .contact-section .contact-content .btn.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; -webkit-transform: none; -moz-transform: none; -ms-transform: none; -o-transform: none; transform: none; } .contact-section .contact-content .btn.btn-secondary { background: transparent; color: #A26A20; border: 2px solid #A26A20; font-weight: 500; padding: calc(1rem - 2px) 1.5rem; } .contact-section .contact-content .btn.btn-secondary:hover { background: rgba(162, 106, 32, 0.1); } .contact-section .contact-content .success-message { background: linear-gradient(135deg, rgba(165, 216, 138, 0.1) 0%, rgba(240, 234, 226, 0.05) 100%); border: 2px solid #A5D88A; -webkit-border-radius: 0.5rem; -moz-border-radius: 0.5rem; border-radius: 0.5rem; padding: 1.5rem; margin-bottom: 1.5rem; 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; } .contact-section .contact-content .success-message .success-icon { 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; width: 40px; height: 40px; min-width: 40px; background: #A5D88A; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; margin-right: 1rem; } .contact-section .contact-content .success-message .success-icon svg { width: 20px; height: 20px; color: #ffffff; fill: #ffffff; } .contact-section .contact-content .success-message .success-content { flex: 1; } .contact-section .contact-content .success-message .success-content .success-title { font-size: 1.125rem; font-weight: 600; color: #B85C38; margin-bottom: 0.25rem; } .contact-section .contact-content .success-message .success-content .success-text { font-size: 0.875rem; color: #495057; } .contact-section .contact-content .btn-loading { position: relative; color: transparent !important; pointer-events: none; } .contact-section .contact-content .btn-loading::after { content: ""; position: absolute; width: 20px; height: 20px; top: 50%; left: 50%; margin-left: -10px; margin-top: -10px; border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #ffffff; animation: spinner 0.8s linear infinite; } @keyframes spinner { to { transform: rotate(360deg); } } @media (max-width: 1280px) { .contact-section .contact-content .contact-content .contact-info { order: 2; } .contact-section .contact-content .contact-content .contact-form { order: 1; } } /* * MultiIT - HTML Template * Main SCSS file */ .privacy-policy { margin: 0 auto; line-height: 1.7; color: #212529; } .privacy-policy .policy-section { max-width: 1000px; margin: 0px auto; padding-bottom: 20px; animation: fadeInUp 0.6s ease-out both; } .privacy-policy .policy-section h2 { font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; color: #A26A20; margin-bottom: 0.5rem; } .privacy-policy .policy-section p { font-size: 1rem; color: #212529; margin-bottom: 0.5rem; } .privacy-policy .policy-section ul { list-style: none; padding: 0; } .privacy-policy .policy-section ul li { padding-left: 1.2rem; position: relative; margin-bottom: 0.8rem; } .privacy-policy .policy-section ul li::before { content: "•"; color: #A26A20; position: absolute; left: 0; top: 0.2rem; font-size: 1.2rem; } .privacy-policy .policy-section a { color: #A26A20; text-decoration: none; transition: color 0.3s ease; } .privacy-policy .policy-section a:hover { color: #A67C52; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 1024px) { .privacy-policy { padding: 3rem 0.5rem; } .hero { padding: 4rem 0; } .hero .hero-title { font-size: 2rem; } .hero .hero-subtitle { font-size: 1rem; } } /* * MultiIT - HTML Template * Main SCSS file */ .page-header { position: relative; height: 600px; 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; overflow: hidden; } .page-header .page-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; opacity: 0.7; } .page-header .page-header-bg .image { width: 100%; height: 100%; object-fit: cover; } .page-header .page-header-content { position: relative; z-index: 10; text-align: center; max-width: 800px; padding: 0 20px; } .page-header .page-header-content .breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 20px; } .page-header .page-header-content .breadcrumb .breadcrumb-link { color: rgba(255, 255, 255, 0.8); text-decoration: none; } .page-header .page-header-content .breadcrumb .breadcrumb-link:hover { color: white; } .page-header .page-header-content .breadcrumb .breadcrumb-separator svg { width: 16px; height: 16px; fill: white; } .page-header .page-header-content .breadcrumb .breadcrumb-current { color: white; font-weight: 600; } .page-header .page-header-content .page-title { color: #A26A20; font-size: 3rem; font-weight: bold; margin-bottom: 15px; } @keyframes particleMove { 0% { transform: translateY(0) scale(1); opacity: 0.6; } 50% { transform: translateY(-30px) scale(1.2); opacity: 1; } 100% { transform: translateY(0) scale(1); opacity: 0.6; } } @keyframes rotateSquare { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes blinkTriangle { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.6; } } @keyframes vibrateEllipse { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(5px, -5px); } 50% { transform: translate(-5px, 5px); } 75% { transform: translate(5px, 5px); } } @keyframes moveLine { 0% { transform: translateX(-150%); } 100% { transform: translateX(150%); } } @keyframes floatCircle { 0%, 100% { transform: translateY(0px) translateX(0px); } 33% { transform: translateY(-20px) translateX(15px); } 66% { transform: translateY(15px) translateX(-10px); } } /*# sourceMappingURL=style.css.map */