/* ===================================
    Crafto - Marketing
====================================== */
/* font */
/* Proxima Nova Condensed Regular */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Regular Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Proxima Nova Condensed Semibold */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* Proxima Nova Condensed Semibold Italic */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Semibold Italic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

/* Proxima Nova Condensed Bold */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Bold.otf') format('opentype');
    font-weight: 700;
}

/* Proxima Nova Condensed Bold Italic */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Bold Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Proxima Nova Condensed Black Italic.otf */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Black Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Proxima Nova Extra Condensed Bold Italic */
@font-face {
    font-family: 'Proxima Nova Condensed';
    src: url('/fonts/Proxima Nova Condensed Extrabold Italic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

.font-proxima-regular {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.font-proxima-regular-italic {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
}

.font-proxima-semibold {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal;
}

.font-proxima-semibold-italic {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 600 !important;
    font-style: italic !important;
}

.font-proxima-bold {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}

.font-proxima-bold-italic {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
}

.font-proxima-black-italic {
    font-family: 'Proxima Nova Condensed', sans-serif;
    font-weight: 900 !important;
    font-style: italic !important;
}

.font-proxima-extrabold-italic {
    font-family: 'Proxima Nova Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-style: italic !important;
}

/* variable */
:root {
    --alt-font: 'Proxima Nova Condensed', sans-serif;
    --primary-font: 'Proxima Nova Condensed', sans-serif;
    --base-color: #f96f4a;
    --dark-gray: #1f242e;
    --yellow: #ffeb7d;
    --medium-gray: #717580;
    --aluminium-grey: #6e727c;
}
/* custom cursor */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor .circle-cursor-outer {
        border: 1px solid transparent;
    }
    .custom-cursor .circle-cursor-inner {
        width: 10px;
        height: 10px;
        background: #1f242e;
    }
}
body {
    line-height: 30px;
    font-style: italic;
    background: #0f0f0f;
}
p {
    font-style: normal !important;
}
button {
    font-style: italic;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 18px;
}
header .navbar-brand img {
    max-height: 27px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    width: 260px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu {
    width: 360px;
}
.navbar-toggler-line {
    background: white;
}
.header-icon .header-social-icon a {
    font-size: 17px;
    padding-left: 23px;
}
/* bg color */
.custom-bg-magenta {
    background-color: #BF00FF !important;
}
.bg-light-red-grey {
    background-color: #fff1ee;
}
.bg-base-color-transparent {
    background-color: rgba(255, 122, 86,.9);
}
/* bg gradient */
.bg-gradient-black-green {
    background-image: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,242,239,1) 80%, rgba(255,242,239,1) 100%);
}
.bg-jungle-green {
    background-color: #2ebb79;
}
/* slider shadow */
.slider-shadow-left-right {
    mask-image:linear-gradient(to right, transparent 10%, #000000 25%, #000000 75%, transparent 90%);
    -webkit-mask-image:linear-gradient(to right, transparent 10%, #000000 25%, #000000 75%, transparent 90%);
}
/* text color */
.text-jungle-green {
    color: #2ebb79;
}
.custom-text-magenta {
    color: #BF00FF;
}
.custom-text-gray {
    color: #575757;
}
/* btn */
.btn-transparent {
    background-color: transparent;
    border: 2px solid #BF00FF;
    border-radius: 15px;
}
.btn-custom-magenta {
    background-color: #BF00FF;
    border-radius: 15px;
}
.btn-custom-magenta:hover {
    box-shadow: 0 0 20px 6px rgba(191, 0, 255, 0.8);
    background: #BF00FF;
}
.slide-hover-magenta:hover {
    box-shadow: 0 0 20px 6px rgba(191, 0, 255, 0.5);
}
.custom-slide-home {
    background: linear-gradient(to bottom, #2B0930, #220B2A);
}
.custom-btn-dark {
    background-color: black;
    color: white;
    border-radius: 15px;
    padding: 12px 70px !important;
    border: 3px solid transparent;
}
@media (max-width: 576px) {
    .custom-btn-dark {
        padding: 12px 60px !important;
    }
}


.custom-btn-dark:hover {
    background-color: white;
    color: black;
    border: 3px solid black;
}

.btn {
    text-transform: none;
    letter-spacing: 0px;
}
.btn.btn-very-small {
    padding: 9px 18px;
}
.btn.btn-small {
    padding: 11px 22px;
}
.btn.btn-medium {
    padding: 12px 22px 13px;
}
.btn.btn-large-navbar {
    font-size: 1.5rem;
    padding: 13px 26px;
}
.btn.btn-large {
    padding: 20px 70px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 45px;
}
@media (max-width: 1200px) {
    .btn.btn-large {
        /*padding: 18px 70px;*/
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .btn.btn-large {
        padding: 15px 50px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .btn.btn-large {
        padding: 12px 30px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .btn.btn-large {
        padding: 10px 19px;
        font-size: 20px;
    }
}
.btn.btn-larger {
    padding: 18px 70px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 40px;
}
@media (max-width: 1200px) {
    .btn.btn-larger {
        padding: 16px 70px;
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .btn.btn-larger {
        padding: 13px 50px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .btn.btn-larger {
        padding: 10px 35px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .btn.btn-larger {
        padding: 8px 25px;
        font-size: 18px;
    }
}
.btn.btn-larger-footer {
    padding: 14px 38px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 28px;
}

@media (max-width: 1200px) {
    .btn.btn-larger-footer {
        padding: 12px 25px;
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .btn.btn-larger-footer {
        padding: 10px 20px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .btn.btn-larger-footer {
        padding: 8px 20px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .btn.btn-larger-footer {
        padding: 6px 20px;
        font-size: 16px;
    }
}
.btn.btn-extra-large {
    padding: 16px 32px 18px;
    word-break: normal;
}
.btn.btn-extra-large .btn-icon i {
    top: 0;
}
.btn-icon i {
    top: 1px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-hover-animation-switch .btn-icon {
    margin-left: 6px;
}
/* portfolio filter */
.portfolio-simple .portfolio-box:hover .portfolio-image img {
    opacity: 1;
}
/* footer */
footer .elements-social li {
    margin: 0 10px 0 0;
}
footer .footer-logo img {
    max-height: 27px;
}
footer {
    padding-bottom: 30px;
}
footer {
    font-size: 15px;
    line-height: 30px;
}
/* newsletter style 02  */
.newsletter-style-02 input {
   padding-right: 90px !important;
}
/* tabs style 08 */
.tab-style-08 ul .nav-item .nav-link.active,
.tab-style-08 ul .nav-item .nav-link.show,
.tab-style-08 ul .nav-item .nav-link:hover {
    color: var(--dark-gray);
}
/* team style 01 */
.team-style-01 figure figcaption .social-icon a {
    margin: 0 5px;
}
/* process step style 05 */
.process-step-style-05 .progress-step-separator {
    bottom: -10px;
    height: 100%;
    z-index: -1;
}
/* select */
.select:after {
    right: 25px;
}
/* media query responsive */
@media (max-width: 1199px) {
    .newsletter-style-02 input {
        padding-left: 15px;
        padding-right: 100px;
    }
    .nav-link {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    .elements-social .large-icon li {
        margin: 0 5px;
    }
    .lg-overflow-hidden {
        overflow: hidden;
    }
    .lg-mt-45 {
        margin-top: 45% !important;
    }
}
@media (max-width: 991px) {
    .header-icon .icon {
        top: -2px;
    }
    .elements-social.social-icon-style-04 .large-icon a {
        font-size: 21px;
        width: 50px;
        height: 50px;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 18px;
    }
    .md-right-minus-250px{
        margin-right: -100px !important;
    }
    .tab-style-08 ul .nav-item .nav-link {
        padding: 25px 25px;
    }
}
@media (max-width: 767px) {
    .elements-social ul li {
        margin-bottom: 0;
    }

}

/* custom  */
i {
    color: white;
}
.border-magenta {
    border-color: #BF00FF !important;
}
.border-color-transparent-white-very-light {
    border-color: rgba(255, 255, 255, 0.2) !important;
}
.border-custom-magenta-transparent {
    border-color: rgba(69, 10, 88, 0.15) !important;
}
.custom-magenta-shadow {
    box-shadow:
        0 0 30px rgba(191, 0, 255, 0.7),
        0 0 50px rgba(191, 0, 255, 0.5),
        0 0 0 rgba(191, 0, 255, 0.3);
    border-radius: 25px;
}
.rounded {
    border-radius: 30px !important;
}
.rounded-medium {
    border-radius: 15px !important;
}
@media (min-width: 768px) {
    .border-md-end {
        border-right: 1px solid var(--dark-gray);
    }
}
@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid var(--dark-gray);
    }
}
.swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    background-color: white;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: white;
}
.text-black .swiper-pagination-bullet {
    background-color: black;
}
@media (min-width: 1400px) {
    .form-container-wide {
        max-width: 1400px;
    }
}
.font-proxima-regular-italic.anime-complete.text-white {
    opacity: 0.8 !important;
}

.custom-ol {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.custom-ol li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
}

.custom-ol li:not(:last-child) {
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.custom-ol li::before {
    counter-increment: list-counter;
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: #ff00ff;
    font-weight: bold;
    top: 0;
}

@media (max-width: 1100px) {
    header nav .btn.btn-large-navbar {
        display: none !important;
    }
}

.fs-36 {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

/* Desktop / Default */
.fs-100 { font-size: 100px; line-height: 110px; }
.fs-90  { font-size: 90px;  line-height: 100px; }
.fs-80 { font-size: 80px; line-height: 90px; }
.fs-70  { font-size: 70px;  line-height: 80px; }
.fs-65  { font-size: 65px;  line-height: 72px; }
.fs-60  { font-size: 60px; line-height: 68px; }
.fs-50 { font-size: 50px; line-height: 58px; }
.fs-45 { font-size: 45px; line-height: 52px; }
.fs-40 { font-size: 40px; line-height: 48px; }
.fs-36  { font-size: 36px;  line-height: 44px; }
.fs-32 { font-size: 32px; line-height: 40px; }
.fs-30  { font-size: 30px;  line-height: 38px; }
.fs-28 { font-size: 28px; line-height: 36px; }
.fs-24 { font-size: 24px; line-height: 32px; }
.fs-20  { font-size: 20px;  line-height: 28px; }
.fs-16  { font-size: 16px;  line-height: 24px; }

/* Tablet ≤ 992px */
@media (max-width: 992px) {
    .fs-100 { font-size: 80px; line-height: 90px; }
    .fs-90  { font-size: 72px; line-height: 82px; }
    .fs-80 { font-size: 64px; line-height: 72px; }
    .fs-70  { font-size: 56px; line-height: 64px; }
    .fs-65  { font-size: 50px; line-height: 58px; }
    .fs-60  { font-size: 46px; line-height: 54px; }
    .fs-50 { font-size: 40px; line-height: 48px; }
    .fs-45 { font-size: 36px; line-height: 44px; }
    .fs-40 { font-size: 32px; line-height: 40px; }
    .fs-36  { font-size: 28px; line-height: 36px; }
    .fs-32 { font-size: 26px; line-height: 34px; }
    .fs-30  { font-size: 22px; line-height: 30px; }
    .fs-28 { font-size: 22px; line-height: 30px; }
    .fs-24 { font-size: 20px; line-height: 28px; }
    .fs-20  { font-size: 18px; line-height: 26px; }
    .fs-16  { font-size: 14px; line-height: 22px; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
    .fs-100 { font-size: 64px; line-height: 74px; }
    .fs-90  { font-size: 58px; line-height: 68px; }
    .fs-80 { font-size: 50px; line-height: 58px; }
    .fs-70  { font-size: 44px; line-height: 52px; }
    .fs-65  { font-size: 40px; line-height: 48px; }
    .fs-60  { font-size: 36px; line-height: 44px; }
    .fs-50 { font-size: 32px; line-height: 40px; }
    .fs-45 { font-size: 32px; line-height: 40px; }
    .fs-40 { font-size: 28px; line-height: 36px; }
    .fs-36  { font-size: 24px; line-height: 32px; }
    .fs-32 { font-size: 22px; line-height: 30px; }
    .fs-30  { font-size: 18px; line-height: 26px; }
    .fs-28 { font-size: 18px; line-height: 26px; }
    .fs-24 { font-size: 16px; line-height: 24px; }
    .fs-20  { font-size: 16px; line-height: 24px; }
    .fs-16  { font-size: 14px; line-height: 22px; }
}

/* Small Mobile ≤ 576px */
@media (max-width: 576px) {
    .fs-100 { font-size: 45px; line-height: 62px; }
    .fs-90  { font-size: 46px; line-height: 54px; }
    .fs-80 { font-size: 42px; line-height: 50px; }
    .fs-70  { font-size: 30px; line-height: 40px; }
    .fs-65  { font-size: 32px; line-height: 40px; }
    .fs-60  { font-size: 25px; line-height: 36px; }
    .fs-50 { font-size: 24px; line-height: 30px; }
    .fs-45 { font-size: 24px; line-height: 32px; }
    .fs-40 { font-size: 20px; line-height: 28px; }
    .fs-36  { font-size: 20px; line-height: 28px; }
    .fs-32 { font-size: 18px; line-height: 26px; }
    .fs-30  { font-size: 15px; line-height: 24px; }
    .fs-28 { font-size: 15px; line-height: 24px; }
    .fs-24 { font-size: 14px; line-height: 22px; }
    .fs-20  { font-size: 13px; line-height: 20px; }
}

.custom-padding {
    padding: 4% !important;
}
@media (min-width: 992px) {
    .custom-padding {
        padding: 2% !important;
    }
}
.custom-padding-bottom {
    padding-bottom: 3% !important;
}
@media (min-width: 992px) {
    .custom-padding-bottom {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 1400px) {
    .ps-10 {
        padding-left: 8.5% !important;
    }
    .pe-10 {
        padding-right: 8.5% !important;
    }
    .ms-10 {
        margin-left: 8.5% !important;
    }
    .me-10 {
        margin-right: 8.5% !important;
    }
}

@media (max-width: 992px) {
    .ps-10 {
        padding-left: 7% !important;
    }
    .pe-10 {
        padding-right: 7% !important;
    }
    .ms-10 {
        margin-left: 7% !important;
    }
    .me-10 {
        margin-right: 7% !important;
    }
}
@media (max-width: 768px) {
    .mt-md-3 {
        margin-top: 3% !important;
    }
    .ps-10 {
        padding-left: 5% !important;
    }
    .pe-10 {
        padding-right: 5% !important;
    }
    .ms-10 {
        margin-left: 5% !important;
    }
    .me-10 {
        margin-right: 5% !important;
    }
}


.container-fluid {
    max-width: 1920px;
}
@media (min-width: 1921px) {
    .custom-shadow {
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 95%, rgba(0,0,0,0) 100%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-image: linear-gradient(to right, rgba(0,0,0,1) 95%, rgba(0,0,0,0) 100%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
    }
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle cx='8' cy='8' r='8' fill='%23BF00FF'/%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 4v8M4 8h8'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em 1em;
}

.section-gradient-black {
    background: linear-gradient(to bottom, #000000, #260B2A);
}

.custom-gradient-black-magenta {
    background: linear-gradient(to right, #000000, #260B2A);
}

.responsive-logo {
    max-width: 110px;
    border-radius: 30px;
}
@media (max-width: 992px) {
    .responsive-logo {
        max-width: 90px;
        border-radius: 24px;
    }
}
@media (max-width: 768px) {
    .responsive-logo {
        max-width: 70px;
        border-radius: 18px;
    }
}
@media (max-width: 576px) {
    .responsive-logo {
        max-width: 50px;
        border-radius: 14px;
    }
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 15px rgba(191, 0, 255, 0.2);
    transition: all 0.3s ease;
    cursor:pointer;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 15px rgba(191, 0, 255, 0.3);
    transition: all 0.3s ease;
    cursor:pointer;
}

@media (max-width: 992px) {
    .position-relative[style*="min-height:400px"] {
        min-height: 250px !important;
    }
}
@media (max-width: 576px) {
    .position-relative[style*="min-height:400px"] {
        min-height: 150px !important;
    }
}



