@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&amp;display=swap");

/* ================================
   Global Dark Theme - Kalyan Online App 
   ================================ */
:root {
    /* Brand Colors */
    --color-primary: #d4af37; /* Gold */
    --color-secondary: #0a2345; /* Navy Blue */

    /* Backgrounds for dark mode */
    --color-background: #0a2345; /* Main dark bg */
    --color-surface: #112b50; /* Slightly lighter navy for cards/sections */

    /* Additional Shades */
    --color-light-gold: #e6c940;
    --color-dark-gold: #9c7c38;

    /* Feedback Colors */
    --color-danger: #ff5c6c; /* Softer red for dark */
    --color-success: #4caf50; /* Vibrant green */

    /* Neutral Colors */
    --color-gray-light: #cccccc; /* Light text */
    --color-gray-dark: #222222; /* Extra dark (rarely used) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    background: linear-gradient(
        135deg,
        var(--color-background) 0%,
        #051426 100%
    );
    color: var(--color-gray-light);
    line-height: 1.6;
    min-height: 100vh;
    /* padding: 20px; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.game-card {
    background: linear-gradient(145deg, var(--color-surface) 0%, #0f1f3d 100%);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.game-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: left 0.6s;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border-color: var(--color-primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.game-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.info-icon {
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-light-gold)
    );
    color: var(--color-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.info-icon:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.result-display {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1),
        rgba(212, 175, 55, 0.05)
    );
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-display::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.result-numbers {
    font-size: 2em;
    font-weight: 900;
    color: var(--color-light-gold);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.chart-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.chart-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chart-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-light-gold)
    );
    transition: left 0.3s ease;
    z-index: -1;
}

.chart-btn:hover::before {
    left: 0;
}

.chart-btn:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.chart-btn i {
    margin-right: 8px;
}

.status-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 10px var(--color-success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.game-subtitle {
    color: var(--color-gray-light);
    font-size: 0.85em;
    opacity: 0.8;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-card {
        padding: 20px;
    }

    .chart-buttons {
        flex-direction: column;
    }
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    text-align: center;
    color: var(--color-gray-light);
    opacity: 0.8;
    margin-bottom: 30px;
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, var(--color-surface) 0%, #0f1f3d 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--color-primary);
    transform: scale(0.7) translateY(-50px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-light-gold) 100%
    );
    color: var(--color-secondary);
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

.modal-title {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    color: var(--color-secondary);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-secondary);
    font-size: 1.5em;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.time-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.table-header {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-light-gold) 100%
    );
    color: var(--color-secondary);
}

.table-header th {
    padding: 15px 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 15px;
}

.table-header th:first-child {
    border-left: none;
}

.table-header th:last-child {
    border-right: none;
}

.table-row {
    background: var(--color-surface);
    transition: all 0.3s ease;
}

/* .table-row:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.01);
}

.table-row.open-row {
  border-left: 4px solid var(--color-success);
}

.table-row.close-row {
  border-left: 4px solid var(--color-danger);
} */

.table-cell {
    padding: 15px 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gray-light);
    vertical-align: middle;
}

.table-cell.label {
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
}

.table-cell.open-label {
    color: var(--color-success);
    background: rgba(76, 175, 80, 0.1);
}

.table-cell.close-label {
    color: var(--color-danger);
    background: rgba(255, 92, 108, 0.1);
}

.clock-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    fill: currentColor;
}

.time-value {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--color-light-gold);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .table-header th,
    .table-cell {
        padding: 12px 8px;
        font-size: 0.85em;
    }

    .modal-title {
        font-size: 1.3em;
    }
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 15px;
}

/* Links */
a {
    color: var(--color-light-gold);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: var(--color-primary);
}
.a-custom:hover {
    color: var(--color-primary) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #0a2345;
}
.btn-primary:hover {
    background-color: var(--color-dark-gold);
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-light-gold);
}
.btn-secondary:hover {
    background-color: #05162a;
    color: var(--color-primary);
}

/* Card / Sections */
.card {
    background-color: var(--color-surface);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Utility Classes */
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-surface {
    background-color: var(--color-surface) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}
.text-secondary {
    color: var(--color-secondary) !important;
}
.text-light {
    color: var(--color-gray-light) !important;
}
.text-dark {
    color: var(--color-gray-dark) !important;
}

.header-nav {
    background: var(--color-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* border-bottom: 1px solid rgba(212, 175, 55, 0.2); */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner-img {
    height: 640px;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.img-fluid-custom {
    height: 90px;
    width: auto;
}

/* Mobile Toggle */
.navbar-toggler {
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: none;
}

.nav-toggle-icon {
    width: 30px;
    height: 30px;
}

.nav-toggle-icon path {
    stroke: var(--color-secondary);
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
    transition: all 0.3s ease;
}

.nav-toggle-icon.active .line.top {
    transform: rotate(45deg) translate(7px, 6px);
}

.nav-toggle-icon.active .line.middle {
    opacity: 0;
}

.nav-toggle-icon.active .line.bottom {
    transform: rotate(-45deg) translate(8px, -7px);
}

/* Navigation */
.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-light-gold) !important;
    padding: 12px 17px !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary) !important;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Active link with bottom border */
.nav-item.active .nav-link {
    color: var(--color-primary) !important;
    border-bottom: 3px solid var(--color-primary);
}

/* Dropdown arrow for nav items with submenus */
.dropdown .nav-link::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, var(--color-surface) 0%, #0f1f3d 100%);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown arrow pointer */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-primary);
}

.dropdown-menu {
    padding: 10px 10px !important;
    border-radius: 8px !important;
    height: 600px !important;
    overflow-y: scroll !important;
}

/* Custom Scrollbar */
.dropdown-menu::-webkit-scrollbar {
    width: 2px; /* thin scrollbar */
}

.dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-dark-gold);
}

.dropdown-menu div {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-light-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 6px;
    /* margin: 2px 10px; */
    position: relative;
}

.dropdown-menu a:hover {
    color: var(--color-primary);
    /* background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-light-gold)
  ); */
    transform: translateX(5px);
    border-left: 3px solid var(--color-primary);
    /* box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); */
}

/* Mobile Responsive */
@media (min-width: 200px) and (max-width: 768px) {
    .navbar-collapse.show .nav-item.active .nav-link {
        border-bottom: none !important;
        border-left: none !important;
        color: var(--color-primary) !important;
    }
    .navbar-collapse.show .nav-item.active .nav-link:hover {
        color: var(--color-primary) !important;
        background: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: -15px !important;
        right: -15px !important;
        padding: 20px 10px;
    }
    .navbar .navbar-nav {
        margin-top: 15px;
        width: 100% !important;
        max-width: 100%;
        margin-right: 0px;
        margin-left: 0px !important;
        align-items: initial !important;
    }
}

/* Mobile Responsive */
@media (max-width: 1199px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border: 2px solid var(--color-primary);
        border-top: none;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nav-link {
        padding: 15px 20px !important;
        text-align: center;
        border-radius: 10px;
    }

    .navbar-collapse.show .nav-item.active .nav-link {
        border-bottom: none;
        border-left: 3px solid var(--color-primary);
        color: #fab028 !important;
    }
    /* .navbar-collapse.show .nav-item.active .nav-link:hover {
        color: var(--color-primary) !important;
        background: rgba(212, 175, 55, 0.1);
    } */

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
        border-radius: 10px;
    }

    .dropdown-menu::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 12px 0;
    }
}

/* Demo content styling */
.demo-content {
    padding: 50px 20px;
    text-align: center;
}

.demo-content h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.demo-content p {
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section {
    padding: 80px 0px;
}

h1,
.h1 {
    font-size: 46px;
    line-height: 56px;
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 38px;
    }
}

h2,
.h2 {
    font-size: 36px;
}

@media (max-width: 767px) {
    h2,
    .h2 {
        font-size: 28px;
    }
}

h3,
.h3 {
    font-size: 24px;
}

@media (max-width: 767px) {
    h3,
    .h3 {
        font-size: 22px;
    }
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 15px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    /* color: #222222; */
    line-height: 1.3;
}

h1 a:hover,
a.h1:hover,
h2 a:hover,
a.h2:hover,
h3 a:hover,
a.h3:hover,
h4 a:hover,
a.h4:hover,
h5 a:hover,
a.h5:hover,
h6 a:hover,
a.h6:hover {
    color: #fab028;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
}

p {
    line-height: 1.75;
}

a:focus,
button:focus {
    outline: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-decoration: underline;
    color: initial;
}

ol,
ul {
    list-style-position: inside;
}

ul,
li {
    padding: 0;
    margin: 0;
}

/* body {
  color: #333333;
  background-color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.65;
} */

::-moz-selection {
    color: #ffffff;
    background-color: #ff1843;
    text-shadow: none;
}

::selection {
    color: #ffffff;
    background-color: #ff1843;
    text-shadow: none;
}

:focus {
    outline: 0;
}

.preloader {
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9999999;
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease-out;
    background-color: #ffd739d9;
}

.preloader .block .loader-image {
    transition: 0.3s ease-out;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    position: relative;
}

.preloader .block .loader-image::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 44%;
    /* border: 1px solid; */
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        border-color: rgba(255, 49, 88, 0.4);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    25% {
        border-color: rgba(255, 187, 51, 0.4);
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    50% {
        border-color: rgba(255, 49, 88, 0.4);
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
    }
    75% {
        border-color: rgba(30, 133, 139, 0.4);
        -webkit-transform: rotateZ(270deg);
        transform: rotateZ(270deg);
    }
    100% {
        border-color: rgba(255, 49, 88, 0.4);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spin {
    0% {
        border-color: rgba(255, 49, 88, 0.4);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    25% {
        border-color: rgba(255, 187, 51, 0.4);
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    50% {
        border-color: rgba(255, 49, 88, 0.4);
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
    }
    75% {
        border-color: rgba(30, 133, 139, 0.4);
        -webkit-transform: rotateZ(270deg);
        transform: rotateZ(270deg);
    }
    100% {
        border-color: rgba(255, 49, 88, 0.4);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

/* .preloader .block .loader-image img {
  height: 30px;
} */

.preloader .block .loader-text span {
    display: block;
    transition: 0.3s ease-out;
}

.preloader .block .loader-text span:nth-child(1) {
    font-size: 24px;
    font-weight: 300;
}

.preloader .block .loader-text span:nth-child(2) {
    font-size: 36px;
    font-weight: 700;
}

.preloader.loaded {
    height: 0;
    transition-delay: 0.8s;
}

.preloader.loaded .block .loader-image {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
}

.preloader.loaded .block .loader-text span:nth-child(1) {
    opacity: 0;
    -webkit-transform: translateY(-35px) rotateZ(-5deg);
    transform: translateY(-35px) rotateZ(-5deg);
    transition-delay: 0.2s;
}

.preloader.loaded .block .loader-text span:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateY(-30px) rotateZ(-5deg);
    transform: translateY(-30px) rotateZ(-5deg);
    transition-delay: 0.4s;
}

/*------------------------------------------------------------------
 # default styles
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px;
    }
}

.header-nav,
.banner,
.page-header,
.section-padding {
    opacity: 0;
}

body.loaded .header-nav,
body.loaded .banner,
body.loaded .page-header,
body.loaded .section-padding {
    opacity: 1;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.badge {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    padding: 0.45em 0.8em;
    border-radius: 4px;
}

.badge.badge-changed {
    background-color: #3a9cff;
}

.badge.badge-added {
    background-color: #00ce92;
}

.badge.badge-removed {
    background-color: #973cff;
}

.badge.badge-security {
    background-color: #9c275f;
}

.badge.badge-depreciate {
    background-color: #fab028;
}

.divider-text {
    position: relative;
    text-align: center;
    z-index: 1;
}

.divider-text span {
    padding: 0 15px;
}

.divider-text::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #cecece;
    left: 0;
    top: calc(50% - 0.03125rem);
    z-index: -1;
}

.has-shapes {
    position: relative;
    z-index: 1;
}

.has-shapes .shape-xl,
.has-shapes .shape-lg,
.has-shapes .shape-md,
.has-shapes .shape-sm,
.has-shapes .shape-sm-2,
.has-shapes .shape-xs,
.has-shapes .shape-xs-2 {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.has-shapes .shape-xl {
    height: 105px;
    width: 105px;
}

.has-shapes .shape-lg {
    height: 93px;
    width: 93px;
}

.has-shapes .shape-md {
    height: 76px;
    width: 76px;
}

.has-shapes .shape-sm {
    height: 55px;
    width: 55px;
}

.has-shapes .shape-sm-2 {
    height: 35px;
    width: 35px;
}

.has-shapes .shape-xs {
    height: 26px;
    width: 26px;
}

.has-shapes .shape-xs-2 {
    height: 15px;
    width: 15px;
}

.has-shadow {
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.has-shadow::after {
    position: absolute;
    content: "";
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    bottom: 0;
    background-color: #e0e0e0;
    z-index: -1;
    border-radius: 5px;
}

.has-shadow.shadow-light::after {
    background-color: #f6f6f6;
}

@media (max-width: 767px) {
    .has-shadow {
        padding-bottom: 25px;
    }

    .has-shadow::after {
        height: calc(100% - 25px);
        width: calc(100% - 25px);
    }
}

.has-shadow.has-shapes .shape-1 {
    top: -30px;
}

.has-shadow.has-shapes .shape-2 {
    bottom: 0;
    z-index: 2;
}

@media (max-width: 767px) {
    .has-shadow.has-shapes .shape-2 {
        height: 80px;
        width: 80px;
    }
}

.has-shadow.has-shapes .shape-3 {
    bottom: calc(50% - 40px);
    z-index: 2;
    height: 81px;
    width: 81px;
}

@media (max-width: 767px) {
    .has-shadow.has-shapes .shape-3 {
        height: 50px;
        width: 50px;
    }
}

.has-shadow.shadow-right {
    padding-right: 40px;
}

.has-shadow.shadow-right::after {
    right: 0;
}

@media (max-width: 767px) {
    .has-shadow.shadow-right {
        padding-right: 25px;
        padding-bottom: 25px;
    }

    .has-shadow.shadow-right::after {
        height: calc(100% - 25px);
        width: calc(100% - 25px);
    }
}

.has-shadow.shadow-right.has-shapes .shape-1 {
    left: -30px;
}

.has-shadow.shadow-right.has-shapes .shape-2 {
    left: -40px;
}

.has-shadow.shadow-right.has-shapes .shape-3 {
    right: 0;
}

.has-shadow.shadow-left {
    padding-left: 40px;
}

.has-shadow.shadow-left::after {
    left: 0;
}

@media (max-width: 767px) {
    .has-shadow.shadow-left {
        padding-left: 25px;
        padding-bottom: 25px;
    }

    .has-shadow.shadow-left::after {
        height: calc(100% - 25px);
        width: calc(100% - 25px);
    }
}

.has-shadow.shadow-left.has-shapes .shape-1 {
    right: -30px;
    left: auto;
}

.has-shadow.shadow-left.has-shapes .shape-2 {
    right: -40px;
    top: auto;
}

.has-shadow.shadow-left.has-shapes .shape-3 {
    left: 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
}

.check-list li svg {
    position: absolute;
    left: 0;
    top: 6px;
}

.check-list-2 li,
.check-list-primary li {
    position: relative;
    /* padding-left: 35px; */
    font-size: 16px;
    font-weight: 600;
}

.check-list-2 li span,
.check-list-primary li span {
    position: absolute;
    left: 0;
    top: 6px;
    z-index: 1;
}

.check-list-2 li span svg,
.check-list-primary li span svg {
    height: 8px;
    width: 12px;
    color: #33b27c;
    position: absolute;
    top: 3px;
    left: 8px;
}

.check-list-2 li span::after,
.check-list-primary li span::after {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 0;
    top: -7px;
    background-color: #e1f4ec;
    border-radius: 50px;
    z-index: -1;
}

.check-list-primary li {
    padding-left: 30px;
    font-size: 14px;
    font-weight: 500;
}

.check-list-primary li span {
    top: 6px;
}

.check-list-primary li span svg {
    height: 7px;
    width: 11px;
    color: #fab028;
    top: 3px;
    left: 5px;
}

.check-list-primary li span::after {
    height: 20px;
    width: 20px;
    top: -4px;
    background-color: rgba(255, 49, 88, 0.15);
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

.bullet-list li::after {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    background-color: #fab028;
    border-radius: 50px;
    left: 0;
    top: 8px;
}

.bullet-list.bullet-list-dark li::after {
    background-color: #222222;
}

.tabs-navbar .nav-link.active,
.tabs-navbar .nav-link:hover {
    color: #fab028;
}

.tabs-navbar.nav-tabs .nav-item {
    margin-bottom: -1px;
    z-index: 2;
}

.tabs-navbar.nav-tabs .nav-link:hover,
.tabs-navbar.nav-tabs .active {
    border-bottom: 1px solid #fab028 !important;
}

@media (max-width: 575px) {
    .tabs-navbar.nav-tabs .nav-link:hover,
    .tabs-navbar.nav-tabs .active {
        border-bottom: 0 !important;
        padding: 0 !important;
    }
    .footer-text-1 {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .footer-text-2 a {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .tabs-navbar.nav-tabs .nav-link {
        padding: 0px !important;
        margin-bottom: 15px;
    }
}

.form-control {
    height: 50px;
    border-color: #cecece;
    border-radius: 5px;
    padding: 15px 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #888888;
}

.custom-checkbox {
    margin-top: 15px;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox
    .custom-control-input:not(:disabled):active
    ~ .custom-control-label::before {
    background-color: #fab028;
    border-color: #fab028;
    box-shadow: none;
}

.custom-checkbox
    .custom-control-input:focus:not(:checked)
    ~ .custom-control-label::before {
    border-color: #fab028;
    box-shadow: none;
}

.custom-checkbox
    .custom-control-input:disabled:checked
    ~ .custom-control-label::before {
    background-color: rgba(255, 49, 88, 0.5);
    border-color: rgba(255, 49, 88, 0.2);
    box-shadow: none;
}

.colored-icon.icon-1 {
    color: #fab028;
}

.colored-icon.icon-2 {
    color: #ffbb33;
}

.colored-icon.icon-3 {
    color: #1e858b;
}

.colored-icon.icon-4 {
    color: #497cff;
}

/*------------------------------------------------------------------
 # helper classes
-------------------------------------------------------------------*/
.font-primary {
    font-family: "Quicksand", sans-serif;
}

.rounded {
    border-radius: 5px;
}

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

.border-top {
    border-top: 2px solid var(--color-primary) !important;
}

.border-bottom {
    border-bottom: 2px solid var(--color-primary) !important;
}

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

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

@media (max-width: 1199px) {
    .border-xl-0 {
        border: 0 !important;
    }
}

@media (max-width: 991px) {
    .border-lg-0 {
        border: 0 !important;
    }
}

@media (max-width: 767px) {
    .border-md-0 {
        border: 0 !important;
    }
}

@media (max-width: 575px) {
    .border-sm-0 {
        border: 0 !important;
    }
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.text-underline {
    -webkit-text-decoration: 1px dashed;
    text-decoration: 1px dashed;
}

a.text-underline:hover {
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
}

.has-bg-brash {
    background-size: 1200px;
    background-repeat: repeat-x;
}

.no-bg-image {
    background-image: none !important;
}

.bg-brash-top {
    background-position: center top;
}

.bg-brash-bottom {
    background-position: center bottom;
}

.bg-brash-y {
    background-position: center top, center bottom;
}
.footer-text-1 {
    color: var(--color-light-gold);
}
.footer-text-1 a:hover {
    color: #fab028 !important;
}
.footer-text-2 a:hover {
    color: #fab028 !important;
    transform: translateY(-2px);
}
.bg-footer {
    background: var(--color-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .text-light-gray {
  color: #f6f6f6;
}

.bg-light-gray {
  background-color: #f6f6f6;
} */

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

a.text-primary:hover {
    color: #fd0030 !important;
}

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

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

.bg-primary {
    background-color: rgba(255, 88, 22, 0.562) !important;
}

.bg-primary-fill {
    background-color: #fab028 !important;
}

.text-secondary {
    color: rgba(255, 187, 51, 0.5) !important;
}

.bg-secondary {
    background-color: rgb(255, 225, 106) !important;
}

.text-secondary-fill {
    color: #ffbb33 !important;
}

.bg-secondary-fill {
    background-color: #ffbb33 !important;
}

.text-tertiary {
    color: rgba(41, 175, 182, 0.5) !important;
}

.bg-tertiary {
    background-color: rgba(30, 133, 139, 0.5) !important;
}

.text-tertiary-fill {
    color: #1e858b !important;
}

.bg-tertiary-fill {
    background-color: #1e858b !important;
}

.bg-black {
    background-color: #000000;
}

.text-black {
    color: #000000;
}

.text-black-100 {
    color: #111111;
}

.bg-black-100 {
    background-color: #111111;
}

.bg-black-200 {
    background-color: #222222;
}

.text-black-200 {
    color: #222222;
}

.bg-black-300 {
    background-color: #333333;
}

.text-black-300 {
    color: #333333;
}

.text-black-400 {
    color: #444444;
}

.bg-black-400 {
    background-color: #444444;
}

.text-black-500 {
    color: #555555;
}

.bg-black-500 {
    background-color: #555555;
}

.text-black-600 {
    color: #666666;
}

.bg-black-600 {
    background-color: #666666;
}

.text-black-700 {
    color: #777777;
}

.bg-black-700 {
    background-color: #777777;
}

.text-black-800 {
    color: #888888;
}

.bg-black-800 {
    background-color: #888888;
}

.text-black-900 {
    color: #999999;
}

.bg-black-900 {
    background-color: #999999;
}

a.text-black-200:hover,
a.text-black-300:hover,
a.text-black-400:hover {
    color: #fab028;
}

/*------------------------------------------------------------------
 # spacing classes
-------------------------------------------------------------------*/
.m-0 {
    margin: 0px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.p-0 {
    padding: 0px;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.m-5 {
    margin: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.ml-5 {
    margin-left: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.p-5 {
    padding: 5px;
}

.pt-5 {
    padding-top: 5px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pl-5 {
    padding-left: 5px;
}

.pr-5 {
    padding-right: 5px;
}

.m-10 {
    margin: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.p-10 {
    padding: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.pr-10 {
    padding-right: 10px;
}

.m-15 {
    margin: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.p-15 {
    padding: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pl-15 {
    padding-left: 15px;
}

.pr-15 {
    padding-right: 15px;
}

.m-20 {
    margin: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.p-20 {
    padding: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.m-25 {
    margin: 25px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.ml-25 {
    margin-left: 25px;
}

.mr-25 {
    margin-right: 25px;
}

.p-25 {
    padding: 25px;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pl-25 {
    padding-left: 25px;
}

.pr-25 {
    padding-right: 25px;
}

.m-30 {
    margin: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-30 {
    margin-right: 30px;
}

.p-30 {
    padding: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.m-35 {
    margin: 35px;
}

.mt-35 {
    margin-top: 35px;
}

.mb-35 {
    margin-bottom: 35px;
}

.ml-35 {
    margin-left: 35px;
}

.mr-35 {
    margin-right: 35px;
}

.p-35 {
    padding: 35px;
}

.pt-35 {
    padding-top: 35px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pl-35 {
    padding-left: 35px;
}

.pr-35 {
    padding-right: 35px;
}

.m-40 {
    margin: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.ml-40 {
    margin-left: 40px;
}

.mr-40 {
    margin-right: 40px;
}

.p-40 {
    padding: 40px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pl-40 {
    padding-left: 40px;
}

.pr-40 {
    padding-right: 40px;
}

.m-45 {
    margin: 45px;
}

.mt-45 {
    margin-top: 45px;
}

.mb-45 {
    margin-bottom: 45px;
}

.ml-45 {
    margin-left: 45px;
}

.mr-45 {
    margin-right: 45px;
}

.p-45 {
    padding: 45px;
}

.pt-45 {
    padding-top: 45px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pl-45 {
    padding-left: 45px;
}

.pr-45 {
    padding-right: 45px;
}

.m-50 {
    margin: 50px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-50 {
    margin-left: 50px;
}

.mr-50 {
    margin-right: 50px;
}

.p-50 {
    padding: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

.m-55 {
    margin: 55px;
}

.mt-55 {
    margin-top: 55px;
}

.mb-55 {
    margin-bottom: 55px;
}

.ml-55 {
    margin-left: 55px;
}

.mr-55 {
    margin-right: 55px;
}

.p-55 {
    padding: 55px;
}

.pt-55 {
    padding-top: 55px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pl-55 {
    padding-left: 55px;
}

.pr-55 {
    padding-right: 55px;
}

.m-60 {
    margin: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.ml-60 {
    margin-left: 60px;
}

.mr-60 {
    margin-right: 60px;
}

.p-60 {
    padding: 60px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pl-60 {
    padding-left: 60px;
}

.pr-60 {
    padding-right: 60px;
}

.m-65 {
    margin: 65px;
}

.mt-65 {
    margin-top: 65px;
}

.mb-65 {
    margin-bottom: 65px;
}

.ml-65 {
    margin-left: 65px;
}

.mr-65 {
    margin-right: 65px;
}

.p-65 {
    padding: 65px;
}

.pt-65 {
    padding-top: 65px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pl-65 {
    padding-left: 65px;
}

.pr-65 {
    padding-right: 65px;
}

.m-70 {
    margin: 70px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.ml-70 {
    margin-left: 70px;
}

.mr-70 {
    margin-right: 70px;
}

.p-70 {
    padding: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pl-70 {
    padding-left: 70px;
}

.pr-70 {
    padding-right: 70px;
}

.m-75 {
    margin: 75px;
}

.mt-75 {
    margin-top: 75px;
}

.mb-75 {
    margin-bottom: 75px;
}

.ml-75 {
    margin-left: 75px;
}

.mr-75 {
    margin-right: 75px;
}

.p-75 {
    padding: 75px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pl-75 {
    padding-left: 75px;
}

.pr-75 {
    padding-right: 75px;
}

.m-80 {
    margin: 80px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.ml-80 {
    margin-left: 80px;
}

.mr-80 {
    margin-right: 80px;
}

.p-80 {
    padding: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pl-80 {
    padding-left: 80px;
}

.pr-80 {
    padding-right: 80px;
}

.m-85 {
    margin: 85px;
}

.mt-85 {
    margin-top: 85px;
}

.mb-85 {
    margin-bottom: 85px;
}

.ml-85 {
    margin-left: 85px;
}

.mr-85 {
    margin-right: 85px;
}

.p-85 {
    padding: 85px;
}

.pt-85 {
    padding-top: 85px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pl-85 {
    padding-left: 85px;
}

.pr-85 {
    padding-right: 85px;
}

.m-90 {
    margin: 90px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.ml-90 {
    margin-left: 90px;
}

.mr-90 {
    margin-right: 90px;
}

.p-90 {
    padding: 90px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pl-90 {
    padding-left: 90px;
}

.pr-90 {
    padding-right: 90px;
}

.m-95 {
    margin: 95px;
}

.mt-95 {
    margin-top: 95px;
}

.mb-95 {
    margin-bottom: 95px;
}

.ml-95 {
    margin-left: 95px;
}

.mr-95 {
    margin-right: 95px;
}

.p-95 {
    padding: 95px;
}

.pt-95 {
    padding-top: 95px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pl-95 {
    padding-left: 95px;
}

.pr-95 {
    padding-right: 95px;
}

.m-100 {
    margin: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-100 {
    margin-left: 100px;
}

.mr-100 {
    margin-right: 100px;
}

.p-100 {
    padding: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

.m-105 {
    margin: 105px;
}

.mt-105 {
    margin-top: 105px;
}

.mb-105 {
    margin-bottom: 105px;
}

.ml-105 {
    margin-left: 105px;
}

.mr-105 {
    margin-right: 105px;
}

.p-105 {
    padding: 105px;
}

.pt-105 {
    padding-top: 105px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pl-105 {
    padding-left: 105px;
}

.pr-105 {
    padding-right: 105px;
}

.m-110 {
    margin: 110px;
}

.mt-110 {
    margin-top: 110px;
}

.mb-110 {
    margin-bottom: 110px;
}

.ml-110 {
    margin-left: 110px;
}

.mr-110 {
    margin-right: 110px;
}

.p-110 {
    padding: 110px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pl-110 {
    padding-left: 110px;
}

.pr-110 {
    padding-right: 110px;
}

.m-115 {
    margin: 115px;
}

.mt-115 {
    margin-top: 115px;
}

.mb-115 {
    margin-bottom: 115px;
}

.ml-115 {
    margin-left: 115px;
}

.mr-115 {
    margin-right: 115px;
}

.p-115 {
    padding: 115px;
}

.pt-115 {
    padding-top: 115px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pl-115 {
    padding-left: 115px;
}

.pr-115 {
    padding-right: 115px;
}

.m-120 {
    margin: 120px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.ml-120 {
    margin-left: 120px;
}

.mr-120 {
    margin-right: 120px;
}

.p-120 {
    padding: 120px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pl-120 {
    padding-left: 120px;
}

.pr-120 {
    padding-right: 120px;
}

.content a {
    color: #333333;
}

.content a:hover {
    color: #fab028;
}

.content.content-active a {
    color: #fab028;
}

.content.has-underdot-link a {
    border-bottom: 1px dashed;
}

.content.has-underdot-link a:hover {
    border-bottom-style: solid;
    text-decoration: none;
}

.btn {
    font-size: 15px;
    padding: 14px 27px;
    color: #ffffff;
    border-radius: 5px;
    border: 0;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.btn:active,
.btn:focus {
    border: 0;
    box-shadow: none !important;
    border-color: #fab028 !important;
}

.btn.btn-sm {
    padding: 10px 25px;
}

.btn:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.btn:hover .icon {
    background-color: #f3002e;
}

.btn:hover .icon svg {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}

.btn.has-icon {
    padding: 14px 20px;
    padding-right: 60px;
}

.btn.has-icon .icon {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ddb30b;
    height: 100%;
    width: 42px;
    padding: 0 8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.3s;
    overflow: hidden;
}

.btn.has-icon .icon svg {
    height: 100%;
    width: 27px;
    margin-left: -1px;
    transition: 0.3s;
}

.btn.btn-primary {
    background-color: #fab028 !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
    color: #ffffff;
    background-color: #f4c400 !important;
}

.btn.btn-primary:hover {
    box-shadow: 0px 15px 35px rgba(255, 215, 0, 0.3);
}

.btn.btn-outline-primary {
    /* color: #222222; */
    background-color: transparent;
    border: 0.094rem solid #fab028;
}

.btn.btn-outline-primary:active,
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
    color: #ffffff;
    background-color: #fab028 !important;
}

.btn.btn-outline-primary:hover {
    box-shadow: 0px 15px 35px rgba(255, 215, 0, 0.3);
}

.btn.btn-secondary {
    background-color: #9b9b9b !important;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus {
    color: #ffffff;
    background-color: #686868 !important;
}

.btn.btn-outline-secondary {
    color: #222222;
    background-color: transparent;
    border: 0.094rem solid #cecece;
}

.btn.btn-outline-secondary:active,
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus {
    color: #ffffff;
    border-color: rgba(30, 133, 139, 0.5) !important;
    background-color: #9b9b9b !important;
}

.btn.btn-link {
    color: #222222;
    background-color: transparent;
    border: 0;
}

.btn.btn-link svg {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.btn.btn-link:active,
.btn.btn-link:hover,
.btn.btn-link:focus {
    color: #fab028;
    text-decoration: none;
}

.btn.btn-link:active svg,
.btn.btn-link:hover svg,
.btn.btn-link:focus svg {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}

.btn.btn-link.text-primary:hover {
    color: #ca0026 !important;
}

/*------------------------------------------------------------------
 # header style
-------------------------------------------------------------------*/
.header-nav {
    z-index: 500;
}

.header-nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-light-gold) !important;
    padding-left: 17px !important;
    padding-right: 17px !important;
}

.header-nav .nav-item:hover .nav-link,
.header-nav .nav-item.active .nav-link {
    color: #fab028 !important;
}

@media (min-width: 1200px) {
    .navbar .dropdown-menu {
        display: block;
        height: 0;
        overflow: hidden;
        width: 220px;
        transition: 0.2s;
        /* left: 35%; */
        /* -webkit-transform: translateX(-50%);
    transform: matrix3d(2px); */
        border-radius: 0;
        background-color: transparent;
        z-index: 1;
    }

    .navbar .dropdown-menu::after {
        position: absolute;
        content: "";
        height: 0;
        width: 100%;
        /* background-color: #ffffff; */
        top: 0;
        left: 0;
        z-index: -1;
        transition: 0.3s ease-out;
        box-shadow: 0 10px 30px rgba(22, 28, 45, 0.1);
        transition-delay: padding 0.25s;
    }

    .navbar .dropdown-menu li {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .navbar .dropdown-menu li:first-child {
        margin-top: 15px;
    }

    .navbar .dropdown-menu li:last-child {
        margin-bottom: 15px;
    }

    .navbar .dropdown:hover .dropdown-menu {
        height: auto;
        overflow: visible;
    }

    .navbar .dropdown:hover .dropdown-menu::after {
        height: 100%;
    }

    .navbar .dropdown:hover .dropdown-menu li {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        transition: 0.25s;
        transition-delay: 0.2s;
    }

    .navbar .sub-dropdown {
        position: relative;
    }

    .navbar .sub-dropdown .dropdown-submenu {
        position: absolute;
        display: block;
        z-index: 2;
        width: 90%;
        left: 100%;
        top: -10px;
        height: 0;
        overflow: hidden;
        transition: 0.3s;
        background-color: transparent;
    }

    .navbar .sub-dropdown .dropdown-submenu::after {
        position: absolute;
        content: "";
        height: 0;
        width: 100%;
        background-color: #ffffff;
        top: 0;
        left: 0;
        z-index: -1;
        transition: 0.3s ease-out;
        box-shadow: 0 10px 30px rgba(22, 28, 45, 0.1);
        transition-delay: padding 0.25s;
    }

    .navbar .sub-dropdown .dropdown-submenu li {
        opacity: 0 !important;
        visibility: hidden !important;
        -webkit-transform: translateY(-5px) !important;
        transform: translateY(-5px) !important;
        transition: 0s !important;
        transition-delay: 0s !important;
    }

    .navbar .sub-dropdown .dropdown-submenu li:first-child {
        margin-top: 10px;
    }

    .navbar .sub-dropdown .dropdown-submenu li:last-child {
        margin-bottom: 10px;
    }

    .navbar .sub-dropdown:hover .dropdown-submenu {
        height: auto;
        overflow: visible;
    }

    .navbar .sub-dropdown:hover .dropdown-submenu::after {
        height: 100%;
    }

    .navbar .sub-dropdown:hover .dropdown-submenu li {
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-transform: translateY(0px) !important;
        transform: translateY(0px) !important;
        transition: 0.25s !important;
        transition-delay: 0.2s !important;
    }
}

.dropdown-menu {
    border: 0;
    margin-top: 0;
    padding: 0 8px;
}

.dropdown-submenu {
    list-style: none;
    display: none;
    padding: 0 8px;
    background-color: #ffffff;
}

.dropdown-item {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 15px;
}

.sub-dropdown.active,
.sub-dropdown.active > .dropdown-item,
.sub-dropdown:hover > .dropdown-item,
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    color: #fab028;
    background-color: rgb(255, 252, 240);
    border-radius: 5px;
}

.sub-dropdown.active > .dropdown-item {
    background-color: rgba(255, 49, 88, 0.02);
}

.dropdown-toggle::after {
    display: none;
}

@media (max-width: 1199px) {
    .dropdown-menu {
        border: 0;
        padding: 0;
        text-align: left !important;
        background: rgba(255, 49, 88, 0.05);
        border-radius: 6px;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        width: 280px;
        max-width: 100%;
        margin-right: auto;
        align-items: initial !important;
    }

    .navbar .nav-item {
        display: block;
        text-align: left;
    }

    .navbar .nav-link {
        padding: 8px 4px !important;
    }

    .navbar .dropdown-menu li:first-child {
        padding-top: 10px;
    }

    .navbar .dropdown-menu li:last-child {
        padding-bottom: 10px;
    }

    /* .navbar-collapse {
    position: fixed;
    background-color: #ffffff;
    width: calc(100% - 30px);
    height: auto;
    max-height: calc(100% - 100px);
    z-index: 9999;
    border-radius: 3px;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    padding: 5px 20px 28px;
    text-align: center;
    top: 90px;
    left: 15px;
  } */

    /* .navbar-collapse.collapsing,
  .navbar-collapse.show {
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
  }

  .navbar-collapse.show {
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .navbar-collapse.collapsing {
    opacity: 1;
  }

  .navbar-button {
    width: 280px;
    max-width: 100%;
    margin: 15px auto 0;
  }

  .dropdown-item {
    padding: 6px 18px;
  } */
}

.navbar-toggler .nav-toggle-icon {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.navbar-toggler .nav-toggle-icon .top {
    stroke-dasharray: 40 121;
}

.navbar-toggler .nav-toggle-icon .bottom {
    stroke-dasharray: 40 121;
}

.navbar-toggler .nav-toggle-icon.active {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggler .nav-toggle-icon.active .top {
    stroke-dashoffset: -68px;
}

.navbar-toggler .nav-toggle-icon.active .bottom {
    stroke-dashoffset: -68px;
}

.navbar-toggler .nav-toggle-icon .line {
    fill: none;
    transition: stroke-dasharray 0.4s, stroke-dashoffset 0.4s;
    stroke: #333333;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.banner {
    padding-bottom: 30px;
    overflow-x: hidden;
}

.banner .input-group .form-control,
.banner .input-group button {
    border-radius: 5px !important;
}

@media (max-width: 575px) {
    .banner .input-group .form-control {
        width: 100%;
        margin-bottom: 10px;
    }

    .banner .input-group button {
        margin-left: 0 !important;
        height: 50px;
        width: 100%;
    }
}

.banner .btn-outline-secondary:active,
.banner .btn-outline-secondary:hover,
.banner .btn-outline-secondary:focus {
    color: #666666 !important;
    border-color: transparent !important;
    background-color: #ffffff !important;
    box-shadow: 0px 4px 20px #dddddd;
}

.banner .banner-image {
    margin-left: 50px;
}

@media (max-width: 991px) {
    .banner .banner-image {
        margin-left: 0;
    }
}

.banner .banner-image.has-shapes .shape-sm {
    left: 42%;
    top: 40px;
}

@media (max-width: 767px) {
    .banner .banner-image.has-shapes .shape-sm {
        display: none;
    }
}

.banner .banner-image.has-shapes .shape-md {
    right: 7px;
    bottom: 30px;
}

@media (max-width: 767px) {
    .banner .banner-image.has-shapes .shape-md {
        display: none;
    }
}

.banner .banner-image.has-shapes .shape-lg {
    left: -10px;
    bottom: 20px;
}

@media (max-width: 767px) {
    .banner .banner-image.has-shapes .shape-lg {
        display: none;
    }
}

.banner .shape-1 {
    top: 15%;
    left: 60px;
}

.banner .shape-3 {
    bottom: 150px;
    left: 35px;
}

.banner .shape-5 {
    left: 32%;
    bottom: 100px;
}

.banner .shape-6 {
    bottom: 130px;
    right: 30px;
}

.banner .shape-4 {
    top: 50px;
    right: 20px;
}

.banner .shape-8 {
    top: 130px;
    left: 35%;
}

.banner .shape-7 {
    top: 80px;
    right: 40%;
}

.page-header {
    height: 255px;
    padding-bottom: 45px;
}

.page-header .shape-1 {
    left: 100px;
    top: 15px;
    height: 18px;
    width: 18px;
}

.page-header .shape-2 {
    left: 25%;
    top: 50px;
    height: 12px;
    width: 12px;
    opacity: 0.5;
}

.page-header .shape-3 {
    left: 15%;
    bottom: 40%;
}

.page-header .shape-4 {
    left: 32%;
    bottom: 45%;
    height: 22px;
    width: 22px;
}

.page-header .shape-5 {
    right: 35%;
    top: 30px;
    height: 18px;
    width: 18px;
}

.page-header .shape-6 {
    right: 8%;
    top: 50px;
}

@media (max-width: 767px) {
    .page-header .shape-6 {
        display: none;
    }
}

.page-header .shape-7 {
    top: 15px;
    right: 19%;
    height: 9px;
    width: 9px;
    opacity: 0.7;
}

.page-header .shape-8 {
    bottom: 100px;
    right: 25%;
}

.has-video-popup {
    position: relative;
}

.has-video-popup .video-play-btn {
    border: 0;
    outline: 0;
    height: 70px;
    width: 70px;
    padding: 2px 0 0 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #ffffff;
    background-color: #fab028;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    box-shadow: 0 0 25px #ffffff;
}

@media (max-width: 767px) {
    .has-video-popup .video-play-btn {
        height: 60px;
        width: 59px;
    }
}

@media (max-width: 480px) {
    .has-video-popup .video-play-btn {
        height: 45px;
        width: 44px;
    }

    .has-video-popup .video-play-btn svg {
        height: 1.4em;
        width: 1.4em;
        margin-top: -4px;
    }
}

.has-video-popup .video-play-btn:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.has-video-popup .video-play-btn::after,
.has-video-popup .video-play-btn::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 6px solid #fab028b3;
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: pulse 2s linear infinite;
    animation: pulse 2s linear infinite;
}

.has-video-popup .video-play-btn::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

#videoModal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    right: 15px;
    top: -40px;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

.brand-carousel .slick-list {
    margin-left: -17px;
}

.brand-carousel .brand-item {
    min-height: 45px;
    margin-left: 17px;
}

.brand-carousel .brand-item img {
    z-index: -1;
    transition: 0.3s ease-out;
    opacity: 0.5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.brand-carousel .brand-item:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.how-it-works-tab .nav-item:first-child .nav-link::after,
.how-it-works-tab .nav-item:first-child .nav-link::before {
    display: none;
}

.how-it-works-tab .nav-link {
    font-weight: 600;
    position: relative;
    padding-top: 0;
    min-width: 180px;
    text-align: center;
    z-index: 1;
    color: #333333;
}

@media (max-width: 991px) {
    .how-it-works-tab .nav-link {
        min-width: 160px;
        max-width: 100%;
    }
}

.how-it-works-tab .nav-link::before,
.how-it-works-tab .nav-link .circle-shape::after,
.how-it-works-tab .nav-link .circle-shape::before {
    position: absolute;
    content: "";
}

.how-it-works-tab .nav-link .circle-shape {
    position: relative;
    display: block;
    height: 32px;
    width: 32px;
    background-color: #cecece;
    border-radius: 50px;
    margin: auto;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 2;
}

.how-it-works-tab .nav-link .circle-shape::before {
    background-color: #fab028;
    height: 32px;
    width: 32px;
    top: 0;
    right: 0;
    border-radius: 50px;
    transition: 0.2s ease-out;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.how-it-works-tab .nav-link .circle-shape::after {
    background-color: #ffffff;
    height: 16px;
    width: 16px;
    top: 8px;
    left: calc(50% - 8px);
    z-index: 1;
    border-radius: 50px;
}

.how-it-works-tab .nav-link::before {
    width: 100%;
    height: 2px;
    background-color: #dddddd;
    left: calc(-50% + 16px);
    top: 16px;
    border-radius: 50px;
    transition: 0.3s;
    z-index: -1;
}

@media (max-width: 767px) {
    .how-it-works-tab .nav-link::before {
        display: none;
    }
}

.how-it-works-tab .nav-link.active {
    background-color: transparent;
    color: #fab028;
}

.how-it-works-tab .nav-link.active .circle-shape::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.how-it-works-tab .tab-pane.active .anim-to-top {
    -webkit-animation: anim-to-top 0.7s;
    animation: anim-to-top 0.7s;
}

.how-it-works-tab .tab-pane.active .anim-to-bottom {
    -webkit-animation: anim-to-bottom 0.7s;
    animation: anim-to-bottom 0.7s;
}

@-webkit-keyframes anim-to-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes anim-to-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes anim-to-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes anim-to-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.growth-rate-counter h2 {
    font-size: 32px;
}

.growth-rate-counter .block {
    width: 110px;
}

.growth-rate-counter .block-sm {
    width: 90px;
}

@media (max-width: 991px) {
    .growth-rate-counter .block,
    .growth-rate-counter .block-sm {
        width: 20% !important;
    }
}

@media (max-width: 575px) {
    .growth-rate-counter .block,
    .growth-rate-counter .block-sm {
        width: auto !important;
    }
}

.has-colored-text > div:nth-child(1) .has-text-color {
    color: #ffbb33;
}

.has-colored-text > div:nth-child(2) .has-text-color {
    color: #fb9d78;
}

.has-colored-text > div:nth-child(3) .has-text-color {
    color: #1e858b;
}

.has-colored-text > div:nth-child(4) .has-text-color {
    color: #fab028;
}

.has-colored-text > div:nth-child(5) .has-text-color {
    color: #1e858b;
}

.has-colored-text > div:nth-child(6) .has-text-color {
    color: #ffbb33;
}

.colored-icon-box .icon-box {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.colored-icon-box .icon-box::after {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    border-radius: 5px;
    z-index: -1;
    background-color: #fafafa;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.colored-icon-box .icon-box .icon {
    font-size: 55px;
    display: inline-block;
    margin-bottom: 25px;
}

.colored-icon-box .icon-box h4 {
    transition: color 0.3s;
}

.colored-icon-box .icon-box:hover {
    box-shadow: none !important;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

.colored-icon-box .icon-box:hover::after {
    height: 100%;
}

.colored-icon-box > div:nth-child(1) .icon-box .icon,
.colored-icon-box > div:nth-child(5) .icon-box .icon {
    color: #fb9d78;
}

.colored-icon-box > div:nth-child(1) .icon-box:hover::after,
.colored-icon-box > div:nth-child(5) .icon-box:hover::after {
    background-color: rgba(255, 49, 88, 0.05);
}

.colored-icon-box > div:nth-child(1) .icon-box:hover h4,
.colored-icon-box > div:nth-child(5) .icon-box:hover h4 {
    color: #fb9d78;
}

.colored-icon-box > div:nth-child(2) .icon-box .icon,
.colored-icon-box > div:nth-child(6) .icon-box .icon {
    color: #1e858b;
}

.colored-icon-box > div:nth-child(2) .icon-box:hover::after,
.colored-icon-box > div:nth-child(6) .icon-box:hover::after {
    background-color: rgba(30, 133, 139, 0.05);
}

.colored-icon-box > div:nth-child(2) .icon-box:hover h4,
.colored-icon-box > div:nth-child(6) .icon-box:hover h4 {
    color: #1e858b;
}

.colored-icon-box > div:nth-child(3) .icon-box .icon,
.colored-icon-box > div:nth-child(7) .icon-box .icon {
    color: #ffbb33;
}

.colored-icon-box > div:nth-child(3) .icon-box:hover::after,
.colored-icon-box > div:nth-child(7) .icon-box:hover::after {
    background-color: rgba(255, 187, 51, 0.1);
}

.colored-icon-box > div:nth-child(3) .icon-box:hover h4,
.colored-icon-box > div:nth-child(7) .icon-box:hover h4 {
    color: #ffbb33;
}

.colored-icon-box > div:nth-child(4) .icon-box .icon,
.colored-icon-box > div:nth-child(8) .icon-box .icon {
    color: #21435b;
}

.colored-icon-box > div:nth-child(4) .icon-box:hover::after,
.colored-icon-box > div:nth-child(8) .icon-box:hover::after {
    background-color: rgba(33, 67, 91, 0.05);
}

.colored-icon-box > div:nth-child(4) .icon-box:hover h4,
.colored-icon-box > div:nth-child(8) .icon-box:hover h4 {
    color: #21435b;
}

.image-info-section .has-shapes .shape-1 {
    bottom: 45px;
    left: 40%;
}

@media (max-width: 991px) {
    .image-info-section .has-shapes .shape-1 {
        bottom: 20px;
    }
}

.image-info-section .has-shapes .shape-2 {
    top: 50px;
    right: 20px;
}

.image-info-section .shape-3 {
    top: 210px;
    left: 70px;
}

.image-info-section .shape-4 {
    bottom: 150px;
    left: 20px;
}

@media (max-width: 767px) {
    .image-info-section .shape-4 {
        display: none;
    }
}

.image-info-section .shape-5 {
    top: 100px;
    right: 40px;
}

@media (max-width: 767px) {
    .image-info-section .shape-5 {
        display: none;
    }
}

.image-info-section .shape-6 {
    bottom: 30%;
    right: 40px;
}

.image-info-section .shape-7 {
    bottom: 100px;
    right: 20%;
}

.testimonials-section .slick-list {
    margin-left: -30px;
}

.testimonials-section .testimonials-carousel .testimonials-item {
    margin-left: 30px;
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(1)
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(2)
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(3)
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(4)
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(5)
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(6)
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(7)
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(8)
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(9)
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(10)
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(11)
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-carousel
    .testimonials-item:nth-child(12)
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(1)
    .testimonials-item
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(2)
    .testimonials-item
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(3)
    .testimonials-item
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(4)
    .testimonials-item
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(5)
    .testimonials-item
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(6)
    .testimonials-item
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(7)
    .testimonials-item
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(8)
    .testimonials-item
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(9)
    .testimonials-item
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(10)
    .testimonials-item
    .icon {
    color: rgba(255, 187, 51, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(11)
    .testimonials-item
    .icon {
    color: rgba(30, 133, 139, 0.6);
}

.testimonials-section
    .testimonials-items
    > div:nth-child(12)
    .testimonials-item
    .icon {
    color: rgba(255, 49, 88, 0.6);
}

.testimonials-section .testimonials-item {
    padding: 0;
    position: relative;
    margin-bottom: 30px;
}

.testimonials-section .testimonials-item .block {
    position: relative;
    padding: 30px;
    padding-bottom: 25px;
}

.testimonials-section .testimonials-item .block p {
    line-height: 1.5;
}

.testimonials-section .testimonials-item .block img {
    position: absolute;
    left: 20px;
    bottom: -14px;
    width: 32px;
    height: 14px;
}

.testimonials-section .testimonials-item .user-info {
    padding-left: 7px;
}

.testimonials-section .testimonials-item .user-info img {
    height: 60px;
    width: 60px;
}

.testimonials-section .testimonials-item .border-bottom {
    padding-bottom: 20px;
}

.testimonials-section .testimonials-item .border-bottom::after {
    display: none;
}

.testimonials-section .slick-dots li button:before {
    display: none;
}

.testimonials-section .slick-dots {
    bottom: -45px;
    z-index: 2;
}

.testimonials-section .slick-dots li button {
    position: relative;
    height: 25px;
    width: 25px;
}

.testimonials-section .slick-dots li button::after {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    border: 1px solid #000000;
    border-radius: 50px;
    left: calc(50% - 7px);
    top: calc(50% - 7px);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    transition: 0.3s;
}

.testimonials-section .slick-dots li.slick-active button::after {
    border-color: #fab028;
    background-color: #fab028;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.testimonials-section .shape-1 {
    top: 125px;
    left: 75px;
    z-index: 2;
}

.testimonials-section .shape-2 {
    top: 125px;
    right: 75px;
    z-index: 2;
}

.testimonials-section .shape-3 {
    left: 15px;
    top: 50%;
    height: 41px;
    width: 41px;
}

.testimonials-section .shape-4 {
    right: 15px;
    top: 45%;
    height: 41px;
    width: 41px;
}

.testimonials-section .shape-5 {
    bottom: 180px;
    left: 80px;
}

.testimonials-section .shape-6 {
    bottom: 196px;
    right: 119px;
    height: 15px;
    width: 15px;
}

.tools-use-section .inCircle-tools {
    padding: 180px 0;
}

.tools-use-section .inCircle-tools li img {
    max-width: 100%;
}

.tools-use-section .inCircle-tools .has-centered {
    z-index: 99;
}

.tools-use-section .inCircle-tools .lg {
    height: 180px;
    width: 180px;
}

.tools-use-section .inCircle-tools .md {
    height: 114px;
    width: 114px;
}

.tools-use-section .inCircle-tools .sm {
    height: 82px;
    width: 82px;
}

.tools-use-section .inCircle-tools .xs {
    height: 72px;
    width: 72px;
}

@media (max-width: 575px) {
    .tools-use-section .inCircle-tools {
        padding: 0;
        text-align: center;
        margin: 40px 0;
    }

    .tools-use-section .inCircle-tools li {
        position: static !important;
        height: 114px !important;
        width: 114px !important;
        padding: 0 15px;
        margin: 10px;
    }
}

.tools-use-section .shape-1 {
    top: 37%;
    left: 6%;
}

.tools-use-section .shape-2 {
    bottom: 125px;
    left: 75px;
}

.tools-use-section .shape-3 {
    left: 40%;
    top: 100px;
}

.tools-use-section .shape-4 {
    left: 40%;
    bottom: 120px;
}

.tools-use-section .shape-5 {
    top: 150px;
    right: 80px;
    height: 22px;
    width: 22px;
}

.tools-use-section .shape-6 {
    bottom: 100px;
    right: 119px;
    height: 61px;
    width: 61px;
}

.team-filters .btn {
    margin: 0 14px;
    color: #fab028;
    border: 2px solid rgba(255, 49, 88, 0.8);
    text-transform: capitalize;
}

.team-filters .btn:active {
    border-color: transparent !important;
}

.team-filters .btn:hover,
.team-filters .btn.active {
    color: #ffffff;
    background-color: rgba(255, 49, 88, 0.8);
}

.team-item .team-image .team-shapes {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: -webkit-transform 2s linear;
    transition: transform 2s linear;
    transition: transform 2s linear, -webkit-transform 2s linear;
}

.team-item .team-image .shape-1 {
    left: -13px;
    top: calc(50% - 13px);
    z-index: 1;
}

.team-item .team-image .shape-2 {
    right: 32px;
    top: 0;
    z-index: 1;
    height: 45px;
    width: 45px;
    z-index: 1;
}

.team-item .team-image .shape-3 {
    right: 19px;
    bottom: 20px;
    z-index: 1;
}

.team-item:hover .team-shapes {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    transition: -webkit-transform 20s linear;
    transition: transform 20s linear;
    transition: transform 20s linear, -webkit-transform 20s linear;
}

.pricing-switch label {
    cursor: text;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0 15px;
}

.pricing-switch .toggle {
    height: 34px;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

.pricing-switch .toggle .switch {
    display: inline-block;
    height: 100%;
    width: 70px;
    border: 1px solid #999999;
    border-radius: 50px;
    position: relative;
}

.pricing-switch .toggle .switch::after {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    border-radius: 50px;
    background-color: #fab028;
    left: 5px;
    top: 4px;
    z-index: 2;
    transition: 0.25s ease-in-out;
}

.pricing-switch .toggle .pricing-check:checked ~ .switch::after {
    left: 57.5%;
}

.pricing-switch .toggle .pricing-check:active ~ .switch::after {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.pricing-switch .toggle .pricing-check {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
}

@media (max-width: 575px) {
    .pricing-switch {
        text-align: center;
    }
}

.pricing-table td.active {
    position: relative;
    overflow: hidden;
}

.pricing-table td.active .recomended {
    position: absolute;
    background: #dca71c;
    color: #ffffff;
    font-weight: 600;
    padding: 0 25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: -29px;
    top: 26px;
    font-size: 10px;
    letter-spacing: 1px;
}

.pricing-table td,
.pricing-table th {
    border: 1px solid #efefef;
    padding: 20px;
    width: 20%;
}

.pricing-table td span {
    vertical-align: middle;
}

.pricing-table thead td,
.pricing-table thead th {
    border-bottom-width: 1px;
    background: #fab028;
    /* border-color: #FF5F7D; */
}

.pricing-table thead td:first-child,
.pricing-table thead th:first-child {
    border-top-color: transparent;
    border-left-color: transparent;
    border-top-left-radius: 25px;
}

.pricing-table thead td:last-child,
.pricing-table thead th:last-child {
    border-top-color: transparent;
    border-right-color: transparent;
    border-top-right-radius: 25px;
}

@media (max-width: 991px) {
    .pricing-table {
        display: block;
    }

    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
    }

    .pricing-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .pricing-table tr {
        border: 1px solid #ccc;
    }

    .pricing-table td,
    .pricing-table th {
        padding: 10px 20px;
        width: initial;
    }

    .pricing-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    .pricing-table td:before {
        position: absolute;
        top: 10px;
        left: 20px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        content: attr(data-label);
    }
}

@media (max-width: 575px) {
    .pricing-table td {
        padding-left: 40%;
    }

    .pricing-table td:before {
        width: 39%;
    }
}

.accordionFAQ .card-header {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 767px) {
    .accordionFAQ .card-header {
        padding-left: 30px;
    }
}

.accordionFAQ .card-header h4 {
    transition: 0.3s;
}

.accordionFAQ .card-header h4 svg {
    color: #a1a1a1;
}

.accordionFAQ .card-header .accordion-arrow {
    position: absolute;
    left: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: 0.3s;
    font-size: 16px;
    margin-top: 5px;
}

.accordionFAQ .card-header [aria-expanded="true"] {
    color: #fab028;
}

.accordionFAQ .card-header [aria-expanded="true"] .accordion-arrow {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    margin-top: 4px;
    color: #fab028;
}

.horizontal-accordion .shape-1 {
    top: 125px;
    left: 75px;
}

.horizontal-accordion .shape-2 {
    top: 125px;
    right: 75px;
}

.horizontal-accordion .shape-3 {
    left: 15px;
    top: 50%;
    height: 41px;
    width: 41px;
}

.horizontal-accordion .shape-4 {
    right: 15px;
    top: 45%;
    height: 41px;
    width: 41px;
}

.horizontal-accordion .shape-5 {
    bottom: 180px;
    left: 80px;
}

.horizontal-accordion .shape-6 {
    bottom: 196px;
    right: 59px;
    height: 15px;
    width: 15px;
}

.life-at-gallery .shape-1 {
    top: 150px;
    left: 7%;
    height: 20px;
    width: 20px;
}

.life-at-gallery .shape-2 {
    top: 35%;
    left: 140px;
}

.life-at-gallery .shape-3 {
    top: 55%;
    left: 100px;
}

.life-at-gallery .shape-4 {
    bottom: 150px;
    left: 130px;
    height: 20px;
    width: 20px;
}

.life-at-gallery .shape-5 {
    top: 150px;
    right: 130px;
    height: 20px;
    width: 20px;
}

.life-at-gallery .shape-6 {
    bottom: 55%;
    right: 100px;
}

.life-at-gallery .shape-7 {
    bottom: 35%;
    right: 140px;
}

.life-at-gallery .shape-8 {
    bottom: 150px;
    right: 7%;
    height: 20px;
    width: 20px;
}

.join-team-section .shape-1 {
    top: 150px;
    left: 7%;
    height: 20px;
    width: 20px;
}

.join-team-section .shape-2 {
    top: 35%;
    left: 140px;
}

.join-team-section .shape-3 {
    top: 55%;
    left: 50px;
}

.join-team-section .shape-4 {
    bottom: 150px;
    left: 130px;
    height: 20px;
    width: 20px;
}

.join-team-section .shape-5 {
    top: 150px;
    right: 15%;
    height: 20px;
    width: 20px;
}

.join-team-section .shape-6 {
    bottom: 55%;
    right: 100px;
}

.join-team-section .shape-7 {
    bottom: 35%;
    right: 140px;
}

.join-team-section .shape-8 {
    bottom: 150px;
    right: 7%;
    height: 20px;
    width: 20px;
}

.modal.fade .modal-dialog {
    -webkit-transform: translateX(0) scale(0.95);
    transform: translateX(0) scale(0.95);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0) scale(1);
    transform: translate(0) scale(1);
}

.modal-backdrop {
    background-color: #010e1d;
}

.modal-backdrop.show {
    opacity: 0.6;
}

.tabs-navbar.position-sticky {
    top: 0;
}

@media (max-width: 575px) {
    .tabs-navbar:not(.position-sticky) .nav-link,
    .tabs-navbar:not(.position-sticky) .nav-link:hover {
        padding: 10px 0 !important;
        border-radius: 5px;
    }

    .tabs-navbar:not(.position-sticky) .nav-link.active,
    .tabs-navbar:not(.position-sticky) .nav-link:hover.active {
        padding: 10px 15px !important;
        background-color: rgba(255, 49, 88, 0.1);
    }
}

.service-box .block {
    border: 1px solid #e3e3e3;
    border-bottom: 0;
    border-left: 0;
}

.service-box:nth-child(3) .block,
.service-box:nth-child(6) .block,
.service-box:nth-child(9) .block {
    border-right: 0;
}

@media (max-width: 991px) {
    .service-box:nth-child(2) .block,
    .service-box:nth-child(4) .block,
    .service-box:nth-child(8) .block,
    .service-box:nth-child(10) .block {
        border-right: 0;
    }

    .service-box:nth-child(3) .block {
        border-right: 1px solid #e3e3e3;
    }
}

@media (max-width: 767px) {
    .service-box .block {
        border: 0 !important;
    }

    .section-padding {
        padding: 60px 0px;
    }
}

.service-box .service-icon {
    height: 85px;
    width: 85px;
    line-height: 90px;
    overflow: hidden;
    font-size: 35px;
}

.service-box:nth-child(1) .service-icon {
    background-color: rgba(24, 199, 209, 0.15);
    color: #1e858b;
}

.service-box:nth-child(2) .service-icon {
    background-color: rgba(255, 187, 51, 0.15);
    color: #ffbb33;
}

.service-box:nth-child(3) .service-icon {
    background-color: rgba(255, 49, 49, 0.15);
    color: #fab028;
}

.service-box:nth-child(4) .service-icon {
    background-color: rgba(51, 145, 255, 0.15);
    color: #126dd6;
}

.service-box:nth-child(5) .service-icon {
    background-color: rgba(152, 49, 255, 0.15);
    color: #7714da;
}

.service-box:nth-child(6) .service-icon {
    background-color: rgba(27, 172, 24, 0.15);
    color: #1e858b;
}

.service-box:nth-child(7) .service-icon {
    background-color: rgba(255, 187, 51, 0.15);
    color: #ffbb33;
}

.service-box:nth-child(8) .service-icon {
    background-color: rgba(255, 49, 49, 0.15);
    color: #fab028;
}

.service-box:nth-child(9) .service-icon {
    background-color: rgba(24, 199, 209, 0.15);
    color: #ffbb33;
}

.post-category {
    line-height: 1;
}

.post-category::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 4px;
    left: -15px;
    top: 0;
    background-color: #222222;
    transition: 0.3s;
}

.post-category:hover::before {
    background-color: #fab028;
}

.post-blockquote {
    padding: 35px 80px;
    background-color: #f8f8f8;
    margin: 40px 0 30px 0;
    border-radius: 15px;
}

.post-blockquote h3 {
    line-height: 32px;
    position: relative;
    padding-left: 10px;
}

.post-blockquote h3:after,
.post-blockquote h3:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 33px;
    background-size: contain;
    background-repeat: no-repeat;
}

.post-blockquote h3::after {
    background-image: url(../images/blogs/details/quote-right.png);
    right: -33px;
    bottom: -8px;
}

@media (max-width: 480px) {
    .post-blockquote h3::after {
        display: none;
    }
}

.post-blockquote h3::before {
    background-image: url(../images/blogs/details/quote-left.png);
    left: -45px;
    top: -7px;
}

@media (max-width: 480px) {
    .post-blockquote h3::before {
        left: 0;
        top: -30px;
    }
}

@media (max-width: 575px) {
    .post-blockquote h3 {
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .post-blockquote {
        padding: 25px;
        padding-top: 50px;
    }
}

.contact-section .shape-1 {
    top: 30%;
    left: 6%;
    height: 45px;
    width: 45px;
}

.contact-section .shape-2 {
    top: 60%;
    left: 4%;
    height: 20px;
    width: 20px;
}

.contact-section .shape-3 {
    top: 30%;
    right: 6%;
    height: 45px;
    width: 45px;
}

.contact-section .shape-4 {
    bottom: 40%;
    right: 2%;
    height: 20px;
    width: 20px;
}

footer {
    padding-top: 110px;
}

footer .shape-1 {
    top: 120px;
    left: 100px;
}

footer .shape-2 {
    top: 35%;
    left: 20%;
}

@media (max-width: 767px) {
    footer .shape-2 {
        display: none;
    }
}

footer .shape-3 {
    bottom: 130px;
    left: 20px;
}

footer .shape-4 {
    right: 80px;
    top: 120px;
}

footer .shape-5 {
    right: 20%;
    top: 35%;
}

footer .shape-6 {
    right: 15px;
    bottom: 100px;
}

footer .form-control {
    border-right: 0;
    border-color: #eaeaea;
    background-color: #eaeaea;
}

footer .form-control:focus {
    background-color: #eaeaea;
}

footer .needs-validation .btn {
    padding-left: 25px;
    padding-right: 25px;
}

footer .needs-validation .btn:hover {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

.footer-bottom .block {
    padding: 25px 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #222222;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #fab028;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.scroll-to-top-btn {
    bottom: 25px;
    right: 40px;
    z-index: 9999;
    padding: 3px;
    border-radius: 2px;
    transition: 0.3s ease-out;
}

@media (max-width: 575px) {
    .scroll-to-top-btn {
        right: 15px;
    }

    .scroll-to-top-btn svg {
        height: 25px;
        width: 25px;
    }
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    bottom: 33px;
}

@media (max-width: 575px) {
    .scroll-to-top-btn.show {
        bottom: 15px;
    }
}

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

.w-40 {
    max-width: 40px;
}

.about-img {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.timetable {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.timetable h3 {
    border-left: 4px solid transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.timetable h3 {
    border-left: 4px solid #fab028;
    padding-right: 10px;
    text-indent: 15px;
}

.timetable {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.coin-bg {
    position: absolute;
    top: 20px;
    bottom: auto;
    left: 0px;
    right: auto;
    width: 400px;
    height: 539px;
    content: "";
    background: url("../images/about/coin.png") no-repeat;
    z-index: 9999;
}

@-webkit-keyframes shine {
    0% {
        background-position: -5000px 0;
    }
    to {
        background-position: 5000px 0;
    }
}
@keyframes shine {
    0% {
        background-position: -5000px 0;
    }
    to {
        background-position: 5000px 0;
    }
}

.rotate-coin {
    position: absolute;
    top: 20px;
    bottom: auto;
    left: -260px;
    right: auto;
    width: 480px;
    height: 480px;
    content: "";
    background: url("../images/about/rotate.png") no-repeat;
    z-index: 9999;
    animation: rotation 15s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@media (max-width: 1200px) {
    .coin-bg,
    .rotate-coin {
        display: none;
    }
}

.t-cell {
    border: 1px solid #fab028 !important;
    text-align: center;
    vertical-align: middle;
}

/* .cc {
  padding: 4px !important;
  border: 1px solid #fab028 !important;
  vertical-align: middle !important;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
} */

.cp {
    font-size: 13px !important;
    display: block;
    width: 100%;
}

.ch {
    border: 1px solid #fab028 !important;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.cc-c {
    padding: 1px !important;
    border: 1px solid #fab028 !important;
    vertical-align: middle !important;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.ch-c {
    padding: 1px !important;
    border: 1px solid #fab028 !important;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
}

.red {
    color: #d65f78;
}

.yellow {
    color: #fecd04;
}

.green {
    color: #37a148;
}

a:hover {
    text-decoration: none;
}

.chart-links a {
    color: black;
}

@media (max-width: 799px) {
    /* .cc {
    padding: 4px !important;
    border: 1px solid #fab028 !important;
    vertical-align: middle !important;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  } */

    .ch {
        border: 1px solid #fab028 !important;
        text-align: center;
        font-size: 10px;
        font-weight: bold;
    }

    .cp {
        font-size: 10px;
        display: block;
        width: 100%;
    }
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;

    src: url("fonts/slick.eot");
    src: url("fonts/slickd41d.eot?#iefix") format("embedded-opentype"),
        url("fonts/slick.woff") format("woff"),
        url("fonts/slick.ttf") format("truetype"),
        url("fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;

    opacity: 0.75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}
[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}
.slick-prev:before {
    content: "â†";
}
[dir="rtl"] .slick-prev:before {
    content: "â†’";
}

.slick-next {
    right: -25px;
}
[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}
.slick-next:before {
    content: "â†’";
}
[dir="rtl"] .slick-next:before {
    content: "â†";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: "â€¢";
    text-align: center;

    opacity: 0.25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

@keyframes float-rotate {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.shape-1 {
    position: absolute;
    animation: float-rotate 3s ease-in-out infinite;
}

.shape-6 {
    position: absolute;
    animation: float-rotate 3s ease-in-out infinite;
}

@keyframes float-rotate-2 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.shape-2 {
    position: absolute;
    animation: float-rotate-2 3s ease-in-out infinite;
}

.shape-5 {
    position: absolute;
    animation: float-rotate-2 3s ease-in-out infinite;
}

/* Charts Css */

.charts-container {
    background: linear-gradient(
        135deg,
        var(--color-background) 0%,
        var(--color-surface) 100%
    );
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.charts-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%
    );
    animation: rotate 20s linear infinite;
}

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

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
}

.chart-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
    border-radius: 2px;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 10px;
}

.chart-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 17px 10px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.chart-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.chart-card:hover::before {
    left: 100%;
}

.chart-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.chart-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

.chart-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gray-light);
    transition: color 0.3s ease;
    letter-spacing: 1px;
    position: relative;
}

.chart-card:hover .chart-title {
    color: var(--color-primary);
}

.chart-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-light-gold)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.chart-card:hover .chart-icon {
    transform: scale(1.1) rotate(5deg);
}

.time-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Special styling for different time periods */
.morning-card {
    border-left: 4px solid var(--color-success);
    border-right: 4px solid var(--color-success);
}
.day-card {
    border-left: 4px solid var(--color-primary);
    border-right: 4px solid var(--color-primary);
}
.night-card {
    border-left: 4px solid var(--color-danger);
    border-right: 4px solid var(--color-danger);
}

/* Responsive design */
@media (max-width: 768px) {
    .charts-container {
        padding: 40px 15px;
    }

    .charts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .chart-card {
        padding: 25px 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .chart-section {
        margin-bottom: 60px;
    }
}

/* Loading animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chart-card {
    animation: fadeInUp 0.6s ease forwards;
}

.chart-card:nth-child(even) {
    animation-delay: 0.1s;
}

.chart-card:nth-child(3n) {
    animation-delay: 0.2s;
}

/* Jodi charts css */

.lottery-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.header h1 {
    color: var(--color-primary);
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 8px;
}

.header p {
    color: var(--color-gray-light);
    font-size: 0.95em;
    opacity: 0.7;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    background: var(--color-background);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lottery-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.lottery-table th {
    background: linear-gradient(135deg, var(--color-primary));
    color: var(--color-background);
    font-weight: bold;
    font-size: 1.1em;
    padding: 15px 10px;
    text-align: center;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lottery-table th:first-child {
    border-top-left-radius: 15px;
}

.lottery-table th:last-child {
    border-top-right-radius: 15px;
}

.lottery-table td {
    padding: 12px 10px;
    text-align: center;
    font-weight: 500;
    font-size: 1em;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: background-color 0.3s ease;
    color: var(--color-gray-light);
}

.lottery-table tbody tr {
    background: var(--color-surface);
}

.lottery-table tbody tr:nth-child(even) {
    background: rgba(17, 43, 80, 0.7);
}

/* .lottery-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
} */

/* Number styling - Clean and simple */
.lottery-table td {
    font-weight: 500;
    color: var(--color-primary);
}

/* Special styling for unavailable numbers */
.unavailable {
    color: var(--color-danger) !important;
    font-weight: 600;
}

/* Row number styling */
.row-number {
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: bold;
    border-right: 2px solid var(--color-primary);
}

/* Remove box styling and animation */
@media (max-width: 768px) {
    .lottery-container {
        padding: 20px;
        margin: 10px;
    }

    .header h1 {
        font-size: 1.5em;
    }

    .lottery-table th,
    .lottery-table td {
        padding: 8px 6px;
        font-size: 0.9em;
    }
}

/* Animation for loading effect */
.lottery-table tbody tr {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.lottery-table tbody tr:nth-child(1) {
    animation-delay: 0.1s;
}
.lottery-table tbody tr:nth-child(2) {
    animation-delay: 0.15s;
}
.lottery-table tbody tr:nth-child(3) {
    animation-delay: 0.2s;
}
.lottery-table tbody tr:nth-child(4) {
    animation-delay: 0.25s;
}
.lottery-table tbody tr:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-available {
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-light-gold)
    );
}

.legend-unavailable {
    background: linear-gradient(135deg, var(--color-danger), #ff7b8a);
}

.pana-table-custom tbody td span:nth-child(2) {
    font-weight: 700;
    font-size: 20px;
}

.j00,
.j05,
.j11,
.j16,
.j22,
.j27,
.j33,
.j38,
.j44,
.j49,
.j50,
.j55,
.j61,
.j66,
.j72,
.j77,
.j83,
.j88,
.j94,
.j99,
.jred {
    color: var(--color-danger) !important;
}

.dropdown-menu.show {
    display: block;
    height: 100% !important;
}

@media (min-width: 1200px) and (max-width: 1420px) {
    .navbar .dropdown-menu {
        display: block;
        height: 0;
        overflow: hidden;
        width: 220px;
        transition: 0.2s;
        left: -65%;
        right: 0;
        border-radius: 0;
        background-color: transparent;
        z-index: 1;
    }
}

.home-banner {
    /* background: linear-gradient(135deg, #0a2345 60%, #ffffff 100%); */
    background: linear-gradient(135deg, #0a2345 50%, #140b50 100%);
}

.home-banner .banner-content h6 {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 7px;
}

.home-banner .banner-content h1 {
    font-size: 55px;
    margin-bottom: 15px;
}

.home-banner .banner-content p {
    font-weight: 400;
    margin-bottom: 20px;
}

.home-banner .banner-content .cards-section .card {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
}

.home-banner .banner-content .cards-section .card h5 {
    color: var(--color-primary);
}

.home-banner .banner-content .cards-section .card p {
    font-weight: 500;
    font-size: 14px;
    color: #999;
}

.home-banner .banner-content .chart-buttons a:hover i {
    transform: rotate(-35deg);
}

.home-banner .banner-content .chart-buttons a i {
    transition: all 0.3s ease;
}

.banner-img {
    height: 570px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner-img {
        height: 400px;
        object-fit: cover;
    }
}

.sara-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(7px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.sara-modal-content {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.6s ease both;
}

.sara-close {
    position: absolute;
    top: 13px;
    right: 20px;
}

.sara-close:hover {
    color: var(--color-primary);
}

.sara-modal-body h2 {
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.sara-modal-body h2 span {
    color: var(--color-primary);
}

.sara-modal-body p {
    color: black;
    margin-bottom: 25px;
}

.sara-btn {
    width: fit-content;
    color: var(--color-primary);
}

.sara-btn:hover {
    color: var(--color-background);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.button-56 {
    align-items: center;
    background-color: #fee6e3;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    box-sizing: border-box;
    color: var(--color-gray-dark);
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 600;
    height: 52px;
    justify-content: center;
    max-width: 100%;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    overflow: hidden;
    transition: transform 0.2s ease-out;
    animation: pulseButton 2.5s ease-in-out infinite;
}

.button-56::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-secondary)
    );
    z-index: -1;
    opacity: 0.25;
}

.button-56::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    opacity: 0;
    animation: borderWave 2s ease-in-out infinite;
}

.button-56 span::before,
.button-56 span::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    opacity: 0;
    animation: borderWave 2s ease-in-out infinite;
}

.button-56 span::before {
    animation-delay: 0.4s;
}
.button-56 span::after {
    animation-delay: 0.8s;
}

@keyframes pulseButton {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes borderWave {
    0% {
        opacity: 0.5;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 154, 50, 0.7);
    }
    70% {
        opacity: 0;
        transform: scale(1.7);
        box-shadow: 0 0 30px 15px rgba(225, 154, 50, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.button-56:active {
    background-color: #ffdeda;
    outline: 0;
}

@media (min-width: 768px) {
    .button-56 {
        padding: 0 40px;
    }
}

.arrow2 {
    rotate: -20deg;
}

.arrow1 {
    rotate: 14deg;
}

.arrow2 {
    height: 70px;
    width: 70px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    animation: imgLoop2 0.5s ease-in-out infinite alternate;
}

@keyframes imgLoop2 {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(10px);
    }
}
.arrow1 {
    height: 70px;
    width: 70px;
    width: 70px;
    object-fit: contain;
    transform: scaleX(-1);
    animation: imgLoop 0.5s ease-in-out infinite alternate;
}

@keyframes imgLoop {
    0% {
        transform: scaleX(-1) translateX(0);
    }
    100% {
        transform: scaleX(-1) translateX(10px);;
    }
}
