:root {
    --c-primary: #00B1FF;
    --c-primary-hover: #0091ff;
}

body {
    font-family: "Poppins", sans-serif;
    color: black;
}

.nav-item a {
    color: black;
}

.nav-item:hover a {
    color: var(--c-primary) !important;
}

.navbar {
    --bs-navbar-active-color: var(--c-primary);
}

#footer a:hover,
#contact a:hover,
#privacy a:hover {
    color: var(--c-primary) !important;
}

#footer a,
#contact a,
#privacy a {
    transition: color 0.2s ease !important;
}

.navbar-brand {
    transition: all 0.3s ease !important;
}

.navbar-brand:hover {
    transform: scale(1.03) !important;
}

.form-control,
.form-select {
    border: none !important;
    border-bottom: 1px solid #adb5bd !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border: none !important;
    border-bottom: 1px solid #000 !important;
    box-shadow: none !important;
    outline: none !important;
}

.form-label {
    font-weight: 500;
    font-size: 11pt;
    margin-bottom: 2px;
}

.btn-primary {
    --bs-btn-bg: var(--c-primary);
    --bs-btn-border-color: var(--c-primary);
    --bs-btn-hover-bg: var(--c-primary-hover);
    --bs-btn-hover-border-color: var(--c-primary-hover);
    --bs-btn-active-bg: var(--c-primary-hover);
    --bs-btn-active-border-color: var(--c-primary-hover);
}

.btn {
    padding: 12px 54px !important;
}

#contact .small {
    font-size: 12px;
}

.text-muted {
    color: #8b8b9c !important;
}

/* My custom classes have a prefix "c-" */

.c-offset-left-3 {
    margin-left: -1rem;
    /* equivalent to ms-n3 */
}


.c-hero-link {
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-underline-offset: 8px;
    display: inline-block;
}

.c-hero-link span {
    /* Solid black text over the gradient */
    -webkit-text-fill-color: black;
    transition: -webkit-text-fill-color 0.3s ease;
}

.c-gradient-purple {
    background: linear-gradient(90deg, #9D00FF, #00B1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.c-gradient-cyan {
    background: linear-gradient(90deg, #0089FF, #00FFE2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.c-hero-link:hover span {
    /* Fades the black out to reveal gradient */
    -webkit-text-fill-color: transparent;
}


.c-card {
    height: 500px;
    text-decoration: none;
    background-color: black;
    transition: box-shadow .3s, transform .3s;
}

.c-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 16px rgba(0, 0, 0, .16);
}

.c-font-roboto-slab {
    font-family: "Roboto Slab", serif;
}

.c-trippp-card {
    background: linear-gradient(135deg, #92b3ff, #c4e4ff);
}

.c-trippp-card img {
    max-height: 450px;
    max-width: 200%;
    position: relative;
    right: 130px;
}

.c-spinnin-card {
    background: linear-gradient(135deg, rgb(187, 228, 255), rgb(177, 231, 196));
}

.c-citi-card {
    background: linear-gradient(135deg, rgb(160, 176, 238), rgb(201, 215, 235));
}

.c-citi-card img {
    border-radius: 24px !important;
}

.c-card-video {
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent !important;
    transition: color .3s, box-shadow .3s, transform .3s;
}

.c-card-video:hover {
    color: white !important;
}

@media (max-width: 992px) {

    .c-card-video {
        color: white !important;
    }
}

.c-defected-card {
    background-image: url("../images/defected/defected-bg-video.gif");
}

.c-daily-ui-card {
    background: linear-gradient(135deg, rgb(6, 20, 51), rgb(29, 15, 46));
}

.c-swiss-card {
    background: linear-gradient(135deg, rgb(214, 25, 93), rgb(81, 9, 13));
}

.c-explore-card {
    background-image: url("../images/northface/explore-bg-video.gif");
}

.c-piano-card {
    background: linear-gradient(135deg, #4a75d0, #5852ca);
}

.c-weather-card {
    background: linear-gradient(135deg, rgb(67, 43, 192), rgb(85, 200, 255));
}

.c-weather-card img {
    transform: translateY(-13%);
}

.c-number-wrapper-1,
.c-number-wrapper-2,
.c-number-wrapper-3 {
    height: 300px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.c-number-wrapper-1 {
    background-image: url("../images/process-1.png");
}

.c-number-wrapper-2 {
    background-image: url("../images/process-2.png");
}

.c-number-wrapper-3 {
    background-image: url("../images/process-3.png");
}

@media (max-width: 768px) {

    .c-number-wrapper-1,
    .c-number-wrapper-2,
    .c-number-wrapper-3 {
        height: 200px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .tilt-effect {
        transition: transform 0.1s ease-out;
        transform-style: preserve-3d;
        will-change: transform;
    }
}