.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;} .skip-link:focus{position:static;width:auto;height:auto;padding:8px;background:#fff;color:#000;z-index:9999;} .visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);padding:0!important;border:0!important;height:1px!important;width:1px!important;overflow:hidden;} :focus{outline:3px solid Highlight;outline-offset:2px;} :root { --blue: #3b82f6; --indigo: #6366f1; --purple: #8b5cf6; --gold: #f59e0b; --green: #10b981; --pink: #ec4899; --red: #ef4444; --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-300: #d1d5db; --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif; background: var(--gray-50); color: var(--gray-900); line-height: 1.6; } .container { max-width: 1400px; margin: 0 auto; padding: 20px; } .login-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%); } .login-box { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); max-width: 400px; width: 100%; } .login-logo { max-width: 200px; height: auto; display: block; margin: 0 auto 30px; } .login-box h2 { text-align: center; color: var(--indigo); margin-bottom: 30px; font-size: 28px; } .admin-header { background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%); color: white; padding: 20px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } .admin-header .container { display: flex; justify-content: space-between; align-items: center; } .header-logo { max-width: 150px; height: auto; } .admin-nav a { color: white; text-decoration: none; font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: background 0.2s; } .admin-nav a:hover { background: rgba(255,255,255,0.1); } .page-header { margin: 40px 0; } .page-header h1 { font-size: 36px; color: var(--indigo); margin-bottom: 8px; } .page-header p { color: var(--gray-600); font-size: 18px; } .tabs { display: flex; gap: 8px; border-bottom: 2px solid var(--gray-200); margin-bottom: 30px; flex-wrap: wrap; } .tab-btn { padding: 12px 24px; background: transparent; border: none; border-bottom: 3px solid transparent; cursor: pointer; font-weight: 600; color: var(--gray-600); transition: all 0.3s; font-size: 15px; } .tab-btn:hover { color: var(--indigo); } .tab-btn.active { color: var(--indigo); border-bottom-color: var(--indigo); } .tab-content { display: none; } .tab-content.active { display: block; } .btn { padding: 10px 20px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-size: 14px; text-decoration: none; display: inline-block; } .btn-primary { background: var(--indigo); color: white; } .btn-primary:hover { background: #4f46e5; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); } .btn-accent { background: var(--purple); color: white; } .btn-accent:hover { background: #7c3aed; } .btn-secondary { background: var(--gray-200); color: var(--gray-800); } .btn-secondary:hover { background: var(--gray-300); } .btn-danger { background: var(--red); color: white; } .btn-danger:hover { background: #dc2626; } .card { background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 20px; overflow: hidden; } .card-header { padding: 20px; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; } .card-header h3 { color: var(--indigo); font-size: 20px; margin: 0; } .card-body { padding: 20px; } .card-body p { margin: 10px 0; } .card-footer { padding: 15px 20px; background: var(--gray-50); border-top: 1px solid var(--gray-200); display: flex; gap: 10px; flex-wrap: wrap; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--gray-700); } .form-group input[type="text"], .form-group input[type="email"], .form-group input[type="password"], .form-group textarea { width: 100%; padding: 12px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 15px; transition: border-color 0.2s; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--indigo); } .form-actions { display: flex; gap: 10px; margin-top: 20px; } .alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; } .alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--green); } .alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--red); } .action-bar { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; } .badge { padding: 4px 12px; border-radius: 12px; font-size: 13px; font-weight: 600; background: var(--indigo); color: white; } .message-box { background: var(--gray-50); padding: 15px; border-radius: 8px; border-left: 4px solid var(--indigo); margin: 15px 0; } .message-box p { white-space: pre-wrap; line-height: 1.6; margin: 8px 0 0 0; } .text-muted { color: var(--gray-600); font-size: 14px; } .text-center { text-align: center; } .empty-state { background: white; padding: 40px; border-radius: 12px; text-align: center; color: var(--gray-600); font-size: 16px; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; } .stat-card { padding: 24px; border-radius: 12px; color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .stat-card h4 { font-size: 14px; opacity: 0.9; margin-bottom: 12px; font-weight: 600; } .stat-number { font-size: 36px; font-weight: bold; margin: 8px 0; } .stat-card p { font-size: 13px; opacity: 0.8; margin: 0; } .stat-green { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); } .stat-purple { background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); } .stat-blue { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); } .stat-indigo { background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); } .stat-gold { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); } .stat-pink { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); } .analytics-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 15px; } .live-indicator { display: flex; align-items: center; color: var(--gray-600); font-size: 14px; margin: 0; } .pulse-dot { display: inline-block; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; margin-right: 8px; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .table-responsive { overflow-x: auto; } .data-table { width: 100%; border-collapse: collapse; } .data-table thead { background: var(--indigo); color: white; } .data-table th { padding: 14px; text-align: left; font-weight: 600; font-size: 14px; } .data-table td { padding: 14px; border-bottom: 1px solid var(--gray-200); font-size: 14px; } .data-table tbody tr { transition: background 0.2s; } .clickable-row { cursor: pointer; } .clickable-row:hover { background: var(--gray-50); } .row-active { background: #f0fdf4; } .row-active:hover { background: #dcfce7; } .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); align-items: center; justify-content: center; padding: 20px; overflow-y: auto; } .modal-content { background: white; max-width: 900px; width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); margin: 40px auto; } .modal-header { padding: 30px; border-bottom: 2px solid var(--gray-200); position: relative; } .modal-header h2 { color: var(--indigo); margin: 0 0 10px 0; } .modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 32px; cursor: pointer; color: var(--gray-600); line-height: 1; transition: color 0.2s; } .modal-close:hover { color: var(--gray-900); } .modal-body { padding: 30px; max-height: 70vh; overflow-y: auto; } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px; } .info-item { background: var(--gray-50); padding: 15px; border-radius: 8px; display: flex; flex-direction: column; gap: 8px; } .info-label { font-size: 12px; color: var(--gray-600); text-transform: uppercase; font-weight: 600; } .info-value { font-size: 16px; color: var(--indigo); font-weight: 600; word-break: break-word; } .referrer-box { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); padding: 20px; border-radius: 10px; border-left: 4px solid var(--blue); margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; } .referrer-box .info-value { color: var(--blue); font-size: 18px; } .modal-body h3 { color: var(--indigo); margin: 0 0 15px 0; font-size: 20px; } .page-history-item { padding: 15px; border-left: 3px solid var(--indigo); margin-bottom: 10px; background: var(--gray-50); border-radius: 0 8px 8px 0; transition: background 0.2s; } .page-history-item:hover { background: #e0e7ff; } .page-history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 15px; } .page-history-header strong { color: var(--indigo); font-size: 16px; } @media (max-width: 768px) { .container { padding: 15px; } .page-header h1 { font-size: 28px; } .tabs { flex-direction: column; border-bottom: none; } .tab-btn { border-bottom: none; border-left: 3px solid transparent; text-align: left; } .tab-btn.active { border-left-color: var(--indigo); background: var(--gray-50); } .stats-grid { grid-template-columns: 1fr; } .info-grid { grid-template-columns: 1fr; } .action-bar { flex-direction: column; } .action-bar .btn { width: 100%; } .card-footer { flex-direction: column; } .card-footer .btn { width: 100%; } } .ql-container { font-size: 16px; } .ql-editor { min-height: 300px; } .ql-toolbar { background: var(--gray-50); border-radius: 8px 8px 0 0; } .blog-section { padding: 60px 0; min-height: 70vh; } .blog-title { font-size: 42px; margin-bottom: 10px; color: #333; } .blog-subtitle { font-size: 18px; color: #666; margin-bottom: 40px; } .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; } .blog-card { background: white; border-radius: 12px; padding: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; } .blog-card:hover { transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); } .blog-card-title { font-size: 24px; margin-bottom: 10px; color: #333; } .blog-card-date { font-size: 14px; color: #888; margin-bottom: 15px; } .blog-card-excerpt { font-size: 16px; line-height: 1.6; color: #555; margin-bottom: 20px; } .blog-card-link { display: inline-block; color: #6366f1; font-weight: 600; text-decoration: none; transition: color 0.2s; } .blog-card-link:hover { color: #4f46e5; } .empty-message { text-align: center; color: #666; font-size: 18px; padding: 40px; } .blog-post { max-width: 800px; margin: 0 auto; padding: 40px 20px; } .blog-post h1 { font-size: 36px; margin-bottom: 10px; color: #333; line-height: 1.3; } .blog-post-meta { color: #666; margin-bottom: 30px; font-size: 16px; } .blog-post-content { line-height: 1.8; font-size: 18px; color: #333; } .blog-post-content h2 { font-size: 28px; margin: 30px 0 15px; color: #333; } .blog-post-content h3 { font-size: 22px; margin: 25px 0 12px; color: #444; } .blog-post-content p { margin-bottom: 20px; } .blog-post-content ul, .blog-post-content ol { margin: 20px 0; padding-left: 30px; } .blog-post-content li { margin-bottom: 10px; } .blog-post-content strong { font-weight: 600; color: #333; } .blog-post-content em { font-style: italic; } .blog-post-content a { color: #6366f1; text-decoration: underline; } .blog-post-back { margin-top: 40px; padding-top: 30px; border-top: 2px solid #e5e5e5; } .blog-post-back a { display: inline-block; padding: 12px 24px; background: #6366f1; color: white; text-decoration: none; border-radius: 6px; font-weight: 600; transition: background 0.2s; } .blog-post-back a:hover { background: #4f46e5; } .grecaptcha-badge{ visibility: collapse !important; } :root { --animate-duration: 0.4s; --animate-delay: 0.1s; --animate-repeat: 1; } .animate__animated { -webkit-animation-duration: var(--animate-duration)s; animation-duration: var(--animate-duration); -webkit-animation-duration: var(--animate-duration); animation-duration: var(--animate-duration); -webkit-animation-fill-mode: both; animation-fill-mode: both; } .animate__animated.animate__infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } .animate__animated.animate__repeat-1 { -webkit-animation-iteration-count: 1; animation-iteration-count: 1; -webkit-animation-iteration-count: var(--animate-repeat); animation-iteration-count: var(--animate-repeat); } .animate__animated.animate__repeat-2 { -webkit-animation-iteration-count: calc(1 * 2); animation-iteration-count: calc(1 * 2); -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2); animation-iteration-count: calc(var(--animate-repeat) * 2); } .animate__animated.animate__repeat-3 { -webkit-animation-iteration-count: calc(1 * 3); animation-iteration-count: calc(1 * 3); -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3); animation-iteration-count: calc(var(--animate-repeat) * 3); } .animate__animated.animate__delay-1s { -webkit-animation-delay: 1s; animation-delay: 1s; -webkit-animation-delay: var(--animate-delay); animation-delay: var(--animate-delay); } .animate__animated.animate__delay-2s { -webkit-animation-delay: calc(1s * 2); animation-delay: calc(1s * 2); -webkit-animation-delay: calc(var(--animate-delay) * 2); animation-delay: calc(var(--animate-delay) * 2); } .animate__animated.animate__delay-3s { -webkit-animation-delay: calc(1s * 3); animation-delay: calc(1s * 3); -webkit-animation-delay: calc(var(--animate-delay) * 3); animation-delay: calc(var(--animate-delay) * 3); } .animate__animated.animate__delay-4s { -webkit-animation-delay: calc(1s * 4); animation-delay: calc(1s * 4); -webkit-animation-delay: calc(var(--animate-delay) * 4); animation-delay: calc(var(--animate-delay) * 4); } .animate__animated.animate__delay-5s { -webkit-animation-delay: calc(1s * 5); animation-delay: calc(1s * 5); -webkit-animation-delay: calc(var(--animate-delay) * 5); animation-delay: calc(var(--animate-delay) * 5); } .animate__animated.animate__faster { -webkit-animation-duration: calc(1s / 2); animation-duration: calc(1s / 2); -webkit-animation-duration: calc(var(--animate-duration) / 2); animation-duration: calc(var(--animate-duration) / 2); } .animate__animated.animate__fast { -webkit-animation-duration: calc(1s * 0.8); animation-duration: calc(1s * 0.8); -webkit-animation-duration: calc(var(--animate-duration) * 0.8); animation-duration: calc(var(--animate-duration) * 0.8); } .animate__animated.animate__slow { -webkit-animation-duration: calc(1s * 2); animation-duration: calc(1s * 2); -webkit-animation-duration: calc(var(--animate-duration) * 2); animation-duration: calc(var(--animate-duration) * 2); } .animate__animated.animate__slower { -webkit-animation-duration: calc(1s * 3); animation-duration: calc(1s * 3); -webkit-animation-duration: calc(var(--animate-duration) * 3); animation-duration: calc(var(--animate-duration) * 3); } @media print, (prefers-reduced-motion: reduce) { .animate__animated { -webkit-animation-duration: 1ms !important; animation-duration: 1ms !important; -webkit-transition-duration: 1ms !important; transition-duration: 1ms !important; -webkit-animation-iteration-count: 1 !important; animation-iteration-count: 1 !important; } .animate__animated[class*='Out'] { opacity: 0; } } @-webkit-keyframes bounce { from, 20%, 53%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 40%, 43% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1); transform: translate3d(0, -30px, 0) scaleY(1.1); } 70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05); transform: translate3d(0, -15px, 0) scaleY(1.05); } 80% { -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 0, 0) scaleY(0.95); transform: translate3d(0, 0, 0) scaleY(0.95); } 90% { -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02); transform: translate3d(0, -4px, 0) scaleY(1.02); } } @keyframes bounce { from, 20%, 53%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 40%, 43% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1); transform: translate3d(0, -30px, 0) scaleY(1.1); } 70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05); transform: translate3d(0, -15px, 0) scaleY(1.05); } 80% { -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 0, 0) scaleY(0.95); transform: translate3d(0, 0, 0) scaleY(0.95); } 90% { -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02); transform: translate3d(0, -4px, 0) scaleY(1.02); } } .animate__bounce { -webkit-animation-name: bounce; animation-name: bounce; -webkit-transform-origin: center bottom; transform-origin: center bottom; } @-webkit-keyframes flash { from, 50%, to { opacity: 1; } 25%, 75% { opacity: 0; } } @keyframes flash { from, 50%, to { opacity: 1; } 25%, 75% { opacity: 0; } } .animate__flash { -webkit-animation-name: flash; animation-name: flash; } @-webkit-keyframes pulse { from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 50% { -webkit-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); } to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes pulse { from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 50% { -webkit-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); } to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } .animate__pulse { -webkit-animation-name: pulse; animation-name: pulse; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } @-webkit-keyframes rubberBand { from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes rubberBand { from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } .animate__rubberBand { -webkit-animation-name: rubberBand; animation-name: rubberBand; } @-webkit-keyframes shakeX { from, to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 20%, 40%, 60%, 80% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } } @keyframes shakeX { from, to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 20%, 40%, 60%, 80% { -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } } .animate__shakeX { -webkit-animation-name: shakeX; animation-name: shakeX; } @-webkit-keyframes shakeY { from, to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 20%, 40%, 60%, 80% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } } @keyframes shakeY { from, to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 20%, 40%, 60%, 80% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } } .animate__shakeY { -webkit-animation-name: shakeY; animation-name: shakeY; } @-webkit-keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); } 6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); } 18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); } 31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); } 43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); } 50% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); } 6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); } 18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); } 31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); } 43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); } 50% { -webkit-transform: translateX(0); transform: translateX(0); } } .animate__headShake { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-name: headShake; animation-name: headShake; } @-webkit-keyframes swing { 20% { -webkit-transform: rotate3d(0, 0, 1, 15deg); transform: rotate3d(0, 0, 1, 15deg); } 40% { -webkit-transform: rotate3d(0, 0, 1, -10deg); transform: rotate3d(0, 0, 1, -10deg); } 60% { -webkit-transform: rotate3d(0, 0, 1, 5deg); transform: rotate3d(0, 0, 1, 5deg); } 80% { -webkit-transform: rotate3d(0, 0, 1, -5deg); transform: rotate3d(0, 0, 1, -5deg); } to { -webkit-transform: rotate3d(0, 0, 1, 0deg); transform: rotate3d(0, 0, 1, 0deg); } } @keyframes swing { 20% { -webkit-transform: rotate3d(0, 0, 1, 15deg); transform: rotate3d(0, 0, 1, 15deg); } 40% { -webkit-transform: rotate3d(0, 0, 1, -10deg); transform: rotate3d(0, 0, 1, -10deg); } 60% { -webkit-transform: rotate3d(0, 0, 1, 5deg); transform: rotate3d(0, 0, 1, 5deg); } 80% { -webkit-transform: rotate3d(0, 0, 1, -5deg); transform: rotate3d(0, 0, 1, -5deg); } to { -webkit-transform: rotate3d(0, 0, 1, 0deg); transform: rotate3d(0, 0, 1, 0deg); } } .animate__swing { -webkit-transform-origin: top center; transform-origin: top center; -webkit-animation-name: swing; animation-name: swing; } @-webkit-keyframes tada { from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 10%, 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); } 30%, 50%, 70%, 90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); } 40%, 60%, 80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); } to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes tada { from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 10%, 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); } 30%, 50%, 70%, 90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); } 40%, 60%, 80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); } to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } .animate__tada { -webkit-animation-name: tada; animation-name: tada; } @-webkit-keyframes wobble { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 15% { -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); } 30% { -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); } 45% { -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); } 60% { -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); } 75% { -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes wobble { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 15% { -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); } 30% { -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); } 45% { -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); } 60% { -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); } 75% { -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__wobble { -webkit-animation-name: wobble; animation-name: wobble; } @-webkit-keyframes jello { from, 11.1%, to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); transform: skewX(0.390625deg) skewY(0.390625deg); } 88.8% { -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } } @keyframes jello { from, 11.1%, to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } 22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); transform: skewX(0.390625deg) skewY(0.390625deg); } 88.8% { -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } } .animate__jello { -webkit-animation-name: jello; animation-name: jello; -webkit-transform-origin: center; transform-origin: center; } @-webkit-keyframes heartBeat { 0% { -webkit-transform: scale(1); transform: scale(1); } 14% { -webkit-transform: scale(1.3); transform: scale(1.3); } 28% { -webkit-transform: scale(1); transform: scale(1); } 42% { -webkit-transform: scale(1.3); transform: scale(1.3); } 70% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes heartBeat { 0% { -webkit-transform: scale(1); transform: scale(1); } 14% { -webkit-transform: scale(1.3); transform: scale(1.3); } 28% { -webkit-transform: scale(1); transform: scale(1); } 42% { -webkit-transform: scale(1.3); transform: scale(1.3); } 70% { -webkit-transform: scale(1); transform: scale(1); } } .animate__heartBeat { -webkit-animation-name: heartBeat; animation-name: heartBeat; -webkit-animation-duration: calc(1s * 1.3); animation-duration: calc(1s * 1.3); -webkit-animation-duration: calc(var(--animate-duration) * 1.3); animation-duration: calc(var(--animate-duration) * 1.3); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } @-webkit-keyframes backInDown { 0% { -webkit-transform: translateY(-1200px) scale(0.7); transform: translateY(-1200px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } @keyframes backInDown { 0% { -webkit-transform: translateY(-1200px) scale(0.7); transform: translateY(-1200px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } .animate__backInDown { -webkit-animation-name: backInDown; animation-name: backInDown; } @-webkit-keyframes backInLeft { 0% { -webkit-transform: translateX(-2000px) scale(0.7); transform: translateX(-2000px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } @keyframes backInLeft { 0% { -webkit-transform: translateX(-2000px) scale(0.7); transform: translateX(-2000px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } .animate__backInLeft { -webkit-animation-name: backInLeft; animation-name: backInLeft; } @-webkit-keyframes backInRight { 0% { -webkit-transform: translateX(2000px) scale(0.7); transform: translateX(2000px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } @keyframes backInRight { 0% { -webkit-transform: translateX(2000px) scale(0.7); transform: translateX(2000px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } .animate__backInRight { -webkit-animation-name: backInRight; animation-name: backInRight; } @-webkit-keyframes backInUp { 0% { -webkit-transform: translateY(1200px) scale(0.7); transform: translateY(1200px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } @keyframes backInUp { 0% { -webkit-transform: translateY(1200px) scale(0.7); transform: translateY(1200px) scale(0.7); opacity: 0.7; } 80% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } .animate__backInUp { -webkit-animation-name: backInUp; animation-name: backInUp; } @-webkit-keyframes backOutDown { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateY(700px) scale(0.7); transform: translateY(700px) scale(0.7); opacity: 0.7; } } @keyframes backOutDown { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateY(700px) scale(0.7); transform: translateY(700px) scale(0.7); opacity: 0.7; } } .animate__backOutDown { -webkit-animation-name: backOutDown; animation-name: backOutDown; } @-webkit-keyframes backOutLeft { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateX(-2000px) scale(0.7); transform: translateX(-2000px) scale(0.7); opacity: 0.7; } } @keyframes backOutLeft { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateX(-2000px) scale(0.7); transform: translateX(-2000px) scale(0.7); opacity: 0.7; } } .animate__backOutLeft { -webkit-animation-name: backOutLeft; animation-name: backOutLeft; } @-webkit-keyframes backOutRight { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateX(2000px) scale(0.7); transform: translateX(2000px) scale(0.7); opacity: 0.7; } } @keyframes backOutRight { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateX(0px) scale(0.7); transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateX(2000px) scale(0.7); transform: translateX(2000px) scale(0.7); opacity: 0.7; } } .animate__backOutRight { -webkit-animation-name: backOutRight; animation-name: backOutRight; } @-webkit-keyframes backOutUp { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateY(-700px) scale(0.7); transform: translateY(-700px) scale(0.7); opacity: 0.7; } } @keyframes backOutUp { 0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 20% { -webkit-transform: translateY(0px) scale(0.7); transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { -webkit-transform: translateY(-700px) scale(0.7); transform: translateY(-700px) scale(0.7); opacity: 0.7; } } .animate__backOutUp { -webkit-animation-name: backOutUp; animation-name: backOutUp; } @-webkit-keyframes bounceIn { from, 20%, 40%, 60%, 80%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } to { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes bounceIn { from, 20%, 40%, 60%, 80%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } to { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } .animate__bounceIn { -webkit-animation-duration: calc(1s * 0.75); animation-duration: calc(1s * 0.75); -webkit-animation-duration: calc(var(--animate-duration) * 0.75); animation-duration: calc(var(--animate-duration) * 0.75); -webkit-animation-name: bounceIn; animation-name: bounceIn; } @-webkit-keyframes bounceInDown { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, -3000px, 0) scaleY(3); transform: translate3d(0, -3000px, 0) scaleY(3); } 60% { opacity: 1; -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9); transform: translate3d(0, 25px, 0) scaleY(0.9); } 75% { -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95); transform: translate3d(0, -10px, 0) scaleY(0.95); } 90% { -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985); transform: translate3d(0, 5px, 0) scaleY(0.985); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes bounceInDown { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(0, -3000px, 0) scaleY(3); transform: translate3d(0, -3000px, 0) scaleY(3); } 60% { opacity: 1; -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9); transform: translate3d(0, 25px, 0) scaleY(0.9); } 75% { -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95); transform: translate3d(0, -10px, 0) scaleY(0.95); } 90% { -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985); transform: translate3d(0, 5px, 0) scaleY(0.985); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__bounceInDown { -webkit-animation-name: bounceInDown; animation-name: bounceInDown; } @-webkit-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3); transform: translate3d(-3000px, 0, 0) scaleX(3); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0) scaleX(1); transform: translate3d(25px, 0, 0) scaleX(1); } 75% { -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98); transform: translate3d(-10px, 0, 0) scaleX(0.98); } 90% { -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995); transform: translate3d(5px, 0, 0) scaleX(0.995); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3); transform: translate3d(-3000px, 0, 0) scaleX(3); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0) scaleX(1); transform: translate3d(25px, 0, 0) scaleX(1); } 75% { -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98); transform: translate3d(-10px, 0, 0) scaleX(0.98); } 90% { -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995); transform: translate3d(5px, 0, 0) scaleX(0.995); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__bounceInLeft { -webkit-animation-name: bounceInLeft; animation-name: bounceInLeft; } @-webkit-keyframes bounceInRight { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } from { opacity: 0; -webkit-transform: translate3d(3000px, 0, 0) scaleX(3); transform: translate3d(3000px, 0, 0) scaleX(3); } 60% { opacity: 1; -webkit-transform: translate3d(-25px, 0, 0) scaleX(1); transform: translate3d(-25px, 0, 0) scaleX(1); } 75% { -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98); transform: translate3d(10px, 0, 0) scaleX(0.98); } 90% { -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995); transform: translate3d(-5px, 0, 0) scaleX(0.995); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes bounceInRight { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } from { opacity: 0; -webkit-transform: translate3d(3000px, 0, 0) scaleX(3); transform: translate3d(3000px, 0, 0) scaleX(3); } 60% { opacity: 1; -webkit-transform: translate3d(-25px, 0, 0) scaleX(1); transform: translate3d(-25px, 0, 0) scaleX(1); } 75% { -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98); transform: translate3d(10px, 0, 0) scaleX(0.98); } 90% { -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995); transform: translate3d(-5px, 0, 0) scaleX(0.995); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__bounceInRight { -webkit-animation-name: bounceInRight; animation-name: bounceInRight; } @-webkit-keyframes bounceInUp { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } from { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0) scaleY(5); transform: translate3d(0, 3000px, 0) scaleY(5); } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); transform: translate3d(0, -20px, 0) scaleY(0.9); } 75% { -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95); transform: translate3d(0, 10px, 0) scaleY(0.95); } 90% { -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985); transform: translate3d(0, -5px, 0) scaleY(0.985); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes bounceInUp { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } from { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0) scaleY(5); transform: translate3d(0, 3000px, 0) scaleY(5); } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); transform: translate3d(0, -20px, 0) scaleY(0.9); } 75% { -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95); transform: translate3d(0, 10px, 0) scaleY(0.95); } 90% { -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985); transform: translate3d(0, -5px, 0) scaleY(0.985); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__bounceInUp { -webkit-animation-name: bounceInUp; animation-name: bounceInUp; } @-webkit-keyframes bounceOut { 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%, 55% { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } to { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } @keyframes bounceOut { 20% { -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%, 55% { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } to { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } .animate__bounceOut { -webkit-animation-duration: calc(1s * 0.75); animation-duration: calc(1s * 0.75); -webkit-animation-duration: calc(var(--animate-duration) * 0.75); animation-duration: calc(var(--animate-duration) * 0.75); -webkit-animation-name: bounceOut; animation-name: bounceOut; } @-webkit-keyframes bounceOutDown { 20% { -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985); transform: translate3d(0, 10px, 0) scaleY(0.985); } 40%, 45% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); transform: translate3d(0, -20px, 0) scaleY(0.9); } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0) scaleY(3); transform: translate3d(0, 2000px, 0) scaleY(3); } } @keyframes bounceOutDown { 20% { -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985); transform: translate3d(0, 10px, 0) scaleY(0.985); } 40%, 45% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); transform: translate3d(0, -20px, 0) scaleY(0.9); } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0) scaleY(3); transform: translate3d(0, 2000px, 0) scaleY(3); } } .animate__bounceOutDown { -webkit-animation-name: bounceOutDown; animation-name: bounceOutDown; } @-webkit-keyframes bounceOutLeft { 20% { opacity: 1; -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9); transform: translate3d(20px, 0, 0) scaleX(0.9); } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2); transform: translate3d(-2000px, 0, 0) scaleX(2); } } @keyframes bounceOutLeft { 20% { opacity: 1; -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9); transform: translate3d(20px, 0, 0) scaleX(0.9); } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2); transform: translate3d(-2000px, 0, 0) scaleX(2); } } .animate__bounceOutLeft { -webkit-animation-name: bounceOutLeft; animation-name: bounceOutLeft; } @-webkit-keyframes bounceOutRight { 20% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9); transform: translate3d(-20px, 0, 0) scaleX(0.9); } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0) scaleX(2); transform: translate3d(2000px, 0, 0) scaleX(2); } } @keyframes bounceOutRight { 20% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9); transform: translate3d(-20px, 0, 0) scaleX(0.9); } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0) scaleX(2); transform: translate3d(2000px, 0, 0) scaleX(2); } } .animate__bounceOutRight { -webkit-animation-name: bounceOutRight; animation-name: bounceOutRight; } @-webkit-keyframes bounceOutUp { 20% { -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985); transform: translate3d(0, -10px, 0) scaleY(0.985); } 40%, 45% { opacity: 1; -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9); transform: translate3d(0, 20px, 0) scaleY(0.9); } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0) scaleY(3); transform: translate3d(0, -2000px, 0) scaleY(3); } } @keyframes bounceOutUp { 20% { -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985); transform: translate3d(0, -10px, 0) scaleY(0.985); } 40%, 45% { opacity: 1; -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9); transform: translate3d(0, 20px, 0) scaleY(0.9); } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0) scaleY(3); transform: translate3d(0, -2000px, 0) scaleY(3); } } .animate__bounceOutUp { -webkit-animation-name: bounceOutUp; animation-name: bounceOutUp; } @-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .animate__fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; } @-webkit-keyframes fadeInDown { from { opacity: 0; -webkit-transform: translateY(0, 300px, 0); transform: translateY(0, 300px, 0); } to { opacity: 1; -webkit-transform: translateY(0, 0, 0); transform: translateY(0, 0, 0); } } @keyframes fadeInDown { from { opacity: 0; -webkit-transform: translateY(0, 300px, 0); transform: translateY(0, 300px, 0); } to { opacity: 1; -webkit-transform: translateY(0, 0, 0); transform: translateY(0, 0, 0); } } .animate__fadeInDown { -webkit-animation-name: fadeInDown; animation-name: fadeInDown; } @-webkit-keyframes fadeInDownBig { from { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInDownBig { from { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInDownBig { -webkit-animation-name: fadeInDownBig; animation-name: fadeInDownBig; } @-webkit-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInLeft { -webkit-animation-name: fadeInLeft; animation-name: fadeInLeft; } @-webkit-keyframes fadeInLeftBig { from { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInLeftBig { from { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInLeftBig { -webkit-animation-name: fadeInLeftBig; animation-name: fadeInLeftBig; } @-webkit-keyframes fadeInRight { from { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInRight { from { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInRight { -webkit-animation-name: fadeInRight; animation-name: fadeInRight; } @-webkit-keyframes fadeInRightBig { from { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInRightBig { from { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInRightBig { -webkit-animation-name: fadeInRightBig; animation-name: fadeInRightBig; } @-webkit-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translateY(150px); transform: translateY(150px); } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; -webkit-transform: translateY(150px); transform: translateY(150px); } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } .animate__fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; } @-webkit-keyframes fadeInUpBig { from { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInUpBig { from { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInUpBig { -webkit-animation-name: fadeInUpBig; animation-name: fadeInUpBig; } @-webkit-keyframes fadeInTopLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, -100%, 0); transform: translate3d(-100%, -100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInTopLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, -100%, 0); transform: translate3d(-100%, -100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInTopLeft { -webkit-animation-name: fadeInTopLeft; animation-name: fadeInTopLeft; } @-webkit-keyframes fadeInTopRight { from { opacity: 0; -webkit-transform: translate3d(100%, -100%, 0); transform: translate3d(100%, -100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInTopRight { from { opacity: 0; -webkit-transform: translate3d(100%, -100%, 0); transform: translate3d(100%, -100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInTopRight { -webkit-animation-name: fadeInTopRight; animation-name: fadeInTopRight; } @-webkit-keyframes fadeInBottomLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 100%, 0); transform: translate3d(-100%, 100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInBottomLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 100%, 0); transform: translate3d(-100%, 100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInBottomLeft { -webkit-animation-name: fadeInBottomLeft; animation-name: fadeInBottomLeft; } @-webkit-keyframes fadeInBottomRight { from { opacity: 0; -webkit-transform: translate3d(100%, 100%, 0); transform: translate3d(100%, 100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes fadeInBottomRight { from { opacity: 0; -webkit-transform: translate3d(100%, 100%, 0); transform: translate3d(100%, 100%, 0); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__fadeInBottomRight { -webkit-animation-name: fadeInBottomRight; animation-name: fadeInBottomRight; } @-webkit-keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } } @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } } .animate__fadeOut { -webkit-animation-name: fadeOut; animation-name: fadeOut; } @-webkit-keyframes fadeOutDown { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } @keyframes fadeOutDown { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } .animate__fadeOutDown { -webkit-animation-name: fadeOutDown; animation-name: fadeOutDown; } @-webkit-keyframes fadeOutDownBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @keyframes fadeOutDownBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } .animate__fadeOutDownBig { -webkit-animation-name: fadeOutDownBig; animation-name: fadeOutDownBig; } @-webkit-keyframes fadeOutLeft { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes fadeOutLeft { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .animate__fadeOutLeft { -webkit-animation-name: fadeOutLeft; animation-name: fadeOutLeft; } @-webkit-keyframes fadeOutLeftBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @keyframes fadeOutLeftBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } .animate__fadeOutLeftBig { -webkit-animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig; } @-webkit-keyframes fadeOutRight { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } @keyframes fadeOutRight { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .animate__fadeOutRight { -webkit-animation-name: fadeOutRight; animation-name: fadeOutRight; } @-webkit-keyframes fadeOutRightBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @keyframes fadeOutRightBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } .animate__fadeOutRightBig { -webkit-animation-name: fadeOutRightBig; animation-name: fadeOutRightBig; } @-webkit-keyframes fadeOutUp { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } @keyframes fadeOutUp { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } .animate__fadeOutUp { -webkit-animation-name: fadeOutUp; animation-name: fadeOutUp; } @-webkit-keyframes fadeOutUpBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @keyframes fadeOutUpBig { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } .animate__fadeOutUpBig { -webkit-animation-name: fadeOutUpBig; animation-name: fadeOutUpBig; } @-webkit-keyframes fadeOutTopLeft { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-100%, -100%, 0); transform: translate3d(-100%, -100%, 0); } } @keyframes fadeOutTopLeft { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-100%, -100%, 0); transform: translate3d(-100%, -100%, 0); } } .animate__fadeOutTopLeft { -webkit-animation-name: fadeOutTopLeft; animation-name: fadeOutTopLeft; } @-webkit-keyframes fadeOutTopRight { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(100%, -100%, 0); transform: translate3d(100%, -100%, 0); } } @keyframes fadeOutTopRight { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(100%, -100%, 0); transform: translate3d(100%, -100%, 0); } } .animate__fadeOutTopRight { -webkit-animation-name: fadeOutTopRight; animation-name: fadeOutTopRight; } @-webkit-keyframes fadeOutBottomRight { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(100%, 100%, 0); transform: translate3d(100%, 100%, 0); } } @keyframes fadeOutBottomRight { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(100%, 100%, 0); transform: translate3d(100%, 100%, 0); } } .animate__fadeOutBottomRight { -webkit-animation-name: fadeOutBottomRight; animation-name: fadeOutBottomRight; } @-webkit-keyframes fadeOutBottomLeft { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-100%, 100%, 0); transform: translate3d(-100%, 100%, 0); } } @keyframes fadeOutBottomLeft { from { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { opacity: 0; -webkit-transform: translate3d(-100%, 100%, 0); transform: translate3d(-100%, 100%, 0); } } .animate__fadeOutBottomLeft { -webkit-animation-name: fadeOutBottomLeft; animation-name: fadeOutBottomLeft; } @-webkit-keyframes flip { from { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 40% { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 50% { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 80% { -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } to { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } } @keyframes flip { from { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 40% { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 50% { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 80% { -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } to { -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } } .animate__animated.animate__flip { -webkit-backface-visibility: visible; backface-visibility: visible; -webkit-animation-name: flip; animation-name: flip; } @-webkit-keyframes flipInX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } @keyframes flipInX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } .animate__flipInX { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInX; animation-name: flipInX; } @-webkit-keyframes flipInY { from { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); transform: perspective(400px) rotate3d(0, 1, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); transform: perspective(400px) rotate3d(0, 1, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); transform: perspective(400px) rotate3d(0, 1, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); transform: perspective(400px) rotate3d(0, 1, 0, -5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } @keyframes flipInY { from { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); transform: perspective(400px) rotate3d(0, 1, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); transform: perspective(400px) rotate3d(0, 1, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); transform: perspective(400px) rotate3d(0, 1, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); transform: perspective(400px) rotate3d(0, 1, 0, -5deg); } to { -webkit-transform: perspective(400px); transform: perspective(400px); } } .animate__flipInY { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInY; animation-name: flipInY; } @-webkit-keyframes flipOutX { from { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); opacity: 0; } } @keyframes flipOutX { from { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); opacity: 0; } } .animate__flipOutX { -webkit-animation-duration: calc(1s * 0.75); animation-duration: calc(1s * 0.75); -webkit-animation-duration: calc(var(--animate-duration) * 0.75); animation-duration: calc(var(--animate-duration) * 0.75); -webkit-animation-name: flipOutX; animation-name: flipOutX; -webkit-backface-visibility: visible !important; backface-visibility: visible !important; } @-webkit-keyframes flipOutY { from { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); transform: perspective(400px) rotate3d(0, 1, 0, -15deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); transform: perspective(400px) rotate3d(0, 1, 0, 90deg); opacity: 0; } } @keyframes flipOutY { from { -webkit-transform: perspective(400px); transform: perspective(400px); } 30% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); transform: perspective(400px) rotate3d(0, 1, 0, -15deg); opacity: 1; } to { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); transform: perspective(400px) rotate3d(0, 1, 0, 90deg); opacity: 0; } } .animate__flipOutY { -webkit-animation-duration: calc(1s * 0.75); animation-duration: calc(1s * 0.75); -webkit-animation-duration: calc(var(--animate-duration) * 0.75); animation-duration: calc(var(--animate-duration) * 0.75); -webkit-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipOutY; animation-name: flipOutY; } @-webkit-keyframes lightSpeedInRight { from { -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { -webkit-transform: skewX(20deg); transform: skewX(20deg); opacity: 1; } 80% { -webkit-transform: skewX(-5deg); transform: skewX(-5deg); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes lightSpeedInRight { from { -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { -webkit-transform: skewX(20deg); transform: skewX(20deg); opacity: 1; } 80% { -webkit-transform: skewX(-5deg); transform: skewX(-5deg); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__lightSpeedInRight { -webkit-animation-name: lightSpeedInRight; animation-name: lightSpeedInRight; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes lightSpeedInLeft { from { -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg); transform: translate3d(-100%, 0, 0) skewX(30deg); opacity: 0; } 60% { -webkit-transform: skewX(-20deg); transform: skewX(-20deg); opacity: 1; } 80% { -webkit-transform: skewX(5deg); transform: skewX(5deg); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes lightSpeedInLeft { from { -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg); transform: translate3d(-100%, 0, 0) skewX(30deg); opacity: 0; } 60% { -webkit-transform: skewX(-20deg); transform: skewX(-20deg); opacity: 1; } 80% { -webkit-transform: skewX(5deg); transform: skewX(5deg); } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__lightSpeedInLeft { -webkit-animation-name: lightSpeedInLeft; animation-name: lightSpeedInLeft; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } @-webkit-keyframes lightSpeedOutRight { from { opacity: 1; } to { -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } } @keyframes lightSpeedOutRight { from { opacity: 1; } to { -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } } .animate__lightSpeedOutRight { -webkit-animation-name: lightSpeedOutRight; animation-name: lightSpeedOutRight; -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } @-webkit-keyframes lightSpeedOutLeft { from { opacity: 1; } to { -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg); transform: translate3d(-100%, 0, 0) skewX(-30deg); opacity: 0; } } @keyframes lightSpeedOutLeft { from { opacity: 1; } to { -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg); transform: translate3d(-100%, 0, 0) skewX(-30deg); opacity: 0; } } .animate__lightSpeedOutLeft { -webkit-animation-name: lightSpeedOutLeft; animation-name: lightSpeedOutLeft; -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } @-webkit-keyframes rotateIn { from { -webkit-transform: rotate3d(0, 0, 1, -200deg); transform: rotate3d(0, 0, 1, -200deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes rotateIn { from { -webkit-transform: rotate3d(0, 0, 1, -200deg); transform: rotate3d(0, 0, 1, -200deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } .animate__rotateIn { -webkit-animation-name: rotateIn; animation-name: rotateIn; -webkit-transform-origin: center; transform-origin: center; } @-webkit-keyframes rotateInDownLeft { from { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes rotateInDownLeft { from { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } .animate__rotateInDownLeft { -webkit-animation-name: rotateInDownLeft; animation-name: rotateInDownLeft; -webkit-transform-origin: left bottom; transform-origin: left bottom; } @-webkit-keyframes rotateInDownRight { from { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes rotateInDownRight { from { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } .animate__rotateInDownRight { -webkit-animation-name: rotateInDownRight; animation-name: rotateInDownRight; -webkit-transform-origin: right bottom; transform-origin: right bottom; } @-webkit-keyframes rotateInUpLeft { from { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes rotateInUpLeft { from { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } .animate__rotateInUpLeft { -webkit-animation-name: rotateInUpLeft; animation-name: rotateInUpLeft; -webkit-transform-origin: left bottom; transform-origin: left bottom; } @-webkit-keyframes rotateInUpRight { from { -webkit-transform: rotate3d(0, 0, 1, -90deg); transform: rotate3d(0, 0, 1, -90deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes rotateInUpRight { from { -webkit-transform: rotate3d(0, 0, 1, -90deg); transform: rotate3d(0, 0, 1, -90deg); opacity: 0; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; } } .animate__rotateInUpRight { -webkit-animation-name: rotateInUpRight; animation-name: rotateInUpRight; -webkit-transform-origin: right bottom; transform-origin: right bottom; } @-webkit-keyframes rotateOut { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, 200deg); transform: rotate3d(0, 0, 1, 200deg); opacity: 0; } } @keyframes rotateOut { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, 200deg); transform: rotate3d(0, 0, 1, 200deg); opacity: 0; } } .animate__rotateOut { -webkit-animation-name: rotateOut; animation-name: rotateOut; -webkit-transform-origin: center; transform-origin: center; } @-webkit-keyframes rotateOutDownLeft { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } } @keyframes rotateOutDownLeft { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } } .animate__rotateOutDownLeft { -webkit-animation-name: rotateOutDownLeft; animation-name: rotateOutDownLeft; -webkit-transform-origin: left bottom; transform-origin: left bottom; } @-webkit-keyframes rotateOutDownRight { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } } @keyframes rotateOutDownRight { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } } .animate__rotateOutDownRight { -webkit-animation-name: rotateOutDownRight; animation-name: rotateOutDownRight; -webkit-transform-origin: right bottom; transform-origin: right bottom; } @-webkit-keyframes rotateOutUpLeft { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } } @keyframes rotateOutUpLeft { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } } .animate__rotateOutUpLeft { -webkit-animation-name: rotateOutUpLeft; animation-name: rotateOutUpLeft; -webkit-transform-origin: left bottom; transform-origin: left bottom; } @-webkit-keyframes rotateOutUpRight { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, 90deg); transform: rotate3d(0, 0, 1, 90deg); opacity: 0; } } @keyframes rotateOutUpRight { from { opacity: 1; } to { -webkit-transform: rotate3d(0, 0, 1, 90deg); transform: rotate3d(0, 0, 1, 90deg); opacity: 0; } } .animate__rotateOutUpRight { -webkit-animation-name: rotateOutUpRight; animation-name: rotateOutUpRight; -webkit-transform-origin: right bottom; transform-origin: right bottom; } @-webkit-keyframes hinge { 0% { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 20%, 60% { -webkit-transform: rotate3d(0, 0, 1, 80deg); transform: rotate3d(0, 0, 1, 80deg); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 40%, 80% { -webkit-transform: rotate3d(0, 0, 1, 60deg); transform: rotate3d(0, 0, 1, 60deg); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; opacity: 1; } to { -webkit-transform: translate3d(0, 700px, 0); transform: translate3d(0, 700px, 0); opacity: 0; } } @keyframes hinge { 0% { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 20%, 60% { -webkit-transform: rotate3d(0, 0, 1, 80deg); transform: rotate3d(0, 0, 1, 80deg); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 40%, 80% { -webkit-transform: rotate3d(0, 0, 1, 60deg); transform: rotate3d(0, 0, 1, 60deg); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; opacity: 1; } to { -webkit-transform: translate3d(0, 700px, 0); transform: translate3d(0, 700px, 0); opacity: 0; } } .animate__hinge { -webkit-animation-duration: calc(1s * 2); animation-duration: calc(1s * 2); -webkit-animation-duration: calc(var(--animate-duration) * 2); animation-duration: calc(var(--animate-duration) * 2); -webkit-animation-name: hinge; animation-name: hinge; -webkit-transform-origin: top left; transform-origin: top left; } @-webkit-keyframes jackInTheBox { from { opacity: 0; -webkit-transform: scale(0.1) rotate(30deg); transform: scale(0.1) rotate(30deg); -webkit-transform-origin: center bottom; transform-origin: center bottom; } 50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 70% { -webkit-transform: rotate(3deg); transform: rotate(3deg); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @keyframes jackInTheBox { from { opacity: 0; -webkit-transform: scale(0.1) rotate(30deg); transform: scale(0.1) rotate(30deg); -webkit-transform-origin: center bottom; transform-origin: center bottom; } 50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 70% { -webkit-transform: rotate(3deg); transform: rotate(3deg); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } .animate__jackInTheBox { -webkit-animation-name: jackInTheBox; animation-name: jackInTheBox; } @-webkit-keyframes rollIn { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes rollIn { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); } to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__rollIn { -webkit-animation-name: rollIn; animation-name: rollIn; } @-webkit-keyframes rollOut { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } } @keyframes rollOut { from { opacity: 1; } to { opacity: 0; -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } } .animate__rollOut { -webkit-animation-name: rollOut; animation-name: rollOut; } @-webkit-keyframes zoomIn { from { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50% { opacity: 1; } } @keyframes zoomIn { from { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 50% { opacity: 1; } } .animate__zoomIn { -webkit-animation-name: zoomIn; animation-name: zoomIn; } @-webkit-keyframes zoomInDown { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInDown { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .animate__zoomInDown { -webkit-animation-name: zoomInDown; animation-name: zoomInDown; } @-webkit-keyframes zoomInLeft { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInLeft { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .animate__zoomInLeft { -webkit-animation-name: zoomInLeft; animation-name: zoomInLeft; } @-webkit-keyframes zoomInRight { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInRight { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .animate__zoomInRight { -webkit-animation-name: zoomInRight; animation-name: zoomInRight; } @-webkit-keyframes zoomInUp { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomInUp { from { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .animate__zoomInUp { -webkit-animation-name: zoomInUp; animation-name: zoomInUp; } @-webkit-keyframes zoomOut { from { opacity: 1; } 50% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } to { opacity: 0; } } @keyframes zoomOut { from { opacity: 1; } 50% { opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } to { opacity: 0; } } .animate__zoomOut { -webkit-animation-name: zoomOut; animation-name: zoomOut; } @-webkit-keyframes zoomOutDown { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomOutDown { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .animate__zoomOutDown { -webkit-animation-name: zoomOutDown; animation-name: zoomOutDown; -webkit-transform-origin: center bottom; transform-origin: center bottom; } @-webkit-keyframes zoomOutLeft { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); transform: scale(0.1) translate3d(-2000px, 0, 0); } } @keyframes zoomOutLeft { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); transform: scale(0.1) translate3d(-2000px, 0, 0); } } .animate__zoomOutLeft { -webkit-animation-name: zoomOutLeft; animation-name: zoomOutLeft; -webkit-transform-origin: left center; transform-origin: left center; } @-webkit-keyframes zoomOutRight { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); transform: scale(0.1) translate3d(2000px, 0, 0); } } @keyframes zoomOutRight { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } to { opacity: 0; -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); transform: scale(0.1) translate3d(2000px, 0, 0); } } .animate__zoomOutRight { -webkit-animation-name: zoomOutRight; animation-name: zoomOutRight; -webkit-transform-origin: right center; transform-origin: right center; } @-webkit-keyframes zoomOutUp { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } @keyframes zoomOutUp { 40% { opacity: 1; -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } .animate__zoomOutUp { -webkit-animation-name: zoomOutUp; animation-name: zoomOutUp; -webkit-transform-origin: center bottom; transform-origin: center bottom; } @-webkit-keyframes slideInDown { from { -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes slideInDown { from { -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__slideInDown { -webkit-animation-name: slideInDown; animation-name: slideInDown; } @-webkit-keyframes slideInLeft { from { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes slideInLeft { from { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__slideInLeft { -webkit-animation-name: slideInLeft; animation-name: slideInLeft; } @-webkit-keyframes slideInRight { from { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes slideInRight { from { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__slideInRight { -webkit-animation-name: slideInRight; animation-name: slideInRight; } @-webkit-keyframes slideInUp { from { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @keyframes slideInUp { from { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible; } to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .animate__slideInUp { -webkit-animation-name: slideInUp; animation-name: slideInUp; } @-webkit-keyframes slideOutDown { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } @keyframes slideOutDown { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } } .animate__slideOutDown { -webkit-animation-name: slideOutDown; animation-name: slideOutDown; } @-webkit-keyframes slideOutLeft { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes slideOutLeft { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .animate__slideOutLeft { -webkit-animation-name: slideOutLeft; animation-name: slideOutLeft; } @-webkit-keyframes slideOutRight { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } @keyframes slideOutRight { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .animate__slideOutRight { -webkit-animation-name: slideOutRight; animation-name: slideOutRight; } @-webkit-keyframes slideOutUp { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } @keyframes slideOutUp { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { visibility: hidden; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } } .animate__slideOutUp { -webkit-animation-name: slideOutUp; animation-name: slideOutUp; } .container,.container-fluid{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}@media (min-width:1400px){.container{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-12{flex:0 0 auto;width:100%}@media (min-width:576px){.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-12{flex:0 0 auto;width:100%}}@media (min-width:992px){.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-12{flex:0 0 auto;width:100%}}@media (min-width:1200px){.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.d-table-row{display:table-row!important}.d-flex{display:flex!important}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.justify-content-center{justify-content:center!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.mt-0{margin-top:0!important}.mt-4{margin-top:1.5rem!important}.mb-0{margin-bottom:0!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.pb-3{padding-bottom:1rem!important}@media (min-width:576px){.d-sm-table-row{display:table-row!important}.flex-sm-row{flex-direction:row!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:768px){.d-md-table-row{display:table-row!important}.flex-md-row{flex-direction:row!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:992px){.d-lg-table-row{display:table-row!important}.flex-lg-row{flex-direction:row!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:1200px){.d-xl-table-row{display:table-row!important}.flex-xl-row{flex-direction:row!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}@media (min-width:1400px){.d-xxl-table-row{display:table-row!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}}@media print{.d-print-table-row{display:table-row!important}} *,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}h1,h3,h4,h5{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}p{margin-top:0;margin-bottom:1rem}ul{padding-left:2rem}ul{margin-top:0;margin-bottom:1rem}strong{font-weight:bolder}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}img,svg{vertical-align:middle}tbody{border-color:inherit;border-style:solid;border-width:0}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}iframe{border:0}[hidden]{display:none!important} :root{--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}h1,h3,h4,h5{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}p{margin-top:0;margin-bottom:1rem}ul{padding-left:2rem}ul{margin-top:0;margin-bottom:1rem}strong{font-weight:bolder}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}img,svg{vertical-align:middle}tbody{border-color:inherit;border-style:solid;border-width:0}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}iframe{border:0}[hidden]{display:none!important}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.container,.container-fluid{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}@media (min-width:1400px){.container{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-12{flex:0 0 auto;width:100%}@media (min-width:576px){.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-12{flex:0 0 auto;width:100%}}@media (min-width:992px){.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-12{flex:0 0 auto;width:100%}}@media (min-width:1200px){.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.table>tbody{vertical-align:inherit}.table-striped>tbody>tr:nth-of-type(odd){color:var(--bs-table-striped-color)}.table-hover>tbody>tr:hover{color:var(--bs-table-hover-color)}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn:disabled{pointer-events:none;opacity:.65}.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.dropdown{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-text:last-child{margin-bottom:0}.card-img{width:100%}.card-img{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-body{padding:1rem 1.25rem}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.overflow-scroll{overflow:scroll!important}.d-table-row{display:table-row!important}.d-flex{display:flex!important}.position-static{position:static!important}.w-100{width:100%!important}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.justify-content-center{justify-content:center!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.mt-0{margin-top:0!important}.mt-4{margin-top:1.5rem!important}.mb-0{margin-bottom:0!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.pb-3{padding-bottom:1rem!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-body{background-color:#fff!important}@media (min-width:576px){.d-sm-table-row{display:table-row!important}.flex-sm-row{flex-direction:row!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.d-md-table-row{display:table-row!important}.flex-md-row{flex-direction:row!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.d-lg-table-row{display:table-row!important}.flex-lg-row{flex-direction:row!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.d-xl-table-row{display:table-row!important}.flex-xl-row{flex-direction:row!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.d-xxl-table-row{display:table-row!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media print{.d-print-table-row{display:table-row!important}} .font-block .fab, .font-block .far, .font-block .fas { text-align: center; width: 1.25em;} .fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width: 1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} .navbar-dropdown { left: 0; padding: 0; position: absolute; right: 0; top: 0; transition: all 0.45s ease; z-index: 1030; background: #282828; } .navbar-dropdown .navbar-logo { margin-right: 0.8rem; transition: margin 0.3s ease-in-out; vertical-align: middle; } .navbar-dropdown .navbar-logo img { height: 3.125rem; transition: all 0.3s ease-in-out; } .navbar-dropdown .navbar-logo.mbr-iconfont { font-size: 3.125rem; line-height: 3.125rem; } .navbar-dropdown .navbar-caption { font-weight: 700; white-space: normal; vertical-align: -4px; line-height: 3.125rem !important; } .navbar-dropdown .navbar-caption, .navbar-dropdown .navbar-caption:hover { color: inherit; text-decoration: none; } .navbar-dropdown .mbr-iconfont + .navbar-caption { vertical-align: -1px; } .navbar-dropdown.navbar-fixed-top { position: fixed; } .navbar-dropdown .navbar-brand span { vertical-align: -4px; } .navbar-dropdown.bg-color.transparent { background: none; } .navbar-dropdown.navbar-short .navbar-brand { padding: 0.625rem 0; } .navbar-dropdown.navbar-short .navbar-brand span { vertical-align: -1px; } .navbar-dropdown.navbar-short .navbar-caption { line-height: 2.375rem !important; vertical-align: -2px; } .navbar-dropdown.navbar-short .navbar-logo { margin-right: 0.5rem; } .navbar-dropdown.navbar-short .navbar-logo img { height: 2.375rem; } .navbar-dropdown.navbar-short .navbar-logo.mbr-iconfont { font-size: 2.375rem; line-height: 2.375rem; } .navbar-dropdown.navbar-short .mbr-table-cell { height: 3.625rem; } .navbar-dropdown .navbar-close { left: 0.6875rem; position: fixed; top: 0.75rem; z-index: 1000; } .navbar-dropdown .hamburger-icon { content: ""; display: inline-block; vertical-align: middle; width: 16px; -webkit-box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828; -moz-box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828; box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828; } .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after { border-bottom: 0.35em solid transparent; border-left: 0.35em solid; border-right: 0; border-top: 0.35em solid transparent; margin-left: 0.3rem; } .dropdown-menu .dropdown-item:focus { outline: 0; } .nav-dropdown { font-size: 0.75rem; font-weight: 500; height: auto !important; } .nav-dropdown .nav-btn { padding-left: 1rem; } .nav-dropdown .link { margin: .667em 1.667em; font-weight: 500; padding: 0; transition: color .2s ease-in-out; } .nav-dropdown .link.dropdown-toggle { margin-right: 2.583em; } .nav-dropdown .link.dropdown-toggle::after { margin-left: .25rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; } .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] { margin: 0; padding: 0.667em 3.263em 0.667em 1.667em; } .nav-dropdown .link::after, .nav-dropdown .dropdown-item::after { color: inherit; } .nav-dropdown .btn { font-size: 0.75rem; font-weight: 700; letter-spacing: 0; margin-bottom: 0; padding-left: 1.25rem; padding-right: 1.25rem; } .nav-dropdown .dropdown-menu { border-radius: 0; border: 0; left: 0; margin: 0; padding-bottom: 1.25rem; padding-top: 1.25rem; position: relative; } .nav-dropdown .dropdown-submenu { margin-left: 0.125rem; top: 0; } .nav-dropdown .dropdown-item { font-weight: 500; line-height: 2; padding: 0.3846em 4.615em 0.3846em 1.5385em; position: relative; transition: color .2s ease-in-out, background-color .2s ease-in-out; } .nav-dropdown .dropdown-item::after { margin-top: -0.3077em; position: absolute; right: 1.1538em; top: 50%; } .nav-dropdown .dropdown-item:focus, .nav-dropdown .dropdown-item:hover { background: none; } @media (max-width: 767px) { .nav-dropdown.navbar-toggleable-sm { bottom: 0; display: none; left: 0; overflow-x: hidden; position: fixed; top: 0; transform: translateX(-100%); -ms-transform: translateX(-100%); -webkit-transform: translateX(-100%); width: 18.75rem; z-index: 999; } } .nav-dropdown.navbar-toggleable-xl { bottom: 0; display: none; left: 0; overflow-x: hidden; position: fixed; top: 0; transform: translateX(-100%); -ms-transform: translateX(-100%); -webkit-transform: translateX(-100%); width: 18.75rem; z-index: 999; } .nav-dropdown-sm { display: block !important; overflow-x: hidden; overflow: auto; padding-top: 3.875rem; } .nav-dropdown-sm::after { content: ""; display: block; height: 3rem; width: 100%; } .nav-dropdown-sm.collapse.in ~ .navbar-close { display: block !important; } .nav-dropdown-sm.collapsing, .nav-dropdown-sm.collapse.in { transform: translateX(0); -ms-transform: translateX(0); -webkit-transform: translateX(0); transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out; background: #282828; } .nav-dropdown-sm.collapsing[aria-expanded="false"] { transform: translateX(-100%); -ms-transform: translateX(-100%); -webkit-transform: translateX(-100%); } .nav-dropdown-sm .nav-item { display: block; margin-left: 0 !important; padding-left: 0; } .nav-dropdown-sm .link, .nav-dropdown-sm .dropdown-item { border-top: 1px dotted rgba(255, 255, 255, 0.1); font-size: 0.8125rem; line-height: 1.6; margin: 0 !important; padding: 0.875rem 2.4rem 0.875rem 1.5625rem !important; position: relative; white-space: normal; } .nav-dropdown-sm .link:focus, .nav-dropdown-sm .link:hover, .nav-dropdown-sm .dropdown-item:focus, .nav-dropdown-sm .dropdown-item:hover { background: rgba(0, 0, 0, 0.2) !important; color: #c0a375; } .nav-dropdown-sm .nav-btn { position: relative; padding: 1.5625rem 1.5625rem 0 1.5625rem; } .nav-dropdown-sm .nav-btn::before { border-top: 1px dotted rgba(255, 255, 255, 0.1); content: ""; left: 0; position: absolute; top: 0; width: 100%; } .nav-dropdown-sm .nav-btn + .nav-btn { padding-top: 0.625rem; } .nav-dropdown-sm .nav-btn + .nav-btn::before { display: none; } .nav-dropdown-sm .btn { padding: 0.625rem 0; } .nav-dropdown-sm .dropdown-toggle[data-toggle="dropdown-submenu"]::after { margin-left: .25rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; } .nav-dropdown-sm .dropdown-toggle[data-toggle="dropdown-submenu"][aria-expanded="true"]::after { border-top: 0; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0.35em solid; } .nav-dropdown-sm .dropdown-menu { margin: 0; padding: 0; position: relative; top: 0; left: 0; width: 100%; border: 0; float: none; border-radius: 0; background: none; } .nav-dropdown-sm .dropdown-submenu { left: 100%; margin-left: 0.125rem; margin-top: -1.25rem; top: 0; } .navbar-toggleable-sm .nav-dropdown .dropdown-menu { position: absolute; } .navbar-toggleable-sm .nav-dropdown .dropdown-submenu { left: 100%; margin-left: 0.125rem; margin-top: -1.25rem; top: 0; } .navbar-toggleable-sm.opened .nav-dropdown .dropdown-menu { position: relative; } .navbar-toggleable-sm.opened .nav-dropdown .dropdown-submenu { left: 0; margin-left: 00rem; margin-top: 0rem; top: 0; } .is-builder .nav-dropdown.collapsing { transition: none !important; } @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../fonts/fa-solid-900.eot);src:url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} @font-face { font-family: 'icon54-v4'; src: url('fonts/icon54-v4.eot?9rlj2v'); src: url('fonts/icon54-v4.eot?9rlj2v#iefix') format('embedded-opentype'), url('fonts/icon54-v4.ttf?9rlj2v') format('truetype'), url('fonts/icon54-v4.woff?9rlj2v') format('woff'), url('fonts/icon54-v4.svg?9rlj2v#icon54-v4') format('svg'); font-weight: normal; font-style: normal; } [class^='icon54-v4-'], [class*=' icon54-v4-'] { font-family: 'icon54-v4' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon54-v4-d-box::before { content: '\e900'; } .icon54-v4-d-cube::before { content: '\e901'; } .icon54-v4-accessible::before { content: '\e902'; } .icon54-v4-active-protection::before { content: '\e903'; } .icon54-v4-add-event::before { content: '\e904'; } .icon54-v4-add-shopping-cart::before { content: '\e905'; } .icon54-v4-add-user-2::before { content: '\e906'; } .icon54-v4-add-user::before { content: '\e907'; } .icon54-v4-add-users::before { content: '\e908'; } .icon54-v4-add::before { content: '\e909'; } .icon54-v4-adjustments::before { content: '\e90a'; } .icon54-v4-airplane::before { content: '\e90b'; } .icon54-v4-alarm::before { content: '\e90c'; } .icon54-v4-alcohol-drink::before { content: '\e90d'; } .icon54-v4-anchor::before { content: '\e90e'; } .icon54-v4-android::before { content: '\e90f'; } .icon54-v4-announcement::before { content: '\e910'; } .icon54-v4-anonymus-2::before { content: '\e911'; } .icon54-v4-anonymus::before { content: '\e912'; } .icon54-v4-answer-2::before { content: '\e913'; } .icon54-v4-answer-3::before { content: '\e914'; } .icon54-v4-answer::before { content: '\e915'; } .icon54-v4-apron::before { content: '\e916'; } .icon54-v4-archive-file::before { content: '\e917'; } .icon54-v4-archive::before { content: '\e918'; } .icon54-v4-armchair-1::before { content: '\e919'; } .icon54-v4-armchair-2::before { content: '\e91a'; } .icon54-v4-armchair-3::before { content: '\e91b'; } .icon54-v4-armchair-4::before { content: '\e91c'; } .icon54-v4-artifical-intelligence-1::before { content: '\e91d'; } .icon54-v4-artifical-intelligence-2::before { content: '\e91e'; } .icon54-v4-artist::before { content: '\e91f'; } .icon54-v4-assignment::before { content: '\e920'; } .icon54-v4-astronaut::before { content: '\e921'; } .icon54-v4-at-symbol-2::before { content: '\e922'; } .icon54-v4-at-symbol-3::before { content: '\e923'; } .icon54-v4-at-symbol::before { content: '\e924'; } .icon54-v4-at::before { content: '\e925'; } .icon54-v4-atlas::before { content: '\e926'; } .icon54-v4-attach-2::before { content: '\e927'; } .icon54-v4-attach-3::before { content: '\e928'; } .icon54-v4-attach-user::before { content: '\e929'; } .icon54-v4-audio::before { content: '\e92a'; } .icon54-v4-avatar-chef::before { content: '\e92b'; } .icon54-v4-back-arrow::before { content: '\e92c'; } .icon54-v4-badminton::before { content: '\e92d'; } .icon54-v4-baguette::before { content: '\e92e'; } .icon54-v4-bald-man::before { content: '\e92f'; } .icon54-v4-balloons-1::before { content: '\e930'; } .icon54-v4-balloons-2::before { content: '\e931'; } .icon54-v4-baloon::before { content: '\e932'; } .icon54-v4-banknote::before { content: '\e933'; } .icon54-v4-bar-chart-2::before { content: '\e934'; } .icon54-v4-bar-chart::before { content: '\e935'; } .icon54-v4-barbeque::before { content: '\e936'; } .icon54-v4-bat::before { content: '\e937'; } .icon54-v4-batman::before { content: '\e938'; } .icon54-v4-battery-charge::before { content: '\e939'; } .icon54-v4-battery-full::before { content: '\e93a'; } .icon54-v4-battery-half::before { content: '\e93b'; } .icon54-v4-battery-low::before { content: '\e93c'; } .icon54-v4-beach-sign::before { content: '\e93d'; } .icon54-v4-bed-1::before { content: '\e93e'; } .icon54-v4-bed-2::before { content: '\e93f'; } .icon54-v4-bed-3::before { content: '\e940'; } .icon54-v4-bed-4::before { content: '\e941'; } .icon54-v4-bed-5::before { content: '\e942'; } .icon54-v4-beer-glass::before { content: '\e943'; } .icon54-v4-beer::before { content: '\e944'; } .icon54-v4-bell-2::before { content: '\e945'; } .icon54-v4-bell-3::before { content: '\e946'; } .icon54-v4-bell-4::before { content: '\e947'; } .icon54-v4-bell-alarm::before { content: '\e948'; } .icon54-v4-bell::before { content: '\e949'; } .icon54-v4-bender::before { content: '\e94a'; } .icon54-v4-bikini::before { content: '\e94b'; } .icon54-v4-bill-2::before { content: '\e94c'; } .icon54-v4-bill::before { content: '\e94d'; } .icon54-v4-birthay-hat-2::before { content: '\e94e'; } .icon54-v4-birthday-1::before { content: '\e94f'; } .icon54-v4-birthday-2::before { content: '\e950'; } .icon54-v4-birthday-cake-1::before { content: '\e951'; } .icon54-v4-birthday-cake-2::before { content: '\e952'; } .icon54-v4-birthday-card::before { content: '\e953'; } .icon54-v4-birthday-decoration-1::before { content: '\e954'; } .icon54-v4-birthday-decoration-2::before { content: '\e955'; } .icon54-v4-birthday-decoration-3::before { content: '\e956'; } .icon54-v4-birthday-greetings-1::before { content: '\e957'; } .icon54-v4-birthday-hat3::before { content: '\e958'; } .icon54-v4-birthday-invitation::before { content: '\e959'; } .icon54-v4-birthday-message-1::before { content: '\e95a'; } .icon54-v4-birthday-message-2::before { content: '\e95b'; } .icon54-v4-birthday-party::before { content: '\e95c'; } .icon54-v4-birthday-picture::before { content: '\e95d'; } .icon54-v4-birthday-song::before { content: '\e95e'; } .icon54-v4-birthyday-hat-1::before { content: '\e95f'; } .icon54-v4-bitcoin-2::before { content: '\e960'; } .icon54-v4-bitcoin-3::before { content: '\e961'; } .icon54-v4-bitcoin::before { content: '\e962'; } .icon54-v4-black-cat::before { content: '\e963'; } .icon54-v4-blende::before { content: '\e964'; } .icon54-v4-blender::before { content: '\e965'; } .icon54-v4-bllboy::before { content: '\e966'; } .icon54-v4-bloody-axe::before { content: '\e967'; } .icon54-v4-bloody-knife::before { content: '\e968'; } .icon54-v4-blueprint::before { content: '\e969'; } .icon54-v4-bluetooth::before { content: '\e96a'; } .icon54-v4-boat::before { content: '\e96b'; } .icon54-v4-bone-hand::before { content: '\e96c'; } .icon54-v4-bones::before { content: '\e96d'; } .icon54-v4-book::before { content: '\e96e'; } .icon54-v4-bookmarrk::before { content: '\e96f'; } .icon54-v4-bottle-opener::before { content: '\e970'; } .icon54-v4-bow-tie::before { content: '\e971'; } .icon54-v4-box::before { content: '\e972'; } .icon54-v4-brake-link::before { content: '\e973'; } .icon54-v4-bread-and-wine::before { content: '\e974'; } .icon54-v4-bread-knife::before { content: '\e975'; } .icon54-v4-bricks::before { content: '\e976'; } .icon54-v4-bride::before { content: '\e977'; } .icon54-v4-briefcase::before { content: '\e978'; } .icon54-v4-bring-down-2::before { content: '\e979'; } .icon54-v4-bring-down-3::before { content: '\e97a'; } .icon54-v4-bring-down::before { content: '\e97b'; } .icon54-v4-bring-up-2::before { content: '\e97c'; } .icon54-v4-bring-up-3::before { content: '\e97d'; } .icon54-v4-bring-up::before { content: '\e97e'; } .icon54-v4-brush::before { content: '\e97f'; } .icon54-v4-bucket::before { content: '\e980'; } .icon54-v4-bug::before { content: '\e981'; } .icon54-v4-building-construction::before { content: '\e982'; } .icon54-v4-building::before { content: '\e983'; } .icon54-v4-bunk-beds::before { content: '\e984'; } .icon54-v4-bunny-2::before { content: '\e985'; } .icon54-v4-bunny::before { content: '\e986'; } .icon54-v4-business-man-1::before { content: '\e987'; } .icon54-v4-business-man-2::before { content: '\e988'; } .icon54-v4-business-woman-1::before { content: '\e989'; } .icon54-v4-business-woman-2::before { content: '\e98a'; } .icon54-v4-cad-1::before { content: '\e98b'; } .icon54-v4-cad-2::before { content: '\e98c'; } .icon54-v4-cad-3::before { content: '\e98d'; } .icon54-v4-cad-compasses::before { content: '\e98e'; } .icon54-v4-cad-file::before { content: '\e98f'; } .icon54-v4-cad-paper::before { content: '\e990'; } .icon54-v4-cad-papers::before { content: '\e991'; } .icon54-v4-cad-pencil::before { content: '\e992'; } .icon54-v4-cake-knife::before { content: '\e993'; } .icon54-v4-cake-piece::before { content: '\e994'; } .icon54-v4-cake-slice::before { content: '\e995'; } .icon54-v4-cake::before { content: '\e996'; } .icon54-v4-calculator::before { content: '\e997'; } .icon54-v4-calendar::before { content: '\e998'; } .icon54-v4-callendar::before { content: '\e999'; } .icon54-v4-camera-1::before { content: '\e99a'; } .icon54-v4-camera-2::before { content: '\e99b'; } .icon54-v4-candle-light::before { content: '\e99c'; } .icon54-v4-candle::before { content: '\e99d'; } .icon54-v4-candy-holder::before { content: '\e99e'; } .icon54-v4-candy::before { content: '\e99f'; } .icon54-v4-canlestick::before { content: '\e9a0'; } .icon54-v4-captain-america::before { content: '\e9a1'; } .icon54-v4-captain::before { content: '\e9a2'; } .icon54-v4-captin-hat::before { content: '\e9a3'; } .icon54-v4-car-2::before { content: '\e9a4'; } .icon54-v4-car-3::before { content: '\e9a5'; } .icon54-v4-car::before { content: '\e9a6'; } .icon54-v4-castle::before { content: '\e9a7'; } .icon54-v4-cauldron::before { content: '\e9a8'; } .icon54-v4-celebration-glasses::before { content: '\e9a9'; } .icon54-v4-cemetery-1::before { content: '\e9aa'; } .icon54-v4-cemetery-2::before { content: '\e9ab'; } .icon54-v4-cezve::before { content: '\e9ac'; } .icon54-v4-champagne-in-ice-bucket::before { content: '\e9ad'; } .icon54-v4-champagne-open::before { content: '\e9ae'; } .icon54-v4-champagne::before { content: '\e9af'; } .icon54-v4-charlie-chaplin::before { content: '\e9b0'; } .icon54-v4-check-1::before { content: '\e9b1'; } .icon54-v4-check-2::before { content: '\e9b2'; } .icon54-v4-chef::before { content: '\e9b3'; } .icon54-v4-chef\'s-hat-1::before { content: '\e9b4'; } .icon54-v4-chef\'s-hat-2::before { content: '\e9b5'; } .icon54-v4-chicken-2::before { content: '\e9b6'; } .icon54-v4-chicken-3::before { content: '\e9b7'; } .icon54-v4-chicken::before { content: '\e9b8'; } .icon54-v4-chilled-champagne::before { content: '\e9b9'; } .icon54-v4-chopsticks::before { content: '\e9ba'; } .icon54-v4-church-bells::before { content: '\e9bb'; } .icon54-v4-church::before { content: '\e9bc'; } .icon54-v4-claptrap::before { content: '\e9bd'; } .icon54-v4-clock::before { content: '\e9be'; } .icon54-v4-close::before { content: '\e9bf'; } .icon54-v4-cloud-2::before { content: '\e9c0'; } .icon54-v4-cloud-3::before { content: '\e9c1'; } .icon54-v4-cloud-off::before { content: '\e9c2'; } .icon54-v4-cloud::before { content: '\e9c3'; } .icon54-v4-clown-2::before { content: '\e9c4'; } .icon54-v4-clown::before { content: '\e9c5'; } .icon54-v4-cobweb-1::before { content: '\e9c6'; } .icon54-v4-cobweb-2::before { content: '\e9c7'; } .icon54-v4-cocktail::before { content: '\e9c8'; } .icon54-v4-coding::before { content: '\e9c9'; } .icon54-v4-coffee-maker::before { content: '\e9ca'; } .icon54-v4-coffin::before { content: '\e9cb'; } .icon54-v4-cold::before { content: '\e9cc'; } .icon54-v4-collaboration::before { content: '\e9cd'; } .icon54-v4-compass::before { content: '\e9ce'; } .icon54-v4-computer::before { content: '\e9cf'; } .icon54-v4-confetti-1::before { content: '\e9d0'; } .icon54-v4-confetti-2::before { content: '\e9d1'; } .icon54-v4-connection::before { content: '\e9d2'; } .icon54-v4-construction-plan::before { content: '\e9d3'; } .icon54-v4-cookbook::before { content: '\e9d4'; } .icon54-v4-cooker-hood::before { content: '\e9d5'; } .icon54-v4-cooker::before { content: '\e9d6'; } .icon54-v4-cooler::before { content: '\e9d7'; } .icon54-v4-copyright-2::before { content: '\e9d8'; } .icon54-v4-copyright-3::before { content: '\e9d9'; } .icon54-v4-copyright::before { content: '\e9da'; } .icon54-v4-cord::before { content: '\e9db'; } .icon54-v4-corkscrew::before { content: '\e9dc'; } .icon54-v4-corn-candy::before { content: '\e9dd'; } .icon54-v4-corner-tub::before { content: '\e9de'; } .icon54-v4-course::before { content: '\e9df'; } .icon54-v4-cowboy::before { content: '\e9e0'; } .icon54-v4-creative-commun-2::before { content: '\e9e1'; } .icon54-v4-creative-commun-3::before { content: '\e9e2'; } .icon54-v4-creative-commun::before { content: '\e9e3'; } .icon54-v4-credit-card::before { content: '\e9e4'; } .icon54-v4-crescent::before { content: '\e9e5'; } .icon54-v4-criminal::before { content: '\e9e6'; } .icon54-v4-crop::before { content: '\e9e7'; } .icon54-v4-crow::before { content: '\e9e8'; } .icon54-v4-cup::before { content: '\e9e9'; } .icon54-v4-cupcake::before { content: '\e9ea'; } .icon54-v4-cut::before { content: '\e9eb'; } .icon54-v4-cutlery-decoration::before { content: '\e9ec'; } .icon54-v4-cutlery-set::before { content: '\e9ed'; } .icon54-v4-cutlery::before { content: '\e9ee'; } .icon54-v4-cutting-board-1::before { content: '\e9ef'; } .icon54-v4-cutting-board-2::before { content: '\e9f0'; } .icon54-v4-daffodil::before { content: '\e9f1'; } .icon54-v4-darth-vader::before { content: '\e9f2'; } .icon54-v4-dashed-frame-1::before { content: '\e9f3'; } .icon54-v4-dashed-frame-2::before { content: '\e9f4'; } .icon54-v4-dashed-frame-3::before { content: '\e9f5'; } .icon54-v4-dashed-frame-4::before { content: '\e9f6'; } .icon54-v4-dashed-frame-5::before { content: '\e9f7'; } .icon54-v4-dashed-frame-6::before { content: '\e9f8'; } .icon54-v4-dashed-frame-7::before { content: '\e9f9'; } .icon54-v4-dashed-frame-8::before { content: '\e9fa'; } .icon54-v4-dashed-frame-9::before { content: '\e9fb'; } .icon54-v4-dashed-frame-10::before { content: '\e9fc'; } .icon54-v4-dashed-frame-11::before { content: '\e9fd'; } .icon54-v4-dashed-frame-12::before { content: '\e9fe'; } .icon54-v4-dashed-frame-13::before { content: '\e9ff'; } .icon54-v4-dashed-frame-14::before { content: '\ea00'; } .icon54-v4-dashed-frame-15::before { content: '\ea01'; } .icon54-v4-dashed-frame-16::before { content: '\ea02'; } .icon54-v4-dashed-frame-17::before { content: '\ea03'; } .icon54-v4-dashed-frame-18::before { content: '\ea04'; } .icon54-v4-dashed-frame-19::before { content: '\ea05'; } .icon54-v4-dashed-frame-20::before { content: '\ea06'; } .icon54-v4-dashed-frame-21::before { content: '\ea07'; } .icon54-v4-dashed-frame-22::before { content: '\ea08'; } .icon54-v4-dashed-frame-23::before { content: '\ea09'; } .icon54-v4-dashed-frame-24::before { content: '\ea0a'; } .icon54-v4-dashed-frame-25::before { content: '\ea0b'; } .icon54-v4-dashed-frame-26::before { content: '\ea0c'; } .icon54-v4-dashed-frame-27::before { content: '\ea0d'; } .icon54-v4-dashed-frame-28::before { content: '\ea0e'; } .icon54-v4-dashed-frame-29::before { content: '\ea0f'; } .icon54-v4-dashed-frame-30::before { content: '\ea10'; } .icon54-v4-dashed-frame-31::before { content: '\ea11'; } .icon54-v4-dashed-frame-32::before { content: '\ea12'; } .icon54-v4-dashed-frame-33::before { content: '\ea13'; } .icon54-v4-dashed-frame-34::before { content: '\ea14'; } .icon54-v4-dashed-frame-35::before { content: '\ea15'; } .icon54-v4-database-2::before { content: '\ea16'; } .icon54-v4-database-3::before { content: '\ea17'; } .icon54-v4-database::before { content: '\ea18'; } .icon54-v4-deactivate-protection::before { content: '\ea19'; } .icon54-v4-deckchair::before { content: '\ea1a'; } .icon54-v4-delete-user-2::before { content: '\ea1b'; } .icon54-v4-delete-user::before { content: '\ea1c'; } .icon54-v4-delete-users::before { content: '\ea1d'; } .icon54-v4-design-mug::before { content: '\ea1e'; } .icon54-v4-design::before { content: '\ea1f'; } .icon54-v4-desk-1::before { content: '\ea20'; } .icon54-v4-desk-2::before { content: '\ea21'; } .icon54-v4-desk-3::before { content: '\ea22'; } .icon54-v4-dessert::before { content: '\ea23'; } .icon54-v4-devil\'s-fork::before { content: '\ea24'; } .icon54-v4-diamond::before { content: '\ea25'; } .icon54-v4-dice::before { content: '\ea26'; } .icon54-v4-dictator::before { content: '\ea27'; } .icon54-v4-disabled-user-2::before { content: '\ea28'; } .icon54-v4-disabled-user::before { content: '\ea29'; } .icon54-v4-disabled-users::before { content: '\ea2a'; } .icon54-v4-disc::before { content: '\ea2b'; } .icon54-v4-disco-ball::before { content: '\ea2c'; } .icon54-v4-dismiss-user-2::before { content: '\ea2d'; } .icon54-v4-dismiss-user::before { content: '\ea2e'; } .icon54-v4-dismiss-users::before { content: '\ea2f'; } .icon54-v4-dispatcher-1::before { content: '\ea30'; } .icon54-v4-dispatcher-2::before { content: '\ea31'; } .icon54-v4-diver::before { content: '\ea32'; } .icon54-v4-diving-mask::before { content: '\ea33'; } .icon54-v4-dj::before { content: '\ea34'; } .icon54-v4-doctor::before { content: '\ea35'; } .icon54-v4-dollar-2::before { content: '\ea36'; } .icon54-v4-dollar-3::before { content: '\ea37'; } .icon54-v4-dollar::before { content: '\ea38'; } .icon54-v4-dolphin::before { content: '\ea39'; } .icon54-v4-done-2::before { content: '\ea3a'; } .icon54-v4-done-3::before { content: '\ea3b'; } .icon54-v4-done::before { content: '\ea3c'; } .icon54-v4-door::before { content: '\ea3d'; } .icon54-v4-download-2::before { content: '\ea3e'; } .icon54-v4-download-3::before { content: '\ea3f'; } .icon54-v4-download-cloud::before { content: '\ea40'; } .icon54-v4-download::before { content: '\ea41'; } .icon54-v4-dracula::before { content: '\ea42'; } .icon54-v4-drive::before { content: '\ea43'; } .icon54-v4-earth::before { content: '\ea44'; } .icon54-v4-easter-basket::before { content: '\ea45'; } .icon54-v4-easter-celebration::before { content: '\ea46'; } .icon54-v4-easter-egg-1::before { content: '\ea47'; } .icon54-v4-easter-egg-2::before { content: '\ea48'; } .icon54-v4-easter-egg-3::before { content: '\ea49'; } .icon54-v4-easter-message::before { content: '\ea4a'; } .icon54-v4-easter-willow::before { content: '\ea4b'; } .icon54-v4-eat-in-kitchen::before { content: '\ea4c'; } .icon54-v4-eco-friendly-2::before { content: '\ea4d'; } .icon54-v4-eco-friendly-3::before { content: '\ea4e'; } .icon54-v4-eco-friendly::before { content: '\ea4f'; } .icon54-v4-ed-209::before { content: '\ea50'; } .icon54-v4-egg-beater::before { content: '\ea51'; } .icon54-v4-egg-painting::before { content: '\ea52'; } .icon54-v4-egg-timer::before { content: '\ea53'; } .icon54-v4-egg::before { content: '\ea54'; } .icon54-v4-eggs-1::before { content: '\ea55'; } .icon54-v4-eggs-2::before { content: '\ea56'; } .icon54-v4-eject::before { content: '\ea57'; } .icon54-v4-engagement-1::before { content: '\ea58'; } .icon54-v4-engagement-2::before { content: '\ea59'; } .icon54-v4-equalizer::before { content: '\ea5a'; } .icon54-v4-error-mark::before { content: '\ea5b'; } .icon54-v4-error::before { content: '\ea5c'; } .icon54-v4-eudder::before { content: '\ea5d'; } .icon54-v4-euro-2::before { content: '\ea5e'; } .icon54-v4-euro-3::before { content: '\ea5f'; } .icon54-v4-euro::before { content: '\ea60'; } .icon54-v4-eva::before { content: '\ea61'; } .icon54-v4-event-2::before { content: '\ea62'; } .icon54-v4-event-reminder::before { content: '\ea63'; } .icon54-v4-event-ticket::before { content: '\ea64'; } .icon54-v4-event::before { content: '\ea65'; } .icon54-v4-eye::before { content: '\ea66'; } .icon54-v4-eyeball::before { content: '\ea67'; } .icon54-v4-farmer::before { content: '\ea68'; } .icon54-v4-feather-pen::before { content: '\ea69'; } .icon54-v4-female::before { content: '\ea6a'; } .icon54-v4-file-1::before { content: '\ea6b'; } .icon54-v4-file-2::before { content: '\ea6c'; } .icon54-v4-filleting-knife::before { content: '\ea6d'; } .icon54-v4-fingerprint::before { content: '\ea6e'; } .icon54-v4-firefigyhter::before { content: '\ea6f'; } .icon54-v4-firework-1::before { content: '\ea70'; } .icon54-v4-firework-2::before { content: '\ea71'; } .icon54-v4-fish::before { content: '\ea72'; } .icon54-v4-flag::before { content: '\ea73'; } .icon54-v4-flash::before { content: '\ea74'; } .icon54-v4-flashlight::before { content: '\ea75'; } .icon54-v4-flip-flops::before { content: '\ea76'; } .icon54-v4-float::before { content: '\ea77'; } .icon54-v4-flowchart::before { content: '\ea78'; } .icon54-v4-flowers::before { content: '\ea79'; } .icon54-v4-folder::before { content: '\ea7a'; } .icon54-v4-food-photo::before { content: '\ea7b'; } .icon54-v4-fork::before { content: '\ea7c'; } .icon54-v4-format-size::before { content: '\ea7d'; } .icon54-v4-frame-1::before { content: '\ea7e'; } .icon54-v4-frame-2::before { content: '\ea7f'; } .icon54-v4-frame-3::before { content: '\ea80'; } .icon54-v4-frame-4::before { content: '\ea81'; } .icon54-v4-frame-5::before { content: '\ea82'; } .icon54-v4-frame-6::before { content: '\ea83'; } .icon54-v4-frame-7::before { content: '\ea84'; } .icon54-v4-frame-8::before { content: '\ea85'; } .icon54-v4-frame-9::before { content: '\ea86'; } .icon54-v4-frame-10::before { content: '\ea87'; } .icon54-v4-frame-11::before { content: '\ea88'; } .icon54-v4-frame-12::before { content: '\ea89'; } .icon54-v4-frame-13::before { content: '\ea8a'; } .icon54-v4-frame-14::before { content: '\ea8b'; } .icon54-v4-frame-15::before { content: '\ea8c'; } .icon54-v4-frame-16::before { content: '\ea8d'; } .icon54-v4-frame-17::before { content: '\ea8e'; } .icon54-v4-frame-18::before { content: '\ea8f'; } .icon54-v4-frame-19::before { content: '\ea90'; } .icon54-v4-frame-20::before { content: '\ea91'; } .icon54-v4-frame-21::before { content: '\ea92'; } .icon54-v4-frame-22::before { content: '\ea93'; } .icon54-v4-frame-23::before { content: '\ea94'; } .icon54-v4-frame-24::before { content: '\ea95'; } .icon54-v4-frame-25::before { content: '\ea96'; } .icon54-v4-frame-26::before { content: '\ea97'; } .icon54-v4-frame-27::before { content: '\ea98'; } .icon54-v4-frame-28::before { content: '\ea99'; } .icon54-v4-frame-29::before { content: '\ea9a'; } .icon54-v4-frame-30::before { content: '\ea9b'; } .icon54-v4-frame-31::before { content: '\ea9c'; } .icon54-v4-frame-32::before { content: '\ea9d'; } .icon54-v4-frame-33::before { content: '\ea9e'; } .icon54-v4-frame-34::before { content: '\ea9f'; } .icon54-v4-frame-35::before { content: '\eaa0'; } .icon54-v4-frame-hole-1::before { content: '\eaa1'; } .icon54-v4-frame-hole-2::before { content: '\eaa2'; } .icon54-v4-frame-hole-3::before { content: '\eaa3'; } .icon54-v4-frame-hole-4::before { content: '\eaa4'; } .icon54-v4-frankenstein::before { content: '\eaa5'; } .icon54-v4-freezer::before { content: '\eaa6'; } .icon54-v4-full-moon::before { content: '\eaa7'; } .icon54-v4-funnel::before { content: '\eaa8'; } .icon54-v4-gaming-2::before { content: '\eaa9'; } .icon54-v4-gaming-3::before { content: '\eaaa'; } .icon54-v4-gaming::before { content: '\eaab'; } .icon54-v4-gate::before { content: '\eaac'; } .icon54-v4-ghost::before { content: '\eaad'; } .icon54-v4-giving-gift::before { content: '\eaae'; } .icon54-v4-glass-decoration::before { content: '\eaaf'; } .icon54-v4-glass::before { content: '\eab0'; } .icon54-v4-glasses::before { content: '\eab1'; } .icon54-v4-global-user-2::before { content: '\eab2'; } .icon54-v4-global-user::before { content: '\eab3'; } .icon54-v4-global-users::before { content: '\eab4'; } .icon54-v4-globe::before { content: '\eab5'; } .icon54-v4-glowes::before { content: '\eab6'; } .icon54-v4-graduated-man::before { content: '\eab7'; } .icon54-v4-graduated-woman::before { content: '\eab8'; } .icon54-v4-grater::before { content: '\eab9'; } .icon54-v4-grill::before { content: '\eaba'; } .icon54-v4-grim-reaper::before { content: '\eabb'; } .icon54-v4-groom::before { content: '\eabc'; } .icon54-v4-ham::before { content: '\eabd'; } .icon54-v4-hand-2::before { content: '\eabe'; } .icon54-v4-hand-blender::before { content: '\eabf'; } .icon54-v4-hand::before { content: '\eac0'; } .icon54-v4-hands-with-rings::before { content: '\eac1'; } .icon54-v4-handshake::before { content: '\eac2'; } .icon54-v4-harry-potter::before { content: '\eac3'; } .icon54-v4-hat::before { content: '\eac4'; } .icon54-v4-hatchet::before { content: '\eac5'; } .icon54-v4-heart::before { content: '\eac6'; } .icon54-v4-herb-knife::before { content: '\eac7'; } .icon54-v4-hipster-girl::before { content: '\eac8'; } .icon54-v4-hipster-guy::before { content: '\eac9'; } .icon54-v4-home-2::before { content: '\eaca'; } .icon54-v4-home-3::before { content: '\eacb'; } .icon54-v4-home::before { content: '\eacc'; } .icon54-v4-honey-dipper::before { content: '\eacd'; } .icon54-v4-horn-1::before { content: '\eace'; } .icon54-v4-horn-2::before { content: '\eacf'; } .icon54-v4-horn::before { content: '\ead0'; } .icon54-v4-hot-chocolate::before { content: '\ead1'; } .icon54-v4-hot-drink-1::before { content: '\ead2'; } .icon54-v4-hot-drink-2::before { content: '\ead3'; } .icon54-v4-hot-drink::before { content: '\ead4'; } .icon54-v4-hot-sauce::before { content: '\ead5'; } .icon54-v4-hot-temperature::before { content: '\ead6'; } .icon54-v4-house-construction::before { content: '\ead7'; } .icon54-v4-house-plan::before { content: '\ead8'; } .icon54-v4-house::before { content: '\ead9'; } .icon54-v4-household-mixer::before { content: '\eada'; } .icon54-v4-ice-lolly::before { content: '\eadb'; } .icon54-v4-ice-skate::before { content: '\eadc'; } .icon54-v4-icecream::before { content: '\eadd'; } .icon54-v4-icicle::before { content: '\eade'; } .icon54-v4-information::before { content: '\eadf'; } .icon54-v4-invisible::before { content: '\eae0'; } .icon54-v4-invitation-1::before { content: '\eae1'; } .icon54-v4-invitation-2::before { content: '\eae2'; } .icon54-v4-iron-giant::before { content: '\eae3'; } .icon54-v4-island::before { content: '\eae4'; } .icon54-v4-jacuzzi::before { content: '\eae5'; } .icon54-v4-jason::before { content: '\eae6'; } .icon54-v4-jing-jang::before { content: '\eae7'; } .icon54-v4-k5-robot::before { content: '\eae8'; } .icon54-v4-kettle::before { content: '\eae9'; } .icon54-v4-key-1::before { content: '\eaea'; } .icon54-v4-key-2::before { content: '\eaeb'; } .icon54-v4-keyboard::before { content: '\eaec'; } .icon54-v4-kid\'s-champagne::before { content: '\eaed'; } .icon54-v4-kitchen-clock::before { content: '\eaee'; } .icon54-v4-kitchen-scale::before { content: '\eaef'; } .icon54-v4-kitchen-sink::before { content: '\eaf0'; } .icon54-v4-kitchen-spoon-1::before { content: '\eaf1'; } .icon54-v4-kitchen-spoon-2::before { content: '\eaf2'; } .icon54-v4-kite-1::before { content: '\eaf3'; } .icon54-v4-kite-2::before { content: '\eaf4'; } .icon54-v4-knife-holder::before { content: '\eaf5'; } .icon54-v4-knife::before { content: '\eaf6'; } .icon54-v4-ladle::before { content: '\eaf7'; } .icon54-v4-lamp::before { content: '\eaf8'; } .icon54-v4-lantern::before { content: '\eaf9'; } .icon54-v4-layer-10::before { content: '\eafa'; } .icon54-v4-layer-29::before { content: '\eafb'; } .icon54-v4-layer-40::before { content: '\eafc'; } .icon54-v4-layer-58::before { content: '\eafd'; } .icon54-v4-layers::before { content: '\eafe'; } .icon54-v4-leaf::before { content: '\eaff'; } .icon54-v4-left-arrow-2::before { content: '\eb00'; } .icon54-v4-lemon-juicer::before { content: '\eb01'; } .icon54-v4-lifebelt::before { content: '\eb02'; } .icon54-v4-lifebuoy::before { content: '\eb03'; } .icon54-v4-lightbulb::before { content: '\eb04'; } .icon54-v4-lighthouse::before { content: '\eb05'; } .icon54-v4-limonade-1::before { content: '\eb06'; } .icon54-v4-limonade-2::before { content: '\eb07'; } .icon54-v4-line-chart::before { content: '\eb08'; } .icon54-v4-link::before { content: '\eb09'; } .icon54-v4-list::before { content: '\eb0a'; } .icon54-v4-location-2::before { content: '\eb0b'; } .icon54-v4-lock-open::before { content: '\eb0c'; } .icon54-v4-lock-user-2::before { content: '\eb0d'; } .icon54-v4-lock-user::before { content: '\eb0e'; } .icon54-v4-lock-users::before { content: '\eb0f'; } .icon54-v4-lock::before { content: '\eb10'; } .icon54-v4-loction-1::before { content: '\eb11'; } .icon54-v4-login::before { content: '\eb12'; } .icon54-v4-logout::before { content: '\eb13'; } .icon54-v4-lollipop::before { content: '\eb14'; } .icon54-v4-loudspeaker::before { content: '\eb15'; } .icon54-v4-magnet::before { content: '\eb16'; } .icon54-v4-maid::before { content: '\eb17'; } .icon54-v4-mail-attachmet::before { content: '\eb18'; } .icon54-v4-mail::before { content: '\eb19'; } .icon54-v4-mailbox::before { content: '\eb1a'; } .icon54-v4-mails::before { content: '\eb1b'; } .icon54-v4-male::before { content: '\eb1c'; } .icon54-v4-man-1::before { content: '\eb1d'; } .icon54-v4-man-2::before { content: '\eb1e'; } .icon54-v4-man-3::before { content: '\eb1f'; } .icon54-v4-man-beard::before { content: '\eb20'; } .icon54-v4-man-cap::before { content: '\eb21'; } .icon54-v4-man-glasses::before { content: '\eb22'; } .icon54-v4-man-hat::before { content: '\eb23'; } .icon54-v4-map::before { content: '\eb24'; } .icon54-v4-mariage-couple::before { content: '\eb25'; } .icon54-v4-mark-user-2::before { content: '\eb26'; } .icon54-v4-mark-user::before { content: '\eb27'; } .icon54-v4-mark-users::before { content: '\eb28'; } .icon54-v4-marriage-settlement::before { content: '\eb29'; } .icon54-v4-marvin::before { content: '\eb2a'; } .icon54-v4-matches::before { content: '\eb2b'; } .icon54-v4-maximize::before { content: '\eb2c'; } .icon54-v4-measuring-cup::before { content: '\eb2d'; } .icon54-v4-meat-fork::before { content: '\eb2e'; } .icon54-v4-meat-grinder::before { content: '\eb2f'; } .icon54-v4-medal::before { content: '\eb30'; } .icon54-v4-men-4::before { content: '\eb31'; } .icon54-v4-menu-1::before { content: '\eb32'; } .icon54-v4-menu-2::before { content: '\eb33'; } .icon54-v4-menu::before { content: '\eb34'; } .icon54-v4-microphone-1::before { content: '\eb35'; } .icon54-v4-microphone-2::before { content: '\eb36'; } .icon54-v4-microwave::before { content: '\eb37'; } .icon54-v4-mini-dress::before { content: '\eb38'; } .icon54-v4-minimize::before { content: '\eb39'; } .icon54-v4-mobile-phone::before { content: '\eb3a'; } .icon54-v4-money::before { content: '\eb3b'; } .icon54-v4-mouse-pointer-1::before { content: '\eb3c'; } .icon54-v4-mouse-pointer-2::before { content: '\eb3d'; } .icon54-v4-mouse::before { content: '\eb3e'; } .icon54-v4-mug::before { content: '\eb3f'; } .icon54-v4-mute::before { content: '\eb40'; } .icon54-v4-napkin::before { content: '\eb41'; } .icon54-v4-news::before { content: '\eb42'; } .icon54-v4-newsfeed::before { content: '\eb43'; } .icon54-v4-night-candle::before { content: '\eb44'; } .icon54-v4-no-battery::before { content: '\eb45'; } .icon54-v4-no-camera::before { content: '\eb46'; } .icon54-v4-no-copyright-2::before { content: '\eb47'; } .icon54-v4-no-copyright::before { content: '\eb48'; } .icon54-v4-no-copzright-3::before { content: '\eb49'; } .icon54-v4-no-flash::before { content: '\eb4a'; } .icon54-v4-no-microphone::before { content: '\eb4b'; } .icon54-v4-no-wifi-tethering::before { content: '\eb4c'; } .icon54-v4-note-book::before { content: '\eb4d'; } .icon54-v4-notebook::before { content: '\eb4e'; } .icon54-v4-nurse::before { content: '\eb4f'; } .icon54-v4-old-man::before { content: '\eb50'; } .icon54-v4-olive-oil-pot::before { content: '\eb51'; } .icon54-v4-open-folder::before { content: '\eb52'; } .icon54-v4-open-mail::before { content: '\eb53'; } .icon54-v4-open::before { content: '\eb54'; } .icon54-v4-optimus-prime::before { content: '\eb55'; } .icon54-v4-other::before { content: '\eb56'; } .icon54-v4-outlet-symbol::before { content: '\eb57'; } .icon54-v4-oval-frame-1::before { content: '\eb58'; } .icon54-v4-oval-frame-2::before { content: '\eb59'; } .icon54-v4-oven-gloves::before { content: '\eb5a'; } .icon54-v4-owl::before { content: '\eb5b'; } .icon54-v4-palette::before { content: '\eb5c'; } .icon54-v4-pan::before { content: '\eb5d'; } .icon54-v4-pancake-griddle::before { content: '\eb5e'; } .icon54-v4-pantheon::before { content: '\eb5f'; } .icon54-v4-paper-plane::before { content: '\eb60'; } .icon54-v4-paperclip::before { content: '\eb61'; } .icon54-v4-parabolic-antenna::before { content: '\eb62'; } .icon54-v4-park-2::before { content: '\eb63'; } .icon54-v4-park-3::before { content: '\eb64'; } .icon54-v4-park::before { content: '\eb65'; } .icon54-v4-party-cake::before { content: '\eb66'; } .icon54-v4-party-glasses::before { content: '\eb67'; } .icon54-v4-party-greetings-2::before { content: '\eb68'; } .icon54-v4-pastry-bag-1::before { content: '\eb69'; } .icon54-v4-pastry-bag-2::before { content: '\eb6a'; } .icon54-v4-pause::before { content: '\eb6b'; } .icon54-v4-paying-1::before { content: '\eb6c'; } .icon54-v4-paying-2::before { content: '\eb6d'; } .icon54-v4-peeler::before { content: '\eb6e'; } .icon54-v4-pencil::before { content: '\eb6f'; } .icon54-v4-pepper-pot-1::before { content: '\eb70'; } .icon54-v4-pepper-pot-2::before { content: '\eb71'; } .icon54-v4-percent::before { content: '\eb72'; } .icon54-v4-percentage-2::before { content: '\eb73'; } .icon54-v4-percentage-3::before { content: '\eb74'; } .icon54-v4-percentage::before { content: '\eb75'; } .icon54-v4-phone::before { content: '\eb76'; } .icon54-v4-photo-frame-4::before { content: '\eb77'; } .icon54-v4-photo-frame-2::before { content: '\eb78'; } .icon54-v4-photo-frame-3::before { content: '\eb79'; } .icon54-v4-photo-frame-5::before { content: '\eb7a'; } .icon54-v4-photo-frame-6::before { content: '\eb7b'; } .icon54-v4-photo-frame-7::before { content: '\eb7c'; } .icon54-v4-photo-frame::before { content: '\eb7d'; } .icon54-v4-photo::before { content: '\eb7e'; } .icon54-v4-picture::before { content: '\eb7f'; } .icon54-v4-pie-chart-1::before { content: '\eb80'; } .icon54-v4-pie-chart-2::before { content: '\eb81'; } .icon54-v4-pillar::before { content: '\eb82'; } .icon54-v4-pin-1::before { content: '\eb83'; } .icon54-v4-pin-2::before { content: '\eb84'; } .icon54-v4-pinata::before { content: '\eb85'; } .icon54-v4-pizza-cutter::before { content: '\eb86'; } .icon54-v4-pizza-food::before { content: '\eb87'; } .icon54-v4-pizza-slice::before { content: '\eb88'; } .icon54-v4-pizza::before { content: '\eb89'; } .icon54-v4-plate::before { content: '\eb8a'; } .icon54-v4-play::before { content: '\eb8b'; } .icon54-v4-plugin-1::before { content: '\eb8c'; } .icon54-v4-plugin-2::before { content: '\eb8d'; } .icon54-v4-policeman::before { content: '\eb8e'; } .icon54-v4-pompkin::before { content: '\eb8f'; } .icon54-v4-pool-ladder::before { content: '\eb90'; } .icon54-v4-pool::before { content: '\eb91'; } .icon54-v4-popcorn::before { content: '\eb92'; } .icon54-v4-pot-1::before { content: '\eb93'; } .icon54-v4-pot-2::before { content: '\eb94'; } .icon54-v4-potato-musher::before { content: '\eb95'; } .icon54-v4-pound-2::before { content: '\eb96'; } .icon54-v4-pound-3::before { content: '\eb97'; } .icon54-v4-pound::before { content: '\eb98'; } .icon54-v4-power::before { content: '\eb99'; } .icon54-v4-preferences-1::before { content: '\eb9a'; } .icon54-v4-preferences-2::before { content: '\eb9b'; } .icon54-v4-present-1::before { content: '\eb9c'; } .icon54-v4-present-2::before { content: '\eb9d'; } .icon54-v4-present-3::before { content: '\eb9e'; } .icon54-v4-present-4::before { content: '\eb9f'; } .icon54-v4-present-5::before { content: '\eba0'; } .icon54-v4-present-cake::before { content: '\eba1'; } .icon54-v4-present::before { content: '\eba2'; } .icon54-v4-presentation::before { content: '\eba3'; } .icon54-v4-print::before { content: '\eba4'; } .icon54-v4-prisoner::before { content: '\eba5'; } .icon54-v4-protection::before { content: '\eba6'; } .icon54-v4-punk::before { content: '\eba7'; } .icon54-v4-question-2::before { content: '\eba8'; } .icon54-v4-question-3::before { content: '\eba9'; } .icon54-v4-question-mark::before { content: '\ebaa'; } .icon54-v4-question::before { content: '\ebab'; } .icon54-v4-radar::before { content: '\ebac'; } .icon54-v4-radio::before { content: '\ebad'; } .icon54-v4-recicle-user-2::before { content: '\ebae'; } .icon54-v4-recicle-user::before { content: '\ebaf'; } .icon54-v4-recicle-users::before { content: '\ebb0'; } .icon54-v4-record-1::before { content: '\ebb1'; } .icon54-v4-record-2::before { content: '\ebb2'; } .icon54-v4-rectangle-frame-1::before { content: '\ebb3'; } .icon54-v4-rectangle-frame-2::before { content: '\ebb4'; } .icon54-v4-rectangle-frame-3::before { content: '\ebb5'; } .icon54-v4-rectangle-frame-4::before { content: '\ebb6'; } .icon54-v4-rectangle-frame-5::before { content: '\ebb7'; } .icon54-v4-rectangle-frame-6::before { content: '\ebb8'; } .icon54-v4-rectangle-frame-7::before { content: '\ebb9'; } .icon54-v4-rectangle-frame-8::before { content: '\ebba'; } .icon54-v4-rectangle-frame-9::before { content: '\ebbb'; } .icon54-v4-rectangle-frame-10::before { content: '\ebbc'; } .icon54-v4-rectangle-frame-11::before { content: '\ebbd'; } .icon54-v4-rectangle-frame-12::before { content: '\ebbe'; } .icon54-v4-rectangle-frame-13::before { content: '\ebbf'; } .icon54-v4-refresh-2::before { content: '\ebc0'; } .icon54-v4-refresh-users::before { content: '\ebc1'; } .icon54-v4-refresh::before { content: '\ebc2'; } .icon54-v4-refrigerator::before { content: '\ebc3'; } .icon54-v4-reindeer::before { content: '\ebc4'; } .icon54-v4-reload::before { content: '\ebc5'; } .icon54-v4-remove-event::before { content: '\ebc6'; } .icon54-v4-remove-shopping-cart::before { content: '\ebc7'; } .icon54-v4-remove-user-2::before { content: '\ebc8'; } .icon54-v4-remove-user::before { content: '\ebc9'; } .icon54-v4-remove-users::before { content: '\ebca'; } .icon54-v4-remove::before { content: '\ebcb'; } .icon54-v4-reply::before { content: '\ebcc'; } .icon54-v4-reserved-1::before { content: '\ebcd'; } .icon54-v4-reserved-2::before { content: '\ebce'; } .icon54-v4-restaurant-place::before { content: '\ebcf'; } .icon54-v4-restaurant-sign-1::before { content: '\ebd0'; } .icon54-v4-restaurant-sign-2::before { content: '\ebd1'; } .icon54-v4-restaurant-sign-3::before { content: '\ebd2'; } .icon54-v4-retro-bot-1::before { content: '\ebd3'; } .icon54-v4-retro-bot-2::before { content: '\ebd4'; } .icon54-v4-retro-bot-3::before { content: '\ebd5'; } .icon54-v4-retro-bot-4::before { content: '\ebd6'; } .icon54-v4-right-arrow-2::before { content: '\ebd7'; } .icon54-v4-roberto::before { content: '\ebd8'; } .icon54-v4-robocop::before { content: '\ebd9'; } .icon54-v4-robot-1::before { content: '\ebda'; } .icon54-v4-robot-2::before { content: '\ebdb'; } .icon54-v4-robot-3::before { content: '\ebdc'; } .icon54-v4-robot-4::before { content: '\ebdd'; } .icon54-v4-robot-5::before { content: '\ebde'; } .icon54-v4-robot-6::before { content: '\ebdf'; } .icon54-v4-robot-7::before { content: '\ebe0'; } .icon54-v4-robot-8::before { content: '\ebe1'; } .icon54-v4-robot-9::before { content: '\ebe2'; } .icon54-v4-robot-10::before { content: '\ebe3'; } .icon54-v4-robot-11::before { content: '\ebe4'; } .icon54-v4-robot-12::before { content: '\ebe5'; } .icon54-v4-robot-13::before { content: '\ebe6'; } .icon54-v4-robot-arm-1::before { content: '\ebe7'; } .icon54-v4-robot-arm-2::before { content: '\ebe8'; } .icon54-v4-robot-arm-3::before { content: '\ebe9'; } .icon54-v4-robot-arm-4::before { content: '\ebea'; } .icon54-v4-robot-arm-5::before { content: '\ebeb'; } .icon54-v4-robot-devil::before { content: '\ebec'; } .icon54-v4-robot-machine-1::before { content: '\ebed'; } .icon54-v4-robot-machine-2::before { content: '\ebee'; } .icon54-v4-rocket::before { content: '\ebef'; } .icon54-v4-rolling-pin::before { content: '\ebf0'; } .icon54-v4-roof-plan::before { content: '\ebf1'; } .icon54-v4-round-frame-1::before { content: '\ebf2'; } .icon54-v4-round-frame-2::before { content: '\ebf3'; } .icon54-v4-round-frame-3::before { content: '\ebf4'; } .icon54-v4-round-frame::before { content: '\ebf5'; } .icon54-v4-rug-1::before { content: '\ebf6'; } .icon54-v4-rug-2::before { content: '\ebf7'; } .icon54-v4-rug-3::before { content: '\ebf8'; } .icon54-v4-ruler-1::before { content: '\ebf9'; } .icon54-v4-ruler-2::before { content: '\ebfa'; } .icon54-v4-ruler::before { content: '\ebfb'; } .icon54-v4-sailboat::before { content: '\ebfc'; } .icon54-v4-salt-pot::before { content: '\ebfd'; } .icon54-v4-salver::before { content: '\ebfe'; } .icon54-v4-sand-castle::before { content: '\ebff'; } .icon54-v4-sand-glass::before { content: '\ec00'; } .icon54-v4-santa::before { content: '\ec01'; } .icon54-v4-sauce-boat::before { content: '\ec02'; } .icon54-v4-sauce-spoon::before { content: '\ec03'; } .icon54-v4-sausage::before { content: '\ec04'; } .icon54-v4-save::before { content: '\ec05'; } .icon54-v4-scarf::before { content: '\ec06'; } .icon54-v4-scream::before { content: '\ec07'; } .icon54-v4-scythe::before { content: '\ec08'; } .icon54-v4-search-user-2::before { content: '\ec09'; } .icon54-v4-search-user::before { content: '\ec0a'; } .icon54-v4-search-users::before { content: '\ec0b'; } .icon54-v4-search::before { content: '\ec0c'; } .icon54-v4-section-symbol::before { content: '\ec0d'; } .icon54-v4-server::before { content: '\ec0e'; } .icon54-v4-service::before { content: '\ec0f'; } .icon54-v4-share-user-2::before { content: '\ec10'; } .icon54-v4-share-user::before { content: '\ec11'; } .icon54-v4-share-users::before { content: '\ec12'; } .icon54-v4-share::before { content: '\ec13'; } .icon54-v4-sheep-2::before { content: '\ec14'; } .icon54-v4-sheep::before { content: '\ec15'; } .icon54-v4-shell-1::before { content: '\ec16'; } .icon54-v4-shell-2::before { content: '\ec17'; } .icon54-v4-shop::before { content: '\ec18'; } .icon54-v4-shopping-2::before { content: '\ec19'; } .icon54-v4-shopping-3::before { content: '\ec1a'; } .icon54-v4-shopping-bag::before { content: '\ec1b'; } .icon54-v4-shopping-basket::before { content: '\ec1c'; } .icon54-v4-shopping-cart::before { content: '\ec1d'; } .icon54-v4-shopping::before { content: '\ec1e'; } .icon54-v4-shot-glasses::before { content: '\ec1f'; } .icon54-v4-shower-tray::before { content: '\ec20'; } .icon54-v4-shuffle::before { content: '\ec21'; } .icon54-v4-sieve::before { content: '\ec22'; } .icon54-v4-signal::before { content: '\ec23'; } .icon54-v4-signpost::before { content: '\ec24'; } .icon54-v4-sim-card::before { content: '\ec25'; } .icon54-v4-sink-1::before { content: '\ec26'; } .icon54-v4-sink-2::before { content: '\ec27'; } .icon54-v4-skis::before { content: '\ec28'; } .icon54-v4-skull-cake::before { content: '\ec29'; } .icon54-v4-skull::before { content: '\ec2a'; } .icon54-v4-sky-glasses::before { content: '\ec2b'; } .icon54-v4-skyscraper::before { content: '\ec2c'; } .icon54-v4-sledge::before { content: '\ec2d'; } .icon54-v4-sleeping-2::before { content: '\ec2e'; } .icon54-v4-sleeping-3::before { content: '\ec2f'; } .icon54-v4-sleeping::before { content: '\ec30'; } .icon54-v4-slippery-road::before { content: '\ec31'; } .icon54-v4-snow-boots::before { content: '\ec32'; } .icon54-v4-snow-chain::before { content: '\ec33'; } .icon54-v4-snow-shoes-1::before { content: '\ec34'; } .icon54-v4-snow-shoes-2::before { content: '\ec35'; } .icon54-v4-snow-shovel::before { content: '\ec36'; } .icon54-v4-snowboard::before { content: '\ec37'; } .icon54-v4-snowcapped-house::before { content: '\ec38'; } .icon54-v4-snowcapped-mountains::before { content: '\ec39'; } .icon54-v4-snowflake-1::before { content: '\ec3a'; } .icon54-v4-snowflake-2::before { content: '\ec3b'; } .icon54-v4-snowflake-3::before { content: '\ec3c'; } .icon54-v4-snowflake-4::before { content: '\ec3d'; } .icon54-v4-snowing::before { content: '\ec3e'; } .icon54-v4-snowman::before { content: '\ec3f'; } .icon54-v4-snowmobile::before { content: '\ec40'; } .icon54-v4-sofa-1::before { content: '\ec41'; } .icon54-v4-sofa-2::before { content: '\ec42'; } .icon54-v4-sofa-3::before { content: '\ec43'; } .icon54-v4-sofa-4::before { content: '\ec44'; } .icon54-v4-sofa-5::before { content: '\ec45'; } .icon54-v4-sofa-6::before { content: '\ec46'; } .icon54-v4-soldier::before { content: '\ec47'; } .icon54-v4-soup::before { content: '\ec48'; } .icon54-v4-speach-bubble::before { content: '\ec49'; } .icon54-v4-speach-bubbles::before { content: '\ec4a'; } .icon54-v4-speaker::before { content: '\ec4b'; } .icon54-v4-spices::before { content: '\ec4c'; } .icon54-v4-spider::before { content: '\ec4d'; } .icon54-v4-spoon::before { content: '\ec4e'; } .icon54-v4-square-frame-1::before { content: '\ec4f'; } .icon54-v4-square-frame-2::before { content: '\ec50'; } .icon54-v4-square-frame-3::before { content: '\ec51'; } .icon54-v4-square-frame-4::before { content: '\ec52'; } .icon54-v4-square-frame-5::before { content: '\ec53'; } .icon54-v4-stairs::before { content: '\ec54'; } .icon54-v4-stand-mixer::before { content: '\ec55'; } .icon54-v4-star::before { content: '\ec56'; } .icon54-v4-starfish::before { content: '\ec57'; } .icon54-v4-stop::before { content: '\ec58'; } .icon54-v4-stove::before { content: '\ec59'; } .icon54-v4-strand-bag::before { content: '\ec5a'; } .icon54-v4-strand-ball::before { content: '\ec5b'; } .icon54-v4-straw-hat::before { content: '\ec5c'; } .icon54-v4-sugar-bowl::before { content: '\ec5d'; } .icon54-v4-suitcase::before { content: '\ec5e'; } .icon54-v4-summer-time::before { content: '\ec5f'; } .icon54-v4-sun-light::before { content: '\ec60'; } .icon54-v4-sun::before { content: '\ec61'; } .icon54-v4-suncream::before { content: '\ec62'; } .icon54-v4-sunglasses::before { content: '\ec63'; } .icon54-v4-sunset::before { content: '\ec64'; } .icon54-v4-sunshade::before { content: '\ec65'; } .icon54-v4-suntan-oil::before { content: '\ec66'; } .icon54-v4-superman::before { content: '\ec67'; } .icon54-v4-surf-board::before { content: '\ec68'; } .icon54-v4-sushi::before { content: '\ec69'; } .icon54-v4-sweater-1::before { content: '\ec6a'; } .icon54-v4-sweater-2::before { content: '\ec6b'; } .icon54-v4-sweater-3::before { content: '\ec6c'; } .icon54-v4-sweet-16::before { content: '\ec6d'; } .icon54-v4-swimming-trunks::before { content: '\ec6e'; } .icon54-v4-switch-button-1::before { content: '\ec6f'; } .icon54-v4-switch-button-2::before { content: '\ec70'; } .icon54-v4-syncronizaion::before { content: '\ec71'; } .icon54-v4-table-1::before { content: '\ec72'; } .icon54-v4-table-2::before { content: '\ec73'; } .icon54-v4-table-3::before { content: '\ec74'; } .icon54-v4-table-4::before { content: '\ec75'; } .icon54-v4-table-cad::before { content: '\ec76'; } .icon54-v4-table::before { content: '\ec77'; } .icon54-v4-tag::before { content: '\ec78'; } .icon54-v4-tape-measure::before { content: '\ec79'; } .icon54-v4-target::before { content: '\ec7a'; } .icon54-v4-tea-sieve::before { content: '\ec7b'; } .icon54-v4-teapot::before { content: '\ec7c'; } .icon54-v4-temperature::before { content: '\ec7d'; } .icon54-v4-tent::before { content: '\ec7e'; } .icon54-v4-thermometer-1::before { content: '\ec7f'; } .icon54-v4-thermometer-2::before { content: '\ec80'; } .icon54-v4-thumbs-down::before { content: '\ec81'; } .icon54-v4-thumbs-up::before { content: '\ec82'; } .icon54-v4-ticket::before { content: '\ec83'; } .icon54-v4-time-2::before { content: '\ec84'; } .icon54-v4-time-3::before { content: '\ec85'; } .icon54-v4-time::before { content: '\ec86'; } .icon54-v4-toast::before { content: '\ec87'; } .icon54-v4-toilet-paper::before { content: '\ec88'; } .icon54-v4-toilette::before { content: '\ec89'; } .icon54-v4-tools-1::before { content: '\ec8a'; } .icon54-v4-tools-2::before { content: '\ec8b'; } .icon54-v4-toos::before { content: '\ec8c'; } .icon54-v4-towel::before { content: '\ec8d'; } .icon54-v4-transmitter::before { content: '\ec8e'; } .icon54-v4-trash-full::before { content: '\ec8f'; } .icon54-v4-trash::before { content: '\ec90'; } .icon54-v4-tree-ghost::before { content: '\ec91'; } .icon54-v4-truffles::before { content: '\ec92'; } .icon54-v4-t-shirt-1::before { content: '\ec93'; } .icon54-v4-t-shirt-2::before { content: '\ec94'; } .icon54-v4-tub-1::before { content: '\ec95'; } .icon54-v4-tub-2::before { content: '\ec96'; } .icon54-v4-tulip-2::before { content: '\ec97'; } .icon54-v4-tulip::before { content: '\ec98'; } .icon54-v4-tv-stand::before { content: '\ec99'; } .icon54-v4-type::before { content: '\ec9a'; } .icon54-v4-umbrella::before { content: '\ec9b'; } .icon54-v4-undo::before { content: '\ec9c'; } .icon54-v4-up-arrow::before { content: '\ec9d'; } .icon54-v4-upgrade::before { content: '\ec9e'; } .icon54-v4-upload-2::before { content: '\ec9f'; } .icon54-v4-upload-3::before { content: '\eca0'; } .icon54-v4-upload-cloud::before { content: '\eca1'; } .icon54-v4-upload::before { content: '\eca2'; } .icon54-v4-usb-device::before { content: '\eca3'; } .icon54-v4-usb::before { content: '\eca4'; } .icon54-v4-user-1::before { content: '\eca5'; } .icon54-v4-user-2::before { content: '\eca6'; } .icon54-v4-user-car::before { content: '\eca7'; } .icon54-v4-user-card-2::before { content: '\eca8'; } .icon54-v4-user-card::before { content: '\eca9'; } .icon54-v4-user-cloud::before { content: '\ecaa'; } .icon54-v4-user-database::before { content: '\ecab'; } .icon54-v4-user-defense-2::before { content: '\ecac'; } .icon54-v4-user-defense::before { content: '\ecad'; } .icon54-v4-user-download::before { content: '\ecae'; } .icon54-v4-user-home::before { content: '\ecaf'; } .icon54-v4-user-key-2::before { content: '\ecb0'; } .icon54-v4-user-key::before { content: '\ecb1'; } .icon54-v4-user-love-2::before { content: '\ecb2'; } .icon54-v4-user-love::before { content: '\ecb3'; } .icon54-v4-user-place::before { content: '\ecb4'; } .icon54-v4-user-rate-2::before { content: '\ecb5'; } .icon54-v4-user-refresh::before { content: '\ecb6'; } .icon54-v4-user-settings-2::before { content: '\ecb7'; } .icon54-v4-user-settings::before { content: '\ecb8'; } .icon54-v4-user-speed-2::before { content: '\ecb9'; } .icon54-v4-user-speed::before { content: '\ecba'; } .icon54-v4-user-statistics-2::before { content: '\ecbb'; } .icon54-v4-user-statistics::before { content: '\ecbc'; } .icon54-v4-user-time::before { content: '\ecbd'; } .icon54-v4-user-upload::before { content: '\ecbe'; } .icon54-v4-user-wifi::before { content: '\ecbf'; } .icon54-v4-users-card::before { content: '\ecc0'; } .icon54-v4-users-defense::before { content: '\ecc1'; } .icon54-v4-users-key::before { content: '\ecc2'; } .icon54-v4-users-love::before { content: '\ecc3'; } .icon54-v4-users-place::before { content: '\ecc4'; } .icon54-v4-users-settings::before { content: '\ecc5'; } .icon54-v4-users-speed-3::before { content: '\ecc6'; } .icon54-v4-users-statistics::before { content: '\ecc7'; } .icon54-v4-users::before { content: '\ecc8'; } .icon54-v4-vacation-photo::before { content: '\ecc9'; } .icon54-v4-video::before { content: '\ecca'; } .icon54-v4-vip-ticket::before { content: '\eccb'; } .icon54-v4-vip::before { content: '\eccc'; } .icon54-v4-volume::before { content: '\eccd'; } .icon54-v4-waiter::before { content: '\ecce'; } .icon54-v4-waiting-user-2::before { content: '\eccf'; } .icon54-v4-waiting-user::before { content: '\ecd0'; } .icon54-v4-waiting-users::before { content: '\ecd1'; } .icon54-v4-waitress::before { content: '\ecd2'; } .icon54-v4-wall-e::before { content: '\ecd3'; } .icon54-v4-wallet-2::before { content: '\ecd4'; } .icon54-v4-wallet::before { content: '\ecd5'; } .icon54-v4-watch::before { content: '\ecd6'; } .icon54-v4-webpage::before { content: '\ecd7'; } .icon54-v4-wedding-altar-1::before { content: '\ecd8'; } .icon54-v4-wedding-altar-2::before { content: '\ecd9'; } .icon54-v4-wedding-bouquet-2::before { content: '\ecda'; } .icon54-v4-wedding-bouquet::before { content: '\ecdb'; } .icon54-v4-wedding-cake-1::before { content: '\ecdc'; } .icon54-v4-wedding-cake-2::before { content: '\ecdd'; } .icon54-v4-wedding-cake-3::before { content: '\ecde'; } .icon54-v4-wedding-car::before { content: '\ecdf'; } .icon54-v4-wedding-date::before { content: '\ece0'; } .icon54-v4-wedding-decoration-1::before { content: '\ece1'; } .icon54-v4-wedding-decoration-2::before { content: '\ece2'; } .icon54-v4-wedding-invitation-2::before { content: '\ece3'; } .icon54-v4-wedding-invitation::before { content: '\ece4'; } .icon54-v4-wedding-music::before { content: '\ece5'; } .icon54-v4-wedding-party::before { content: '\ece6'; } .icon54-v4-wedding-photo::before { content: '\ece7'; } .icon54-v4-wedding-planner-book::before { content: '\ece8'; } .icon54-v4-wedding-present-1::before { content: '\ece9'; } .icon54-v4-wedding-present-2::before { content: '\ecea'; } .icon54-v4-wedding-ring::before { content: '\eceb'; } .icon54-v4-wedding-tiara::before { content: '\ecec'; } .icon54-v4-wedding-way-sign::before { content: '\eced'; } .icon54-v4-whetting::before { content: '\ecee'; } .icon54-v4-wifi-1::before { content: '\ecef'; } .icon54-v4-wifi-2::before { content: '\ecf0'; } .icon54-v4-wifi-3::before { content: '\ecf1'; } .icon54-v4-wifi-tethering::before { content: '\ecf2'; } .icon54-v4-wifi::before { content: '\ecf3'; } .icon54-v4-wine-glass::before { content: '\ecf4'; } .icon54-v4-wine-list::before { content: '\ecf5'; } .icon54-v4-wine::before { content: '\ecf6'; } .icon54-v4-winter-calendar::before { content: '\ecf7'; } .icon54-v4-winter-cap-1::before { content: '\ecf8'; } .icon54-v4-winter-cap-2::before { content: '\ecf9'; } .icon54-v4-winter-coat::before { content: '\ecfa'; } .icon54-v4-winter-sock::before { content: '\ecfb'; } .icon54-v4-winter-socks::before { content: '\ecfc'; } .icon54-v4-witch-broom::before { content: '\ecfd'; } .icon54-v4-witch-cauldron::before { content: '\ecfe'; } .icon54-v4-witch\'s-hat::before { content: '\ecff'; } .icon54-v4-wok-1::before { content: '\ed00'; } .icon54-v4-wok-2::before { content: '\ed01'; } .icon54-v4-woman-1::before { content: '\ed02'; } .icon54-v4-woman-2::before { content: '\ed03'; } .icon54-v4-woman-3::before { content: '\ed04'; } .icon54-v4-woman-4::before { content: '\ed05'; } .icon54-v4-woman-cap::before { content: '\ed06'; } .icon54-v4-woman-glasses::before { content: '\ed07'; } .icon54-v4-woman-hat::before { content: '\ed08'; } .icon54-v4-wooden-house::before { content: '\ed09'; } .icon54-v4-woodsman::before { content: '\ed0a'; } .icon54-v4-work-table::before { content: '\ed0b'; } .icon54-v4-worker::before { content: '\ed0c'; } .icon54-v4-workspace-1::before { content: '\ed0d'; } .icon54-v4-workspace-2::before { content: '\ed0e'; } .icon54-v4-writing-user-2::before { content: '\ed0f'; } .icon54-v4-writing-user::before { content: '\ed10'; } .icon54-v4-writing-users::before { content: '\ed11'; } .icon54-v4-zoom-in::before { content: '\ed12'; } .icon54-v4-zoom-out::before { content: '\ed13'; } .btn { border-width: 2px; } img, .card-wrap, .card-wrapper, .video-wrapper, .mbr-figure iframe, .google-map iframe, .slide-content, .plan, .card, .item-wrapper { border-radius: 2rem !important; } .video-wrapper { overflow: hidden; } body { font-family: Inter Tight; } .display-1 { font-family: 'Racing Sans One', display; font-size: 4rem; line-height: 1; } .display-1 > .mbr-iconfont { font-size: 5rem; } .display-2 { font-family: 'Racing Sans One', display; font-size: 4rem; line-height: 1; } .display-2 > .mbr-iconfont { font-size: 5rem; } .display-4 { font-family: 'Oswald', sans-serif; font-size: 1rem; line-height: 1.5; } .display-4 > .mbr-iconfont { font-size: 1.25rem; } .display-5 { font-family: 'Racing Sans One', display; font-size: 1.8rem; line-height: 1.5; } .display-5 > .mbr-iconfont { font-size: 2.25rem; } .display-7 { font-family: 'Racing Sans One', display; font-size: 1.4rem; line-height: 1.3; } .display-7 > .mbr-iconfont { font-size: 1.75rem; } @media (max-width: 992px) { .display-1 { font-size: 3.2rem; } } @media (max-width: 768px) { .display-1 { font-size: 2.8rem; font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))); line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)))); } .display-2 { font-size: 3.2rem; font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))); line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)))); } .display-4 { font-size: 0.8rem; font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))); line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)))); } .display-5 { font-size: 1.44rem; font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))); line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)))); } .display-7 { font-size: 1.12rem; font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))); line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)))); } } .btn { padding: 1.25rem 2rem; border-radius: 4px; } @media (max-width: 767px) { .btn { padding: 0.75rem 1.5rem; } } .btn-sm { padding: 0.6rem 1.2rem; border-radius: 4px; } .btn-md { padding: 0.6rem 1.2rem; border-radius: 4px; } .btn-lg { padding: 1.25rem 2rem; border-radius: 4px; } .bg-primary { background-color: #63c132 !important; } .bg-success { background-color: #383838 !important; } .bg-info { background-color: #320707 !important; } .bg-warning { background-color: #31afd4 !important; } .bg-danger { background-color: #ffffff !important; } .btn-primary, .btn-primary:active { background-color: #63c132 !important; border-color: #63c132 !important; color: #ffffff !important; box-shadow: none; } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary.active { color: inherit; background-color: #7fd353 !important; border-color: #7fd353 !important; box-shadow: none; } .btn-primary.disabled, .btn-primary:disabled { color: #ffffff !important; background-color: #7fd353 !important; border-color: #7fd353 !important; } .btn-secondary, .btn-secondary:active { background-color: #0047a3 !important; border-color: #0047a3 !important; color: #ffffff !important; box-shadow: none; } .btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary.active { color: inherit; background-color: #005dd6 !important; border-color: #005dd6 !important; box-shadow: none; } .btn-secondary.disabled, .btn-secondary:disabled { color: #ffffff !important; background-color: #005dd6 !important; border-color: #005dd6 !important; } .btn-info, .btn-info:active { background-color: #320707 !important; border-color: #320707 !important; color: #ffffff !important; box-shadow: none; } .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info.active { color: inherit; background-color: #5f0d0d !important; border-color: #5f0d0d !important; box-shadow: none; } .btn-info.disabled, .btn-info:disabled { color: #ffffff !important; background-color: #5f0d0d !important; border-color: #5f0d0d !important; } .btn-success, .btn-success:active { background-color: #383838 !important; border-color: #383838 !important; color: #ffffff !important; box-shadow: none; } .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success.active { color: inherit; background-color: #525252 !important; border-color: #525252 !important; box-shadow: none; } .btn-success.disabled, .btn-success:disabled { color: #ffffff !important; background-color: #525252 !important; border-color: #525252 !important; } .btn-warning, .btn-warning:active { background-color: #31afd4 !important; border-color: #31afd4 !important; color: #ffffff !important; box-shadow: none; } .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning.active { color: inherit; background-color: #5bbfdd !important; border-color: #5bbfdd !important; box-shadow: none; } .btn-warning.disabled, .btn-warning:disabled { color: #ffffff !important; background-color: #5bbfdd !important; border-color: #5bbfdd !important; } .btn-danger, .btn-danger:active { background-color: #ffffff !important; border-color: #ffffff !important; color: #808080 !important; box-shadow: none; } .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger.active { color: inherit; background-color: #ffffff !important; border-color: #ffffff !important; box-shadow: none; } .btn-danger.disabled, .btn-danger:disabled { color: #808080 !important; background-color: #ffffff !important; border-color: #ffffff !important; } .btn-white, .btn-white:active { background-color: #eff0ec !important; border-color: #eff0ec !important; color: #757b62 !important; box-shadow: none; } .btn-white:hover, .btn-white:focus, .btn-white.focus, .btn-white.active { color: inherit; background-color: #ffffff !important; border-color: #ffffff !important; box-shadow: none; } .btn-white.disabled, .btn-white:disabled { color: #757b62 !important; background-color: #ffffff !important; border-color: #ffffff !important; } .btn-black, .btn-black:active { background-color: #232323 !important; border-color: #232323 !important; color: #ffffff !important; box-shadow: none; } .btn-black:hover, .btn-black:focus, .btn-black.focus, .btn-black.active { color: inherit; background-color: #3d3d3d !important; border-color: #3d3d3d !important; box-shadow: none; } .btn-black.disabled, .btn-black:disabled { color: #ffffff !important; background-color: #3d3d3d !important; border-color: #3d3d3d !important; } .btn-primary-outline, .btn-primary-outline:active { background-color: transparent !important; border-color: #63c132; color: #63c132; } .btn-primary-outline:hover, .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline.active { color: #407c20 !important; background-color: transparent !important; border-color: #407c20 !important; box-shadow: none !important; } .btn-primary-outline.disabled, .btn-primary-outline:disabled { color: #ffffff !important; background-color: #63c132 !important; border-color: #63c132 !important; } .btn-secondary-outline, .btn-secondary-outline:active { background-color: transparent !important; border-color: #0047a3; color: #0047a3; } .btn-secondary-outline:hover, .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline.active { color: #00214c !important; background-color: transparent !important; border-color: #00214c !important; box-shadow: none !important; } .btn-secondary-outline.disabled, .btn-secondary-outline:disabled { color: #ffffff !important; background-color: #0047a3 !important; border-color: #0047a3 !important; } .btn-info-outline, .btn-info-outline:active { background-color: transparent !important; border-color: #320707; color: #320707; } .btn-info-outline:hover, .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline.active { color: #000000 !important; background-color: transparent !important; border-color: #000000 !important; box-shadow: none !important; } .btn-info-outline.disabled, .btn-info-outline:disabled { color: #ffffff !important; background-color: #320707 !important; border-color: #320707 !important; } .btn-success-outline, .btn-success-outline:active { background-color: transparent !important; border-color: #383838; color: #383838; } .btn-success-outline:hover, .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline.active { color: #0d0d0d !important; background-color: transparent !important; border-color: #0d0d0d !important; box-shadow: none !important; } .btn-success-outline.disabled, .btn-success-outline:disabled { color: #ffffff !important; background-color: #383838 !important; border-color: #383838 !important; } .btn-warning-outline, .btn-warning-outline:active { background-color: transparent !important; border-color: #31afd4; color: #31afd4; } .btn-warning-outline:hover, .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline.active { color: #1e7690 !important; background-color: transparent !important; border-color: #1e7690 !important; box-shadow: none !important; } .btn-warning-outline.disabled, .btn-warning-outline:disabled { color: #ffffff !important; background-color: #31afd4 !important; border-color: #31afd4 !important; } .btn-danger-outline, .btn-danger-outline:active { background-color: transparent !important; border-color: #ffffff; color: #ffffff; } .btn-danger-outline:hover, .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline.active { color: #d4d4d4 !important; background-color: transparent !important; border-color: #d4d4d4 !important; box-shadow: none !important; } .btn-danger-outline.disabled, .btn-danger-outline:disabled { color: #808080 !important; background-color: #ffffff !important; border-color: #ffffff !important; } .btn-black-outline, .btn-black-outline:active { background-color: transparent !important; border-color: #232323; color: #232323; } .btn-black-outline:hover, .btn-black-outline:focus, .btn-black-outline.focus, .btn-black-outline.active { color: #000000 !important; background-color: transparent !important; border-color: #000000 !important; box-shadow: none !important; } .btn-black-outline.disabled, .btn-black-outline:disabled { color: #ffffff !important; background-color: #232323 !important; border-color: #232323 !important; } .btn-white-outline, .btn-white-outline:active { background-color: transparent !important; border-color: #fafafa; color: #fafafa; } .btn-white-outline:hover, .btn-white-outline:focus, .btn-white-outline.focus, .btn-white-outline.active { color: #cfcfcf !important; background-color: transparent !important; border-color: #cfcfcf !important; box-shadow: none !important; } .btn-white-outline.disabled, .btn-white-outline:disabled { color: #7a7a7a !important; background-color: #fafafa !important; border-color: #fafafa !important; } .text-primary { color: #63c132 !important; } .text-secondary { color: #0047a3 !important; } .text-success { color: #383838 !important; } .text-info { color: #320707 !important; } .text-warning { color: #31afd4 !important; } .text-danger { color: #ffffff !important; } .text-white { color: #fafafa !important; } .text-black { color: #232323 !important; } a.text-primary:hover, a.text-primary:focus, a.text-primary.active { color: #39701d !important; } a.text-secondary:hover, a.text-secondary:focus, a.text-secondary.active { color: #001b3d !important; } a.text-success:hover, a.text-success:focus, a.text-success.active { color: #050505 !important; } a.text-info:hover, a.text-info:focus, a.text-info.active { color: #000000 !important; } a.text-warning:hover, a.text-warning:focus, a.text-warning.active { color: #1b6c84 !important; } a.text-danger:hover, a.text-danger:focus, a.text-danger.active { color: #cccccc !important; } a.text-white:hover, a.text-white:focus, a.text-white.active { color: #c7c7c7 !important; } a.text-black:hover, a.text-black:focus, a.text-black.active { color: #000000 !important; } a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) { transition: 0.2s; position: relative; background-image: linear-gradient(currentColor 50%, currentColor 50%); background-size: 10000px 2px; background-repeat: no-repeat; background-position: 0 1.2em; } .nav-tabs .nav-link.active { color: #63c132; } .nav-tabs .nav-link:not(.active) { color: #232323; } .alert-success { background-color: #70c770; } .alert-info { background-color: #320707; } .alert-warning { background-color: #31afd4; } .alert-danger { background-color: #ffffff; } .mbr-section-btn .btn:not(.btn-form) { border-radius: 100px; } .mbr-gallery-filter li a { border-radius: 100px !important; } .mbr-gallery-filter li.active .btn { background-color: #63c132; border-color: #63c132; color: #ffffff; } .mbr-gallery-filter li.active .btn:focus { box-shadow: none; } .nav-tabs .nav-link { border-radius: 100px !important; } a, a:hover { color: #63c132; } .mbr-plan-header.bg-primary .mbr-plan-subtitle, .mbr-plan-header.bg-primary .mbr-plan-price-desc { color: #ace290; } .mbr-plan-header.bg-success .mbr-plan-subtitle, .mbr-plan-header.bg-success .mbr-plan-price-desc { color: #ababab; } .mbr-plan-header.bg-info .mbr-plan-subtitle, .mbr-plan-header.bg-info .mbr-plan-price-desc { color: #f3abab; } .mbr-plan-header.bg-warning .mbr-plan-subtitle, .mbr-plan-header.bg-warning .mbr-plan-price-desc { color: #daf1f7; } .mbr-plan-header.bg-danger .mbr-plan-subtitle, .mbr-plan-header.bg-danger .mbr-plan-price-desc { color: #ffffff; } .scrollToTop_wraper { display: none; } .form-control { font-family: 'Racing Sans One', display; font-size: 1.4rem; line-height: 1.3; font-weight: 400; border-radius: 40px !important; } .form-control > .mbr-iconfont { font-size: 1.75rem; } .form-control:hover, .form-control:focus { box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px; border-color: #63c132 !important; } .form-control:-webkit-input-placeholder { font-family: 'Racing Sans One', display; font-size: 1.4rem; line-height: 1.3; font-weight: 400; } .form-control:-webkit-input-placeholder > .mbr-iconfont { font-size: 1.75rem; } blockquote { border-color: #63c132; } .mbr-form .input-group-btn .btn { border-radius: 100px !important; } .mbr-form .input-group-btn .btn:hover { box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); } .mbr-form .input-group-btn button[type="submit"] { border-radius: 100px !important; padding: 1rem 3rem; } .mbr-form .input-group-btn button[type="submit"]:hover { box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); } .jq-selectbox li:hover, .jq-selectbox li.selected { background-color: #63c132; color: #ffffff; } .jq-number__spin { transition: 0.25s ease; } .jq-number__spin:hover { border-color: #63c132; } .jq-selectbox .jq-selectbox__trigger-arrow, .jq-number__spin.minus:after, .jq-number__spin.plus:after { transition: 0.4s; border-top-color: #232323; border-bottom-color: #232323; } .jq-selectbox:hover .jq-selectbox__trigger-arrow, .jq-number__spin.minus:hover:after, .jq-number__spin.plus:hover:after { border-top-color: #63c132; border-bottom-color: #63c132; } .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current { color: #000000 !important; background-color: #63c132 !important; box-shadow: none !important; } .xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover { color: #ffffff !important; background: #0047a3 !important; box-shadow: none !important; } .lazy-bg { background-image: none !important; } .lazy-placeholder:not(section), .lazy-none { display: block; position: relative; padding-bottom: 56.25%; width: 100%; height: auto; } iframe.lazy-placeholder, .lazy-placeholder:after { content: ''; position: absolute; width: 200px; height: 200px; background: transparent no-repeat center; background-size: contain; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2363c132' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e"); } section.lazy-placeholder:after { opacity: 0.5; } body { overflow-x: hidden; } a { transition: color 0.6s; } .cid-tJS6tZXiPa { z-index: 1000; width: 100%; position: relative; } .cid-tJS6tZXiPa .dropdown-item:before { font-family: Moririse2 !important; content: "\e966"; display: inline-block; width: 0; position: absolute; left: 1rem; top: 0.5rem; margin-right: 0.5rem; line-height: 1; font-size: inherit; vertical-align: middle; text-align: center; overflow: hidden; transform: scale(0, 1); transition: all 0.25s ease-in-out; } @media (max-width: 767px) { .cid-tJS6tZXiPa .navbar-toggler { transform: scale(0.8); } } .cid-tJS6tZXiPa .navbar-brand { flex-shrink: 0; align-items: center; margin-right: 0; padding: 10px 0; transition: all 0.3s; word-break: break-word; z-index: 1; } .cid-tJS6tZXiPa .navbar-brand img { max-width: 100%; max-height: 100%; border-radius: 0px !important; } .cid-tJS6tZXiPa .navbar-brand .navbar-caption { line-height: inherit !important; } .cid-tJS6tZXiPa .navbar-brand .navbar-logo a { outline: none; } .cid-tJS6tZXiPa .navbar-nav { margin: auto; margin-left: 0; margin-left: auto; margin-right: 0; } .cid-tJS6tZXiPa .navbar-nav .nav-item { padding: 0 !important; transition: .3s all !important; } .cid-tJS6tZXiPa .navbar-nav .nav-item .nav-link { padding: 16px !important; margin: 0 !important; border-radius: 1rem !important; transition: .3s all !important; } .cid-tJS6tZXiPa .navbar-nav .nav-item .nav-link:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-tJS6tZXiPa .navbar-nav .open .nav-link::after { transform: rotate(180deg); } @media (min-width: 992px) { .cid-tJS6tZXiPa .navbar-nav .open .nav-link::before { content: ""; width: 100%; height: 20px; top: 100%; background: transparent; position: absolute; } } .cid-tJS6tZXiPa .navbar-nav .dropdown-item { padding: 12px !important; border-radius: 0.5rem !important; margin: 0 8px !important; transition: .3s all !important; } .cid-tJS6tZXiPa .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } @media (min-width: 992px) { .cid-tJS6tZXiPa .navbar-nav { padding-left: 1.5rem; } } .cid-tJS6tZXiPa .nav-link { width: fit-content; position: relative; } .cid-tJS6tZXiPa .navbar-logo { padding-left: 2rem; margin: 0 !important; } @media (max-width: 767px) { .cid-tJS6tZXiPa .navbar-logo { padding-left: 1rem; } } .cid-tJS6tZXiPa .navbar-caption { padding-left: 1rem; padding-right: .5rem; } @media (max-width: 767px) { .cid-tJS6tZXiPa .nav-dropdown { padding-bottom: 0.5rem; } } .cid-tJS6tZXiPa .nav-dropdown .link.dropdown-toggle::after { margin-left: 0.5rem; margin-top: 0.2rem; transition: .3s all; } .cid-tJS6tZXiPa .container { display: flex; height: 90px; padding: 0.5rem 0.6rem; flex-wrap: nowrap; background: rgba(255, 255, 255, 0.9) !important; left: 0; right: 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 100vw; margin-top: 1rem; background-color: #ffffff; box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08); } @media (max-width: 992px) { .cid-tJS6tZXiPa .container { padding-right: 2rem; } } @media (max-width: 767px) { .cid-tJS6tZXiPa .container { width: 95%; height: 56px !important; padding-right: 1rem; margin-top: 0rem; } } .cid-tJS6tZXiPa .iconfont-wrapper { color: #000000 !important; font-size: 1.5rem; padding-right: 0.5rem; } .cid-tJS6tZXiPa .dropdown-menu { flex-wrap: wrap; flex-direction: column; max-width: 100%; padding: 12px 4px !important; border-radius: 1.5rem; transition: .3s all !important; min-width: auto; background: #ffffff; background: rgba(255, 255, 255, 0.9) !important; } .cid-tJS6tZXiPa .nav-item:focus, .cid-tJS6tZXiPa .nav-link:focus { outline: none; } .cid-tJS6tZXiPa .dropdown .dropdown-menu .dropdown-item { width: auto; transition: all 0.25s ease-in-out; } .cid-tJS6tZXiPa .dropdown .dropdown-menu .dropdown-item::after { right: 0.5rem; } .cid-tJS6tZXiPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont { margin-right: 0.5rem; vertical-align: sub; } .cid-tJS6tZXiPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before { display: inline-block; transform: scale(1, 1); transition: all 0.25s ease-in-out; } .cid-tJS6tZXiPa .collapsed .dropdown-menu .dropdown-item:before { display: none; } .cid-tJS6tZXiPa .collapsed .dropdown .dropdown-menu .dropdown-item { padding: 0.235em 1.5em 0.235em 1.5em !important; transition: none; margin: 0 !important; } .cid-tJS6tZXiPa .navbar { min-height: 90px; transition: all 0.3s; border-bottom: 1px solid transparent; background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .cid-tJS6tZXiPa .navbar.opened { transition: all 0.3s; } .cid-tJS6tZXiPa .navbar .dropdown-item { padding: 0.5rem 1.8rem; } .cid-tJS6tZXiPa .navbar .navbar-logo img { width: auto; } .cid-tJS6tZXiPa .navbar .navbar-collapse { z-index: 1; justify-content: flex-end; } .cid-tJS6tZXiPa .navbar.collapsed { justify-content: center; } .cid-tJS6tZXiPa .navbar.collapsed .nav-item .nav-link::before { display: none; } .cid-tJS6tZXiPa .navbar.collapsed.opened .dropdown-menu { top: 0; } @media (min-width: 992px) { .cid-tJS6tZXiPa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse { max-height: calc(98.5vh - 2.9rem); } } .cid-tJS6tZXiPa .navbar.collapsed .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-tJS6tZXiPa .navbar.collapsed .dropdown-menu .dropdown-item:after { right: auto; } .cid-tJS6tZXiPa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 41%; } .cid-tJS6tZXiPa .navbar.collapsed ul.navbar-nav li { margin: auto; } .cid-tJS6tZXiPa .navbar.collapsed .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem; text-align: center; } .cid-tJS6tZXiPa .navbar.collapsed .icons-menu { padding-left: 0; padding-right: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } @media (max-width: 767px) { .cid-tJS6tZXiPa .navbar { min-height: 72px; } .cid-tJS6tZXiPa .navbar .navbar-logo img { height: 2rem !important; } } @media (max-width: 991px) { .cid-tJS6tZXiPa .navbar .nav-item .nav-link::before { display: none; } .cid-tJS6tZXiPa .navbar.opened .dropdown-menu { top: 0; } .cid-tJS6tZXiPa .navbar .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-tJS6tZXiPa .navbar .dropdown-menu .dropdown-item:after { right: auto; } .cid-tJS6tZXiPa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 40%; } .cid-tJS6tZXiPa .navbar .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem !important; text-align: center; } .cid-tJS6tZXiPa .navbar .navbar-brand { flex-shrink: initial; flex-basis: auto; word-break: break-word; padding-right: 10px; } .cid-tJS6tZXiPa .navbar .navbar-toggler { flex-basis: auto; } .cid-tJS6tZXiPa .navbar .icons-menu { padding-left: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } } .cid-tJS6tZXiPa .navbar.navbar-short .navbar-logo img { height: 2rem; } .cid-tJS6tZXiPa .dropdown-item.active, .cid-tJS6tZXiPa .dropdown-item:active { background-color: transparent; } .cid-tJS6tZXiPa .navbar-expand-lg .navbar-nav .nav-link { padding: 0; } .cid-tJS6tZXiPa .nav-dropdown .link.dropdown-toggle { margin-right: 1.667em; } .cid-tJS6tZXiPa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] { margin-right: 0; padding: 0.667em 1.667em; } .cid-tJS6tZXiPa .navbar.navbar-expand-lg .dropdown .dropdown-menu { background: #ffffff; } .cid-tJS6tZXiPa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu { margin: 0; left: 105%; transform: none; top: -12px; } .cid-tJS6tZXiPa .navbar .dropdown.open > .dropdown-menu { display: flex; } .cid-tJS6tZXiPa ul.navbar-nav { flex-wrap: wrap; } .cid-tJS6tZXiPa .navbar-buttons { text-align: center; min-width: 140px; } @media (max-width: 992px) { .cid-tJS6tZXiPa .navbar-buttons { text-align: left; } } .cid-tJS6tZXiPa button.navbar-toggler { outline: none; width: 31px; height: 20px; cursor: pointer; transition: all 0.2s; position: relative; align-self: center; } .cid-tJS6tZXiPa button.navbar-toggler .hamburger span { position: absolute; right: 0; width: 30px; height: 2px; border-right: 5px; background-color: #383838; } .cid-tJS6tZXiPa button.navbar-toggler .hamburger span:nth-child(1) { top: 0; transition: all 0.2s; } .cid-tJS6tZXiPa button.navbar-toggler .hamburger span:nth-child(2) { top: 8px; transition: all 0.15s; } .cid-tJS6tZXiPa button.navbar-toggler .hamburger span:nth-child(3) { top: 8px; transition: all 0.15s; } .cid-tJS6tZXiPa button.navbar-toggler .hamburger span:nth-child(4) { top: 16px; transition: all 0.2s; } .cid-tJS6tZXiPa nav.opened .hamburger span:nth-child(1) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-tJS6tZXiPa nav.opened .hamburger span:nth-child(2) { transform: rotate(45deg); transition: all 0.25s; } .cid-tJS6tZXiPa nav.opened .hamburger span:nth-child(3) { transform: rotate(-45deg); transition: all 0.25s; } .cid-tJS6tZXiPa nav.opened .hamburger span:nth-child(4) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-tJS6tZXiPa .navbar-dropdown { padding: 0 1rem; } .cid-tJS6tZXiPa a.nav-link { display: flex; align-items: center; justify-content: center; } .cid-tJS6tZXiPa .icons-menu { flex-wrap: nowrap; display: flex; justify-content: center; padding-left: 1rem; padding-right: 1rem; padding-top: 0.3rem; text-align: center; } @media (max-width: 992px) { .cid-tJS6tZXiPa .icons-menu { justify-content: flex-start; margin-bottom: .5rem; } } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .cid-tJS6tZXiPa .navbar { height: 70px; } .cid-tJS6tZXiPa .navbar.opened { height: auto; } .cid-tJS6tZXiPa .nav-item .nav-link:hover::before { width: 175%; max-width: calc(100% + 2rem); left: -1rem; } } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu { display: none; width: max-content; max-width: 500px !important; transform: translateX(-50%); top: calc(100% + 20px); left: 50%; } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown-item { line-height: 1 !important; } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(-90deg); } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(0deg); } .cid-tJS6tZXiPa .mbr-section-btn { margin: -0.6rem -0.6rem; } .cid-tJS6tZXiPa .navbar-toggler { margin-left: 12px; margin-right: 8px; order: 1000; } @media (max-width: 991px) { .cid-tJS6tZXiPa .navbar-brand { margin-right: auto; } .cid-tJS6tZXiPa .navbar-collapse { z-index: -1 !important; position: absolute; top: 110%; left: 0; width: 100%; padding: 1rem; border-radius: 1.5rem; background: #ffffff; opacity: 1; border-color: rgba(255, 255, 255, 0.9) !important; background: rgba(255, 255, 255, 0.9) !important; backdrop-filter: blur(8px); } .cid-tJS6tZXiPa .navbar-nav .nav-item .nav-link::after { margin-left: 10px; } .cid-tJS6tZXiPa .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu { max-width: 100% !important; transform: translateX(0); top: 10px; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown-item { padding: 8px !important; line-height: 1 !important; margin-bottom: 4px !important; } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(0deg); } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(180deg); } .cid-tJS6tZXiPa .navbar .dropdown > .dropdown-menu .dropdown-submenu { position: static; width: 100%; max-width: 100% !important; transform: translateX(0) !important; top: 0; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-tJS6tZXiPa .navbar .dropdown.open > .dropdown-menu { display: flex !important; flex-direction: column; align-items: flex-start; } } @media (max-width: 575px) { .cid-tJS6tZXiPa .navbar-collapse { padding: 1rem; } } .cid-uqhllD3PU4 { display: flex; background-image: url("../../../assets/images/m0uflaui98-3546x2367.webp"); } .cid-uqhllD3PU4 .mbr-overlay { background-color: #63c132; opacity: 0.7; } .cid-uqhllD3PU4 .content-wrap { padding: 5rem 1rem; max-width: 800px; } @media (min-width: 768px) { .cid-uqhllD3PU4 { align-items: center; } .cid-uqhllD3PU4 .row { justify-content: center; } } @media (max-width: 991px) and (min-width: 768px) { .cid-uqhllD3PU4 .content-wrap { min-width: 50%; } } @media (max-width: 767px) { .cid-uqhllD3PU4 { -webkit-align-items: center; align-items: center; } .cid-uqhllD3PU4 .mbr-row { -webkit-justify-content: center; justify-content: center; } .cid-uqhllD3PU4 .content-wrap { width: 100%; } } .cid-uqhllD3PU4 .mbr-section-title { text-align: center; } .cid-uqhllD3PU4 .mbr-text, .cid-uqhllD3PU4 .mbr-section-btn { text-align: center; } .cid-uqCyVYZAQs.popup-builder { background-color: #ffffff; } .cid-uqCyVYZAQs.popup-builder .modal { position: relative; display: block; z-index: 1; } .cid-uqCyVYZAQs.popup-builder .modal-dialog { margin-top: 60px; margin-bottom: 60px; } .cid-uqCyVYZAQs .modal-content, .cid-uqCyVYZAQs .modal-dialog { height: auto; } .cid-uqCyVYZAQs .form-wrapper .input-group-btn { margin-right: auto; margin-left: auto; } .cid-uqCyVYZAQs .form-wrapper .input-group-btn .btn { margin: 0 !important; } @media (min-width: 769px) { .cid-uqCyVYZAQs .form-wrapper .mbr-form .form-group, .cid-uqCyVYZAQs .form-wrapper .mbr-form .input-group-btn { padding: 0 .5rem; } } .cid-uqCyVYZAQs .card-img { width: 100%; margin: auto; border-radius: 0; } .cid-uqCyVYZAQs .mbr-figure img { display: block; width: 100%; -ms-flex-item-align: center; -ms-grid-row-align: center; -webkit-align-self: center; align-self: center; } .cid-uqCyVYZAQs .mbr-text { text-align: center; } .cid-uqCyVYZAQs .pt-0 { padding-top: 0 !important; } .cid-uqCyVYZAQs .pb-0 { padding-bottom: 0 !important; } .cid-uqCyVYZAQs .form-content { -ms-flex-pack: center; justify-content: center; text-align: center; } .cid-uqCyVYZAQs .mbr-overlay { bottom: 0; left: 0; position: absolute; right: 0; top: 0; z-index: 0; pointer-events: none; } .cid-uqCyVYZAQs .modal-open { overflow: hidden; } .cid-uqCyVYZAQs .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .cid-uqCyVYZAQs .modal { position: fixed; top: 0; left: 0; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0; } .cid-uqCyVYZAQs .modal-dialog { position: relative; width: auto; margin: .5rem; pointer-events: none; } .cid-uqCyVYZAQs .modal.fade .modal-dialog { transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; -webkit-transform: translate(0, -50px); transform: translate(0, -50px); } .cid-uqCyVYZAQs .modal.show .modal-dialog { -webkit-transform: none; transform: none; } .cid-uqCyVYZAQs .modal-dialog-centered { display: flex; -ms-flex-align: center; align-items: center; min-height: calc(100% - (.5rem * 2)); } .cid-uqCyVYZAQs .modal-dialog-centered::before { display: block; height: calc(100vh - (.5rem * 2)); content: ""; } .cid-uqCyVYZAQs .modal-content { background: #ffffff; position: relative; display: flex; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-clip: padding-box; border: none; outline: 0; -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); } .cid-uqCyVYZAQs .margin-center-pos { margin-top: auto; margin-bottom: auto; } .cid-uqCyVYZAQs .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #000; } .cid-uqCyVYZAQs .modal-backdrop.fade { opacity: 0; } .cid-uqCyVYZAQs .modal-backdrop.show { opacity: .5; } .cid-uqCyVYZAQs .modal-header { display: flex; -ms-flex-align: start; align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; border-bottom: none; } @media (min-width: 992px) { .cid-uqCyVYZAQs .modal-header { padding: 2rem 2rem 1rem; } } @media (max-width: 991px) { .cid-uqCyVYZAQs .modal-header { padding: 1rem; } } .cid-uqCyVYZAQs .modal-header .close { position: absolute; top: 1rem; right: 1rem; margin: -1rem -1rem -1rem auto; padding: 1rem; opacity: .75; } .cid-uqCyVYZAQs .modal-header .close svg { fill: #164fd3; } .cid-uqCyVYZAQs .modal-header .close:hover { opacity: 1; } .cid-uqCyVYZAQs .modal-header .close:focus { outline: none; } .cid-uqCyVYZAQs .modal-title { line-height: 1.5; width: 100%; margin: 0; text-align: center; } .cid-uqCyVYZAQs .modal-body { position: relative; -ms-flex: 1 1 auto; flex: 1 1 auto; } @media (min-width: 992px) { .cid-uqCyVYZAQs .modal-body { padding: 1rem 2rem 2rem; } } @media (max-width: 991px) { .cid-uqCyVYZAQs .modal-body { padding: 1rem; } } .cid-uqCyVYZAQs .modal-footer { display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: center; justify-content: center; border-top: none; text-align: center; } @media (min-width: 992px) { .cid-uqCyVYZAQs .modal-footer { padding: 0rem 2rem 2rem; } } @media (max-width: 991px) { .cid-uqCyVYZAQs .modal-footer { padding: 1rem; } } .cid-uqCyVYZAQs .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .cid-uqCyVYZAQs .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .cid-uqCyVYZAQs .modal-dialog-centered { min-height: calc(100% - (1.75rem * 2)); } .cid-uqCyVYZAQs .modal-dialog-centered::before { height: calc(100vh - (1.75rem * 2)); } .cid-uqCyVYZAQs .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .cid-uqCyVYZAQs .modal-lg, .cid-uqCyVYZAQs .modal-xl { max-width: 800px; } } @media (min-width: 1200px) { .cid-uqCyVYZAQs .modal-xl { max-width: 1140px; } } .cid-uqCyVYZAQs .row { display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .cid-uqCyVYZAQs .col-md-4 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .cid-uqCyVYZAQs .form-group { margin-bottom: 1rem; } .cid-uqCyVYZAQs .form-control { display: block; width: 100%; font-size: 1rem; font-weight: 400; line-height: 1.5; } .cid-uqCyVYZAQs .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .cid-uqCyVYZAQs .col-md-auto { position: relative; padding-right: 15px; padding-left: 15px; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .cid-uqCyVYZAQs .mbr-section-btn { margin: 0; } .cid-uqCyVYZAQs .mbr-section-btn .btn { margin: 0; } .cid-tMlEXTHLbS { padding-top: 4rem; padding-bottom: 6rem; background-color: #164fd3; } .cid-tMlEXTHLbS img, .cid-tMlEXTHLbS .item-img { width: 100%; height: 100%; height: 300px; object-fit: cover; } .cid-tMlEXTHLbS .item:focus, .cid-tMlEXTHLbS span:focus { outline: none; } .cid-tMlEXTHLbS .item { margin-bottom: 2rem; } @media (max-width: 767px) { .cid-tMlEXTHLbS .item { margin-bottom: 1rem; } } .cid-tMlEXTHLbS .item-content { margin-top: 2rem; padding: 0 2.25rem 2.25rem; display: flex; flex-direction: column; height: 100%; } @media (max-width: 767px) { .cid-tMlEXTHLbS .item-content { padding: 0 2rem 1.5rem; margin-top: 1rem; } } .cid-tMlEXTHLbS .item-wrapper { position: relative; background: #ffffff; height: 100%; display: flex; flex-flow: column nowrap; } .cid-tMlEXTHLbS .item-wrapper .item-footer { margin-top: auto; } .cid-tMlEXTHLbS .mbr-section-title { color: #ffffff; text-align: center; } .cid-tMlEXTHLbS .item-title { text-align: center; } .cid-tMlEXTHLbS .item-subtitle { text-align: left; } .cid-tMlEXTHLbS .mbr-text, .cid-tMlEXTHLbS .item .mbr-section-btn { text-align: center; } .cid-tMlEXTHLbS .content-head { max-width: 800px; } .cid-tMlEXTHLbS .mbr-section-subtitle, .cid-tMlEXTHLbS .mbr-section-head .mbr-section-btn { color: #ffffff; text-align: center; } .cid-tJS9pBcTSa { padding-top: 6rem; padding-bottom: 6rem; background-color: #ffffff; } .cid-tJS9pBcTSa .mbr-overlay { background-color: #ffffff; opacity: 0.4; } .cid-tJS9pBcTSa form .mbr-section-btn { text-align: center; width: 100%; } .cid-tJS9pBcTSa form .mbr-section-btn .btn { display: inline-flex; } @media (max-width: 991px) { .cid-tJS9pBcTSa form .mbr-section-btn .btn { width: 100%; } } .cid-tJS9pBcTSa .mbr-section-title { color: #164fd3; } .cid-tLdYHD757A { padding-top: 6rem; padding-bottom: 6rem; background: #63c132; } .cid-tLdYHD757A .mbr-fallback-image.disabled { display: none; } .cid-tLdYHD757A .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } @media (max-width: 767px) { .cid-tLdYHD757A .row { text-align: center; } .cid-tLdYHD757A .row .map-wrapper { margin-top: 1rem; } } .cid-tLdYHD757A .google-map { height: 100%; position: relative; } .cid-tLdYHD757A .google-map iframe { height: 100%; width: 100%; } @media (max-width: 767px) { .cid-tLdYHD757A .google-map iframe { min-height: 350px; } } .cid-tLdYHD757A .google-map [data-state-details] { color: #6b6763; height: 1.5em; margin-top: -0.75em; padding-left: 1.25rem; padding-right: 1.25rem; position: absolute; text-align: center; top: 50%; width: 100%; } .cid-tLdYHD757A .google-map[data-state] { background: #e9e5dc; } .cid-tLdYHD757A .google-map[data-state="loading"] [data-state-details] { display: none; } .cid-tLdYHD757A .card-wrapper { background: #383838; } @media (max-width: 767px) { .cid-tLdYHD757A .card-wrapper { padding: 2rem 1.5rem; } } @media (min-width: 768px) { .cid-tLdYHD757A .card-wrapper { padding: 2.25rem; } } .cid-tLdYHD757A .text-wrapper { padding: 0 1rem; } @media (max-width: 767px) { .cid-tLdYHD757A .cardTitle, .cid-tLdYHD757A .item-wrap { text-align: center; } } .cid-tLdYHD757A ul { list-style-type: none; padding: 0; margin: 0; } .cid-tLdYHD757A .cardTitle { color: #ffffff; } .cid-tLdYHD757A .list, .cid-tLdYHD757A .item-wrap { color: #ffffff; } .cid-tLdYHD757A .mbr-section-title { color: #ffffff; } .cid-uqCFpstjWn { padding-top: 60px; padding-bottom: 60px; background-color: #ffffff; } .cid-uqCFpstjWn .navbar-logo { width: 100px; margin-bottom: 10px; margin: auto; } .cid-uqCFpstjWn .navbar-brand { margin: auto; width: 100%; text-align: center; } .cid-uqCFpstjWn .socicon { font-size: 1.3rem; background: #63c132; border-radius: 100%; width: 40px; height: 40px; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .cid-uqCFpstjWn .social-list { padding-left: 0; margin-bottom: 0; list-style: none; } .cid-uqCFpstjWn .social-list .soc-item { display: inline-block; margin: 0 0.3rem; } .cid-uqCFpstjWn .text2 { color: #000000; text-align: left; } .cid-uqCFpstjWn .group-title { text-align: left; color: #000000; padding-bottom: 0.2rem; } .cid-uqCFpstjWn .logo-title { text-align: center; } .cid-uqCFpstjWn .logo-sub-title { text-align: center; } .cid-uqCFpstjWn .links { text-align: center; color: #656565; } .cid-uqCFpstjWn .logo-sub-title i { color: #9e9e9e; } .cid-uqCFpstjWn .mbr-fallback-image.disabled { display: none; } .cid-uqCFpstjWn .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-uqCFpstjWn .links, .cid-uqCFpstjWn .social-list { color: #383838; } .cid-utcNkuseUK { z-index: 1000; width: 100%; position: relative; } .cid-utcNkuseUK .dropdown-item:before { font-family: Moririse2 !important; content: "\e966"; display: inline-block; width: 0; position: absolute; left: 1rem; top: 0.5rem; margin-right: 0.5rem; line-height: 1; font-size: inherit; vertical-align: middle; text-align: center; overflow: hidden; transform: scale(0, 1); transition: all 0.25s ease-in-out; } @media (max-width: 767px) { .cid-utcNkuseUK .navbar-toggler { transform: scale(0.8); } } .cid-utcNkuseUK .navbar-brand { flex-shrink: 0; align-items: center; margin-right: 0; padding: 10px 0; transition: all 0.3s; word-break: break-word; z-index: 1; } .cid-utcNkuseUK .navbar-brand img { max-width: 100%; max-height: 100%; border-radius: 0px !important; } .cid-utcNkuseUK .navbar-brand .navbar-caption { line-height: inherit !important; } .cid-utcNkuseUK .navbar-brand .navbar-logo a { outline: none; } .cid-utcNkuseUK .navbar-nav { margin: auto; margin-left: 0; margin-left: auto; margin-right: 0; } .cid-utcNkuseUK .navbar-nav .nav-item { padding: 0 !important; transition: .3s all !important; } .cid-utcNkuseUK .navbar-nav .nav-item .nav-link { padding: 16px !important; margin: 0 !important; border-radius: 1rem !important; transition: .3s all !important; } .cid-utcNkuseUK .navbar-nav .nav-item .nav-link:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-utcNkuseUK .navbar-nav .open .nav-link::after { transform: rotate(180deg); } @media (min-width: 992px) { .cid-utcNkuseUK .navbar-nav .open .nav-link::before { content: ""; width: 100%; height: 20px; top: 100%; background: transparent; position: absolute; } } .cid-utcNkuseUK .navbar-nav .dropdown-item { padding: 12px !important; border-radius: 0.5rem !important; margin: 0 8px !important; transition: .3s all !important; } .cid-utcNkuseUK .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } @media (min-width: 992px) { .cid-utcNkuseUK .navbar-nav { padding-left: 1.5rem; } } .cid-utcNkuseUK .nav-link { width: fit-content; position: relative; } .cid-utcNkuseUK .navbar-logo { padding-left: 2rem; margin: 0 !important; } @media (max-width: 767px) { .cid-utcNkuseUK .navbar-logo { padding-left: 1rem; } } .cid-utcNkuseUK .navbar-caption { padding-left: 1rem; padding-right: .5rem; } @media (max-width: 767px) { .cid-utcNkuseUK .nav-dropdown { padding-bottom: 0.5rem; } } .cid-utcNkuseUK .nav-dropdown .link.dropdown-toggle::after { margin-left: 0.5rem; margin-top: 0.2rem; transition: .3s all; } .cid-utcNkuseUK .container { display: flex; height: 90px; padding: 0.5rem 0.6rem; flex-wrap: nowrap; background: rgba(255, 255, 255, 0.9) !important; left: 0; right: 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 100vw; margin-top: 1rem; background-color: #ffffff; box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08); } @media (max-width: 992px) { .cid-utcNkuseUK .container { padding-right: 2rem; } } @media (max-width: 767px) { .cid-utcNkuseUK .container { width: 95%; height: 56px !important; padding-right: 1rem; margin-top: 0rem; } } .cid-utcNkuseUK .iconfont-wrapper { color: #000000 !important; font-size: 1.5rem; padding-right: 0.5rem; } .cid-utcNkuseUK .dropdown-menu { flex-wrap: wrap; flex-direction: column; max-width: 100%; padding: 12px 4px !important; border-radius: 1.5rem; transition: .3s all !important; min-width: auto; background: #ffffff; background: rgba(255, 255, 255, 0.9) !important; } .cid-utcNkuseUK .nav-item:focus, .cid-utcNkuseUK .nav-link:focus { outline: none; } .cid-utcNkuseUK .dropdown .dropdown-menu .dropdown-item { width: auto; transition: all 0.25s ease-in-out; } .cid-utcNkuseUK .dropdown .dropdown-menu .dropdown-item::after { right: 0.5rem; } .cid-utcNkuseUK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont { margin-right: 0.5rem; vertical-align: sub; } .cid-utcNkuseUK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before { display: inline-block; transform: scale(1, 1); transition: all 0.25s ease-in-out; } .cid-utcNkuseUK .collapsed .dropdown-menu .dropdown-item:before { display: none; } .cid-utcNkuseUK .collapsed .dropdown .dropdown-menu .dropdown-item { padding: 0.235em 1.5em 0.235em 1.5em !important; transition: none; margin: 0 !important; } .cid-utcNkuseUK .navbar { min-height: 90px; transition: all 0.3s; border-bottom: 1px solid transparent; background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .cid-utcNkuseUK .navbar.opened { transition: all 0.3s; } .cid-utcNkuseUK .navbar .dropdown-item { padding: 0.5rem 1.8rem; } .cid-utcNkuseUK .navbar .navbar-logo img { width: auto; } .cid-utcNkuseUK .navbar .navbar-collapse { z-index: 1; justify-content: flex-end; } .cid-utcNkuseUK .navbar.collapsed { justify-content: center; } .cid-utcNkuseUK .navbar.collapsed .nav-item .nav-link::before { display: none; } .cid-utcNkuseUK .navbar.collapsed.opened .dropdown-menu { top: 0; } @media (min-width: 992px) { .cid-utcNkuseUK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse { max-height: calc(98.5vh - 2.9rem); } } .cid-utcNkuseUK .navbar.collapsed .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-utcNkuseUK .navbar.collapsed .dropdown-menu .dropdown-item:after { right: auto; } .cid-utcNkuseUK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 41%; } .cid-utcNkuseUK .navbar.collapsed ul.navbar-nav li { margin: auto; } .cid-utcNkuseUK .navbar.collapsed .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem; text-align: center; } .cid-utcNkuseUK .navbar.collapsed .icons-menu { padding-left: 0; padding-right: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } @media (max-width: 767px) { .cid-utcNkuseUK .navbar { min-height: 72px; } .cid-utcNkuseUK .navbar .navbar-logo img { height: 2rem !important; } } @media (max-width: 991px) { .cid-utcNkuseUK .navbar .nav-item .nav-link::before { display: none; } .cid-utcNkuseUK .navbar.opened .dropdown-menu { top: 0; } .cid-utcNkuseUK .navbar .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-utcNkuseUK .navbar .dropdown-menu .dropdown-item:after { right: auto; } .cid-utcNkuseUK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 40%; } .cid-utcNkuseUK .navbar .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem !important; text-align: center; } .cid-utcNkuseUK .navbar .navbar-brand { flex-shrink: initial; flex-basis: auto; word-break: break-word; padding-right: 10px; } .cid-utcNkuseUK .navbar .navbar-toggler { flex-basis: auto; } .cid-utcNkuseUK .navbar .icons-menu { padding-left: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } } .cid-utcNkuseUK .navbar.navbar-short .navbar-logo img { height: 2rem; } .cid-utcNkuseUK .dropdown-item.active, .cid-utcNkuseUK .dropdown-item:active { background-color: transparent; } .cid-utcNkuseUK .navbar-expand-lg .navbar-nav .nav-link { padding: 0; } .cid-utcNkuseUK .nav-dropdown .link.dropdown-toggle { margin-right: 1.667em; } .cid-utcNkuseUK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] { margin-right: 0; padding: 0.667em 1.667em; } .cid-utcNkuseUK .navbar.navbar-expand-lg .dropdown .dropdown-menu { background: #ffffff; } .cid-utcNkuseUK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu { margin: 0; left: 105%; transform: none; top: -12px; } .cid-utcNkuseUK .navbar .dropdown.open > .dropdown-menu { display: flex; } .cid-utcNkuseUK ul.navbar-nav { flex-wrap: wrap; } .cid-utcNkuseUK .navbar-buttons { text-align: center; min-width: 140px; } @media (max-width: 992px) { .cid-utcNkuseUK .navbar-buttons { text-align: left; } } .cid-utcNkuseUK button.navbar-toggler { outline: none; width: 31px; height: 20px; cursor: pointer; transition: all 0.2s; position: relative; align-self: center; } .cid-utcNkuseUK button.navbar-toggler .hamburger span { position: absolute; right: 0; width: 30px; height: 2px; border-right: 5px; background-color: #383838; } .cid-utcNkuseUK button.navbar-toggler .hamburger span:nth-child(1) { top: 0; transition: all 0.2s; } .cid-utcNkuseUK button.navbar-toggler .hamburger span:nth-child(2) { top: 8px; transition: all 0.15s; } .cid-utcNkuseUK button.navbar-toggler .hamburger span:nth-child(3) { top: 8px; transition: all 0.15s; } .cid-utcNkuseUK button.navbar-toggler .hamburger span:nth-child(4) { top: 16px; transition: all 0.2s; } .cid-utcNkuseUK nav.opened .hamburger span:nth-child(1) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-utcNkuseUK nav.opened .hamburger span:nth-child(2) { transform: rotate(45deg); transition: all 0.25s; } .cid-utcNkuseUK nav.opened .hamburger span:nth-child(3) { transform: rotate(-45deg); transition: all 0.25s; } .cid-utcNkuseUK nav.opened .hamburger span:nth-child(4) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-utcNkuseUK .navbar-dropdown { padding: 0 1rem; } .cid-utcNkuseUK a.nav-link { display: flex; align-items: center; justify-content: center; } .cid-utcNkuseUK .icons-menu { flex-wrap: nowrap; display: flex; justify-content: center; padding-left: 1rem; padding-right: 1rem; padding-top: 0.3rem; text-align: center; } @media (max-width: 992px) { .cid-utcNkuseUK .icons-menu { justify-content: flex-start; margin-bottom: .5rem; } } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .cid-utcNkuseUK .navbar { height: 70px; } .cid-utcNkuseUK .navbar.opened { height: auto; } .cid-utcNkuseUK .nav-item .nav-link:hover::before { width: 175%; max-width: calc(100% + 2rem); left: -1rem; } } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu { display: none; width: max-content; max-width: 500px !important; transform: translateX(-50%); top: calc(100% + 20px); left: 50%; } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown-item { line-height: 1 !important; } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(-90deg); } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(0deg); } .cid-utcNkuseUK .mbr-section-btn { margin: -0.6rem -0.6rem; } .cid-utcNkuseUK .navbar-toggler { margin-left: 12px; margin-right: 8px; order: 1000; } @media (max-width: 991px) { .cid-utcNkuseUK .navbar-brand { margin-right: auto; } .cid-utcNkuseUK .navbar-collapse { z-index: -1 !important; position: absolute; top: 110%; left: 0; width: 100%; padding: 1rem; border-radius: 1.5rem; background: #ffffff; opacity: 1; border-color: rgba(255, 255, 255, 0.9) !important; background: rgba(255, 255, 255, 0.9) !important; backdrop-filter: blur(8px); } .cid-utcNkuseUK .navbar-nav .nav-item .nav-link::after { margin-left: 10px; } .cid-utcNkuseUK .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu { max-width: 100% !important; transform: translateX(0); top: 10px; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown-item { padding: 8px !important; line-height: 1 !important; margin-bottom: 4px !important; } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(0deg); } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(180deg); } .cid-utcNkuseUK .navbar .dropdown > .dropdown-menu .dropdown-submenu { position: static; width: 100%; max-width: 100% !important; transform: translateX(0) !important; top: 0; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-utcNkuseUK .navbar .dropdown.open > .dropdown-menu { display: flex !important; flex-direction: column; align-items: flex-start; } } @media (max-width: 575px) { .cid-utcNkuseUK .navbar-collapse { padding: 1rem; } } .cid-utcNkuMK5u { display: flex; background-image: url("../../../assets/images/m0uflaui98-3546x2367.webp"); } .cid-utcNkuMK5u .mbr-overlay { background-color: #63c132; opacity: 0.7; } .cid-utcNkuMK5u .content-wrap { padding: 5rem 1rem; max-width: 800px; } @media (min-width: 768px) { .cid-utcNkuMK5u { align-items: center; } .cid-utcNkuMK5u .row { justify-content: center; } } @media (max-width: 991px) and (min-width: 768px) { .cid-utcNkuMK5u .content-wrap { min-width: 50%; } } @media (max-width: 767px) { .cid-utcNkuMK5u { -webkit-align-items: center; align-items: center; } .cid-utcNkuMK5u .mbr-row { -webkit-justify-content: center; justify-content: center; } .cid-utcNkuMK5u .content-wrap { width: 100%; } } .cid-utcNkuMK5u .mbr-section-title { text-align: center; } .cid-utcNkuMK5u .mbr-text, .cid-utcNkuMK5u .mbr-section-btn { text-align: center; } .cid-utcNkv4h6a.popup-builder { background-color: #ffffff; } .cid-utcNkv4h6a.popup-builder .modal { position: relative; display: block; z-index: 1; } .cid-utcNkv4h6a.popup-builder .modal-dialog { margin-top: 60px; margin-bottom: 60px; } .cid-utcNkv4h6a .modal-content, .cid-utcNkv4h6a .modal-dialog { height: auto; } .cid-utcNkv4h6a .form-wrapper .input-group-btn { margin-right: auto; margin-left: auto; } .cid-utcNkv4h6a .form-wrapper .input-group-btn .btn { margin: 0 !important; } @media (min-width: 769px) { .cid-utcNkv4h6a .form-wrapper .mbr-form .form-group, .cid-utcNkv4h6a .form-wrapper .mbr-form .input-group-btn { padding: 0 .5rem; } } .cid-utcNkv4h6a .card-img { width: 100%; margin: auto; border-radius: 0; } .cid-utcNkv4h6a .mbr-figure img { display: block; width: 100%; -ms-flex-item-align: center; -ms-grid-row-align: center; -webkit-align-self: center; align-self: center; } .cid-utcNkv4h6a .mbr-text { text-align: center; } .cid-utcNkv4h6a .pt-0 { padding-top: 0 !important; } .cid-utcNkv4h6a .pb-0 { padding-bottom: 0 !important; } .cid-utcNkv4h6a .form-content { -ms-flex-pack: center; justify-content: center; text-align: center; } .cid-utcNkv4h6a .mbr-overlay { bottom: 0; left: 0; position: absolute; right: 0; top: 0; z-index: 0; pointer-events: none; } .cid-utcNkv4h6a .modal-open { overflow: hidden; } .cid-utcNkv4h6a .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .cid-utcNkv4h6a .modal { position: fixed; top: 0; left: 0; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0; } .cid-utcNkv4h6a .modal-dialog { position: relative; width: auto; margin: .5rem; pointer-events: none; } .cid-utcNkv4h6a .modal.fade .modal-dialog { transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; -webkit-transform: translate(0, -50px); transform: translate(0, -50px); } .cid-utcNkv4h6a .modal.show .modal-dialog { -webkit-transform: none; transform: none; } .cid-utcNkv4h6a .modal-dialog-centered { display: flex; -ms-flex-align: center; align-items: center; min-height: calc(100% - (.5rem * 2)); } .cid-utcNkv4h6a .modal-dialog-centered::before { display: block; height: calc(100vh - (.5rem * 2)); content: ""; } .cid-utcNkv4h6a .modal-content { background: #ffffff; position: relative; display: flex; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-clip: padding-box; border: none; outline: 0; -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); } .cid-utcNkv4h6a .margin-center-pos { margin-top: auto; margin-bottom: auto; } .cid-utcNkv4h6a .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #000; } .cid-utcNkv4h6a .modal-backdrop.fade { opacity: 0; } .cid-utcNkv4h6a .modal-backdrop.show { opacity: .5; } .cid-utcNkv4h6a .modal-header { display: flex; -ms-flex-align: start; align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; border-bottom: none; } @media (min-width: 992px) { .cid-utcNkv4h6a .modal-header { padding: 2rem 2rem 1rem; } } @media (max-width: 991px) { .cid-utcNkv4h6a .modal-header { padding: 1rem; } } .cid-utcNkv4h6a .modal-header .close { position: absolute; top: 1rem; right: 1rem; margin: -1rem -1rem -1rem auto; padding: 1rem; opacity: .75; } .cid-utcNkv4h6a .modal-header .close svg { fill: #164fd3; } .cid-utcNkv4h6a .modal-header .close:hover { opacity: 1; } .cid-utcNkv4h6a .modal-header .close:focus { outline: none; } .cid-utcNkv4h6a .modal-title { line-height: 1.5; width: 100%; margin: 0; text-align: center; } .cid-utcNkv4h6a .modal-body { position: relative; -ms-flex: 1 1 auto; flex: 1 1 auto; } @media (min-width: 992px) { .cid-utcNkv4h6a .modal-body { padding: 1rem 2rem 2rem; } } @media (max-width: 991px) { .cid-utcNkv4h6a .modal-body { padding: 1rem; } } .cid-utcNkv4h6a .modal-footer { display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: center; justify-content: center; border-top: none; text-align: center; } @media (min-width: 992px) { .cid-utcNkv4h6a .modal-footer { padding: 0rem 2rem 2rem; } } @media (max-width: 991px) { .cid-utcNkv4h6a .modal-footer { padding: 1rem; } } .cid-utcNkv4h6a .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .cid-utcNkv4h6a .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .cid-utcNkv4h6a .modal-dialog-centered { min-height: calc(100% - (1.75rem * 2)); } .cid-utcNkv4h6a .modal-dialog-centered::before { height: calc(100vh - (1.75rem * 2)); } .cid-utcNkv4h6a .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .cid-utcNkv4h6a .modal-lg, .cid-utcNkv4h6a .modal-xl { max-width: 800px; } } @media (min-width: 1200px) { .cid-utcNkv4h6a .modal-xl { max-width: 1140px; } } .cid-utcNkv4h6a .row { display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .cid-utcNkv4h6a .col-md-4 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .cid-utcNkv4h6a .form-group { margin-bottom: 1rem; } .cid-utcNkv4h6a .form-control { display: block; width: 100%; font-size: 1rem; font-weight: 400; line-height: 1.5; } .cid-utcNkv4h6a .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .cid-utcNkv4h6a .col-md-auto { position: relative; padding-right: 15px; padding-left: 15px; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .cid-utcNkv4h6a .mbr-section-btn { margin: 0; } .cid-utcNkv4h6a .mbr-section-btn .btn { margin: 0; } .cid-utcOYsdftx { padding-top: 1rem; padding-bottom: 0rem; background-color: #ffffff; } .cid-utcOYsdftx .mbr-fallback-image.disabled { display: none; } .cid-utcOYsdftx .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utcOYsdftx .item { display: flex; align-items: center; margin-bottom: 2rem; flex-direction: column; position: relative; margin-bottom: 3rem; } .cid-utcOYsdftx .item .icon-wrap { text-align: center; } .cid-utcOYsdftx .item::before { content: "\e925"; font-family: Moririse2 !important; position: absolute; font-size: 32px; left: 50%; top: 97%; color: #0047a3; transform: translate(-50%, 0); } .cid-utcOYsdftx .item:last-child:before { display: none; } .cid-utcOYsdftx .item.last::before { display: none; } .cid-utcOYsdftx .icon-box { background: #0047a3; width: 60px; min-width: 60px; height: 60px; border-radius: 50%; margin-bottom: 1rem; text-align: center; display: inline-block; } .cid-utcOYsdftx .text-box { text-align: center; } .cid-utcOYsdftx span { font-size: 2rem; color: #ffffff; line-height: 60px; } @media (max-width: 991px) { .cid-utcOYsdftx .card { margin-bottom: 2rem; } .cid-utcOYsdftx .card-wrapper { margin-bottom: 2rem; } } .cid-utcOYsdftx .mbr-text, .cid-utcOYsdftx .mbr-section-btn { color: #ffffff; } .cid-utcOYsdftx .card-title, .cid-utcOYsdftx .card-box { color: #0047a3; } .cid-utcOYsdftx .icon-text { color: #63c132; } .cid-utcNkvG8Dv { padding-top: 6rem; padding-bottom: 6rem; background-color: #0047a3; } .cid-utcNkvG8Dv .mbr-overlay { background-color: #ffffff; opacity: 0.4; } .cid-utcNkvG8Dv form .mbr-section-btn { text-align: center; width: 100%; } .cid-utcNkvG8Dv form .mbr-section-btn .btn { display: inline-flex; } @media (max-width: 991px) { .cid-utcNkvG8Dv form .mbr-section-btn .btn { width: 100%; } } .cid-utcNkvG8Dv .mbr-section-title { color: #63c132; } .cid-utcNkvG8Dv .mbr-section-subtitle { color: #ffffff; } .cid-utcSdwWA8r { padding-top: 2rem; padding-bottom: 2rem; background-color: #ffffff; } .cid-utcSdwWA8r .mbr-fallback-image.disabled { display: none; } .cid-utcSdwWA8r .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utcNkvX7YF { padding-top: 6rem; padding-bottom: 6rem; background: #63c132; } .cid-utcNkvX7YF .mbr-fallback-image.disabled { display: none; } .cid-utcNkvX7YF .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } @media (max-width: 767px) { .cid-utcNkvX7YF .row { text-align: center; } .cid-utcNkvX7YF .row .map-wrapper { margin-top: 1rem; } } .cid-utcNkvX7YF .google-map { height: 100%; position: relative; } .cid-utcNkvX7YF .google-map iframe { height: 100%; width: 100%; } @media (max-width: 767px) { .cid-utcNkvX7YF .google-map iframe { min-height: 350px; } } .cid-utcNkvX7YF .google-map [data-state-details] { color: #6b6763; height: 1.5em; margin-top: -0.75em; padding-left: 1.25rem; padding-right: 1.25rem; position: absolute; text-align: center; top: 50%; width: 100%; } .cid-utcNkvX7YF .google-map[data-state] { background: #e9e5dc; } .cid-utcNkvX7YF .google-map[data-state="loading"] [data-state-details] { display: none; } .cid-utcNkvX7YF .card-wrapper { background: #383838; } @media (max-width: 767px) { .cid-utcNkvX7YF .card-wrapper { padding: 2rem 1.5rem; } } @media (min-width: 768px) { .cid-utcNkvX7YF .card-wrapper { padding: 2.25rem; } } .cid-utcNkvX7YF .text-wrapper { padding: 0 1rem; } @media (max-width: 767px) { .cid-utcNkvX7YF .cardTitle, .cid-utcNkvX7YF .item-wrap { text-align: center; } } .cid-utcNkvX7YF ul { list-style-type: none; padding: 0; margin: 0; } .cid-utcNkvX7YF .cardTitle { color: #ffffff; } .cid-utcNkvX7YF .list, .cid-utcNkvX7YF .item-wrap { color: #ffffff; } .cid-utcNkvX7YF .mbr-section-title { color: #ffffff; } .cid-utcNkwf4gC { padding-top: 60px; padding-bottom: 60px; background-color: #ffffff; } .cid-utcNkwf4gC .navbar-logo { width: 100px; margin-bottom: 10px; margin: auto; } .cid-utcNkwf4gC .navbar-brand { margin: auto; width: 100%; text-align: center; } .cid-utcNkwf4gC .socicon { font-size: 1.3rem; background: #63c132; border-radius: 100%; width: 40px; height: 40px; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .cid-utcNkwf4gC .social-list { padding-left: 0; margin-bottom: 0; list-style: none; } .cid-utcNkwf4gC .social-list .soc-item { display: inline-block; margin: 0 0.3rem; } .cid-utcNkwf4gC .text2 { color: #000000; text-align: left; } .cid-utcNkwf4gC .group-title { text-align: left; color: #000000; padding-bottom: 0.2rem; } .cid-utcNkwf4gC .logo-title { text-align: center; } .cid-utcNkwf4gC .logo-sub-title { text-align: center; } .cid-utcNkwf4gC .links { text-align: center; color: #656565; } .cid-utcNkwf4gC .logo-sub-title i { color: #9e9e9e; } .cid-utcNkwf4gC .mbr-fallback-image.disabled { display: none; } .cid-utcNkwf4gC .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utcNkwf4gC .links, .cid-utcNkwf4gC .social-list { color: #383838; } .cid-utcTdhymSU { z-index: 1000; width: 100%; position: relative; } .cid-utcTdhymSU .dropdown-item:before { font-family: Moririse2 !important; content: "\e966"; display: inline-block; width: 0; position: absolute; left: 1rem; top: 0.5rem; margin-right: 0.5rem; line-height: 1; font-size: inherit; vertical-align: middle; text-align: center; overflow: hidden; transform: scale(0, 1); transition: all 0.25s ease-in-out; } @media (max-width: 767px) { .cid-utcTdhymSU .navbar-toggler { transform: scale(0.8); } } .cid-utcTdhymSU .navbar-brand { flex-shrink: 0; align-items: center; margin-right: 0; padding: 10px 0; transition: all 0.3s; word-break: break-word; z-index: 1; } .cid-utcTdhymSU .navbar-brand img { max-width: 100%; max-height: 100%; border-radius: 0px !important; } .cid-utcTdhymSU .navbar-brand .navbar-caption { line-height: inherit !important; } .cid-utcTdhymSU .navbar-brand .navbar-logo a { outline: none; } .cid-utcTdhymSU .navbar-nav { margin: auto; margin-left: 0; margin-left: auto; margin-right: 0; } .cid-utcTdhymSU .navbar-nav .nav-item { padding: 0 !important; transition: .3s all !important; } .cid-utcTdhymSU .navbar-nav .nav-item .nav-link { padding: 16px !important; margin: 0 !important; border-radius: 1rem !important; transition: .3s all !important; } .cid-utcTdhymSU .navbar-nav .nav-item .nav-link:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-utcTdhymSU .navbar-nav .open .nav-link::after { transform: rotate(180deg); } @media (min-width: 992px) { .cid-utcTdhymSU .navbar-nav .open .nav-link::before { content: ""; width: 100%; height: 20px; top: 100%; background: transparent; position: absolute; } } .cid-utcTdhymSU .navbar-nav .dropdown-item { padding: 12px !important; border-radius: 0.5rem !important; margin: 0 8px !important; transition: .3s all !important; } .cid-utcTdhymSU .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } @media (min-width: 992px) { .cid-utcTdhymSU .navbar-nav { padding-left: 1.5rem; } } .cid-utcTdhymSU .nav-link { width: fit-content; position: relative; } .cid-utcTdhymSU .navbar-logo { padding-left: 2rem; margin: 0 !important; } @media (max-width: 767px) { .cid-utcTdhymSU .navbar-logo { padding-left: 1rem; } } .cid-utcTdhymSU .navbar-caption { padding-left: 1rem; padding-right: .5rem; } @media (max-width: 767px) { .cid-utcTdhymSU .nav-dropdown { padding-bottom: 0.5rem; } } .cid-utcTdhymSU .nav-dropdown .link.dropdown-toggle::after { margin-left: 0.5rem; margin-top: 0.2rem; transition: .3s all; } .cid-utcTdhymSU .container { display: flex; height: 90px; padding: 0.5rem 0.6rem; flex-wrap: nowrap; background: rgba(255, 255, 255, 0.9) !important; left: 0; right: 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 100vw; margin-top: 1rem; background-color: #ffffff; box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08); } @media (max-width: 992px) { .cid-utcTdhymSU .container { padding-right: 2rem; } } @media (max-width: 767px) { .cid-utcTdhymSU .container { width: 95%; height: 56px !important; padding-right: 1rem; margin-top: 0rem; } } .cid-utcTdhymSU .iconfont-wrapper { color: #000000 !important; font-size: 1.5rem; padding-right: 0.5rem; } .cid-utcTdhymSU .dropdown-menu { flex-wrap: wrap; flex-direction: column; max-width: 100%; padding: 12px 4px !important; border-radius: 1.5rem; transition: .3s all !important; min-width: auto; background: #ffffff; background: rgba(255, 255, 255, 0.9) !important; } .cid-utcTdhymSU .nav-item:focus, .cid-utcTdhymSU .nav-link:focus { outline: none; } .cid-utcTdhymSU .dropdown .dropdown-menu .dropdown-item { width: auto; transition: all 0.25s ease-in-out; } .cid-utcTdhymSU .dropdown .dropdown-menu .dropdown-item::after { right: 0.5rem; } .cid-utcTdhymSU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont { margin-right: 0.5rem; vertical-align: sub; } .cid-utcTdhymSU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before { display: inline-block; transform: scale(1, 1); transition: all 0.25s ease-in-out; } .cid-utcTdhymSU .collapsed .dropdown-menu .dropdown-item:before { display: none; } .cid-utcTdhymSU .collapsed .dropdown .dropdown-menu .dropdown-item { padding: 0.235em 1.5em 0.235em 1.5em !important; transition: none; margin: 0 !important; } .cid-utcTdhymSU .navbar { min-height: 90px; transition: all 0.3s; border-bottom: 1px solid transparent; background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .cid-utcTdhymSU .navbar.opened { transition: all 0.3s; } .cid-utcTdhymSU .navbar .dropdown-item { padding: 0.5rem 1.8rem; } .cid-utcTdhymSU .navbar .navbar-logo img { width: auto; } .cid-utcTdhymSU .navbar .navbar-collapse { z-index: 1; justify-content: flex-end; } .cid-utcTdhymSU .navbar.collapsed { justify-content: center; } .cid-utcTdhymSU .navbar.collapsed .nav-item .nav-link::before { display: none; } .cid-utcTdhymSU .navbar.collapsed.opened .dropdown-menu { top: 0; } @media (min-width: 992px) { .cid-utcTdhymSU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse { max-height: calc(98.5vh - 2.9rem); } } .cid-utcTdhymSU .navbar.collapsed .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-utcTdhymSU .navbar.collapsed .dropdown-menu .dropdown-item:after { right: auto; } .cid-utcTdhymSU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 41%; } .cid-utcTdhymSU .navbar.collapsed ul.navbar-nav li { margin: auto; } .cid-utcTdhymSU .navbar.collapsed .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem; text-align: center; } .cid-utcTdhymSU .navbar.collapsed .icons-menu { padding-left: 0; padding-right: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } @media (max-width: 767px) { .cid-utcTdhymSU .navbar { min-height: 72px; } .cid-utcTdhymSU .navbar .navbar-logo img { height: 2rem !important; } } @media (max-width: 991px) { .cid-utcTdhymSU .navbar .nav-item .nav-link::before { display: none; } .cid-utcTdhymSU .navbar.opened .dropdown-menu { top: 0; } .cid-utcTdhymSU .navbar .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-utcTdhymSU .navbar .dropdown-menu .dropdown-item:after { right: auto; } .cid-utcTdhymSU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 40%; } .cid-utcTdhymSU .navbar .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem !important; text-align: center; } .cid-utcTdhymSU .navbar .navbar-brand { flex-shrink: initial; flex-basis: auto; word-break: break-word; padding-right: 10px; } .cid-utcTdhymSU .navbar .navbar-toggler { flex-basis: auto; } .cid-utcTdhymSU .navbar .icons-menu { padding-left: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } } .cid-utcTdhymSU .navbar.navbar-short .navbar-logo img { height: 2rem; } .cid-utcTdhymSU .dropdown-item.active, .cid-utcTdhymSU .dropdown-item:active { background-color: transparent; } .cid-utcTdhymSU .navbar-expand-lg .navbar-nav .nav-link { padding: 0; } .cid-utcTdhymSU .nav-dropdown .link.dropdown-toggle { margin-right: 1.667em; } .cid-utcTdhymSU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] { margin-right: 0; padding: 0.667em 1.667em; } .cid-utcTdhymSU .navbar.navbar-expand-lg .dropdown .dropdown-menu { background: #ffffff; } .cid-utcTdhymSU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu { margin: 0; left: 105%; transform: none; top: -12px; } .cid-utcTdhymSU .navbar .dropdown.open > .dropdown-menu { display: flex; } .cid-utcTdhymSU ul.navbar-nav { flex-wrap: wrap; } .cid-utcTdhymSU .navbar-buttons { text-align: center; min-width: 140px; } @media (max-width: 992px) { .cid-utcTdhymSU .navbar-buttons { text-align: left; } } .cid-utcTdhymSU button.navbar-toggler { outline: none; width: 31px; height: 20px; cursor: pointer; transition: all 0.2s; position: relative; align-self: center; } .cid-utcTdhymSU button.navbar-toggler .hamburger span { position: absolute; right: 0; width: 30px; height: 2px; border-right: 5px; background-color: #383838; } .cid-utcTdhymSU button.navbar-toggler .hamburger span:nth-child(1) { top: 0; transition: all 0.2s; } .cid-utcTdhymSU button.navbar-toggler .hamburger span:nth-child(2) { top: 8px; transition: all 0.15s; } .cid-utcTdhymSU button.navbar-toggler .hamburger span:nth-child(3) { top: 8px; transition: all 0.15s; } .cid-utcTdhymSU button.navbar-toggler .hamburger span:nth-child(4) { top: 16px; transition: all 0.2s; } .cid-utcTdhymSU nav.opened .hamburger span:nth-child(1) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-utcTdhymSU nav.opened .hamburger span:nth-child(2) { transform: rotate(45deg); transition: all 0.25s; } .cid-utcTdhymSU nav.opened .hamburger span:nth-child(3) { transform: rotate(-45deg); transition: all 0.25s; } .cid-utcTdhymSU nav.opened .hamburger span:nth-child(4) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-utcTdhymSU .navbar-dropdown { padding: 0 1rem; } .cid-utcTdhymSU a.nav-link { display: flex; align-items: center; justify-content: center; } .cid-utcTdhymSU .icons-menu { flex-wrap: nowrap; display: flex; justify-content: center; padding-left: 1rem; padding-right: 1rem; padding-top: 0.3rem; text-align: center; } @media (max-width: 992px) { .cid-utcTdhymSU .icons-menu { justify-content: flex-start; margin-bottom: .5rem; } } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .cid-utcTdhymSU .navbar { height: 70px; } .cid-utcTdhymSU .navbar.opened { height: auto; } .cid-utcTdhymSU .nav-item .nav-link:hover::before { width: 175%; max-width: calc(100% + 2rem); left: -1rem; } } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu { display: none; width: max-content; max-width: 500px !important; transform: translateX(-50%); top: calc(100% + 20px); left: 50%; } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown-item { line-height: 1 !important; } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(-90deg); } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(0deg); } .cid-utcTdhymSU .mbr-section-btn { margin: -0.6rem -0.6rem; } .cid-utcTdhymSU .navbar-toggler { margin-left: 12px; margin-right: 8px; order: 1000; } @media (max-width: 991px) { .cid-utcTdhymSU .navbar-brand { margin-right: auto; } .cid-utcTdhymSU .navbar-collapse { z-index: -1 !important; position: absolute; top: 110%; left: 0; width: 100%; padding: 1rem; border-radius: 1.5rem; background: #ffffff; opacity: 1; border-color: rgba(255, 255, 255, 0.9) !important; background: rgba(255, 255, 255, 0.9) !important; backdrop-filter: blur(8px); } .cid-utcTdhymSU .navbar-nav .nav-item .nav-link::after { margin-left: 10px; } .cid-utcTdhymSU .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu { max-width: 100% !important; transform: translateX(0); top: 10px; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown-item { padding: 8px !important; line-height: 1 !important; margin-bottom: 4px !important; } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(0deg); } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(180deg); } .cid-utcTdhymSU .navbar .dropdown > .dropdown-menu .dropdown-submenu { position: static; width: 100%; max-width: 100% !important; transform: translateX(0) !important; top: 0; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-utcTdhymSU .navbar .dropdown.open > .dropdown-menu { display: flex !important; flex-direction: column; align-items: flex-start; } } @media (max-width: 575px) { .cid-utcTdhymSU .navbar-collapse { padding: 1rem; } } .cid-utcTdhR7SO { display: flex; background-image: url("../../../assets/images/m0uflaui98-3546x2367.webp"); } .cid-utcTdhR7SO .mbr-overlay { background-color: #63c132; opacity: 0.7; } .cid-utcTdhR7SO .content-wrap { padding: 5rem 1rem; max-width: 800px; } @media (min-width: 768px) { .cid-utcTdhR7SO { align-items: center; } .cid-utcTdhR7SO .row { justify-content: center; } } @media (max-width: 991px) and (min-width: 768px) { .cid-utcTdhR7SO .content-wrap { min-width: 50%; } } @media (max-width: 767px) { .cid-utcTdhR7SO { -webkit-align-items: center; align-items: center; } .cid-utcTdhR7SO .mbr-row { -webkit-justify-content: center; justify-content: center; } .cid-utcTdhR7SO .content-wrap { width: 100%; } } .cid-utcTdhR7SO .mbr-section-title { text-align: center; } .cid-utcTdhR7SO .mbr-text, .cid-utcTdhR7SO .mbr-section-btn { text-align: center; } .cid-utcTdi6jpJ.popup-builder { background-color: #ffffff; } .cid-utcTdi6jpJ.popup-builder .modal { position: relative; display: block; z-index: 1; } .cid-utcTdi6jpJ.popup-builder .modal-dialog { margin-top: 60px; margin-bottom: 60px; } .cid-utcTdi6jpJ .modal-content, .cid-utcTdi6jpJ .modal-dialog { height: auto; } .cid-utcTdi6jpJ .form-wrapper .input-group-btn { margin-right: auto; margin-left: auto; } .cid-utcTdi6jpJ .form-wrapper .input-group-btn .btn { margin: 0 !important; } @media (min-width: 769px) { .cid-utcTdi6jpJ .form-wrapper .mbr-form .form-group, .cid-utcTdi6jpJ .form-wrapper .mbr-form .input-group-btn { padding: 0 .5rem; } } .cid-utcTdi6jpJ .card-img { width: 100%; margin: auto; border-radius: 0; } .cid-utcTdi6jpJ .mbr-figure img { display: block; width: 100%; -ms-flex-item-align: center; -ms-grid-row-align: center; -webkit-align-self: center; align-self: center; } .cid-utcTdi6jpJ .mbr-text { text-align: center; } .cid-utcTdi6jpJ .pt-0 { padding-top: 0 !important; } .cid-utcTdi6jpJ .pb-0 { padding-bottom: 0 !important; } .cid-utcTdi6jpJ .form-content { -ms-flex-pack: center; justify-content: center; text-align: center; } .cid-utcTdi6jpJ .mbr-overlay { bottom: 0; left: 0; position: absolute; right: 0; top: 0; z-index: 0; pointer-events: none; } .cid-utcTdi6jpJ .modal-open { overflow: hidden; } .cid-utcTdi6jpJ .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .cid-utcTdi6jpJ .modal { position: fixed; top: 0; left: 0; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0; } .cid-utcTdi6jpJ .modal-dialog { position: relative; width: auto; margin: .5rem; pointer-events: none; } .cid-utcTdi6jpJ .modal.fade .modal-dialog { transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; -webkit-transform: translate(0, -50px); transform: translate(0, -50px); } .cid-utcTdi6jpJ .modal.show .modal-dialog { -webkit-transform: none; transform: none; } .cid-utcTdi6jpJ .modal-dialog-centered { display: flex; -ms-flex-align: center; align-items: center; min-height: calc(100% - (.5rem * 2)); } .cid-utcTdi6jpJ .modal-dialog-centered::before { display: block; height: calc(100vh - (.5rem * 2)); content: ""; } .cid-utcTdi6jpJ .modal-content { background: #ffffff; position: relative; display: flex; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-clip: padding-box; border: none; outline: 0; -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2); } .cid-utcTdi6jpJ .margin-center-pos { margin-top: auto; margin-bottom: auto; } .cid-utcTdi6jpJ .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #000; } .cid-utcTdi6jpJ .modal-backdrop.fade { opacity: 0; } .cid-utcTdi6jpJ .modal-backdrop.show { opacity: .5; } .cid-utcTdi6jpJ .modal-header { display: flex; -ms-flex-align: start; align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; border-bottom: none; } @media (min-width: 992px) { .cid-utcTdi6jpJ .modal-header { padding: 2rem 2rem 1rem; } } @media (max-width: 991px) { .cid-utcTdi6jpJ .modal-header { padding: 1rem; } } .cid-utcTdi6jpJ .modal-header .close { position: absolute; top: 1rem; right: 1rem; margin: -1rem -1rem -1rem auto; padding: 1rem; opacity: .75; } .cid-utcTdi6jpJ .modal-header .close svg { fill: #164fd3; } .cid-utcTdi6jpJ .modal-header .close:hover { opacity: 1; } .cid-utcTdi6jpJ .modal-header .close:focus { outline: none; } .cid-utcTdi6jpJ .modal-title { line-height: 1.5; width: 100%; margin: 0; text-align: center; } .cid-utcTdi6jpJ .modal-body { position: relative; -ms-flex: 1 1 auto; flex: 1 1 auto; } @media (min-width: 992px) { .cid-utcTdi6jpJ .modal-body { padding: 1rem 2rem 2rem; } } @media (max-width: 991px) { .cid-utcTdi6jpJ .modal-body { padding: 1rem; } } .cid-utcTdi6jpJ .modal-footer { display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: center; justify-content: center; border-top: none; text-align: center; } @media (min-width: 992px) { .cid-utcTdi6jpJ .modal-footer { padding: 0rem 2rem 2rem; } } @media (max-width: 991px) { .cid-utcTdi6jpJ .modal-footer { padding: 1rem; } } .cid-utcTdi6jpJ .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .cid-utcTdi6jpJ .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .cid-utcTdi6jpJ .modal-dialog-centered { min-height: calc(100% - (1.75rem * 2)); } .cid-utcTdi6jpJ .modal-dialog-centered::before { height: calc(100vh - (1.75rem * 2)); } .cid-utcTdi6jpJ .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .cid-utcTdi6jpJ .modal-lg, .cid-utcTdi6jpJ .modal-xl { max-width: 800px; } } @media (min-width: 1200px) { .cid-utcTdi6jpJ .modal-xl { max-width: 1140px; } } .cid-utcTdi6jpJ .row { display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .cid-utcTdi6jpJ .col-md-4 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .cid-utcTdi6jpJ .form-group { margin-bottom: 1rem; } .cid-utcTdi6jpJ .form-control { display: block; width: 100%; font-size: 1rem; font-weight: 400; line-height: 1.5; } .cid-utcTdi6jpJ .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .cid-utcTdi6jpJ .col-md-auto { position: relative; padding-right: 15px; padding-left: 15px; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .cid-utcTdi6jpJ .mbr-section-btn { margin: 0; } .cid-utcTdi6jpJ .mbr-section-btn .btn { margin: 0; } .cid-utcWbQiWEu { padding-top: 3rem; padding-bottom: 3rem; background-color: #000000; } .cid-utcWbQiWEu .mbr-fallback-image.disabled { display: none; } .cid-utcWbQiWEu .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utcWbQiWEu .item-mb { margin-bottom: 2rem; } @media (max-width: 767px) { .cid-utcWbQiWEu .item-mb { margin-bottom: 1rem; } } .cid-utcWbQiWEu .item-wrapper { background: #ffffff; padding: 2.25rem; height: 100%; display: flex; flex-direction: column; } @media (max-width: 767px) { .cid-utcWbQiWEu .item-wrapper { padding: 2rem 1.5rem; margin-bottom: 1rem; } } .cid-utcWbQiWEu .mbr-iconfont { display: inline-flex; font-size: 3rem; color: #ffffff; margin-bottom: 1rem; width: 80px; justify-content: center; align-items: center; background: #63c132; height: 80px; border-radius: 50%; } .cid-utcWbQiWEu .mbr-section-title { color: #63c132; } .cid-utcWbQiWEu .mbr-section-subtitle { color: #ffffff; } .cid-utcWbQiWEu .card-box { display: flex; flex-direction: column; height: 100%; } .cid-utcWbQiWEu .card-box .item-footer { margin-top: auto; } .cid-utcWbQiWEu .content-head { max-width: 800px; } .cid-utcWbQiWEu .card-text { text-align: center; } .cid-utcWbQiWEu .card-title, .cid-utcWbQiWEu .iconfont-wrapper { text-align: center; } .cid-utcTdiRoSX { padding-top: 6rem; padding-bottom: 6rem; background-color: #0047a3; } .cid-utcTdiRoSX .mbr-overlay { background-color: #ffffff; opacity: 0.4; } .cid-utcTdiRoSX form .mbr-section-btn { text-align: center; width: 100%; } .cid-utcTdiRoSX form .mbr-section-btn .btn { display: inline-flex; } @media (max-width: 991px) { .cid-utcTdiRoSX form .mbr-section-btn .btn { width: 100%; } } .cid-utcTdiRoSX .mbr-section-title { color: #63c132; } .cid-utcTdiRoSX .mbr-section-subtitle { color: #ffffff; } .cid-utcTdj9t1S { padding-top: 2rem; padding-bottom: 2rem; background-color: #ffffff; } .cid-utcTdj9t1S .mbr-fallback-image.disabled { display: none; } .cid-utcTdj9t1S .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utcTdjrwpw { padding-top: 6rem; padding-bottom: 6rem; background: #63c132; } .cid-utcTdjrwpw .mbr-fallback-image.disabled { display: none; } .cid-utcTdjrwpw .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } @media (max-width: 767px) { .cid-utcTdjrwpw .row { text-align: center; } .cid-utcTdjrwpw .row .map-wrapper { margin-top: 1rem; } } .cid-utcTdjrwpw .google-map { height: 100%; position: relative; } .cid-utcTdjrwpw .google-map iframe { height: 100%; width: 100%; } @media (max-width: 767px) { .cid-utcTdjrwpw .google-map iframe { min-height: 350px; } } .cid-utcTdjrwpw .google-map [data-state-details] { color: #6b6763; height: 1.5em; margin-top: -0.75em; padding-left: 1.25rem; padding-right: 1.25rem; position: absolute; text-align: center; top: 50%; width: 100%; } .cid-utcTdjrwpw .google-map[data-state] { background: #e9e5dc; } .cid-utcTdjrwpw .google-map[data-state="loading"] [data-state-details] { display: none; } .cid-utcTdjrwpw .card-wrapper { background: #383838; } @media (max-width: 767px) { .cid-utcTdjrwpw .card-wrapper { padding: 2rem 1.5rem; } } @media (min-width: 768px) { .cid-utcTdjrwpw .card-wrapper { padding: 2.25rem; } } .cid-utcTdjrwpw .text-wrapper { padding: 0 1rem; } @media (max-width: 767px) { .cid-utcTdjrwpw .cardTitle, .cid-utcTdjrwpw .item-wrap { text-align: center; } } .cid-utcTdjrwpw ul { list-style-type: none; padding: 0; margin: 0; } .cid-utcTdjrwpw .cardTitle { color: #ffffff; } .cid-utcTdjrwpw .list, .cid-utcTdjrwpw .item-wrap { color: #ffffff; } .cid-utcTdjrwpw .mbr-section-title { color: #ffffff; } .cid-utcTdjNrmI { padding-top: 60px; padding-bottom: 60px; background-color: #ffffff; } .cid-utcTdjNrmI .navbar-logo { width: 100px; margin-bottom: 10px; margin: auto; } .cid-utcTdjNrmI .navbar-brand { margin: auto; width: 100%; text-align: center; } .cid-utcTdjNrmI .socicon { font-size: 1.3rem; background: #63c132; border-radius: 100%; width: 40px; height: 40px; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .cid-utcTdjNrmI .social-list { padding-left: 0; margin-bottom: 0; list-style: none; } .cid-utcTdjNrmI .social-list .soc-item { display: inline-block; margin: 0 0.3rem; } .cid-utcTdjNrmI .text2 { color: #000000; text-align: left; } .cid-utcTdjNrmI .group-title { text-align: left; color: #000000; padding-bottom: 0.2rem; } .cid-utcTdjNrmI .logo-title { text-align: center; } .cid-utcTdjNrmI .logo-sub-title { text-align: center; } .cid-utcTdjNrmI .links { text-align: center; color: #656565; } .cid-utcTdjNrmI .logo-sub-title i { color: #9e9e9e; } .cid-utcTdjNrmI .mbr-fallback-image.disabled { display: none; } .cid-utcTdjNrmI .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utcTdjNrmI .links, .cid-utcTdjNrmI .social-list { color: #383838; } .cid-utdYVqGq67 { z-index: 1000; width: 100%; position: relative; } .cid-utdYVqGq67 .dropdown-item:before { font-family: Moririse2 !important; content: "\e966"; display: inline-block; width: 0; position: absolute; left: 1rem; top: 0.5rem; margin-right: 0.5rem; line-height: 1; font-size: inherit; vertical-align: middle; text-align: center; overflow: hidden; transform: scale(0, 1); transition: all 0.25s ease-in-out; } @media (max-width: 767px) { .cid-utdYVqGq67 .navbar-toggler { transform: scale(0.8); } } .cid-utdYVqGq67 .navbar-brand { flex-shrink: 0; align-items: center; margin-right: 0; padding: 10px 0; transition: all 0.3s; word-break: break-word; z-index: 1; } .cid-utdYVqGq67 .navbar-brand img { max-width: 100%; max-height: 100%; border-radius: 0px !important; } .cid-utdYVqGq67 .navbar-brand .navbar-caption { line-height: inherit !important; } .cid-utdYVqGq67 .navbar-brand .navbar-logo a { outline: none; } .cid-utdYVqGq67 .navbar-nav { margin: auto; margin-left: 0; margin-left: auto; margin-right: 0; } .cid-utdYVqGq67 .navbar-nav .nav-item { padding: 0 !important; transition: .3s all !important; } .cid-utdYVqGq67 .navbar-nav .nav-item .nav-link { padding: 16px !important; margin: 0 !important; border-radius: 1rem !important; transition: .3s all !important; } .cid-utdYVqGq67 .navbar-nav .nav-item .nav-link:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-utdYVqGq67 .navbar-nav .open .nav-link::after { transform: rotate(180deg); } @media (min-width: 992px) { .cid-utdYVqGq67 .navbar-nav .open .nav-link::before { content: ""; width: 100%; height: 20px; top: 100%; background: transparent; position: absolute; } } .cid-utdYVqGq67 .navbar-nav .dropdown-item { padding: 12px !important; border-radius: 0.5rem !important; margin: 0 8px !important; transition: .3s all !important; } .cid-utdYVqGq67 .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } @media (min-width: 992px) { .cid-utdYVqGq67 .navbar-nav { padding-left: 1.5rem; } } .cid-utdYVqGq67 .nav-link { width: fit-content; position: relative; } .cid-utdYVqGq67 .navbar-logo { padding-left: 2rem; margin: 0 !important; } @media (max-width: 767px) { .cid-utdYVqGq67 .navbar-logo { padding-left: 1rem; } } .cid-utdYVqGq67 .navbar-caption { padding-left: 1rem; padding-right: .5rem; } @media (max-width: 767px) { .cid-utdYVqGq67 .nav-dropdown { padding-bottom: 0.5rem; } } .cid-utdYVqGq67 .nav-dropdown .link.dropdown-toggle::after { margin-left: 0.5rem; margin-top: 0.2rem; transition: .3s all; } .cid-utdYVqGq67 .container { display: flex; height: 90px; padding: 0.5rem 0.6rem; flex-wrap: nowrap; background: rgba(255, 255, 255, 0.9) !important; left: 0; right: 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 100vw; margin-top: 1rem; background-color: #ffffff; box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08); } @media (max-width: 992px) { .cid-utdYVqGq67 .container { padding-right: 2rem; } } @media (max-width: 767px) { .cid-utdYVqGq67 .container { width: 95%; height: 56px !important; padding-right: 1rem; margin-top: 0rem; } } .cid-utdYVqGq67 .iconfont-wrapper { color: #000000 !important; font-size: 1.5rem; padding-right: 0.5rem; } .cid-utdYVqGq67 .dropdown-menu { flex-wrap: wrap; flex-direction: column; max-width: 100%; padding: 12px 4px !important; border-radius: 1.5rem; transition: .3s all !important; min-width: auto; background: #ffffff; background: rgba(255, 255, 255, 0.9) !important; } .cid-utdYVqGq67 .nav-item:focus, .cid-utdYVqGq67 .nav-link:focus { outline: none; } .cid-utdYVqGq67 .dropdown .dropdown-menu .dropdown-item { width: auto; transition: all 0.25s ease-in-out; } .cid-utdYVqGq67 .dropdown .dropdown-menu .dropdown-item::after { right: 0.5rem; } .cid-utdYVqGq67 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont { margin-right: 0.5rem; vertical-align: sub; } .cid-utdYVqGq67 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before { display: inline-block; transform: scale(1, 1); transition: all 0.25s ease-in-out; } .cid-utdYVqGq67 .collapsed .dropdown-menu .dropdown-item:before { display: none; } .cid-utdYVqGq67 .collapsed .dropdown .dropdown-menu .dropdown-item { padding: 0.235em 1.5em 0.235em 1.5em !important; transition: none; margin: 0 !important; } .cid-utdYVqGq67 .navbar { min-height: 90px; transition: all 0.3s; border-bottom: 1px solid transparent; background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .cid-utdYVqGq67 .navbar.opened { transition: all 0.3s; } .cid-utdYVqGq67 .navbar .dropdown-item { padding: 0.5rem 1.8rem; } .cid-utdYVqGq67 .navbar .navbar-logo img { width: auto; } .cid-utdYVqGq67 .navbar .navbar-collapse { z-index: 1; justify-content: flex-end; } .cid-utdYVqGq67 .navbar.collapsed { justify-content: center; } .cid-utdYVqGq67 .navbar.collapsed .nav-item .nav-link::before { display: none; } .cid-utdYVqGq67 .navbar.collapsed.opened .dropdown-menu { top: 0; } @media (min-width: 992px) { .cid-utdYVqGq67 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse { max-height: calc(98.5vh - 2.9rem); } } .cid-utdYVqGq67 .navbar.collapsed .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-utdYVqGq67 .navbar.collapsed .dropdown-menu .dropdown-item:after { right: auto; } .cid-utdYVqGq67 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 41%; } .cid-utdYVqGq67 .navbar.collapsed ul.navbar-nav li { margin: auto; } .cid-utdYVqGq67 .navbar.collapsed .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem; text-align: center; } .cid-utdYVqGq67 .navbar.collapsed .icons-menu { padding-left: 0; padding-right: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } @media (max-width: 767px) { .cid-utdYVqGq67 .navbar { min-height: 72px; } .cid-utdYVqGq67 .navbar .navbar-logo img { height: 2rem !important; } } @media (max-width: 991px) { .cid-utdYVqGq67 .navbar .nav-item .nav-link::before { display: none; } .cid-utdYVqGq67 .navbar.opened .dropdown-menu { top: 0; } .cid-utdYVqGq67 .navbar .dropdown-menu .dropdown-submenu { left: 0 !important; } .cid-utdYVqGq67 .navbar .dropdown-menu .dropdown-item:after { right: auto; } .cid-utdYVqGq67 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after { margin-left: 0.5rem; margin-top: 0.2rem; border-top: 0.35em solid; border-right: 0.35em solid transparent; border-left: 0.35em solid transparent; border-bottom: 0; top: 40%; } .cid-utdYVqGq67 .navbar .dropdown-menu .dropdown-item { padding: 0.25rem 1.5rem !important; text-align: center; } .cid-utdYVqGq67 .navbar .navbar-brand { flex-shrink: initial; flex-basis: auto; word-break: break-word; padding-right: 10px; } .cid-utdYVqGq67 .navbar .navbar-toggler { flex-basis: auto; } .cid-utdYVqGq67 .navbar .icons-menu { padding-left: 0; padding-top: 0.5rem; padding-bottom: 0.5rem; } } .cid-utdYVqGq67 .navbar.navbar-short .navbar-logo img { height: 2rem; } .cid-utdYVqGq67 .dropdown-item.active, .cid-utdYVqGq67 .dropdown-item:active { background-color: transparent; } .cid-utdYVqGq67 .navbar-expand-lg .navbar-nav .nav-link { padding: 0; } .cid-utdYVqGq67 .nav-dropdown .link.dropdown-toggle { margin-right: 1.667em; } .cid-utdYVqGq67 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] { margin-right: 0; padding: 0.667em 1.667em; } .cid-utdYVqGq67 .navbar.navbar-expand-lg .dropdown .dropdown-menu { background: #ffffff; } .cid-utdYVqGq67 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu { margin: 0; left: 105%; transform: none; top: -12px; } .cid-utdYVqGq67 .navbar .dropdown.open > .dropdown-menu { display: flex; } .cid-utdYVqGq67 ul.navbar-nav { flex-wrap: wrap; } .cid-utdYVqGq67 .navbar-buttons { text-align: center; min-width: 140px; } @media (max-width: 992px) { .cid-utdYVqGq67 .navbar-buttons { text-align: left; } } .cid-utdYVqGq67 button.navbar-toggler { outline: none; width: 31px; height: 20px; cursor: pointer; transition: all 0.2s; position: relative; align-self: center; } .cid-utdYVqGq67 button.navbar-toggler .hamburger span { position: absolute; right: 0; width: 30px; height: 2px; border-right: 5px; background-color: #383838; } .cid-utdYVqGq67 button.navbar-toggler .hamburger span:nth-child(1) { top: 0; transition: all 0.2s; } .cid-utdYVqGq67 button.navbar-toggler .hamburger span:nth-child(2) { top: 8px; transition: all 0.15s; } .cid-utdYVqGq67 button.navbar-toggler .hamburger span:nth-child(3) { top: 8px; transition: all 0.15s; } .cid-utdYVqGq67 button.navbar-toggler .hamburger span:nth-child(4) { top: 16px; transition: all 0.2s; } .cid-utdYVqGq67 nav.opened .hamburger span:nth-child(1) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-utdYVqGq67 nav.opened .hamburger span:nth-child(2) { transform: rotate(45deg); transition: all 0.25s; } .cid-utdYVqGq67 nav.opened .hamburger span:nth-child(3) { transform: rotate(-45deg); transition: all 0.25s; } .cid-utdYVqGq67 nav.opened .hamburger span:nth-child(4) { top: 8px; width: 0; opacity: 0; right: 50%; transition: all 0.2s; } .cid-utdYVqGq67 .navbar-dropdown { padding: 0 1rem; } .cid-utdYVqGq67 a.nav-link { display: flex; align-items: center; justify-content: center; } .cid-utdYVqGq67 .icons-menu { flex-wrap: nowrap; display: flex; justify-content: center; padding-left: 1rem; padding-right: 1rem; padding-top: 0.3rem; text-align: center; } @media (max-width: 992px) { .cid-utdYVqGq67 .icons-menu { justify-content: flex-start; margin-bottom: .5rem; } } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .cid-utdYVqGq67 .navbar { height: 70px; } .cid-utdYVqGq67 .navbar.opened { height: auto; } .cid-utdYVqGq67 .nav-item .nav-link:hover::before { width: 175%; max-width: calc(100% + 2rem); left: -1rem; } } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu { display: none; width: max-content; max-width: 500px !important; transform: translateX(-50%); top: calc(100% + 20px); left: 50%; } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown-item { line-height: 1 !important; } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(-90deg); } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(0deg); } .cid-utdYVqGq67 .mbr-section-btn { margin: -0.6rem -0.6rem; } .cid-utdYVqGq67 .navbar-toggler { margin-left: 12px; margin-right: 8px; order: 1000; } @media (max-width: 991px) { .cid-utdYVqGq67 .navbar-brand { margin-right: auto; } .cid-utdYVqGq67 .navbar-collapse { z-index: -1 !important; position: absolute; top: 110%; left: 0; width: 100%; padding: 1rem; border-radius: 1.5rem; background: #ffffff; opacity: 1; border-color: rgba(255, 255, 255, 0.9) !important; background: rgba(255, 255, 255, 0.9) !important; backdrop-filter: blur(8px); } .cid-utdYVqGq67 .navbar-nav .nav-item .nav-link::after { margin-left: 10px; } .cid-utdYVqGq67 .navbar-nav .dropdown-item:hover { background-color: rgba(27, 31, 10, 0.06); } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu { max-width: 100% !important; transform: translateX(0); top: 10px; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown-item { padding: 8px !important; line-height: 1 !important; margin-bottom: 4px !important; } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item { align-items: center; display: flex; height: max-content !important; min-height: max-content !important; } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after { display: inline-block; position: static; margin-left: 0.5rem; margin-top: 0; margin-right: 0; margin-bottom: 0; transition: .3s all; transform: rotate(0deg); } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after { transform: rotate(180deg); } .cid-utdYVqGq67 .navbar .dropdown > .dropdown-menu .dropdown-submenu { position: static; width: 100%; max-width: 100% !important; transform: translateX(0) !important; top: 0; left: 0; padding: 8px !important; border-radius: 1rem; background-color: rgba(27, 31, 10, 0.04) !important; } .cid-utdYVqGq67 .navbar .dropdown.open > .dropdown-menu { display: flex !important; flex-direction: column; align-items: flex-start; } } @media (max-width: 575px) { .cid-utdYVqGq67 .navbar-collapse { padding: 1rem; } } .cid-utdYVr3l74 { display: flex; background-image: url("../../../assets/images/m0uflaui98-3546x2367.webp"); } .cid-utdYVr3l74 .mbr-overlay { background-color: #63c132; opacity: 0.7; } .cid-utdYVr3l74 .content-wrap { padding: 5rem 1rem; max-width: 800px; } @media (min-width: 768px) { .cid-utdYVr3l74 { align-items: center; } .cid-utdYVr3l74 .row { justify-content: center; } } @media (max-width: 991px) and (min-width: 768px) { .cid-utdYVr3l74 .content-wrap { min-width: 50%; } } @media (max-width: 767px) { .cid-utdYVr3l74 { -webkit-align-items: center; align-items: center; } .cid-utdYVr3l74 .mbr-row { -webkit-justify-content: center; justify-content: center; } .cid-utdYVr3l74 .content-wrap { width: 100%; } } .cid-utdYVr3l74 .mbr-section-title { text-align: center; } .cid-utdYVr3l74 .mbr-text, .cid-utdYVr3l74 .mbr-section-btn { text-align: center; } .cid-ute52bS5Kx { padding-top: 2rem; padding-bottom: 1rem; background-color: #ffffff; } .cid-ute52bS5Kx .mbr-fallback-image.disabled { display: none; } .cid-ute52bS5Kx .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-ute52bS5Kx .mbr-section-title { color: #164fd3; } .cid-ute52PnZjz { padding-top: 2rem; padding-bottom: 2rem; background-color: #000000; } .cid-ute52PnZjz .mbr-fallback-image.disabled { display: none; } .cid-ute52PnZjz .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-ute52PnZjz .card-wrapper { background: #63c132; border-radius: 4px; } @media (max-width: 767px) { .cid-ute52PnZjz .card-wrapper { padding: 1.5rem; } } @media (min-width: 768px) and (max-width: 991px) { .cid-ute52PnZjz .card-wrapper { padding: 2.25rem; } } @media (min-width: 992px) { .cid-ute52PnZjz .card-wrapper { padding: 4rem; } } .cid-ute52PnZjz .mbr-text, .cid-ute52PnZjz .mbr-section-btn { color: #ffffff; } .cid-ute52PnZjz .card-title, .cid-ute52PnZjz .card-box { text-align: center; color: #164fd3; } .cid-ute5LwxBHJ { padding-top: 6rem; padding-bottom: 6rem; background-color: #164fd3; } .cid-ute5LwxBHJ .item-wrapper img { width: 80px; height: 80px; object-fit: cover; border-radius: 50% !important; } .cid-ute5LwxBHJ .mbr-fallback-image.disabled { display: none; } .cid-ute5LwxBHJ .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-ute5LwxBHJ .item-wrapper { background: #ffffff; margin-bottom: 2rem; padding: 2.25rem; } @media (max-width: 767px) { .cid-ute5LwxBHJ .item-wrapper { padding: 2rem 1.5rem; margin-bottom: 1rem; } } .cid-ute5LwxBHJ .card-title, .cid-ute5LwxBHJ .iconfont-wrapper { color: #000000; text-align: center; } .cid-ute5LwxBHJ .content-head { max-width: 800px; } .cid-ute5LwxBHJ .mbr-section-title { color: #9fe870; } .cid-ute5LwxBHJ .mbr-section-subtitle { color: #ffffff; } .cid-ute5LwxBHJ .card-text { color: #000000; text-align: center; } .cid-utdYVs5ha0 { padding-top: 6rem; padding-bottom: 6rem; background-color: #000000; } .cid-utdYVs5ha0 .mbr-overlay { background-color: #ffffff; opacity: 0.4; } .cid-utdYVs5ha0 form .mbr-section-btn { text-align: center; width: 100%; } .cid-utdYVs5ha0 form .mbr-section-btn .btn { display: inline-flex; } @media (max-width: 991px) { .cid-utdYVs5ha0 form .mbr-section-btn .btn { width: 100%; } } .cid-utdYVs5ha0 .mbr-section-title { color: #63c132; } .cid-utdYVs5ha0 .mbr-section-subtitle { color: #ffffff; } .cid-utdYVsq0gr { padding-top: 2rem; padding-bottom: 2rem; background-color: #ffffff; } .cid-utdYVsq0gr .mbr-fallback-image.disabled { display: none; } .cid-utdYVsq0gr .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utdYVsJVnh { padding-top: 6rem; padding-bottom: 6rem; background: #63c132; } .cid-utdYVsJVnh .mbr-fallback-image.disabled { display: none; } .cid-utdYVsJVnh .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } @media (max-width: 767px) { .cid-utdYVsJVnh .row { text-align: center; } .cid-utdYVsJVnh .row .map-wrapper { margin-top: 1rem; } } .cid-utdYVsJVnh .google-map { height: 100%; position: relative; } .cid-utdYVsJVnh .google-map iframe { height: 100%; width: 100%; } @media (max-width: 767px) { .cid-utdYVsJVnh .google-map iframe { min-height: 350px; } } .cid-utdYVsJVnh .google-map [data-state-details] { color: #6b6763; height: 1.5em; margin-top: -0.75em; padding-left: 1.25rem; padding-right: 1.25rem; position: absolute; text-align: center; top: 50%; width: 100%; } .cid-utdYVsJVnh .google-map[data-state] { background: #e9e5dc; } .cid-utdYVsJVnh .google-map[data-state="loading"] [data-state-details] { display: none; } .cid-utdYVsJVnh .card-wrapper { background: #383838; } @media (max-width: 767px) { .cid-utdYVsJVnh .card-wrapper { padding: 2rem 1.5rem; } } @media (min-width: 768px) { .cid-utdYVsJVnh .card-wrapper { padding: 2.25rem; } } .cid-utdYVsJVnh .text-wrapper { padding: 0 1rem; } @media (max-width: 767px) { .cid-utdYVsJVnh .cardTitle, .cid-utdYVsJVnh .item-wrap { text-align: center; } } .cid-utdYVsJVnh ul { list-style-type: none; padding: 0; margin: 0; } .cid-utdYVsJVnh .cardTitle { color: #ffffff; } .cid-utdYVsJVnh .list, .cid-utdYVsJVnh .item-wrap { color: #ffffff; } .cid-utdYVsJVnh .mbr-section-title { color: #ffffff; } .cid-utdYVt5plU { padding-top: 60px; padding-bottom: 60px; background-color: #ffffff; } .cid-utdYVt5plU .navbar-logo { width: 100px; margin-bottom: 10px; margin: auto; } .cid-utdYVt5plU .navbar-brand { margin: auto; width: 100%; text-align: center; } .cid-utdYVt5plU .socicon { font-size: 1.3rem; background: #63c132; border-radius: 100%; width: 40px; height: 40px; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .cid-utdYVt5plU .social-list { padding-left: 0; margin-bottom: 0; list-style: none; } .cid-utdYVt5plU .social-list .soc-item { display: inline-block; margin: 0 0.3rem; } .cid-utdYVt5plU .text2 { color: #000000; text-align: left; } .cid-utdYVt5plU .group-title { text-align: left; color: #000000; padding-bottom: 0.2rem; } .cid-utdYVt5plU .logo-title { text-align: center; } .cid-utdYVt5plU .logo-sub-title { text-align: center; } .cid-utdYVt5plU .links { text-align: center; color: #656565; } .cid-utdYVt5plU .logo-sub-title i { color: #9e9e9e; } .cid-utdYVt5plU .mbr-fallback-image.disabled { display: none; } .cid-utdYVt5plU .mbr-fallback-image { display: block; background-size: cover; background-position: center center; width: 100%; height: 100%; position: absolute; top: 0; } .cid-utdYVt5plU .links, .cid-utdYVt5plU .social-list { color: #383838; } .jarallax { position: relative; z-index: 0; } .jarallax > .jarallax-img { position: absolute; object-fit: cover; font-family: 'object-fit: cover;'; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } html.is-builder .modal-backdrop.show { display: none !important; } @font-face { font-family: 'Socicon'; src: url('../fonts/socicon.eot'); src: url('../fonts/socicon.eot?#iefix') format('embedded-opentype'), url('../fonts/socicon.woff2') format('woff2'), url('../fonts/socicon.ttf') format('truetype'), url('../fonts/socicon.woff') format('woff'), url('../fonts/socicon.svg#socicon') format('svg'); font-weight: normal; font-style: normal; font-display: swap; } [data-icon]:before { font-family: "socicon" !important; content: attr(data-icon); font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [class^="socicon-"], [class*=" socicon-"] { font-family: 'Socicon' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .socicon-eitaa:before { content: "\e97c"; } .socicon-soroush:before { content: "\e97d"; } .socicon-bale:before { content: "\e97e"; } .socicon-zazzle:before { content: "\e97b"; } .socicon-society6:before { content: "\e97a"; } .socicon-redbubble:before { content: "\e979"; } .socicon-avvo:before { content: "\e978"; } .socicon-stitcher:before { content: "\e977"; } .socicon-googlehangouts:before { content: "\e974"; } .socicon-dlive:before { content: "\e975"; } .socicon-vsco:before { content: "\e976"; } .socicon-flipboard:before { content: "\e973"; } .socicon-ubuntu:before { content: "\e958"; } .socicon-artstation:before { content: "\e959"; } .socicon-invision:before { content: "\e95a"; } .socicon-torial:before { content: "\e95b"; } .socicon-collectorz:before { content: "\e95c"; } .socicon-seenthis:before { content: "\e95d"; } .socicon-googleplaymusic:before { content: "\e95e"; } .socicon-debian:before { content: "\e95f"; } .socicon-filmfreeway:before { content: "\e960"; } .socicon-gnome:before { content: "\e961"; } .socicon-itchio:before { content: "\e962"; } .socicon-jamendo:before { content: "\e963"; } .socicon-mix:before { content: "\e964"; } .socicon-sharepoint:before { content: "\e965"; } .socicon-tinder:before { content: "\e966"; } .socicon-windguru:before { content: "\e967"; } .socicon-cdbaby:before { content: "\e968"; } .socicon-elementaryos:before { content: "\e969"; } .socicon-stage32:before { content: "\e96a"; } .socicon-tiktok:before { content: "\e96b"; } .socicon-gitter:before { content: "\e96c"; } .socicon-letterboxd:before { content: "\e96d"; } .socicon-threema:before { content: "\e96e"; } .socicon-splice:before { content: "\e96f"; } .socicon-metapop:before { content: "\e970"; } .socicon-naver:before { content: "\e971"; } .socicon-remote:before { content: "\e972"; } .socicon-internet:before { content: "\e957"; } .socicon-moddb:before { content: "\e94b"; } .socicon-indiedb:before { content: "\e94c"; } .socicon-traxsource:before { content: "\e94d"; } .socicon-gamefor:before { content: "\e94e"; } .socicon-pixiv:before { content: "\e94f"; } .socicon-myanimelist:before { content: "\e950"; } .socicon-blackberry:before { content: "\e951"; } .socicon-wickr:before { content: "\e952"; } .socicon-spip:before { content: "\e953"; } .socicon-napster:before { content: "\e954"; } .socicon-beatport:before { content: "\e955"; } .socicon-hackerone:before { content: "\e956"; } .socicon-hackernews:before { content: "\e946"; } .socicon-smashwords:before { content: "\e947"; } .socicon-kobo:before { content: "\e948"; } .socicon-bookbub:before { content: "\e949"; } .socicon-mailru:before { content: "\e94a"; } .socicon-gitlab:before { content: "\e945"; } .socicon-instructables:before { content: "\e944"; } .socicon-portfolio:before { content: "\e943"; } .socicon-codered:before { content: "\e940"; } .socicon-origin:before { content: "\e941"; } .socicon-nextdoor:before { content: "\e942"; } .socicon-udemy:before { content: "\e93f"; } .socicon-livemaster:before { content: "\e93e"; } .socicon-crunchbase:before { content: "\e93b"; } .socicon-homefy:before { content: "\e93c"; } .socicon-calendly:before { content: "\e93d"; } .socicon-realtor:before { content: "\e90f"; } .socicon-tidal:before { content: "\e910"; } .socicon-qobuz:before { content: "\e911"; } .socicon-natgeo:before { content: "\e912"; } .socicon-mastodon:before { content: "\e913"; } .socicon-unsplash:before { content: "\e914"; } .socicon-homeadvisor:before { content: "\e915"; } .socicon-angieslist:before { content: "\e916"; } .socicon-codepen:before { content: "\e917"; } .socicon-slack:before { content: "\e918"; } .socicon-openaigym:before { content: "\e919"; } .socicon-logmein:before { content: "\e91a"; } .socicon-fiverr:before { content: "\e91b"; } .socicon-gotomeeting:before { content: "\e91c"; } .socicon-aliexpress:before { content: "\e91d"; } .socicon-guru:before { content: "\e91e"; } .socicon-appstore:before { content: "\e91f"; } .socicon-homes:before { content: "\e920"; } .socicon-zoom:before { content: "\e921"; } .socicon-alibaba:before { content: "\e922"; } .socicon-craigslist:before { content: "\e923"; } .socicon-wix:before { content: "\e924"; } .socicon-redfin:before { content: "\e925"; } .socicon-googlecalendar:before { content: "\e926"; } .socicon-shopify:before { content: "\e927"; } .socicon-freelancer:before { content: "\e928"; } .socicon-seedrs:before { content: "\e929"; } .socicon-bing:before { content: "\e92a"; } .socicon-doodle:before { content: "\e92b"; } .socicon-bonanza:before { content: "\e92c"; } .socicon-squarespace:before { content: "\e92d"; } .socicon-toptal:before { content: "\e92e"; } .socicon-gust:before { content: "\e92f"; } .socicon-ask:before { content: "\e930"; } .socicon-trulia:before { content: "\e931"; } .socicon-loomly:before { content: "\e932"; } .socicon-ghost:before { content: "\e933"; } .socicon-upwork:before { content: "\e934"; } .socicon-fundable:before { content: "\e935"; } .socicon-booking:before { content: "\e936"; } .socicon-googlemaps:before { content: "\e937"; } .socicon-zillow:before { content: "\e938"; } .socicon-niconico:before { content: "\e939"; } .socicon-toneden:before { content: "\e93a"; } .socicon-augment:before { content: "\e908"; } .socicon-bitbucket:before { content: "\e909"; } .socicon-fyuse:before { content: "\e90a"; } .socicon-yt-gaming:before { content: "\e90b"; } .socicon-sketchfab:before { content: "\e90c"; } .socicon-mobcrush:before { content: "\e90d"; } .socicon-microsoft:before { content: "\e90e"; } .socicon-pandora:before { content: "\e907"; } .socicon-messenger:before { content: "\e906"; } .socicon-gamewisp:before { content: "\e905"; } .socicon-bloglovin:before { content: "\e904"; } .socicon-tunein:before { content: "\e903"; } .socicon-gamejolt:before { content: "\e901"; } .socicon-trello:before { content: "\e902"; } .socicon-spreadshirt:before { content: "\e900"; } .socicon-500px:before { content: "\e000"; } .socicon-8tracks:before { content: "\e001"; } .socicon-airbnb:before { content: "\e002"; } .socicon-alliance:before { content: "\e003"; } .socicon-amazon:before { content: "\e004"; } .socicon-amplement:before { content: "\e005"; } .socicon-android:before { content: "\e006"; } .socicon-angellist:before { content: "\e007"; } .socicon-apple:before { content: "\e008"; } .socicon-appnet:before { content: "\e009"; } .socicon-baidu:before { content: "\e00a"; } .socicon-bandcamp:before { content: "\e00b"; } .socicon-battlenet:before { content: "\e00c"; } .socicon-mixer:before { content: "\e00d"; } .socicon-bebee:before { content: "\e00e"; } .socicon-bebo:before { content: "\e00f"; } .socicon-behance:before { content: "\e010"; } .socicon-blizzard:before { content: "\e011"; } .socicon-blogger:before { content: "\e012"; } .socicon-buffer:before { content: "\e013"; } .socicon-chrome:before { content: "\e014"; } .socicon-coderwall:before { content: "\e015"; } .socicon-curse:before { content: "\e016"; } .socicon-dailymotion:before { content: "\e017"; } .socicon-deezer:before { content: "\e018"; } .socicon-delicious:before { content: "\e019"; } .socicon-deviantart:before { content: "\e01a"; } .socicon-diablo:before { content: "\e01b"; } .socicon-digg:before { content: "\e01c"; } .socicon-discord:before { content: "\e01d"; } .socicon-disqus:before { content: "\e01e"; } .socicon-douban:before { content: "\e01f"; } .socicon-draugiem:before { content: "\e020"; } .socicon-dribbble:before { content: "\e021"; } .socicon-drupal:before { content: "\e022"; } .socicon-ebay:before { content: "\e023"; } .socicon-ello:before { content: "\e024"; } .socicon-endomodo:before { content: "\e025"; } .socicon-envato:before { content: "\e026"; } .socicon-etsy:before { content: "\e027"; } .socicon-facebook:before { content: "\e028"; } .socicon-feedburner:before { content: "\e029"; } .socicon-filmweb:before { content: "\e02a"; } .socicon-firefox:before { content: "\e02b"; } .socicon-flattr:before { content: "\e02c"; } .socicon-flickr:before { content: "\e02d"; } .socicon-formulr:before { content: "\e02e"; } .socicon-forrst:before { content: "\e02f"; } .socicon-foursquare:before { content: "\e030"; } .socicon-friendfeed:before { content: "\e031"; } .socicon-github:before { content: "\e032"; } .socicon-goodreads:before { content: "\e033"; } .socicon-google:before { content: "\e034"; } .socicon-googlescholar:before { content: "\e035"; } .socicon-googlegroups:before { content: "\e036"; } .socicon-googlephotos:before { content: "\e037"; } .socicon-googleplus:before { content: "\e038"; } .socicon-grooveshark:before { content: "\e039"; } .socicon-hackerrank:before { content: "\e03a"; } .socicon-hearthstone:before { content: "\e03b"; } .socicon-hellocoton:before { content: "\e03c"; } .socicon-heroes:before { content: "\e03d"; } .socicon-smashcast:before { content: "\e03e"; } .socicon-horde:before { content: "\e03f"; } .socicon-houzz:before { content: "\e040"; } .socicon-icq:before { content: "\e041"; } .socicon-identica:before { content: "\e042"; } .socicon-imdb:before { content: "\e043"; } .socicon-instagram:before { content: "\e044"; } .socicon-issuu:before { content: "\e045"; } .socicon-istock:before { content: "\e046"; } .socicon-itunes:before { content: "\e047"; } .socicon-keybase:before { content: "\e048"; } .socicon-lanyrd:before { content: "\e049"; } .socicon-lastfm:before { content: "\e04a"; } .socicon-line:before { content: "\e04b"; } .socicon-linkedin:before { content: "\e04c"; } .socicon-livejournal:before { content: "\e04d"; } .socicon-lyft:before { content: "\e04e"; } .socicon-macos:before { content: "\e04f"; } .socicon-mail:before { content: "\e050"; } .socicon-medium:before { content: "\e051"; } .socicon-meetup:before { content: "\e052"; } .socicon-mixcloud:before { content: "\e053"; } .socicon-modelmayhem:before { content: "\e054"; } .socicon-mumble:before { content: "\e055"; } .socicon-myspace:before { content: "\e056"; } .socicon-newsvine:before { content: "\e057"; } .socicon-nintendo:before { content: "\e058"; } .socicon-npm:before { content: "\e059"; } .socicon-odnoklassniki:before { content: "\e05a"; } .socicon-openid:before { content: "\e05b"; } .socicon-opera:before { content: "\e05c"; } .socicon-outlook:before { content: "\e05d"; } .socicon-overwatch:before { content: "\e05e"; } .socicon-patreon:before { content: "\e05f"; } .socicon-paypal:before { content: "\e060"; } .socicon-periscope:before { content: "\e061"; } .socicon-persona:before { content: "\e062"; } .socicon-pinterest:before { content: "\e063"; } .socicon-play:before { content: "\e064"; } .socicon-player:before { content: "\e065"; } .socicon-playstation:before { content: "\e066"; } .socicon-pocket:before { content: "\e067"; } .socicon-qq:before { content: "\e068"; } .socicon-quora:before { content: "\e069"; } .socicon-raidcall:before { content: "\e06a"; } .socicon-ravelry:before { content: "\e06b"; } .socicon-reddit:before { content: "\e06c"; } .socicon-renren:before { content: "\e06d"; } .socicon-researchgate:before { content: "\e06e"; } .socicon-residentadvisor:before { content: "\e06f"; } .socicon-reverbnation:before { content: "\e070"; } .socicon-rss:before { content: "\e071"; } .socicon-sharethis:before { content: "\e072"; } .socicon-skype:before { content: "\e073"; } .socicon-slideshare:before { content: "\e074"; } .socicon-smugmug:before { content: "\e075"; } .socicon-snapchat:before { content: "\e076"; } .socicon-songkick:before { content: "\e077"; } .socicon-soundcloud:before { content: "\e078"; } .socicon-spotify:before { content: "\e079"; } .socicon-stackexchange:before { content: "\e07a"; } .socicon-stackoverflow:before { content: "\e07b"; } .socicon-starcraft:before { content: "\e07c"; } .socicon-stayfriends:before { content: "\e07d"; } .socicon-steam:before { content: "\e07e"; } .socicon-storehouse:before { content: "\e07f"; } .socicon-strava:before { content: "\e080"; } .socicon-streamjar:before { content: "\e081"; } .socicon-stumbleupon:before { content: "\e082"; } .socicon-swarm:before { content: "\e083"; } .socicon-teamspeak:before { content: "\e084"; } .socicon-teamviewer:before { content: "\e085"; } .socicon-technorati:before { content: "\e086"; } .socicon-telegram:before { content: "\e087"; } .socicon-tripadvisor:before { content: "\e088"; } .socicon-tripit:before { content: "\e089"; } .socicon-triplej:before { content: "\e08a"; } .socicon-tumblr:before { content: "\e08b"; } .socicon-twitch:before { content: "\e08c"; } .socicon-twitter:before { content: "\e08d"; } .socicon-uber:before { content: "\e08e"; } .socicon-ventrilo:before { content: "\e08f"; } .socicon-viadeo:before { content: "\e090"; } .socicon-viber:before { content: "\e091"; } .socicon-viewbug:before { content: "\e092"; } .socicon-vimeo:before { content: "\e093"; } .socicon-vine:before { content: "\e094"; } .socicon-vkontakte:before { content: "\e095"; } .socicon-warcraft:before { content: "\e096"; } .socicon-wechat:before { content: "\e097"; } .socicon-weibo:before { content: "\e098"; } .socicon-whatsapp:before { content: "\e099"; } .socicon-wikipedia:before { content: "\e09a"; } .socicon-windows:before { content: "\e09b"; } .socicon-wordpress:before { content: "\e09c"; } .socicon-wykop:before { content: "\e09d"; } .socicon-xbox:before { content: "\e09e"; } .socicon-xing:before { content: "\e09f"; } .socicon-yahoo:before { content: "\e0a0"; } .socicon-yammer:before { content: "\e0a1"; } .socicon-yandex:before { content: "\e0a2"; } .socicon-yelp:before { content: "\e0a3"; } .socicon-younow:before { content: "\e0a4"; } .socicon-youtube:before { content: "\e0a5"; } .socicon-zapier:before { content: "\e0a6"; } .socicon-zerply:before { content: "\e0a7"; } .socicon-zomato:before { content: "\e0a8"; } .socicon-zynga:before { content: "\e0a9"; } section { background-color: #ffffff; } body { font-style: normal; line-height: 1.5; font-weight: 400; color: #232323; position: relative; } button { background-color: transparent; border-color: transparent; } .embla__button, .carousel-control { background-color: #edefea !important; opacity: 0.8 !important; color: #464845 !important; border-color: #edefea !important; } .carousel .close, .modalWindow .close { background-color: #edefea !important; color: #464845 !important; border-color: #edefea !important; opacity: 0.8 !important; } .carousel .close:hover, .modalWindow .close:hover { opacity: 1 !important; } .carousel-indicators li { background-color: #edefea !important; border: 2px solid #464845 !important; } .carousel-indicators li:hover, .carousel-indicators li:active { opacity: 0.8 !important; } .embla__button:hover, .carousel-control:hover { background-color: #edefea !important; opacity: 1 !important; } .modalWindow-video-container { height: 80%; } section, .container, .container-fluid { position: relative; word-wrap: break-word; } a.mbr-iconfont:hover { text-decoration: none; } .article .lead p, .article .lead ul, .article .lead ol, .article .lead pre, .article .lead blockquote { margin-bottom: 0; } a { font-style: normal; font-weight: 400; cursor: pointer; } a, a:hover { text-decoration: none; } .mbr-section-title { font-style: normal; line-height: 1.3; } .mbr-section-subtitle { line-height: 1.3; } .mbr-text { font-style: normal; line-height: 1.7; } h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-4, .display-5, .display-7, span, p, a { line-height: 1; word-break: break-word; word-wrap: break-word; font-weight: 400; } b, strong { font-weight: bold; } input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { transition-delay: 9999s; -webkit-transition-property: background-color, color; transition-property: background-color, color; } textarea[type=hidden] { display: none; } section { background-position: 50% 50%; background-repeat: no-repeat; background-size: cover; } section .mbr-background-video, section .mbr-background-video-preview { position: absolute; bottom: 0; left: 0; right: 0; top: 0; } .hidden { visibility: hidden; } .mbr-z-index20 { z-index: 20; } .mbr-white { color: #ffffff; } .mbr-black { color: #111111; } .mbr-bg-white { background-color: #ffffff; } .mbr-bg-black { background-color: #000000; } .align-left { text-align: left; } .align-center { text-align: center; } .align-right { text-align: right; } .mbr-light { font-weight: 300; } .mbr-regular { font-weight: 400; } .mbr-semibold { font-weight: 500; } .mbr-bold { font-weight: 700; } .media-content { flex-basis: 100%; } .media-container-row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-content: center; align-items: start; } .media-container-row .media-size-item { width: 400px; } .media-container-column { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; align-content: center; align-items: stretch; } .media-container-column > * { width: 100%; } @media (min-width: 992px) { .media-container-row { flex-wrap: nowrap; } } figure { margin-bottom: 0; overflow: hidden; } figure[mbr-media-size] { transition: width 0.1s; } img, iframe { display: block; width: 100%; } .card { background-color: transparent; border: none; } .card-box { width: 100%; } .card-img { text-align: center; flex-shrink: 0; -webkit-flex-shrink: 0; } .media { max-width: 100%; margin: 0 auto; } .mbr-figure { align-self: center; } .media-container > div { max-width: 100%; } .mbr-figure img, .card-img img { width: 100%; } @media (max-width: 991px) { .media-size-item { width: auto !important; } .media { width: auto; } .mbr-figure { width: 100% !important; } } .mbr-section-btn { margin-left: -0.6rem; margin-right: -0.6rem; font-size: 0; } .btn { font-weight: 600; border-width: 1px; font-style: normal; margin: 0.6rem 0.6rem; white-space: normal; transition: all 0.2s ease-in-out; display: inline-flex; align-items: center; justify-content: center; word-break: break-word; } .btn-sm { font-weight: 600; letter-spacing: 0px; transition: all 0.3s ease-in-out; } .btn-md { font-weight: 600; letter-spacing: 0px; transition: all 0.3s ease-in-out; } .btn-lg { font-weight: 600; letter-spacing: 0px; transition: all 0.3s ease-in-out; } .btn-form { margin: 0; } .btn-form:hover { cursor: pointer; } nav .mbr-section-btn { margin-left: 0rem; margin-right: 0rem; } .btn .mbr-iconfont, .btn.btn-sm .mbr-iconfont { order: 1; cursor: pointer; margin-left: 0.5rem; vertical-align: sub; } .btn.btn-md .mbr-iconfont, .btn.btn-md .mbr-iconfont { margin-left: 0.8rem; } .mbr-regular { font-weight: 400; } .mbr-semibold { font-weight: 500; } .mbr-bold { font-weight: 700; } [type=submit] { -webkit-appearance: none; } .mbr-fullscreen .mbr-overlay { min-height: 100vh; } .mbr-fullscreen { display: flex; display: -moz-flex; display: -ms-flex; display: -o-flex; align-items: center; min-height: 100vh; padding-top: 3rem; padding-bottom: 3rem; } .map { height: 25rem; position: relative; } .map iframe { width: 100%; height: 100%; } .mbr-arrow-up { bottom: 25px; right: 90px; position: fixed; text-align: right; z-index: 5000; color: #ffffff; font-size: 22px; } .mbr-arrow-up a { background: rgba(0, 0, 0, 0.2); border-radius: 50%; color: #fff; display: inline-block; height: 60px; width: 60px; border: 2px solid #fff; outline-style: none !important; position: relative; text-decoration: none; transition: all 0.3s ease-in-out; cursor: pointer; text-align: center; } .mbr-arrow-up a:hover { background-color: rgba(0, 0, 0, 0.4); } .mbr-arrow-up a i { line-height: 60px; } .mbr-arrow-up-icon { display: block; color: #fff; } .mbr-arrow-up-icon::before { content: "›"; display: inline-block; font-family: serif; font-size: 22px; line-height: 1; font-style: normal; position: relative; top: 6px; left: -4px; transform: rotate(-90deg); } .mbr-arrow { position: absolute; bottom: 45px; left: 50%; width: 60px; height: 60px; cursor: pointer; background-color: rgba(80, 80, 80, 0.5); border-radius: 50%; transform: translateX(-50%); } @media (max-width: 767px) { .mbr-arrow { display: none; } } .mbr-arrow > a { display: inline-block; text-decoration: none; outline-style: none; animation: arrowdown 1.7s ease-in-out infinite; color: #ffffff; } .mbr-arrow > a > i { position: absolute; top: -2px; left: 15px; font-size: 2rem; } #scrollToTop a i::before { content: ""; position: absolute; display: block; border-bottom: 2.5px solid #fff; border-left: 2.5px solid #fff; width: 27.8%; height: 27.8%; left: 50%; top: 51%; transform: translateY(-30%) translateX(-50%) rotate(135deg); } @keyframes arrowdown { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } } @media (max-width: 500px) { .mbr-arrow-up { left: 0; right: 0; text-align: center; } } @keyframes gradient-animation { from { background-position: 0% 100%; animation-timing-function: ease-in-out; } to { background-position: 100% 0%; animation-timing-function: ease-in-out; } } .bg-gradient { background-size: 200% 200%; animation: gradient-animation 5s infinite alternate; -webkit-animation: gradient-animation 5s infinite alternate; } .menu .navbar-brand { display: -webkit-flex; } .menu .navbar-brand span { display: flex; display: -webkit-flex; } .menu .navbar-brand .navbar-caption-wrap { display: -webkit-flex; } .menu .navbar-brand .navbar-logo img { display: -webkit-flex; width: auto; } @media (min-width: 768px) and (max-width: 991px) { .menu .navbar-toggleable-sm .navbar-nav { display: -ms-flexbox; } } @media (max-width: 991px) { .menu .navbar-collapse { max-height: 93.5vh; } .menu .navbar-collapse.show { overflow: auto; } } @media (min-width: 992px) { .menu .navbar-nav.nav-dropdown { display: -webkit-flex; } .menu .navbar-toggleable-sm .navbar-collapse { display: -webkit-flex !important; } .menu .collapsed .navbar-collapse { max-height: 93.5vh; } .menu .collapsed .navbar-collapse.show { overflow: auto; } } @media (max-width: 767px) { .menu .navbar-collapse { max-height: 80vh; } } .nav-link .mbr-iconfont { margin-right: 0.5rem; } .navbar { display: -webkit-flex; -webkit-flex-wrap: wrap; -webkit-align-items: center; -webkit-justify-content: space-between; } .navbar-collapse { -webkit-flex-basis: 100%; -webkit-flex-grow: 1; -webkit-align-items: center; } .nav-dropdown .link { padding: 0.667em 1.667em !important; margin: 0 !important; } .nav { display: -webkit-flex; -webkit-flex-wrap: wrap; } .row { display: -webkit-flex; -webkit-flex-wrap: wrap; } .justify-content-center { -webkit-justify-content: center; } .form-inline { display: -webkit-flex; } .card-wrapper { -webkit-flex: 1; } .carousel-control { z-index: 10; display: -webkit-flex; } .carousel-controls { display: -webkit-flex; } .media { display: -webkit-flex; } .form-group:focus { outline: none; } .jq-selectbox__select { padding: 7px 0; position: relative; } .jq-selectbox__dropdown { overflow: hidden; border-radius: 10px; position: absolute; top: 100%; left: 0 !important; width: 100% !important; } .jq-selectbox__trigger-arrow { right: 0; transform: translateY(-50%); } .jq-selectbox li { padding: 1.07em 0.5em; } input[type=range] { padding-left: 0 !important; padding-right: 0 !important; } .modal-dialog, .modal-content { height: 100%; } .modal-dialog .carousel-inner { height: calc(100vh - 1.75rem); } @media (max-width: 575px) { .modal-dialog .carousel-inner { height: calc(100vh - 1rem); } } .carousel-item { text-align: center; } .carousel-item img { margin: auto; } .navbar-toggler { align-self: flex-start; padding: 0.25rem 0.75rem; font-size: 1.25rem; line-height: 1; background: transparent; border: 1px solid transparent; border-radius: 0.25rem; } .navbar-toggler:focus, .navbar-toggler:hover { text-decoration: none; box-shadow: none; } .navbar-toggler-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; content: ""; background: no-repeat center center; background-size: 100% 100%; } .navbar-toggler-left { position: absolute; left: 1rem; } .navbar-toggler-right { position: absolute; right: 1rem; } .card-img { width: auto; } .menu .navbar.collapsed:not(.beta-menu) { flex-direction: column; } .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: flex; } .note-air-layout .dropup .dropdown-menu, .note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu { bottom: initial !important; } html, body { height: auto; min-height: 100vh; } .dropup .dropdown-toggle::after { display: none; } .form-asterisk { font-family: initial; position: absolute; top: -2px; font-weight: normal; } .form-control-label { position: relative; cursor: pointer; margin-bottom: 0.357em; padding: 0; } .alert { color: #ffffff; border-radius: 0; border: 0; font-size: 1.1rem; line-height: 1.5; margin-bottom: 1.875rem; padding: 1.25rem; position: relative; text-align: center; } .alert.alert-form::after { background-color: inherit; bottom: -7px; content: ""; display: block; height: 14px; left: 50%; margin-left: -7px; position: absolute; transform: rotate(45deg); width: 14px; } .form-control { background-color: #ffffff; background-clip: border-box; color: #232323; line-height: 1rem !important; height: auto; padding: 1.2rem 2rem; transition: border-color 0.25s ease 0s; border: 1px solid transparent !important; border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px; } .form-active .form-control:invalid { border-color: red; } .row > * { padding-right: 1rem; padding-left: 1rem; } form .row { margin-left: -0.6rem; margin-right: -0.6rem; } form .row [class*=col] { padding-left: 0.6rem; padding-right: 0.6rem; } form .mbr-section-btn { padding-left: 0.6rem; padding-right: 0.6rem; } form .form-check-input { margin-top: 0.5; } textarea.form-control { line-height: 1.5rem !important; } .form-group { margin-bottom: 1.2rem; } .form-control, form .btn { min-height: 48px; } .gdpr-block label span.textGDPR input[name=gdpr] { top: 7px; } .form-control:focus { box-shadow: none; } :focus { outline: none; } .mbr-overlay { background-color: #000; bottom: 0; left: 0; opacity: 0.5; position: absolute; right: 0; top: 0; z-index: 0; pointer-events: none; } blockquote { font-style: italic; padding: 3rem; font-size: 1.09rem; position: relative; border-left: 3px solid; } ul, ol, pre, blockquote { margin-bottom: 2.3125rem; } .mt-4 { margin-top: 2rem !important; } .mb-4 { margin-bottom: 2rem !important; } .container, .container-fluid { padding-left: 16px; padding-right: 16px; } .row { margin-left: -16px; margin-right: -16px; } .row > [class*=col] { padding-left: 16px; padding-right: 16px; } @media (min-width: 992px) { .container-fluid { padding-left: 32px; padding-right: 32px; } } @media (max-width: 991px) { .mbr-container { padding-left: 16px; padding-right: 16px; } } .app-video-wrapper > img { opacity: 1; } .app-video-wrapper { background: transparent; } .item { position: relative; } .dropdown-menu .dropdown-menu { left: 100%; } .dropdown-item + .dropdown-menu { display: none; } .dropdown-item:hover + .dropdown-menu, .dropdown-menu:hover { display: block; } @media (min-aspect-ratio: 16/9) { .mbr-video-foreground { height: 300% !important; top: -100% !important; } } @media (max-aspect-ratio: 16/9) { .mbr-video-foreground { width: 300% !important; left: -100% !important; } } @font-face { font-family: 'Moririse2'; font-display: swap; src: url('mobirise2.eot?f2bix4'); src: url('mobirise2.eot?f2bix4#iefix') format('embedded-opentype'), url('mobirise2.ttf?f2bix4') format('truetype'), url('mobirise2.woff?f2bix4') format('woff'), url('mobirise2.svg?f2bix4#mobirise2') format('svg'); font-weight: normal; font-style: normal; } [class^="mobi-"], [class*=" mobi-"] { font-family: 'Moririse2' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .mobi-mbri-add-submenu:before { content: "\e900"; } .mobi-mbri-alert:before { content: "\e901"; } .mobi-mbri-align-center:before { content: "\e902"; } .mobi-mbri-align-justify:before { content: "\e903"; } .mobi-mbri-align-left:before { content: "\e904"; } .mobi-mbri-align-right:before { content: "\e905"; } .mobi-mbri-android:before { content: "\e906"; } .mobi-mbri-apple:before { content: "\e907"; } .mobi-mbri-arrow-down:before { content: "\e908"; } .mobi-mbri-arrow-next:before { content: "\e909"; } .mobi-mbri-arrow-prev:before { content: "\e90a"; } .mobi-mbri-arrow-up:before { content: "\e90b"; } .mobi-mbri-bold:before { content: "\e90c"; } .mobi-mbri-bookmark:before { content: "\e90d"; } .mobi-mbri-bootstrap:before { content: "\e90e"; } .mobi-mbri-briefcase:before { content: "\e90f"; } .mobi-mbri-browse:before { content: "\e910"; } .mobi-mbri-bulleted-list:before { content: "\e911"; } .mobi-mbri-calendar:before { content: "\e912"; } .mobi-mbri-camera:before { content: "\e913"; } .mobi-mbri-cart-add:before { content: "\e914"; } .mobi-mbri-cart-full:before { content: "\e915"; } .mobi-mbri-cash:before { content: "\e916"; } .mobi-mbri-change-style:before { content: "\e917"; } .mobi-mbri-chat:before { content: "\e918"; } .mobi-mbri-clock:before { content: "\e919"; } .mobi-mbri-close:before { content: "\e91a"; } .mobi-mbri-cloud:before { content: "\e91b"; } .mobi-mbri-code:before { content: "\e91c"; } .mobi-mbri-contact-form:before { content: "\e91d"; } .mobi-mbri-credit-card:before { content: "\e91e"; } .mobi-mbri-cursor-click:before { content: "\e91f"; } .mobi-mbri-cust-feedback:before { content: "\e920"; } .mobi-mbri-database:before { content: "\e921"; } .mobi-mbri-delivery:before { content: "\e922"; } .mobi-mbri-desktop:before { content: "\e923"; } .mobi-mbri-devices:before { content: "\e924"; } .mobi-mbri-down:before { content: "\e925"; } .mobi-mbri-download-2:before { content: "\e926"; } .mobi-mbri-download:before { content: "\e927"; } .mobi-mbri-drag-n-drop-2:before { content: "\e928"; } .mobi-mbri-drag-n-drop:before { content: "\e929"; } .mobi-mbri-edit-2:before { content: "\e92a"; } .mobi-mbri-edit:before { content: "\e92b"; } .mobi-mbri-error:before { content: "\e92c"; } .mobi-mbri-extension:before { content: "\e92d"; } .mobi-mbri-features:before { content: "\e92e"; } .mobi-mbri-file:before { content: "\e92f"; } .mobi-mbri-flag:before { content: "\e930"; } .mobi-mbri-folder:before { content: "\e931"; } .mobi-mbri-gift:before { content: "\e932"; } .mobi-mbri-github:before { content: "\e933"; } .mobi-mbri-globe-2:before { content: "\e934"; } .mobi-mbri-globe:before { content: "\e935"; } .mobi-mbri-growing-chart:before { content: "\e936"; } .mobi-mbri-hearth:before { content: "\e937"; } .mobi-mbri-help:before { content: "\e938"; } .mobi-mbri-home:before { content: "\e939"; } .mobi-mbri-hot-cup:before { content: "\e93a"; } .mobi-mbri-idea:before { content: "\e93b"; } .mobi-mbri-image-gallery:before { content: "\e93c"; } .mobi-mbri-image-slider:before { content: "\e93d"; } .mobi-mbri-info:before { content: "\e93e"; } .mobi-mbri-italic:before { content: "\e93f"; } .mobi-mbri-key:before { content: "\e940"; } .mobi-mbri-laptop:before { content: "\e941"; } .mobi-mbri-layers:before { content: "\e942"; } .mobi-mbri-left-right:before { content: "\e943"; } .mobi-mbri-left:before { content: "\e944"; } .mobi-mbri-letter:before { content: "\e945"; } .mobi-mbri-like:before { content: "\e946"; } .mobi-mbri-link:before { content: "\e947"; } .mobi-mbri-lock:before { content: "\e948"; } .mobi-mbri-login:before { content: "\e949"; } .mobi-mbri-logout:before { content: "\e94a"; } .mobi-mbri-magic-stick:before { content: "\e94b"; } .mobi-mbri-map-pin:before { content: "\e94c"; } .mobi-mbri-menu:before { content: "\e94d"; } .mobi-mbri-mobile-2:before { content: "\e94e"; } .mobi-mbri-mobile-horizontal:before { content: "\e94f"; } .mobi-mbri-mobile:before { content: "\e950"; } .mobi-mbri-mobirise:before { content: "\e951"; } .mobi-mbri-more-horizontal:before { content: "\e952"; } .mobi-mbri-more-vertical:before { content: "\e953"; } .mobi-mbri-music:before { content: "\e954"; } .mobi-mbri-new-file:before { content: "\e955"; } .mobi-mbri-numbered-list:before { content: "\e956"; } .mobi-mbri-opened-folder:before { content: "\e957"; } .mobi-mbri-pages:before { content: "\e958"; } .mobi-mbri-paper-plane:before { content: "\e959"; } .mobi-mbri-paperclip:before { content: "\e95a"; } .mobi-mbri-phone:before { content: "\e95b"; } .mobi-mbri-photo:before { content: "\e95c"; } .mobi-mbri-photos:before { content: "\e95d"; } .mobi-mbri-pin:before { content: "\e95e"; } .mobi-mbri-play:before { content: "\e95f"; } .mobi-mbri-plus:before { content: "\e960"; } .mobi-mbri-preview:before { content: "\e961"; } .mobi-mbri-print:before { content: "\e962"; } .mobi-mbri-protect:before { content: "\e963"; } .mobi-mbri-question:before { content: "\e964"; } .mobi-mbri-quote-left:before { content: "\e965"; } .mobi-mbri-quote-right:before { content: "\e966"; } .mobi-mbri-redo:before { content: "\e967"; } .mobi-mbri-refresh:before { content: "\e968"; } .mobi-mbri-responsive-2:before { content: "\e969"; } .mobi-mbri-responsive:before { content: "\e96a"; } .mobi-mbri-right:before { content: "\e96b"; } .mobi-mbri-rocket:before { content: "\e96c"; } .mobi-mbri-sad-face:before { content: "\e96d"; } .mobi-mbri-sale:before { content: "\e96e"; } .mobi-mbri-save:before { content: "\e96f"; } .mobi-mbri-search:before { content: "\e970"; } .mobi-mbri-setting-2:before { content: "\e971"; } .mobi-mbri-setting-3:before { content: "\e972"; } .mobi-mbri-setting:before { content: "\e973"; } .mobi-mbri-share:before { content: "\e974"; } .mobi-mbri-shopping-bag:before { content: "\e975"; } .mobi-mbri-shopping-basket:before { content: "\e976"; } .mobi-mbri-shopping-cart:before { content: "\e977"; } .mobi-mbri-sites:before { content: "\e978"; } .mobi-mbri-smile-face:before { content: "\e979"; } .mobi-mbri-speed:before { content: "\e97a"; } .mobi-mbri-star:before { content: "\e97b"; } .mobi-mbri-success:before { content: "\e97c"; } .mobi-mbri-sun:before { content: "\e97d"; } .mobi-mbri-sun2:before { content: "\e97e"; } .mobi-mbri-tablet-vertical:before { content: "\e97f"; } .mobi-mbri-tablet:before { content: "\e980"; } .mobi-mbri-target:before { content: "\e981"; } .mobi-mbri-timer:before { content: "\e982"; } .mobi-mbri-to-ftp:before { content: "\e983"; } .mobi-mbri-to-local-drive:before { content: "\e984"; } .mobi-mbri-touch-swipe:before { content: "\e985"; } .mobi-mbri-touch:before { content: "\e986"; } .mobi-mbri-trash:before { content: "\e987"; } .mobi-mbri-underline:before { content: "\e988"; } .mobi-mbri-undo:before { content: "\e989"; } .mobi-mbri-unlink:before { content: "\e98a"; } .mobi-mbri-unlock:before { content: "\e98b"; } .mobi-mbri-up-down:before { content: "\e98c"; } .mobi-mbri-up:before { content: "\e98d"; } .mobi-mbri-update:before { content: "\e98e"; } .mobi-mbri-upload-2:before { content: "\e98f"; } .mobi-mbri-upload:before { content: "\e990"; } .mobi-mbri-user-2:before { content: "\e991"; } .mobi-mbri-user:before { content: "\e992"; } .mobi-mbri-users:before { content: "\e993"; } .mobi-mbri-video-play:before { content: "\e994"; } .mobi-mbri-video:before { content: "\e995"; } .mobi-mbri-watch:before { content: "\e996"; } .mobi-mbri-website-theme-2:before { content: "\e997"; } .mobi-mbri-website-theme:before { content: "\e998"; } .mobi-mbri-wifi:before { content: "\e999"; } .mobi-mbri-windows:before { content: "\e99a"; } .mobi-mbri-zoom-in:before { content: "\e99b"; } .mobi-mbri-zoom-out:before { content: "\e99c"; }