/* ===================================
    Veredictia - Startup
====================================== */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
/* variable */
:root {
    --base-color: #ff6b6b;
    --alt-font: "Manrope", sans-serif;
    --primary-font: "Rubik", sans-serif;
    --dark-gray: #252840;
    --medium-gray: #868d98;
}
/* reset */
body {
    font-size: 17px;
    line-height: 32px;
}
a {
    color: #868d98;
}
b,
strong {
    font-weight: 600;
}
::-webkit-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
}
::-moz-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity: 1;
}
/* bg color */
.bg-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
}
.bg-gradient-black-green {
    background-image: linear-gradient(
        to right top,
        #1f2021,
        #1b1d1c,
        #1b1d1c,
        #222523,
        #333c37
    );
}
/* text color */
.text-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(135deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* button gradient */
.btn-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(135deg, #ff6b6b, #ffa500, #ff6b6b);
    background-size: 200% auto;
    color: var(--white);
}
.btn-gradient-coral-orange {
    background-image: linear-gradient(135deg, #ff6b6b, #ffa500, #ff6b6b);
    background-size: 200% auto;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 12px 24px !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
}
.btn-gradient-coral-orange:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    color: var(--white) !important;
}
/* btn */
.btn {
    font-weight: 500;
    text-transform: inherit;
}
.btn.btn-extra-large {
    font-size: 22px;
}
.btn.btn-large {
    font-size: 17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 13px;
}
.btn.btn-large .btn-icon i {
    top: 1px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-link-gradient {
    padding: 0 0 3px;
}
/* header */
header .navbar-brand img {
    max-height: 30px;
}
.navbar .navbar-nav .nav-link {
    font-size: 17px;
    letter-spacing: 0.5px;
    padding: 10px 22px;
}
.push-menu .close-menu {
    right: 30px;
    top: 30px;
}
/* newsletter style  */
.newsletter-style-02 input {
    font-size: 14px;
}
/* footer */
footer ul li {
    margin-bottom: 2px;
}
.web-login-button {
    margin: 12px 0;
}
.web-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
footer {
    padding-top: 60px;
    padding-bottom: 0 !important;
}
@media (min-width: 992px) {
    .web-cta-buttons {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    footer {
        padding-top: 50px;
        padding-bottom: 0 !important;
    }
}
@media (max-width: 767px) {
    footer {
        padding-top: 40px;
        padding-bottom: 0 !important;
    }
}
.navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: #1e293b;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item.active {
    background-image: linear-gradient(135deg, #ff6b6b, #ffa500, #ff6b6b);
    color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
}
.navbar .dropdown-menu .dropdown-item:active {
    color: #ffffff;
}
/* media query responsive */
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 17px;
    }
}
