@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Neofolio
    Theme URI: http://
    Description: Creative Agency & Portfolio
    Author: UI-ThemeZ
    Author URI: http://themeforest.net/user/UI-ThemeZ
    Version: 1.0

-----------------------------------------------------------------------------------*/
/* Variables
-----------------------------------------------------------------*/
:root {
    --base-color: #053a5f;
    --white: #ffffff;
    --black: #000000;
    --alt-black: #111111;
    --red: #dc3131;
    --light-red: #feedec;
    --light-yellow: #f9ffe3;
    --light-green: #d3f4da;
    --green: #2ebb79;
    --crusoe-green: #afff54;
    --yellow: #f9db57;
    --dark-gray: #232323;
    --medium-gray: #717580;
    --extra-medium-gray: #bebebe;
    --light-gray: #a8a8a8;
    --very-light-gray: #f7f7f7;
    --light-medium-gray: #eaeaeb;
    --charcoal-blue: #202329;
    --slate-blue: #262b35;
    --medium-slate-blue: #374162;
    --extra-medium-slate-blue: #23262d;
    --dark-slate-blue: #001d35;
    --extra-dark-slate-blue: #001528;
    --extra-very-slate-blue: #1b1b1b;
    --tussock-yellow: #fde133;
    --aluminium-grey: #80858f;
    --solitude-blue: #f0f4fd;
    --golden-yellow: #fd961e;
    --selago: #eaedff;
    --white-ice: #d8f5ef;
    --cornflower-blue: #445fed;
    --jade: #00af6b;
    --orange: #ef991f;
    --majorelle-blue: #8088e6;
    --light-majorelle-blue: #f2edfe;
    --spring-wood: #f9f6f3;
    --tropical-blue: #2a51e6;
    --camarone: #85ee00;
    --seal-brown: #0e0708;
    --Wasabi: #8ea63a;
}

/* ===================================
    03. Reset
====================================== */
html {
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    background: #001d35;
    color: #fff;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}
body .sub-bg {
    background: #053a5f;
}
body.creative-agency {
    font-family: "Inter", sans-serif;
    color: #e0eeee;
}
body.creative-agency h1,
body.creative-agency h2,
body.creative-agency h3,
body.creative-agency h4,
body.creative-agency h5,
body.creative-agency h6 {
    font-family: "Boldonse", system-ui;
    line-height: 1.4;
}
body.creative-agency p {
    color: #e0eeee;
}
body.design-agency .main-color,
body.marketing-agency .main-color,
body.creative-portfolio .main-color,
body.freelancer .main-color {
    color: #005a82;
}
body.design-agency .bg-main-color,
body.marketing-agency .bg-main-color,
body.creative-portfolio .bg-main-color,
body.freelancer .bg-main-color {
    background: #004b6b;
}
body.creative-portfolio h1,
body.creative-portfolio h2,
body.creative-portfolio h3,
body.creative-portfolio h4,
body.creative-portfolio h5,
body.creative-portfolio h6,
body.freelancer h1,
body.freelancer h2,
body.freelancer h3,
body.freelancer h4,
body.freelancer h5,
body.freelancer h6 {
    font-family: "Bricolage Grotesque", sans-serif;
}
body.design-agency,
body.freelancer {
    font-family: "Sora", sans-serif;
}
body.startup-agency {
    font-family: "Unbounded", sans-serif;
}
body.startup-agency .main-color {
    color: #005a82;
}
body.startup-agency .bg-main-color {
    background: #005a82;
}
body.startup-agency .sm-title-dot:before {
    background: #005a82;
}
body.startup-agency p {
    font-family: "Poppins", sans-serif;
}
body .lines {
    position: fixed;
    top: 0;
    height: 100%;
    width: 90%;
    left: 5%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.3;
}
body .lines:after,
body .lines:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 20%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    pointer-events: none;
}
body .lines:before {
    left: auto;
    right: 20%;
}
body .blur-div {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    bottom: 0;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 100px;
    left: 0;
    -webkit-mask: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(0, 0, 0, 0)),
            to(black)
        )
        add;
    -webkit-mask: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%)
        add;
    mask: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(0, 0, 0, 0)),
            to(black)
        )
        add;
    mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%) add;
    overflow: visible;
    position: fixed;
    right: 0;
    pointer-events: none;
    z-index: 999;
}

.play-text {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 400;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
}
section.half-section {
    padding-top: 70px;
    padding-bottom: 70px;
}
section.big-section {
    padding-top: 140px;
    padding-bottom: 140px;
}
section.extra-big-section {
    padding-top: 160px;
    padding-bottom: 160px;
}

img {
    max-width: 100%;
    height: auto;
}

ul li {
    list-style: none;
}

ul.rest {
    margin: 0;
    padding: 0;
}

video {
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.accordion,
.accordion-item {
    color: inherit !important;
}

:focus-visible {
    outline: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545 !important;
}

.g-recaptcha.is-invalid iframe {
    border: 1px solid #dc3545 !important;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

.social-icon-circle a:hover {
    background: #fff;
    color: #171717;
}

/* ====================================================================================
    03. Loop - Padding, margin, position, font weight, min height, opacity and z-index
======================================================================================= */
/* Padding and margin */
.p-5px {
    padding: 5px !important;
}

.p-10px {
    padding: 10px !important;
}

.p-15px {
    padding: 15px !important;
}

.p-20px {
    padding: 20px !important;
}

.p-25px {
    padding: 25px !important;
}

.p-30px {
    padding: 30px !important;
}

.p-35px {
    padding: 35px !important;
}

.p-40px {
    padding: 40px !important;
}

.p-45px {
    padding: 45px !important;
}

.p-50px {
    padding: 50px !important;
}

.p-55px {
    padding: 55px !important;
}

.p-60px {
    padding: 60px !important;
}

.p-65px {
    padding: 65px !important;
}

.p-70px {
    padding: 70px !important;
}

.p-75px {
    padding: 75px !important;
}

.p-80px {
    padding: 80px !important;
}

.p-1 {
    padding: 1% !important;
}

.p-2 {
    padding: 2% !important;
}

.p-3 {
    padding: 3% !important;
}

.p-4 {
    padding: 4% !important;
}

.p-5 {
    padding: 5% !important;
}

.p-6 {
    padding: 6% !important;
}

.p-7 {
    padding: 7% !important;
}

.p-8 {
    padding: 8% !important;
}

.p-9 {
    padding: 9% !important;
}

.p-10 {
    padding: 10% !important;
}

.p-11 {
    padding: 11% !important;
}

.p-12 {
    padding: 12% !important;
}

.p-13 {
    padding: 13% !important;
}

.p-14 {
    padding: 14% !important;
}

.p-15 {
    padding: 15% !important;
}

.p-16 {
    padding: 16% !important;
}

.p-17 {
    padding: 17% !important;
}

.p-18 {
    padding: 18% !important;
}

.p-19 {
    padding: 19% !important;
}

.p-20 {
    padding: 20% !important;
}

.p-21 {
    padding: 21% !important;
}

.p-22 {
    padding: 22% !important;
}

.p-23 {
    padding: 23% !important;
}

.p-24 {
    padding: 24% !important;
}

.p-25 {
    padding: 25% !important;
}

.p-26 {
    padding: 26% !important;
}

.p-27 {
    padding: 27% !important;
}

.p-28 {
    padding: 28% !important;
}

.p-29 {
    padding: 29% !important;
}

.p-30 {
    padding: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-1 {
    padding-top: 1% !important;
}

.pt-2 {
    padding-top: 2% !important;
}

.pt-3 {
    padding-top: 3% !important;
}

.pt-4 {
    padding-top: 4% !important;
}

.pt-5 {
    padding-top: 5% !important;
}

.pt-6 {
    padding-top: 6% !important;
}

.pt-7 {
    padding-top: 7% !important;
}

.pt-8 {
    padding-top: 8% !important;
}

.pt-9 {
    padding-top: 9% !important;
}

.pt-10 {
    padding-top: 10% !important;
}

.pt-11 {
    padding-top: 11% !important;
}

.pt-12 {
    padding-top: 12% !important;
}

.pt-13 {
    padding-top: 13% !important;
}

.pt-14 {
    padding-top: 14% !important;
}

.pt-15 {
    padding-top: 15% !important;
}

.pt-16 {
    padding-top: 16% !important;
}

.pt-17 {
    padding-top: 17% !important;
}

.pt-18 {
    padding-top: 18% !important;
}

.pt-19 {
    padding-top: 19% !important;
}

.pt-20 {
    padding-top: 20% !important;
}

.pt-21 {
    padding-top: 21% !important;
}

.pt-22 {
    padding-top: 22% !important;
}

.pt-23 {
    padding-top: 23% !important;
}

.pt-24 {
    padding-top: 24% !important;
}

.pt-25 {
    padding-top: 25% !important;
}

.pt-26 {
    padding-top: 26% !important;
}

.pt-27 {
    padding-top: 27% !important;
}

.pt-28 {
    padding-top: 28% !important;
}

.pt-29 {
    padding-top: 29% !important;
}

.pt-30 {
    padding-top: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-1 {
    padding-right: 1% !important;
}

.pr-2 {
    padding-right: 2% !important;
}

.pr-3 {
    padding-right: 3% !important;
}

.pr-4 {
    padding-right: 4% !important;
}

.pr-5 {
    padding-right: 5% !important;
}

.pr-6 {
    padding-right: 6% !important;
}

.pr-7 {
    padding-right: 7% !important;
}

.pr-8 {
    padding-right: 8% !important;
}

.pr-9 {
    padding-right: 9% !important;
}

.pr-10 {
    padding-right: 10% !important;
}

.pr-11 {
    padding-right: 11% !important;
}

.pr-12 {
    padding-right: 12% !important;
}

.pr-13 {
    padding-right: 13% !important;
}

.pr-14 {
    padding-right: 14% !important;
}

.pr-15 {
    padding-right: 15% !important;
}

.pr-16 {
    padding-right: 16% !important;
}

.pr-17 {
    padding-right: 17% !important;
}

.pr-18 {
    padding-right: 18% !important;
}

.pr-19 {
    padding-right: 19% !important;
}

.pr-20 {
    padding-right: 20% !important;
}

.pr-21 {
    padding-right: 21% !important;
}

.pr-22 {
    padding-right: 22% !important;
}

.pr-23 {
    padding-right: 23% !important;
}

.pr-24 {
    padding-right: 24% !important;
}

.pr-25 {
    padding-right: 25% !important;
}

.pr-26 {
    padding-right: 26% !important;
}

.pr-27 {
    padding-right: 27% !important;
}

.pr-28 {
    padding-right: 28% !important;
}

.pr-29 {
    padding-right: 29% !important;
}

.pr-30 {
    padding-right: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-1 {
    padding-bottom: 1% !important;
}

.pb-2 {
    padding-bottom: 2% !important;
}

.pb-3 {
    padding-bottom: 3% !important;
}

.pb-4 {
    padding-bottom: 4% !important;
}

.pb-5 {
    padding-bottom: 5% !important;
}

.pb-6 {
    padding-bottom: 6% !important;
}

.pb-7 {
    padding-bottom: 7% !important;
}

.pb-8 {
    padding-bottom: 8% !important;
}

.pb-9 {
    padding-bottom: 9% !important;
}

.pb-10 {
    padding-bottom: 10% !important;
}

.pb-11 {
    padding-bottom: 11% !important;
}

.pb-12 {
    padding-bottom: 12% !important;
}

.pb-13 {
    padding-bottom: 13% !important;
}

.pb-14 {
    padding-bottom: 14% !important;
}

.pb-15 {
    padding-bottom: 15% !important;
}

.pb-16 {
    padding-bottom: 16% !important;
}

.pb-17 {
    padding-bottom: 17% !important;
}

.pb-18 {
    padding-bottom: 18% !important;
}

.pb-19 {
    padding-bottom: 19% !important;
}

.pb-20 {
    padding-bottom: 20% !important;
}

.pb-21 {
    padding-bottom: 21% !important;
}

.pb-22 {
    padding-bottom: 22% !important;
}

.pb-23 {
    padding-bottom: 23% !important;
}

.pb-24 {
    padding-bottom: 24% !important;
}

.pb-25 {
    padding-bottom: 25% !important;
}

.pb-26 {
    padding-bottom: 26% !important;
}

.pb-27 {
    padding-bottom: 27% !important;
}

.pb-28 {
    padding-bottom: 28% !important;
}

.pb-29 {
    padding-bottom: 29% !important;
}

.pb-30 {
    padding-bottom: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-1 {
    padding-left: 1% !important;
}

.pl-2 {
    padding-left: 2% !important;
}

.pl-3 {
    padding-left: 3% !important;
}

.pl-4 {
    padding-left: 4% !important;
}

.pl-5 {
    padding-left: 5% !important;
}

.pl-6 {
    padding-left: 6% !important;
}

.pl-7 {
    padding-left: 7% !important;
}

.pl-8 {
    padding-left: 8% !important;
}

.pl-9 {
    padding-left: 9% !important;
}

.pl-10 {
    padding-left: 10% !important;
}

.pl-11 {
    padding-left: 11% !important;
}

.pl-12 {
    padding-left: 12% !important;
}

.pl-13 {
    padding-left: 13% !important;
}

.pl-14 {
    padding-left: 14% !important;
}

.pl-15 {
    padding-left: 15% !important;
}

.pl-16 {
    padding-left: 16% !important;
}

.pl-17 {
    padding-left: 17% !important;
}

.pl-18 {
    padding-left: 18% !important;
}

.pl-19 {
    padding-left: 19% !important;
}

.pl-20 {
    padding-left: 20% !important;
}

.pl-21 {
    padding-left: 21% !important;
}

.pl-22 {
    padding-left: 22% !important;
}

.pl-23 {
    padding-left: 23% !important;
}

.pl-24 {
    padding-left: 24% !important;
}

.pl-25 {
    padding-left: 25% !important;
}

.pl-26 {
    padding-left: 26% !important;
}

.pl-27 {
    padding-left: 27% !important;
}

.pl-28 {
    padding-left: 28% !important;
}

.pl-29 {
    padding-left: 29% !important;
}

.pl-30 {
    padding-left: 30% !important;
}

.m-5px {
    margin: 5px !important;
}

.m-10px {
    margin: 10px !important;
}

.m-15px {
    margin: 15px !important;
}

.m-20px {
    margin: 20px !important;
}

.m-25px {
    margin: 25px !important;
}

.m-30px {
    margin: 30px !important;
}

.m-35px {
    margin: 35px !important;
}

.m-40px {
    margin: 40px !important;
}

.m-45px {
    margin: 45px !important;
}

.m-50px {
    margin: 50px !important;
}

.m-55px {
    margin: 55px !important;
}

.m-60px {
    margin: 60px !important;
}

.m-65px {
    margin: 65px !important;
}

.m-70px {
    margin: 70px !important;
}

.m-75px {
    margin: 75px !important;
}

.m-80px {
    margin: 80px !important;
}

.m-1 {
    margin: 1% !important;
}

.m-2 {
    margin: 2% !important;
}

.m-3 {
    margin: 3% !important;
}

.m-4 {
    margin: 4% !important;
}

.m-5 {
    margin: 5% !important;
}

.m-6 {
    margin: 6% !important;
}

.m-7 {
    margin: 7% !important;
}

.m-8 {
    margin: 8% !important;
}

.m-9 {
    margin: 9% !important;
}

.m-10 {
    margin: 10% !important;
}

.m-11 {
    margin: 11% !important;
}

.m-12 {
    margin: 12% !important;
}

.m-13 {
    margin: 13% !important;
}

.m-14 {
    margin: 14% !important;
}

.m-15 {
    margin: 15% !important;
}

.m-16 {
    margin: 16% !important;
}

.m-17 {
    margin: 17% !important;
}

.m-18 {
    margin: 18% !important;
}

.m-19 {
    margin: 19% !important;
}

.m-20 {
    margin: 20% !important;
}

.m-21 {
    margin: 21% !important;
}

.m-22 {
    margin: 22% !important;
}

.m-23 {
    margin: 23% !important;
}

.m-24 {
    margin: 24% !important;
}

.m-25 {
    margin: 25% !important;
}

.m-26 {
    margin: 26% !important;
}

.m-27 {
    margin: 27% !important;
}

.m-28 {
    margin: 28% !important;
}

.m-29 {
    margin: 29% !important;
}

.m-30 {
    margin: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-1 {
    margin-top: 1% !important;
}

.mt-2 {
    margin-top: 2% !important;
}

.mt-3 {
    margin-top: 3% !important;
}

.mt-4 {
    margin-top: 4% !important;
}

.mt-5 {
    margin-top: 5% !important;
}

.mt-6 {
    margin-top: 6% !important;
}

.mt-7 {
    margin-top: 7% !important;
}

.mt-8 {
    margin-top: 8% !important;
}

.mt-9 {
    margin-top: 9% !important;
}

.mt-10 {
    margin-top: 10% !important;
}

.mt-11 {
    margin-top: 11% !important;
}

.mt-12 {
    margin-top: 12% !important;
}

.mt-13 {
    margin-top: 13% !important;
}

.mt-14 {
    margin-top: 14% !important;
}

.mt-15 {
    margin-top: 15% !important;
}

.mt-16 {
    margin-top: 16% !important;
}

.mt-17 {
    margin-top: 17% !important;
}

.mt-18 {
    margin-top: 18% !important;
}

.mt-19 {
    margin-top: 19% !important;
}

.mt-20 {
    margin-top: 20% !important;
}

.mt-21 {
    margin-top: 21% !important;
}

.mt-22 {
    margin-top: 22% !important;
}

.mt-23 {
    margin-top: 23% !important;
}

.mt-24 {
    margin-top: 24% !important;
}

.mt-25 {
    margin-top: 25% !important;
}

.mt-26 {
    margin-top: 26% !important;
}

.mt-27 {
    margin-top: 27% !important;
}

.mt-28 {
    margin-top: 28% !important;
}

.mt-29 {
    margin-top: 29% !important;
}

.mt-30 {
    margin-top: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-1 {
    margin-right: 1% !important;
}

.mr-2 {
    margin-right: 2% !important;
}

.mr-3 {
    margin-right: 3% !important;
}

.mr-4 {
    margin-right: 4% !important;
}

.mr-5 {
    margin-right: 5% !important;
}

.mr-6 {
    margin-right: 6% !important;
}

.mr-7 {
    margin-right: 7% !important;
}

.mr-8 {
    margin-right: 8% !important;
}

.mr-9 {
    margin-right: 9% !important;
}

.mr-10 {
    margin-right: 10% !important;
}

.mr-11 {
    margin-right: 11% !important;
}

.mr-12 {
    margin-right: 12% !important;
}

.mr-13 {
    margin-right: 13% !important;
}

.mr-14 {
    margin-right: 14% !important;
}

.mr-15 {
    margin-right: 15% !important;
}

.mr-16 {
    margin-right: 16% !important;
}

.mr-17 {
    margin-right: 17% !important;
}

.mr-18 {
    margin-right: 18% !important;
}

.mr-19 {
    margin-right: 19% !important;
}

.mr-20 {
    margin-right: 20% !important;
}

.mr-21 {
    margin-right: 21% !important;
}

.mr-22 {
    margin-right: 22% !important;
}

.mr-23 {
    margin-right: 23% !important;
}

.mr-24 {
    margin-right: 24% !important;
}

.mr-25 {
    margin-right: 25% !important;
}

.mr-26 {
    margin-right: 26% !important;
}

.mr-27 {
    margin-right: 27% !important;
}

.mr-28 {
    margin-right: 28% !important;
}

.mr-29 {
    margin-right: 29% !important;
}

.mr-30 {
    margin-right: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-1 {
    margin-bottom: 1% !important;
}

.mb-2 {
    margin-bottom: 2% !important;
}

.mb-3 {
    margin-bottom: 3% !important;
}

.mb-4 {
    margin-bottom: 4% !important;
}

.mb-5 {
    margin-bottom: 5% !important;
}

.mb-6 {
    margin-bottom: 6% !important;
}

.mb-7 {
    margin-bottom: 7% !important;
}

.mb-8 {
    margin-bottom: 8% !important;
}

.mb-9 {
    margin-bottom: 9% !important;
}

.mb-10 {
    margin-bottom: 10% !important;
}

.mb-11 {
    margin-bottom: 11% !important;
}

.mb-12 {
    margin-bottom: 12% !important;
}

.mb-13 {
    margin-bottom: 13% !important;
}

.mb-14 {
    margin-bottom: 14% !important;
}

.mb-15 {
    margin-bottom: 15% !important;
}

.mb-16 {
    margin-bottom: 16% !important;
}

.mb-17 {
    margin-bottom: 17% !important;
}

.mb-18 {
    margin-bottom: 18% !important;
}

.mb-19 {
    margin-bottom: 19% !important;
}

.mb-20 {
    margin-bottom: 20% !important;
}

.mb-21 {
    margin-bottom: 21% !important;
}

.mb-22 {
    margin-bottom: 22% !important;
}

.mb-23 {
    margin-bottom: 23% !important;
}

.mb-24 {
    margin-bottom: 24% !important;
}

.mb-25 {
    margin-bottom: 25% !important;
}

.mb-26 {
    margin-bottom: 26% !important;
}

.mb-27 {
    margin-bottom: 27% !important;
}

.mb-28 {
    margin-bottom: 28% !important;
}

.mb-29 {
    margin-bottom: 29% !important;
}

.mb-30 {
    margin-bottom: 30% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-1 {
    margin-left: 1% !important;
}

.ml-2 {
    margin-left: 2% !important;
}

.ml-3 {
    margin-left: 3% !important;
}

.ml-4 {
    margin-left: 4% !important;
}

.ml-5 {
    margin-left: 5% !important;
}

.ml-6 {
    margin-left: 6% !important;
}

.ml-7 {
    margin-left: 7% !important;
}

.ml-8 {
    margin-left: 8% !important;
}

.ml-9 {
    margin-left: 9% !important;
}

.ml-10 {
    margin-left: 10% !important;
}

.ml-11 {
    margin-left: 11% !important;
}

.ml-12 {
    margin-left: 12% !important;
}

.ml-13 {
    margin-left: 13% !important;
}

.ml-14 {
    margin-left: 14% !important;
}

.ml-15 {
    margin-left: 15% !important;
}

.ml-16 {
    margin-left: 16% !important;
}

.ml-17 {
    margin-left: 17% !important;
}

.ml-18 {
    margin-left: 18% !important;
}

.ml-19 {
    margin-left: 19% !important;
}

.ml-20 {
    margin-left: 20% !important;
}

.ml-21 {
    margin-left: 21% !important;
}

.ml-22 {
    margin-left: 22% !important;
}

.ml-23 {
    margin-left: 23% !important;
}

.ml-24 {
    margin-left: 24% !important;
}

.ml-25 {
    margin-left: 25% !important;
}

.ml-26 {
    margin-left: 26% !important;
}

.ml-27 {
    margin-left: 27% !important;
}

.ml-28 {
    margin-left: 28% !important;
}

.ml-29 {
    margin-left: 29% !important;
}

.ml-30 {
    margin-left: 30% !important;
}

/* Position */
.top-0px {
    top: 0px;
}

.top-1px {
    top: 1px;
}

.top-2px {
    top: 2px;
}

.top-3px {
    top: 3px;
}

.top-4px {
    top: 4px;
}

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

.top-6px {
    top: 6px;
}

.top-7px {
    top: 7px;
}

.top-8px {
    top: 8px;
}

.top-9px {
    top: 9px;
}

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

.top-11px {
    top: 11px;
}

.top-12px {
    top: 12px;
}

.top-13px {
    top: 13px;
}

.top-14px {
    top: 14px;
}

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

.top-16px {
    top: 16px;
}

.top-17px {
    top: 17px;
}

.top-18px {
    top: 18px;
}

.top-19px {
    top: 19px;
}

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

.top-21px {
    top: 21px;
}

.top-22px {
    top: 22px;
}

.top-23px {
    top: 23px;
}

.top-24px {
    top: 24px;
}

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

.top-26px {
    top: 26px;
}

.top-27px {
    top: 27px;
}

.top-28px {
    top: 28px;
}

.top-29px {
    top: 29px;
}

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

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

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

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

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

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

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

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

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

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

.top-130px {
    top: 130px;
}

.top-140px {
    top: 140px;
}

.top-150px {
    top: 150px;
}

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

.right-1px {
    right: 1px;
}

.right-2px {
    right: 2px;
}

.right-3px {
    right: 3px;
}

.right-4px {
    right: 4px;
}

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

.right-6px {
    right: 6px;
}

.right-7px {
    right: 7px;
}

.right-8px {
    right: 8px;
}

.right-9px {
    right: 9px;
}

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

.right-11px {
    right: 11px;
}

.right-12px {
    right: 12px;
}

.right-13px {
    right: 13px;
}

.right-14px {
    right: 14px;
}

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

.right-16px {
    right: 16px;
}

.right-17px {
    right: 17px;
}

.right-18px {
    right: 18px;
}

.right-19px {
    right: 19px;
}

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

.right-21px {
    right: 21px;
}

.right-22px {
    right: 22px;
}

.right-23px {
    right: 23px;
}

.right-24px {
    right: 24px;
}

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

.right-26px {
    right: 26px;
}

.right-27px {
    right: 27px;
}

.right-28px {
    right: 28px;
}

.right-29px {
    right: 29px;
}

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

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

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

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

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

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

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

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

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

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

.right-130px {
    right: 130px;
}

.right-140px {
    right: 140px;
}

.right-150px {
    right: 150px;
}

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

.bottom-1px {
    bottom: 1px;
}

.bottom-2px {
    bottom: 2px;
}

.bottom-3px {
    bottom: 3px;
}

.bottom-4px {
    bottom: 4px;
}

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

.bottom-6px {
    bottom: 6px;
}

.bottom-7px {
    bottom: 7px;
}

.bottom-8px {
    bottom: 8px;
}

.bottom-9px {
    bottom: 9px;
}

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

.bottom-11px {
    bottom: 11px;
}

.bottom-12px {
    bottom: 12px;
}

.bottom-13px {
    bottom: 13px;
}

.bottom-14px {
    bottom: 14px;
}

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

.bottom-16px {
    bottom: 16px;
}

.bottom-17px {
    bottom: 17px;
}

.bottom-18px {
    bottom: 18px;
}

.bottom-19px {
    bottom: 19px;
}

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

.bottom-21px {
    bottom: 21px;
}

.bottom-22px {
    bottom: 22px;
}

.bottom-23px {
    bottom: 23px;
}

.bottom-24px {
    bottom: 24px;
}

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

.bottom-26px {
    bottom: 26px;
}

.bottom-27px {
    bottom: 27px;
}

.bottom-28px {
    bottom: 28px;
}

.bottom-29px {
    bottom: 29px;
}

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

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

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

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

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

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

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

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

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

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

.bottom-130px {
    bottom: 130px;
}

.bottom-140px {
    bottom: 140px;
}

.bottom-150px {
    bottom: 150px;
}

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

.left-1px {
    left: 1px;
}

.left-2px {
    left: 2px;
}

.left-3px {
    left: 3px;
}

.left-4px {
    left: 4px;
}

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

.left-6px {
    left: 6px;
}

.left-7px {
    left: 7px;
}

.left-8px {
    left: 8px;
}

.left-9px {
    left: 9px;
}

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

.left-11px {
    left: 11px;
}

.left-12px {
    left: 12px;
}

.left-13px {
    left: 13px;
}

.left-14px {
    left: 14px;
}

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

.left-16px {
    left: 16px;
}

.left-17px {
    left: 17px;
}

.left-18px {
    left: 18px;
}

.left-19px {
    left: 19px;
}

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

.left-21px {
    left: 21px;
}

.left-22px {
    left: 22px;
}

.left-23px {
    left: 23px;
}

.left-24px {
    left: 24px;
}

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

.left-26px {
    left: 26px;
}

.left-27px {
    left: 27px;
}

.left-28px {
    left: 28px;
}

.left-29px {
    left: 29px;
}

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

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

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

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

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

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

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

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

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

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

.left-130px {
    left: 130px;
}

.left-140px {
    left: 140px;
}

.left-150px {
    left: 150px;
}

.top-minus-0px {
    top: -0px;
}

.top-minus-1px {
    top: -1px;
}

.top-minus-2px {
    top: -2px;
}

.top-minus-3px {
    top: -3px;
}

.top-minus-4px {
    top: -4px;
}

.top-minus-5px {
    top: -5px;
}

.top-minus-6px {
    top: -6px;
}

.top-minus-7px {
    top: -7px;
}

.top-minus-8px {
    top: -8px;
}

.top-minus-9px {
    top: -9px;
}

.top-minus-10px {
    top: -10px;
}

.top-minus-11px {
    top: -11px;
}

.top-minus-12px {
    top: -12px;
}

.top-minus-13px {
    top: -13px;
}

.top-minus-14px {
    top: -14px;
}

.top-minus-15px {
    top: -15px;
}

.top-minus-16px {
    top: -16px;
}

.top-minus-17px {
    top: -17px;
}

.top-minus-18px {
    top: -18px;
}

.top-minus-19px {
    top: -19px;
}

.top-minus-20px {
    top: -20px;
}

.top-minus-21px {
    top: -21px;
}

.top-minus-22px {
    top: -22px;
}

.top-minus-23px {
    top: -23px;
}

.top-minus-24px {
    top: -24px;
}

.top-minus-25px {
    top: -25px;
}

.top-minus-26px {
    top: -26px;
}

.top-minus-27px {
    top: -27px;
}

.top-minus-28px {
    top: -28px;
}

.top-minus-29px {
    top: -29px;
}

.top-minus-30px {
    top: -30px;
}

.top-minus-40px {
    top: -40px;
}

.top-minus-50px {
    top: -50px;
}

.top-minus-60px {
    top: -60px;
}

.top-minus-70px {
    top: -70px;
}

.top-minus-80px {
    top: -80px;
}

.top-minus-90px {
    top: -90px;
}

.top-minus-100px {
    top: -100px;
}

.top-minus-110px {
    top: -110px;
}

.top-minus-120px {
    top: -120px;
}

.top-minus-130px {
    top: -130px;
}

.top-minus-140px {
    top: -140px;
}

.top-minus-150px {
    top: -150px;
}

.right-minus-0px {
    right: -0px;
}

.right-minus-1px {
    right: -1px;
}

.right-minus-2px {
    right: -2px;
}

.right-minus-3px {
    right: -3px;
}

.right-minus-4px {
    right: -4px;
}

.right-minus-5px {
    right: -5px;
}

.right-minus-6px {
    right: -6px;
}

.right-minus-7px {
    right: -7px;
}

.right-minus-8px {
    right: -8px;
}

.right-minus-9px {
    right: -9px;
}

.right-minus-10px {
    right: -10px;
}

.right-minus-11px {
    right: -11px;
}

.right-minus-12px {
    right: -12px;
}

.right-minus-13px {
    right: -13px;
}

.right-minus-14px {
    right: -14px;
}

.right-minus-15px {
    right: -15px;
}

.right-minus-16px {
    right: -16px;
}

.right-minus-17px {
    right: -17px;
}

.right-minus-18px {
    right: -18px;
}

.right-minus-19px {
    right: -19px;
}

.right-minus-20px {
    right: -20px;
}

.right-minus-21px {
    right: -21px;
}

.right-minus-22px {
    right: -22px;
}

.right-minus-23px {
    right: -23px;
}

.right-minus-24px {
    right: -24px;
}

.right-minus-25px {
    right: -25px;
}

.right-minus-26px {
    right: -26px;
}

.right-minus-27px {
    right: -27px;
}

.right-minus-28px {
    right: -28px;
}

.right-minus-29px {
    right: -29px;
}

.right-minus-30px {
    right: -30px;
}

.right-minus-40px {
    right: -40px;
}

.right-minus-50px {
    right: -50px;
}

.right-minus-60px {
    right: -60px;
}

.right-minus-70px {
    right: -70px;
}

.right-minus-80px {
    right: -80px;
}

.right-minus-90px {
    right: -90px;
}

.right-minus-100px {
    right: -100px;
}

.right-minus-110px {
    right: -110px;
}

.right-minus-120px {
    right: -120px;
}

.right-minus-130px {
    right: -130px;
}

.right-minus-140px {
    right: -140px;
}

.right-minus-150px {
    right: -150px;
}

.bottom-minus-0px {
    bottom: -0px;
}

.bottom-minus-1px {
    bottom: -1px;
}

.bottom-minus-2px {
    bottom: -2px;
}

.bottom-minus-3px {
    bottom: -3px;
}

.bottom-minus-4px {
    bottom: -4px;
}

.bottom-minus-5px {
    bottom: -5px;
}

.bottom-minus-6px {
    bottom: -6px;
}

.bottom-minus-7px {
    bottom: -7px;
}

.bottom-minus-8px {
    bottom: -8px;
}

.bottom-minus-9px {
    bottom: -9px;
}

.bottom-minus-10px {
    bottom: -10px;
}

.bottom-minus-11px {
    bottom: -11px;
}

.bottom-minus-12px {
    bottom: -12px;
}

.bottom-minus-13px {
    bottom: -13px;
}

.bottom-minus-14px {
    bottom: -14px;
}

.bottom-minus-15px {
    bottom: -15px;
}

.bottom-minus-16px {
    bottom: -16px;
}

.bottom-minus-17px {
    bottom: -17px;
}

.bottom-minus-18px {
    bottom: -18px;
}

.bottom-minus-19px {
    bottom: -19px;
}

.bottom-minus-20px {
    bottom: -20px;
}

.bottom-minus-21px {
    bottom: -21px;
}

.bottom-minus-22px {
    bottom: -22px;
}

.bottom-minus-23px {
    bottom: -23px;
}

.bottom-minus-24px {
    bottom: -24px;
}

.bottom-minus-25px {
    bottom: -25px;
}

.bottom-minus-26px {
    bottom: -26px;
}

.bottom-minus-27px {
    bottom: -27px;
}

.bottom-minus-28px {
    bottom: -28px;
}

.bottom-minus-29px {
    bottom: -29px;
}

.bottom-minus-30px {
    bottom: -30px;
}

.bottom-minus-40px {
    bottom: -40px;
}

.bottom-minus-50px {
    bottom: -50px;
}

.bottom-minus-60px {
    bottom: -60px;
}

.bottom-minus-70px {
    bottom: -70px;
}

.bottom-minus-80px {
    bottom: -80px;
}

.bottom-minus-90px {
    bottom: -90px;
}

.bottom-minus-100px {
    bottom: -100px;
}

.bottom-minus-110px {
    bottom: -110px;
}

.bottom-minus-120px {
    bottom: -120px;
}

.bottom-minus-130px {
    bottom: -130px;
}

.bottom-minus-140px {
    bottom: -140px;
}

.bottom-minus-150px {
    bottom: -150px;
}

.left-minus-0px {
    left: -0px;
}

.left-minus-1px {
    left: -1px;
}

.left-minus-2px {
    left: -2px;
}

.left-minus-3px {
    left: -3px;
}

.left-minus-4px {
    left: -4px;
}

.left-minus-5px {
    left: -5px;
}

.left-minus-6px {
    left: -6px;
}

.left-minus-7px {
    left: -7px;
}

.left-minus-8px {
    left: -8px;
}

.left-minus-9px {
    left: -9px;
}

.left-minus-10px {
    left: -10px;
}

.left-minus-11px {
    left: -11px;
}

.left-minus-12px {
    left: -12px;
}

.left-minus-13px {
    left: -13px;
}

.left-minus-14px {
    left: -14px;
}

.left-minus-15px {
    left: -15px;
}

.left-minus-16px {
    left: -16px;
}

.left-minus-17px {
    left: -17px;
}

.left-minus-18px {
    left: -18px;
}

.left-minus-19px {
    left: -19px;
}

.left-minus-20px {
    left: -20px;
}

.left-minus-21px {
    left: -21px;
}

.left-minus-22px {
    left: -22px;
}

.left-minus-23px {
    left: -23px;
}

.left-minus-24px {
    left: -24px;
}

.left-minus-25px {
    left: -25px;
}

.left-minus-26px {
    left: -26px;
}

.left-minus-27px {
    left: -27px;
}

.left-minus-28px {
    left: -28px;
}

.left-minus-29px {
    left: -29px;
}

.left-minus-30px {
    left: -30px;
}

.left-minus-40px {
    left: -40px;
}

.left-minus-50px {
    left: -50px;
}

.left-minus-60px {
    left: -60px;
}

.left-minus-70px {
    left: -70px;
}

.left-minus-80px {
    left: -80px;
}

.left-minus-90px {
    left: -90px;
}

.left-minus-100px {
    left: -100px;
}

.left-minus-110px {
    left: -110px;
}

.left-minus-120px {
    left: -120px;
}

.left-minus-130px {
    left: -130px;
}

.left-minus-140px {
    left: -140px;
}

.left-minus-150px {
    left: -150px;
}

/* Font weight */
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/* Min height */
.min-h-100px {
    min-height: 100px !important;
}

.min-h-150px {
    min-height: 150px !important;
}

.min-h-200px {
    min-height: 200px !important;
}

.min-h-250px {
    min-height: 250px !important;
}

.min-h-300px {
    min-height: 300px !important;
}

.min-h-350px {
    min-height: 350px !important;
}

.min-h-400px {
    min-height: 400px !important;
}

.min-h-450px {
    min-height: 450px !important;
}

.min-h-500px {
    min-height: 500px !important;
}

.min-h-550px {
    min-height: 550px !important;
}

.min-h-600px {
    min-height: 600px !important;
}

.min-h-650px {
    min-height: 650px !important;
}

.min-h-700px {
    min-height: 700px !important;
}

.min-h-750px {
    min-height: 750px !important;
}

.min-h-800px {
    min-height: 800px !important;
}

.min-h-850px {
    min-height: 850px !important;
}

.min-h-900px {
    min-height: 900px !important;
}

.min-h-950px {
    min-height: 950px !important;
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 0.1;
}

.opacity-2 {
    opacity: 0.2;
}

.opacity-3 {
    opacity: 0.3;
}

.opacity-4 {
    opacity: 0.4;
}

.opacity-5 {
    opacity: 0.5;
}

.opacity-6 {
    opacity: 0.6;
}

.opacity-7 {
    opacity: 0.7;
}

.opacity-8 {
    opacity: 0.8;
}

.opacity-9 {
    opacity: 0.9;
}

/* Z-index */
.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-6 {
    z-index: 6;
}

.z-index-7 {
    z-index: 7;
}

.z-index-8 {
    z-index: 8;
}

.z-index-9 {
    z-index: 9;
}

.z-index-minus-1 {
    z-index: -1;
}

.z-index-minus-2 {
    z-index: -2;
}

/* ===================================
    04. General
====================================== */
.rotate-circle {
    -webkit-animation-name: rotateCircle;
    animation-name: rotateCircle;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotateCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.text-light {
    color: #fff;
}
.text-light p {
    color: #c2c2c2;
}

/* border line */
.line-top {
    border-top: 1px solid;
}

.line-bottom {
    border-bottom: 1px solid;
}

.line-right {
    border-right: 1px solid;
}

.line-left {
    border-left: 1px solid;
}

/* Separator line */
.separator-line-1px {
    height: 1px;
}

.separator-line-2px {
    height: 2px;
}

.separator-line-3px {
    height: 3px;
}

.separator-line-4px {
    height: 4px;
}

.separator-line-5px {
    height: 5px;
}

/* Separator line size */
.separator-line-small {
    width: 35px;
    height: 1px;
    display: inline-block;
    margin-right: 7px;
}

.separator-line-extra-small {
    width: 18px;
    height: 1px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.separator-line-very-small {
    width: 12px;
    height: 1px;
    display: inline-block;
    margin-right: 9px;
    vertical-align: middle;
}

/* Opacity */
.opacity-very-light,
.opacity-light,
.opacity-extra-medium,
.opacity-medium,
.opacity-full,
.opacity-full-dark {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.opacity-very-light {
    opacity: 0.2;
}

.opacity-light {
    opacity: 0.3;
}

.opacity-extra-medium {
    opacity: 0.5;
}

.opacity-medium {
    opacity: 0.75;
}

.opacity-full {
    opacity: 0.8;
}

.opacity-full-dark {
    opacity: 0.9;
}

/* social-icon-circle */
.social-icon-circle a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 12px;
}

.social-icon-circle.border-dark a {
    border-color: rgba(0, 0, 0, 0.1);
}

.social-icon-circle.vertical {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.social-icon-circle.vertical span {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 15px;
}

/* social-icon-square */
.social-icon-square a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    font-size: 12px;
}

.social-icon-square.border-dark a {
    border-color: rgba(0, 0, 0, 0.1);
}

/* section lines */
.lines-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.lines-top.bottom {
    -webkit-transform: translateY(100%) rotate(180deg);
    -ms-transform: translateY(100%) rotate(180deg);
    transform: translateY(100%) rotate(180deg);
    top: auto;
    bottom: 0;
}
.lines-top span {
    width: 100%;
    display: block;
    height: 2px;
    margin-bottom: 10px;
    background: #0f130f;
}
.lines-top span:nth-of-type(2) {
    height: 4px;
    margin-bottom: 8px;
}
.lines-top span:nth-of-type(3) {
    height: 6px;
    margin-bottom: 6px;
}
.lines-top span:nth-of-type(4) {
    height: 8px;
    margin-bottom: 4px;
}
.lines-top span:nth-of-type(5) {
    height: 10px;
    margin-bottom: 2px;
}

/* Tabs */
.tab-content {
    display: none;
}
.tab-content.current {
    display: block;
}

/* Accordion */
.accordion-item {
    border: 0;
    border-radius: 0;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    color: inherit;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
}
.accordion-button .row,
.accordion-button:not(.collapsed) .row {
    width: 100%;
}
.accordion-button:after,
.accordion-button:not(.collapsed):after {
    display: none;
}

/* Marquee */
.main-marq.standerd {
    position: relative;
}
.main-marq.standerd:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#fff),
        color-stop(transparent),
        to(#fff)
    );
    background: -webkit-linear-gradient(left, #fff, transparent, #fff);
    background: -o-linear-gradient(left, #fff, transparent, #fff);
    background: linear-gradient(to right, #fff, transparent, #fff);
}
.main-marq.standerd .item-marq {
    padding: 0 50px;
}
.main-marq.standerd .item-marq h2 {
    font-size: 100px;
}

.list-dot {
    margin: 0;
    padding: 0;
}
.list-dot li {
    position: relative;
}
.list-dot li:before {
    content: "";
    position: relative;
    width: 5px;
    height: 5px;
    background: #0f130f;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}
.list-dot.dark-style li:before {
    background: #fff;
}

.nowrap {
    white-space: nowrap;
}

.text-indent {
    text-indent: 15%;
}

.o-hidden {
    overflow: hidden;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline-block;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ml-auto {
    margin-left: auto;
}

.invert-icon {
    -webkit-filter: invert(1);
    filter: invert(1);
}

/* Skrollr */
.skrollr-parallax {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    -o-transition-timing-function: none;
    transition-timing-function: none;
    -webkit-transition-timing-function: none;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
}

.skrollr-zoom {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.blur-box {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(3px);
}

/* Transform */
.transform-origin-right {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.transform-origin-left {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

/* Transition */
.transition {
    -webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
    -o-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
}

.transition-inner-all * {
    -webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
    -o-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
}

.no-transition {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

/* Pointer events */
.pointer-events-none {
    pointer-events: none;
}

.pointer-events-all {
    pointer-events: all;
}

.underline {
    text-decoration: underline;
}

/* Users */
.users-style1 .fit-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -15px;
}
.users-style1 .fit-img:first-of-type {
    margin-left: 0;
}

.users-style1 h6 {
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-left: 15px;
}

.users-style2 span,
.users-style2 .fit-img {
    width: 40px;
    height: 40px !important;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -15px;
    display: inline-block;
    border: 1px solid rgba(251, 251, 251, 0.5);
}
.users-style2 span:first-of-type,
.users-style2 .fit-img:first-of-type {
    margin-left: 0;
}
.users-style2 span:last-of-type,
.users-style2 .fit-img:last-of-type {
    color: #000;
    background: #fff;
    line-height: 40px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.users-style3 .users .fit-img,
.users-style3 .users span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #fff;
    overflow: hidden;
    margin-left: -25px;
}
.users-style3 .users .fit-img:first-of-type,
.users-style3 .users span:first-of-type {
    margin-left: 0;
}

.users-style3 .users .text {
    background: #141414;
    color: #fff;
    font-size: 12px;
}

/* progress */
.progress-style1 .skill-progress {
    height: 8px;
    border-radius: 10px;
    background: rgba(111, 111, 111, 0.1);
}
.progress-style1 .skill-progress .progres {
    border-radius: 10px;
}
.progress-style1 .skill-progress .progres:after {
    padding: 5px 15px;
    border-radius: 30px;
    background: #141414;
    color: #fff;
    top: -40px;
    right: -20px;
}

/* accordion */
.accordion-style1 .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    background: transparent;
}
.accordion-style1 .accordion-item .icon-arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 10px;
}
.accordion-style1
    .accordion-item
    .accordion-button:not(.collapsed)
    .icon-arrow {
    border-color: rgba(0, 0, 0, 0.2);
}

.accordion-style1 .accordion-header .tags a {
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin: 0 -5px;
}

.accordion-style1.bord-style2 .accordion-item {
    border-color: rgba(255, 255, 255, 0.1);
}
.accordion-style1.bord-style2
    .accordion-item
    .accordion-button:not(.collapsed)
    .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-style1.bord-style2 .accordion-body {
    padding: 0;
}

.accordion-style2 .accordion-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.03);
    border: 0;
}
.accordion-style2 .accordion-item .accordion-button:not(.collapsed) .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.accordion-style2 .accordion-item.active h6 {
    font-weight: 600;
}
.accordion-style2 .accordion-item .accordion-body {
    padding: 15px 0 0;
}

/* Overflow */
.overflow-visible {
    overflow: visible;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

/* Overlap section */
.overlap-section {
    position: relative;
}

.overlap-height {
    -webkit-transition: 0.3s height;
    -o-transition: 0.3s height;
    transition: 0.3s height;
}

/* Tags */
.tags-style1 {
    font-size: 14px;
}
.tags-style1 span,
.tags-style1 a {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin-top: 5px;
}

.lines-bg {
    background-image: -webkit-linear-gradient(
        315deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 0
    );
    background-image: -o-linear-gradient(
        315deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 0
    );
    background-image: linear-gradient(
        135deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 0
    );
    background-size: 5px 5px;
}

.v-align-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* CSS filter */
.filter-mix-100 {
    -webkit-filter: grayscale(100%) invert(100%);
    filter: grayscale(100%) invert(100%);
}

.filter-grayscale-100 {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* Input */
input,
select,
textarea,
.form-control,
.form-select {
    padding: 12px 25px;
    width: 100%;
    max-width: 100%;
    resize: none;
    outline: none;
    font-size: 16px;
    border: 1px solid #e4e4e4;
    color: var(--medium-gray);
    line-height: inherit;
    word-break: normal;
}

.form-select {
    color: var(--medium-gray);
}
.form-select:focus {
    border-color: #dfdfdf;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    border: 1px solid #c2c2c2;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--medium-gray);
}

.search-error {
    border-color: var(--red);
}

/* Select */
.select {
    position: relative;
}
.select:after {
    content: "\e842";
    font-family: feather !important;
    right: 20px;
    top: 50%;
    height: 34px;
    position: absolute;
    pointer-events: none;
    font-size: 22px;
    margin-top: -15px;
}

/* Input size */
.input-small,
.textarea-small,
.select-small {
    padding: 7px 15px;
    font-size: 12px;
}

.input-medium,
.textarea-medium,
.select-medium {
    padding: 14px 28px;
}

.input-large {
    padding: 16px 32px;
}

.form-control.is-invalid:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.main-marq {
    position: relative;
    padding: 0;
    overflow: hidden !important;
}
.main-marq .box h2,
.main-marq .box h3,
.main-marq .box h4,
.main-marq .box h5 {
    white-space: nowrap;
}
.main-marq .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-marq .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slide-har {
    position: relative;
}
.slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 80s linear infinite;
    animation: slide-har 80s linear infinite;
}
.slide-har.st2 .box {
    position: relative;
    -webkit-animation: slide-har-revers 80s linear infinite;
    animation: slide-har-revers 80s linear infinite;
}

@-webkit-keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

/* Stroke Text */
.stroke-light {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
}

.stroke {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000;
}

/* Swiper controls */
.swiper-contr-style1 {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.02);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.swiper-contr-style1 .swiper-pagination {
    position: static;
    margin: -4px 15px 0;
}
.swiper-contr-style1 .swiper-pagination span {
    margin: 0 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.swiper-contr-style1 .swiper-pagination .swiper-pagination-bullet-active {
    background: #111;
}
.swiper-contr-style1 .swiper-button-prev,
.swiper-contr-style1 .swiper-button-next {
    position: static;
    margin: 0;
    width: auto;
    height: auto;
    display: inline-block;
    color: inherit;
}
.swiper-contr-style1 .swiper-button-prev:after,
.swiper-contr-style1 .swiper-button-next:after {
    font-size: 13px;
}

.swiper-contr-style2 {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.swiper-contr-style2 .swiper-pagination {
    position: static;
    margin: 0px 15px 0;
    font-size: 14px;
}
.swiper-contr-style2 .swiper-pagination span {
    margin: 0 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.swiper-contr-style2 .swiper-pagination .swiper-pagination-bullet-active {
    background: #111;
}
.swiper-contr-style2 .swiper-pagination .swiper-pagination-current {
    position: relative;
    padding-right: 30px;
}
.swiper-contr-style2 .swiper-pagination .swiper-pagination-current:after {
    content: "/";
    position: absolute;
    right: 0;
    top: -1px;
}
.swiper-contr-style2 .swiper-button-prev,
.swiper-contr-style2 .swiper-button-next {
    position: static;
    margin: 0;
    width: auto;
    height: auto;
    display: inline-block;
    color: inherit;
}
.swiper-contr-style2 .swiper-button-prev:after,
.swiper-contr-style2 .swiper-button-next:after {
    font-size: 13px;
}

.swiper-contr-style3 {
    position: relative;
}
.swiper-contr-style3 .swiper-pagination {
    position: static;
    margin: -4px 15px 0;
}
.swiper-contr-style3 .swiper-pagination span {
    margin: 0 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.swiper-contr-style3 .swiper-pagination .swiper-pagination-bullet-active {
    background: #111;
}
.swiper-contr-style3 .swiper-button-prev,
.swiper-contr-style3 .swiper-button-next {
    position: static;
    margin: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    color: inherit;
}
.swiper-contr-style3 .swiper-button-prev:after,
.swiper-contr-style3 .swiper-button-next:after {
    font-size: 13px;
}
.swiper-contr-style3 .swiper-button-prev:hover,
.swiper-contr-style3 .swiper-button-next:hover {
    background: #fff;
    color: #0f130f;
}

/* Swiper width auto */
.swiper-width-auto .swiper-slide {
    width: auto;
}

/* Full screen */
.full-screen {
    height: 100vh;
}

.full-screen.top-space-margin {
    height: calc(100vh - 96px);
}

.pattern-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Will change */
.will-change-transform * {
    will-change: transform;
}

.will-change-inherit * {
    will-change: inherit;
}

.animation-rotation {
    -webkit-animation: rotation 8s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

/* Float animation */
.animation-float {
    -webkit-animation: float 2000ms linear 500ms infinite alternate both;
    animation: float 2000ms linear 500ms infinite alternate both;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

.animation-float-small {
    -webkit-animation: float 2000ms linear 500ms infinite alternate both;
    animation: float 2000ms linear 500ms infinite alternate both;
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

/* Zoom animation */
.animation-zoom {
    -webkit-animation: zoom-in-zoom-out 2000ms linear 500ms infinite alternate
        both;
    animation: zoom-in-zoom-out 2000ms linear 500ms infinite alternate both;
}

@-webkit-keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/* ===================================
    06. Background and border
====================================== */
/* Background color */
.bg-base-color {
    background-color: var(--base-color);
}

.bg-dark-gray,
.bg-dark-gray:focus {
    background-color: var(--dark-gray);
}

.bg-black {
    background-color: var(--black);
    color: #fff;
}

.bg-alt-black {
    background-color: var(--alt-black);
    color: #fff;
}

.bg-medium-gray {
    background-color: var(--medium-gray);
}

.bg-light-medium-gray {
    background-color: var(--light-medium-gray);
}

.bg-extra-medium-gray {
    background-color: var(--extra-medium-gray);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-very-light-gray {
    background-color: var(--very-light-gray);
}

.bg-red {
    background-color: var(--red);
}

.bg-light-red {
    background-color: var(--light-red);
}

.bg-light-yellow {
    background-color: var(--light-yellow);
}

.bg-light-green {
    background-color: var(--light-green);
}

.bg-green {
    background-color: var(--green);
}

.bg-crusoe-green {
    background-color: var(--crusoe-green);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-charcoal-blue {
    background-color: var(--charcoal-blue);
}

.bg-slate-blue {
    background-color: var(--slate-blue);
}

.bg-medium-slate-blue {
    background-color: var(--medium-slate-blue);
}

.bg-extra-medium-slate-blue {
    background-color: var(--extra-medium-slate-blue);
}

.bg-dark-slate-blue {
    background-color: var(--dark-slate-blue);
}

.bg-extra-dark-slate-blue {
    background-color: var(--extra-dark-slate-blue);
}

.bg-extra-very-slate-blue {
    background-color: var(--extra-very-slate-blue);
    color: #fff;
}

.bg-tussock-yellow {
    background-color: var(--tussock-yellow);
}

.bg-solitude-blue {
    background-color: var(--solitude-blue);
}

.bg-aluminium-grey {
    background-color: var(--aluminium-grey);
}

.bg-selago {
    background-color: var(--selago);
}

.bg-white-ice {
    background-color: var(--white-ice);
}

.bg-golden-yellow {
    background-color: var(--golden-yellow);
}

.bg-jade {
    background-color: var(--jade);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-light-majorelle-blue {
    background-color: var(--light-majorelle-blue);
}

.bg-majorelle-blue {
    background-color: var(--majorelle-blue);
}

.bg-spring-wood {
    background-color: var(--spring-wood);
}

.bg-tropical-blue {
    background-color: var(--tropical-blue);
}

.bg-cornflower-blue {
    background-color: var(--cornflower-blue);
}

.bg-camarone {
    background-color: var(--camarone);
}

.bg-seal-brown {
    background-color: var(--seal-brown);
}

.bg-Wasabi {
    background-color: var(--Wasabi);
}

.bg-dark-gray-transparent {
    background-color: rgba(35, 35, 35, 0.8);
}

.bg-dark-gray-transparent-light {
    background-color: rgba(35, 35, 35, 0.2);
}

.bg-dark-gray-transparent-medium {
    background-color: rgba(35, 35, 35, 0.4);
}

.bg-medium-gray-transparent {
    background-color: rgba(111, 111, 111, 0.1);
}

.bg-light-gray-transparent {
    background-color: #fbfbfb;
}

.bg-medium-gray-transparent {
    background-color: rgba(136, 136, 136, 0.3);
}

.bg-black-transparent-light {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-black-transparent-medium {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-black-transparent {
    background-color: rgba(0, 0, 0, 0.8);
}

.bg-white-transparent-extra-light,
.bg-white-transparent-extra-light:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-transparent-very-light {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-transparent-light {
    background-color: rgba(255, 255, 255, 0.4);
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Background image */
.bg-img {
    background-size: cover !important;
}

.contain-background {
    background-size: contain !important;
}

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

.fix-background {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.background-size-inherit {
    background-size: inherit;
}

.background-attachment-inherit {
    background-attachment: inherit;
}

.background-position-left {
    background-position: left center;
}

.background-position-left-bottom {
    background-position: left bottom;
}

.background-position-left-center {
    background-position: left center;
}

.background-position-right {
    background-position: right center;
}

.background-position-right-top {
    background-position: right top;
}

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

.background-position-left-top {
    background-position: left top;
}

.background-position-right-bottom {
    background-position: right bottom;
}

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

.background-repeat {
    background-repeat: repeat;
}

.background-no-repeat {
    background-repeat: no-repeat;
}

.background-no-repeat-y {
    background-repeat-y: no-repeat;
}

.background-position-center {
    background-position: center;
}

/* Background size */
.background-size-100 {
    background-size: 100%;
}

.background-size-auto-100 {
    background-size: auto 100%;
}

/* Border style */
.border-dotted {
    border-style: dotted;
}

.border-dashed {
    border-style: dashed;
}

.border-solid {
    border-style: solid;
}

.border-double {
    border-style: double;
}

.border-groove {
    border-style: groove;
}

.border-ridge {
    border-style: ridge;
}

.border-inset {
    border-style: inset;
}

.border-outset {
    border-style: outset;
}

.border-none {
    border-style: none;
}

.border-hidden {
    border-style: hidden;
}

/* Border color */
.border-color-base-color {
    border-color: var(--base-color);
}

.border-color-white {
    border-color: var(--white);
}

.border-color-dark-gray {
    border-color: var(--dark-gray);
}

.border-color-medium-gray {
    border-color: var(--medium-gray);
}

.border-color-light-gray {
    border-color: var(--light-gray);
}

.border-color-very-light-gray {
    border-color: var(--very-light-gray);
}

.border-color-light-medium-gray {
    border-color: var(--light-medium-gray);
}

.border-color-extra-medium-gray {
    border-color: var(--extra-medium-gray);
}

.border-color-yellow {
    border-color: var(--yellow);
}

.border-color-orange {
    border-color: var(--orange);
}

.border-color-red {
    border-color: var(--red);
}

.border-color-transparent-dark-very-light {
    border-color: rgba(35, 35, 35, 0.1);
}

.border-color-transparent-dark-light {
    border-color: rgba(35, 35, 35, 0.2);
}

.border-color-transparent-white-very-light {
    border-color: rgba(255, 255, 255, 0.3);
}

.border-color-transparent-white-light {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-color-transparent-white {
    border-color: rgba(255, 255, 255, 0.6);
}

.border-color-transparent {
    border-color: transparent;
}

.border-color-transparent-on-hover:hover {
    border-color: transparent;
}

/* Border radius */
.border-radius-0px {
    border-radius: 0;
}

.border-radius-1px {
    border-radius: 1px;
}

.border-radius-2px {
    border-radius: 2px;
}

.border-radius-3px {
    border-radius: 3px;
}

.border-radius-4px {
    border-radius: 4px;
}

.border-radius-5px {
    border-radius: 5px;
}

.border-radius-6px {
    border-radius: 6px;
}

.border-radius-7px {
    border-radius: 7px;
}

.border-radius-8px {
    border-radius: 8px;
}

.border-radius-9px {
    border-radius: 9px;
}

.border-radius-10px {
    border-radius: 10px;
}

.border-radius-15px {
    border-radius: 15px;
}

.border-radius-18px {
    border-radius: 18px;
}

.border-radius-20px {
    border-radius: 20px;
}

.border-radius-22px {
    border-radius: 22px;
}

.border-radius-24px {
    border-radius: 24px;
}

.border-radius-26px {
    border-radius: 26px;
}

.border-radius-30px {
    border-radius: 30px;
}

.border-radius-40px {
    border-radius: 40px;
}

.border-radius-50px {
    border-radius: 50px;
}

.border-radius-80px {
    border-radius: 80px;
}

.border-radius-100px {
    border-radius: 100px;
}

.border-radius-50 {
    border-radius: 50%;
}

.border-radius-100 {
    border-radius: 100%;
}

.no-border-radius {
    border-radius: 0;
}

.border-radius-top-left {
    border-radius: 10px 0 0 10px;
}

/* Parallax background */
.parallax {
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
    -o-transition-timing-function: none;
    transition-timing-function: none;
    -webkit-transition-timing-function: none;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
}

/* ===================================
    07. Width
====================================== */
.w-1px {
    width: 1px;
}

.w-2px {
    width: 2px;
}

.w-3px {
    width: 3px;
}

.w-4px {
    width: 4px;
}

.w-5px {
    width: 5px;
}

.w-6px {
    width: 6px;
}

.w-7px {
    width: 7px;
}

.w-8px {
    width: 8px;
}

.w-9px {
    width: 9px;
}

.w-10px {
    width: 10px;
}

.w-15px {
    width: 15px;
}

.w-20px {
    width: 20px;
}

.w-25px {
    width: 25px;
}

.w-30px {
    width: 30px;
}

.w-35px {
    width: 35px;
}

.w-40px {
    width: 40px;
}

.w-45px {
    width: 45px;
}

.w-50px {
    width: 50px;
}

.w-55px {
    width: 55px;
}

.w-60px {
    width: 60px;
}

.w-65px {
    width: 65px;
}

.w-70px {
    width: 70px;
}

.w-75px {
    width: 75px;
}

.w-80px {
    width: 80px;
}

.w-85px {
    width: 85px;
}

.w-90px {
    width: 90px;
}

.w-95px {
    width: 95px;
}

.w-100px {
    width: 100px;
}

.w-110px {
    width: 110px;
}

.w-120px {
    width: 120px;
}

.w-130px {
    width: 130px;
}

.w-140px {
    width: 140px;
}

.w-150px {
    width: 150px;
}

.w-160px {
    width: 160px;
}

.w-170px {
    width: 170px;
}

.w-180px {
    width: 180px;
}

.w-190px {
    width: 190px;
}

.w-200px {
    width: 200px;
}

.w-210px {
    width: 210px;
}

.w-220px {
    width: 220px;
}

.w-230px {
    width: 230px;
}

.w-240px {
    width: 240px;
}

.w-250px {
    width: 250px;
}

.w-260px {
    width: 260px;
}

.w-270px {
    width: 270px;
}

.w-280px {
    width: 280px;
}

.w-290px {
    width: 290px;
}

.w-300px {
    width: 300px;
}

.w-310px {
    width: 310px;
}

.w-320px {
    width: 320px;
}

.w-330px {
    width: 330px;
}

.w-340px {
    width: 340px;
}

.w-350px {
    width: 350px;
}

.w-360px {
    width: 360px;
}

.w-370px {
    width: 370px;
}

.w-380px {
    width: 380px;
}

.w-390px {
    width: 390px;
}

.w-400px {
    width: 400px;
}

.w-450px {
    width: 450px;
}

.w-500px {
    width: 500px;
}

.w-550px {
    width: 550px;
}

.w-600px {
    width: 600px;
}

.w-650px {
    width: 650px;
}

.w-700px {
    width: 700px;
}

.w-750px {
    width: 750px;
}

.w-800px {
    width: 800px;
}

.w-850px {
    width: 850px;
}

.w-900px {
    width: 900px;
}

.w-950px {
    width: 950px;
}

.w-1000px {
    width: 1000px;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-55 {
    width: 55%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-70 {
    width: 70%;
}

.w-75 {
    width: 75%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

/* ===================================
    08. Height
====================================== */
.h-1px {
    height: 1px;
}

.h-2px {
    height: 2px;
}

.h-3px {
    height: 3px;
}

.h-4px {
    height: 4px;
}

.h-5px {
    height: 5px;
}

.h-6px {
    height: 6px;
}

.h-7px {
    height: 7px;
}

.h-8px {
    height: 8px;
}

.h-9px {
    height: 9px;
}

.h-10px {
    height: 10px;
}

.h-11px {
    height: 11px;
}

.h-12px {
    height: 12px;
}

.h-13px {
    height: 13px;
}

.h-14px {
    height: 14px;
}

.h-15px {
    height: 15px;
}

.h-20px {
    height: 20px;
}

.h-25px {
    height: 25px;
}

.h-30px {
    height: 30px;
}

.h-35px {
    height: 35px;
}

.h-40px {
    height: 40px;
}

.h-42px {
    height: 42px;
}

.h-45px {
    height: 45px;
}

.h-50px {
    height: 50px;
}

.h-55px {
    height: 55px;
}

.h-60px {
    height: 60px;
}

.h-65px {
    height: 65px;
}

.h-70px {
    height: 70px;
}

.h-75px {
    height: 75px;
}

.h-80px {
    height: 80px;
}

.h-85px {
    height: 85px;
}

.h-90px {
    height: 90px;
}

.h-95px {
    height: 95px;
}

.h-100px {
    height: 100px;
}

.h-110px {
    height: 110px;
}

.h-120px {
    height: 120px;
}

.h-130px {
    height: 130px;
}

.h-140px {
    height: 140px;
}

.h-150px {
    height: 150px;
}

.h-160px {
    height: 160px;
}

.h-170px {
    height: 170px;
}

.h-180px {
    height: 180px;
}

.h-190px {
    height: 190px;
}

.h-200px {
    height: 200px;
}

.h-210px {
    height: 210px;
}

.h-220px {
    height: 220px;
}

.h-230px {
    height: 230px;
}

.h-240px {
    height: 240px;
}

.h-250px {
    height: 250px;
}

.h-260px {
    height: 260px;
}

.h-270px {
    height: 270px;
}

.h-280px {
    height: 280px;
}

.h-290px {
    height: 290px;
}

.h-300px {
    height: 300px;
}

.h-350px {
    height: 350px;
}

.h-400px {
    height: 400px;
}

.h-450px {
    height: 450px;
}

.h-480px {
    height: 480px;
}

.h-500px {
    height: 500px;
}

.h-550px {
    height: 550px;
}

.h-580px {
    height: 580px;
}

.h-600px {
    height: 600px;
}

.h-650px {
    height: 650px;
}

.h-700px {
    height: 700px;
}

.h-750px {
    height: 750px;
}

.h-800px {
    height: 800px;
}

.h-850px {
    height: 850px;
}

.h-auto {
    height: auto;
}

/* Screen height */
.extra-very-small-screen {
    height: 250px;
}

.extra-small-screen {
    height: 300px;
}

.small-screen {
    height: 400px;
}

.one-half-screen {
    height: 600px;
}

.one-third-screen {
    height: 700px;
}

.one-fourth-screen {
    height: 800px;
}

.one-fifth-screen {
    height: 900px;
}

.one-sixth-screen {
    height: 1000px;
}

.one-seventh-screen {
    height: 1200px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: auto;
    }
}

/* overlay dark&light */
[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}

[data-overlay-dark] .container,
[data-overlay-dark] .container-xxl,
[data-overlay-light] .container-xxl,
[data-overlay-light] .container {
    position: relative;
    z-index: 7;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

[data-overlay-dark]:before {
    background: #141414;
}

[data-overlay-light]:before {
    background: #fff;
}

[data-overlay-dark],
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
    color: #fff;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}

/* Grid */
.row.sm-marg {
    margin-left: -5px;
    margin-right: -5px;
}
.row.sm-marg > * {
    padding-left: 5px;
    padding-right: 5px;
}

.row.stand-marg {
    margin-left: -20px;
    margin-right: -20px;
}
.row.stand-marg > * {
    padding-left: 20px;
    padding-right: 20px;
}

.row.md-marg {
    margin-left: -25px;
    margin-right: -25px;
}
.row.md-marg > * {
    padding-left: 25px;
    padding-right: 25px;
}

.row.lg-marg {
    margin-left: -40px;
    margin-right: -40px;
}
.row.lg-marg > * {
    padding-left: 40px;
    padding-right: 40px;
}

.row.xlg-marg {
    margin-left: -50px;
    margin-right: -50px;
}
.row.xlg-marg > * {
    padding-left: 50px;
    padding-right: 50px;
}

.row.xxlg-marg {
    margin-left: -80px;
    margin-right: -80px;
}
.row.xxlg-marg > * {
    padding-left: 80px;
    padding-right: 80px;
}

.container-xxl {
    max-width: 1440px;
}

.container {
    max-width: 1320px;
}

/* ===================================
    06. Typography
====================================== */
/* Heading */
h1,
.h1 {
    font-size: 64px;
}

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

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

h4 {
    font-size: 32px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 22px;
}
h6.regular {
    font-size: 18px;
}

.lg-text {
    font-size: 96px;
}

.md-text {
    font-size: 54px;
}

.sm-text {
    font-size: 20px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 500;
}

p {
    color: #a8a8a8;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 0;
}

span,
a {
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover,
a:focus,
a:active {
    color: inherit;
}

/* Font custom */
.font-style-italic {
    font-style: italic;
}

.hover-text {
    display: none;
}

b,
strong {
    font-weight: 700;
}

.text-white-space-nowrap {
    white-space: nowrap;
}

.text-white-space-normal {
    white-space: normal;
}

.text-transform-none {
    text-transform: none !important;
}

.text-uppercase-inherit {
    text-transform: inherit !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.word-break-normal {
    word-break: normal;
}

.vertical-align-top {
    vertical-align: top;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

/* Font size */
.fs-0 {
    font-size: 0 !important;
}

.fs-9 {
    font-size: 9px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
    line-height: 32px;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-40 {
    font-size: 40px !important;
}

.fs-45 {
    font-size: 45px !important;
}

.fs-50 {
    font-size: 50px !important;
}

.fs-55 {
    font-size: 55px !important;
}

.fs-60 {
    font-size: 60px !important;
}

.fs-65 {
    font-size: 65px !important;
}

.fs-70 {
    font-size: 70px !important;
}

.fs-75 {
    font-size: 75px !important;
}

.fs-80 {
    font-size: 80px !important;
}

.fs-85 {
    font-size: 85px !important;
}

.fs-90 {
    font-size: 90px !important;
}

.fs-95 {
    font-size: 95px !important;
}

.fs-100 {
    font-size: 100px !important;
}

.fs-110 {
    font-size: 6.875rem;
}

.fs-120 {
    font-size: 7.5rem;
}

.fs-130 {
    font-size: 8.125rem;
}

.fs-140 {
    font-size: 8.75rem;
}

.fs-150 {
    font-size: 9.375rem;
}

.fs-160 {
    font-size: 10rem;
}

.fs-170 {
    font-size: 10.625rem;
}

.fs-180 {
    font-size: 11.25rem;
}

.fs-190 {
    font-size: 11.875rem;
}

.fs-200 {
    font-size: 12.5rem;
}

.fs-225 {
    font-size: 14.063rem;
}

.fs-250 {
    font-size: 15.625rem;
}

.fs-275 {
    font-size: 17.188rem;
}

.fs-300 {
    font-size: 18.75rem;
}

.fs-350 {
    font-size: 21.875rem;
}

.fs-400 {
    font-size: 25rem;
}

/* Line height */
.lh-0px {
    line-height: 0px;
}

.lh-10 {
    line-height: 10px;
}

.lh-11 {
    line-height: 11px;
}

.lh-12 {
    line-height: 12px;
}

.lh-13 {
    line-height: 13px;
}

.lh-14 {
    line-height: 14px;
}

.lh-15 {
    line-height: 15px;
}

.lh-16 {
    line-height: 16px;
}

.lh-18 {
    line-height: 18px;
}

.lh-19 {
    line-height: 19px;
}

.lh-20 {
    line-height: 20px;
}

.lh-22 {
    line-height: 22px;
}

.lh-24 {
    line-height: 24px;
}

.lh-26 {
    line-height: 26px;
}

.lh-28 {
    line-height: 28px;
}

.lh-30 {
    line-height: 30px;
}

.lh-32 {
    line-height: 2rem;
}

.lh-34 {
    line-height: 2.125rem;
}

.lh-36 {
    line-height: 2.25rem;
}

.lh-38 {
    line-height: 2.375rem;
}

.lh-40 {
    line-height: 2.5rem;
}

.lh-42 {
    line-height: 2.625rem;
}

.lh-44 {
    line-height: 2.75rem;
}

.lh-46 {
    line-height: 2.875rem;
}

.lh-48 {
    line-height: 3rem;
}

.lh-50 {
    line-height: 3.125rem;
}

.lh-55 {
    line-height: 3.438rem;
}

.lh-60 {
    line-height: 3.75rem;
}

.lh-65 {
    line-height: 4.063rem;
}

.lh-70 {
    line-height: 4.375rem;
}

.lh-75 {
    line-height: 4.688rem;
}

.lh-80 {
    line-height: 5rem;
}

.lh-85 {
    line-height: 5.313rem;
}

.lh-90 {
    line-height: 5.625rem;
}

.lh-95 {
    line-height: 5.938rem;
}

.lh-100 {
    line-height: 6.25rem;
}

.lh-105 {
    line-height: 6.563rem;
}

.lh-110 {
    line-height: 6.875rem;
}

.lh-115 {
    line-height: 7.188rem;
}

.lh-120 {
    line-height: 7.5rem;
}

.lh-0 {
    line-height: 0;
}

.lh-normal {
    line-height: normal;
}

.lh-initial {
    line-height: initial;
}

.lh-inherit {
    line-height: inherit;
}

/* Text stroke width */
.text-outline-width-1px {
    -webkit-text-stroke-width: 1px;
}

.text-outline-width-2px {
    -webkit-text-stroke-width: 2px;
}

.text-outline-width-3px {
    -webkit-text-stroke-width: 3px;
}

.text-outline-width-4px {
    -webkit-text-stroke-width: 4px;
}

.text-outline-width-5px {
    -webkit-text-stroke-width: 5px;
}

/* Letter spacing */
.ls-0px {
    letter-spacing: 0px !important;
}

.ls-05px {
    letter-spacing: 0.5px !important;
}

.ls-1px {
    letter-spacing: 1px !important;
}

.ls-2px {
    letter-spacing: 2px !important;
}

.ls-3px {
    letter-spacing: 3px !important;
}

.ls-4px {
    letter-spacing: 4px !important;
}

.ls-5px {
    letter-spacing: 5px !important;
}

.ls-6px {
    letter-spacing: 6px !important;
}

.ls-7px {
    letter-spacing: 7px !important;
}

.ls-8px {
    letter-spacing: 8px !important;
}

.ls-9px {
    letter-spacing: 9px !important;
}

.ls-10px {
    letter-spacing: 10px !important;
}

.ls-minus-05px {
    letter-spacing: -0.5px !important;
}

.ls-minus-1px {
    letter-spacing: -1px !important;
}

.ls-minus-2px {
    letter-spacing: -2px !important;
}

.ls-minus-3px {
    letter-spacing: -3px !important;
}

.ls-minus-4px {
    letter-spacing: -4px !important;
}

.ls-minus-5px {
    letter-spacing: -5px !important;
}

.ls-minus-6px {
    letter-spacing: -6px !important;
}

.ls-minus-7px {
    letter-spacing: -7px !important;
}

.ls-minus-8px {
    letter-spacing: -8px !important;
}

.ls-minus-9px {
    letter-spacing: -9px !important;
}

.ls-minus-10px {
    letter-spacing: -10px !important;
}

/* Icon size */
.icon-extra-double-large {
    font-size: 80px;
}

.icon-double-large {
    font-size: 60px;
}

.icon-extra-large {
    font-size: 50px;
}

.icon-large {
    font-size: 42px;
}

.icon-medium {
    font-size: 34px;
}

.icon-very-medium {
    font-size: 28px;
}

.icon-extra-medium {
    font-size: 24px;
}

.icon-small {
    font-size: 18px;
}

.icon-very-small {
    font-size: 14px;
}

/* ===================================
    Buttons
====================================== */
.butn {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.butn.butn-md {
    padding: 15px 35px;
}
.butn.butn-lg {
    padding: 18px 40px;
}
.butn.butn-full {
    padding: 14px 30px;
    width: 100%;
    text-align: center;
}
.butn.bg-light {
    background: #fff;
    border: 1px solid transparent;
    color: #000;
}
.butn.bg-light:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.5);
    color: inherit;
}
.butn.butn-line-light {
    padding: 0 0 10px;
    border-bottom: 1px solid #fff;
    width: 100%;
}
.butn.butn-line-dark {
    padding: 0 0 10px;
    border-bottom: 1px solid #666;
    width: 100%;
}
.butn.butn-line-dark img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.butn.butn-line {
    padding: 0 0 10px;
    border-bottom: 1px solid #000;
    width: 100%;
}
.butn.butn-circle-md {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
}
.butn.butn-circle-md img {
    width: 20px;
}
.butn.bord-light {
    border: 1px solid #fff;
}
.butn.bord-gray {
    border: 1px solid #999 !important;
}
.butn.hover-light:hover {
    background: #fff;
    border-color: #fff;
    color: #1d1d1d;
}
.butn.hover-light2:hover {
    background: #eee;
    border-color: #eee;
    color: #1d1d1d;
}
.butn.hover-dark:hover {
    background: #1d1d1d;
    border-color: #1d1d1d;
    color: #fff;
}
.butn.butn-blur {
    color: #fff;
    background: rgba(0, 0, 0, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.butn.butn-blur:hover {
    background: #fff;
    color: #1d1d1d;
}
.butn.butn-blur:hover span {
    color: #1d1d1d;
}
.butn.butn-blur:hover img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.butn.bord-icon {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 7px 10px 7px 20px;
    border-radius: 30px;
}
.butn.bord-icon .icon {
    padding: 8px 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.03);
    margin-left: 10px;
}
.butn.bord-icon.light-bord {
    border-color: rgba(255, 255, 255, 0.1);
}
.butn.bord-icon.light-bord .icon {
    background: rgba(255, 255, 255, 0.05);
}
.butn.butn-cirle-lg-icon > div {
    display: inline-block;
    width: 160px;
    height: 160px;
    line-height: 170px;
    text-align: center;
    border: 1px solid #1d1d1d;
    border-radius: 50%;
    margin: 0 -10px;
    font-size: 22px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.butn.butn-cirle-lg-icon > div span {
    line-height: 1.2;
}
.butn.butn-cirle-lg-icon > div:last-of-type {
    background: #1d1d1d;
}
.butn.butn-cirle-lg-icon:hover > div {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    margin: 0 10px;
}
.butn.butn-cirle-lg-icon:hover > div:last-of-type {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.butn.butn-arrow {
    padding: 10px 20px;
    background: #1d1d1d;
    border-radius: 30px;
    color: #fff;
}
.butn.butn-arrow span {
    margin: 0 3px;
}
.butn.butn-arrow img {
    width: 15px;
}
.butn.butn-arrow.bord {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: inherit;
}
.butn.standerd {
    padding: 14px 30px;
}

.butn-arrow {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.butn-arrow:hover {
    background: #fff;
    color: #000;
}
.butn-arrow:hover img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.circle-button {
    position: relative;
    display: inline-block;
}
.circle-button .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.circle-button svg {
    width: 250px;
    fill: inherit;
}

.butn-circle {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.butn-circle.butn-dark {
    color: #fff;
    background: #141414;
}
.butn-circle.butn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.butn-circle.butn-light:hover {
    background: #fff;
    color: #141414;
}
.butn-circle.butn-light:hover .text {
    color: #141414;
}
.butn-circle.butn-light:hover svg path {
    stroke: #141414;
}
.butn-circle svg path {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.butn-circle:hover {
    background: #005a82;
    border-color: #005a82;
    color: #fff;
}
.butn-circle:hover svg path {
    stroke: #fff;
}
.butn-circle:hover .text-dark {
    color: #fff !important;
}

.more-arrow {
    overflow: hidden;
}
.more-arrow span {
    text-indent: -110px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.more-arrow:hover span {
    text-indent: 0;
}

.butn-bord-space {
    height: 45px;
    width: 120px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    position: relative;
}
.butn-bord-space span {
    position: absolute;
    height: 45px;
    width: 45px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 0;
    right: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.butn-bord-space:hover span {
    right: calc(100% - 45px);
}

.butn-arrow-circle {
    padding: 4px 4px 4px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}
.butn-arrow-circle .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-left: 20px;
}

.butn-icon-circle span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #000;
}

.butn-icon-circle.icon-light span {
    background: #fff;
}

.view-all {
    text-decoration: underline;
}

/* Cursor
-----------------------------------------------------------------*/
.hover-this .hover-anim {
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition:
        transform 0.2s linear,
        -webkit-transform 0.2s linear;
}

.cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: #fff;
    border-radius: 50%;
    mix-blend-mode: difference;
    -webkit-transition:
        opacity 0.4s ease,
        -webkit-transform 0.3s ease;
    transition:
        opacity 0.4s ease,
        -webkit-transform 0.3s ease;
    -o-transition:
        transform 0.3s ease,
        opacity 0.4s ease;
    transition:
        transform 0.3s ease,
        opacity 0.4s ease;
    transition:
        transform 0.3s ease,
        opacity 0.4s ease,
        -webkit-transform 0.3s ease;
    z-index: 99999;
}

.cursor-active {
    -webkit-transform: translate(-50%, -50%) scale(8);
    -ms-transform: translate(-50%, -50%) scale(8);
    transform: translate(-50%, -50%) scale(8);
    opacity: 0.1;
}

.rolling-text {
    display: inline-block;
    overflow: hidden;
    line-height: 50px;
    height: 50px;
}
.rolling-text.butn {
    padding: 0 35px;
}

.social-text .rolling-text {
    line-height: 30px;
    height: 30px;
}

.rolling-text:hover .letter,
.rolling-text.play .letter {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.rolling-text .letter {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    -o-transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transition:
        transform 0.5s cubic-bezier(0.76, 0, 0.24, 1),
        -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.letter:nth-child(2) {
    -webkit-transition-delay: 0.015s;
    -o-transition-delay: 0.015s;
    transition-delay: 0.015s;
}

.letter:nth-child(3) {
    -webkit-transition-delay: 0.03s;
    -o-transition-delay: 0.03s;
    transition-delay: 0.03s;
}

.letter:nth-child(4) {
    -webkit-transition-delay: 0.045s;
    -o-transition-delay: 0.045s;
    transition-delay: 0.045s;
}

.letter:nth-child(5) {
    -webkit-transition-delay: 0.06s;
    -o-transition-delay: 0.06s;
    transition-delay: 0.06s;
}

.letter:nth-child(6) {
    -webkit-transition-delay: 0.075s;
    -o-transition-delay: 0.075s;
    transition-delay: 0.075s;
}

.letter:nth-child(7) {
    -webkit-transition-delay: 0.09s;
    -o-transition-delay: 0.09s;
    transition-delay: 0.09s;
}

.letter:nth-child(8) {
    -webkit-transition-delay: 0.105s;
    -o-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.letter:nth-child(9) {
    -webkit-transition-delay: 0.12s;
    -o-transition-delay: 0.12s;
    transition-delay: 0.12s;
}

.letter:nth-child(10) {
    -webkit-transition-delay: 0.135s;
    -o-transition-delay: 0.135s;
    transition-delay: 0.135s;
}

.letter:nth-child(11) {
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.letter:nth-child(12) {
    -webkit-transition-delay: 0.165s;
    -o-transition-delay: 0.165s;
    transition-delay: 0.165s;
}

.letter:nth-child(13) {
    -webkit-transition-delay: 0.18s;
    -o-transition-delay: 0.18s;
    transition-delay: 0.18s;
}

.letter:nth-child(14) {
    -webkit-transition-delay: 0.195s;
    -o-transition-delay: 0.195s;
    transition-delay: 0.195s;
}

.letter:nth-child(15) {
    -webkit-transition-delay: 0.21s;
    -o-transition-delay: 0.21s;
    transition-delay: 0.21s;
}

.letter:nth-child(16) {
    -webkit-transition-delay: 0.225s;
    -o-transition-delay: 0.225s;
    transition-delay: 0.225s;
}

.letter:nth-child(17) {
    -webkit-transition-delay: 0.24s;
    -o-transition-delay: 0.24s;
    transition-delay: 0.24s;
}

.letter:nth-child(18) {
    -webkit-transition-delay: 0.255s;
    -o-transition-delay: 0.255s;
    transition-delay: 0.255s;
}

.letter:nth-child(19) {
    -webkit-transition-delay: 0.27s;
    -o-transition-delay: 0.27s;
    transition-delay: 0.27s;
}

.letter:nth-child(20) {
    -webkit-transition-delay: 0.285s;
    -o-transition-delay: 0.285s;
    transition-delay: 0.285s;
}

.letter:nth-child(21) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    mix-blend-mode: difference;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    text-align: center;
    line-height: 44px;
    font-size: 13px;
    font-weight: 900;
    color: #ccc;
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #ccc;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

/* Extra
-----------------------------------------------------------------*/
.d-rotate {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.d-rotate .rotate-text {
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    opacity: 0;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.d-rotate.animated .rotate-text {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    opacity: 1;
}

.d-slideup .sideup-text {
    overflow: hidden;
    display: block;
}
.d-slideup .sideup-text:first-of-type .up-text {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.d-slideup .sideup-text:nth-of-type(2) .up-text {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.d-slideup .sideup-text:nth-of-type(3) .up-text {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}
.d-slideup .sideup-text:nth-of-type(4) .up-text {
    -webkit-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
.d-slideup .sideup-text:nth-of-type(5) .up-text {
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
}
.d-slideup .sideup-text .up-text {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.d-slideup.animated .up-text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.main-marq {
    position: relative;
    padding: 0;
}
.main-marq:after {
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    pointer-events: none;
    background: -webkit-linear-gradient(
        right,
        #181818,
        rgba(255, 255, 255, 0) 220px,
        rgba(255, 255, 255, 0) calc(100% - 220px),
        #181818
    );
    background: -o-linear-gradient(
        right,
        #181818,
        rgba(255, 255, 255, 0) 220px,
        rgba(255, 255, 255, 0) calc(100% - 220px),
        #181818
    );
    background: linear-gradient(
        to left,
        #181818,
        rgba(255, 255, 255, 0) 220px,
        rgba(255, 255, 255, 0) calc(100% - 220px),
        #181818
    );
}
.main-marq.md-text .box .item h4 {
    font-size: 40px;
}
.main-marq.lrg .box .item h4 {
    font-size: 5vw;
}
.main-marq.xlrg .box .item {
    padding: 0 30px;
}
.main-marq.xlrg .box .item h4 {
    font-size: 10vw;
}
.main-marq .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-marq .strok .item h4 {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #fff;
}
.main-marq .strok .item h4 a {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #fff;
}
.main-marq .non-strok .item h4 {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
}
.main-marq .non-strok .item h4 a {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
}
.main-marq .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-marq .box .item {
    padding: 0 30px;
}
.main-marq .box .item h4 {
    white-space: nowrap;
    margin: 0;
}
.main-marq .box .item h4 .icon {
    margin-bottom: -15px;
}
.main-marq .box .item h2 {
    margin: 0;
}
.main-marq .box .item:nth-of-type(even) h4 {
    color: transparent;
    -webkit-text-stroke: 0.5px #fff;
}
.main-marq .box .item:nth-of-type(even) h4 a {
    color: transparent;
    -webkit-text-stroke: 0.5px #fff;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
    color: #fff;
    -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
    color: #fff;
    -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.slide-har {
    position: relative;
}
.slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 100s linear infinite;
    animation: slide-har 100s linear infinite;
}
.slide-har.st2 .box {
    position: relative;
    -webkit-animation: slide-har-revers 100s linear infinite;
    animation: slide-har-revers 100s linear infinite;
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.imago {
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition:
        -webkit-clip-path 0.8s ease-in-out 0.3s,
        -webkit-transform 0.8s ease-in-out 1.1s,
        -webkit-filter 0.5s ease-in-out 1.1s;
    transition:
        -webkit-clip-path 0.8s ease-in-out 0.3s,
        -webkit-transform 0.8s ease-in-out 1.1s,
        -webkit-filter 0.5s ease-in-out 1.1s;
    -o-transition:
        clip-path 0.8s ease-in-out 0.3s,
        transform 0.8s ease-in-out 1.1s,
        filter 0.5s ease-in-out 1.1s;
    transition:
        clip-path 0.8s ease-in-out 0.3s,
        transform 0.8s ease-in-out 1.1s,
        filter 0.5s ease-in-out 1.1s;
    transition:
        clip-path 0.8s ease-in-out 0.3s,
        transform 0.8s ease-in-out 1.1s,
        filter 0.5s ease-in-out 1.1s,
        -webkit-clip-path 0.8s ease-in-out 0.3s,
        -webkit-transform 0.8s ease-in-out 1.1s,
        -webkit-filter 0.5s ease-in-out 1.1s;
    position: relative;
}
.imago.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
.imago.simpl {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
}

/* Preloader
-----------------------------------------------------------------*/
body.loaded {
    overflow: hidden !important;
    height: 100% !important;
}

.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    z-index: 99999999999999;
}

.loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: #001d35;
}

.loader-wrap .loader-wrap-heading .load-text {
    font-size: 60px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    z-index: 20;
}

.load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.load-text span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ====================== [ Start Overlay ] ====================== */
[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}

[data-overlay-dark] .container,
[data-overlay-dark] .container-xxl,
[data-overlay-light] .container-xxl,
[data-overlay-light] .container {
    position: relative;
    z-index: 7;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

[data-overlay-dark]:before {
    background: #1d1d1d;
}

[data-overlay-light]:before {
    background: #fff;
}

[data-overlay-dark],
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
    color: #fff;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}

/* ====================== [ End Overlay ] ====================== */
/* Menu
-----------------------------------------------------------------*/
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    border-bottom: 2px solid transparent;
    z-index: 999;
}
.navbar.static {
    position: relative;
}
.navbar.bord {
    border-color: rgba(255, 255, 255, 0.05);
}
.navbar.blur {
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.navbar.nav-scroll {
    border-color: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.05);
    padding: 0;
    position: fixed;
    top: -80px;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition:
        transform 0.8s,
        -webkit-transform 0.8s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
}
.navbar .icon-bar {
    color: #fff;
}
.navbar .navbar-nav .nav-link {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 20px 10px 15px 10px;
    margin: 0 15px;
}
.navbar .navbar-nav .nav-link .rolling-text {
    height: 30px;
    line-height: 30px;
}
.navbar .navbar-nav .dropdown-menu {
    padding: 10px 5px;
    border: 1px solid #393939;
}
.navbar .dropdown-menu {
    display: block;
    position: absolute;
    top: 75px;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    color: #fff;
    background: #0b1c2c;
    border: 1px solid #1e3a5a;
    border-radius: 5px;
    min-width: 255px;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar .dropdown-menu.show-left .dropdown-item .dropdown-side {
    left: auto;
    right: 248px;
}
.navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 10px 25px;
    position: relative;
}
.navbar .dropdown-menu .dropdown-item .dropdown-side {
    position: absolute;
    left: 248px;
    top: -15px;
    display: block;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #1e3a5a;
    border-radius: 5px;
    background: #0b1c2c;
    width: 240px;
    padding: 20px 0px;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.navbar .dropdown-menu .dropdown-item .dropdown-side.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar .dropdown-menu .dropdown-item .icon-arrow {
    position: absolute;
    right: 15px;
}
.navbar .dropdown-menu .dropdown-item:after {
    content: "";
    width: 0px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 10px;
    top: 18px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.navbar .dropdown-menu .dropdown-item:hover {
    padding-left: 30px;
    background: transparent;
}
.navbar .dropdown-menu .dropdown-item:hover:after {
    width: 10px;
}
.navbar .no-relative {
    position: static;
}
.navbar .dropdown {
    position: static;
}
.navbar .mega-menu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 75px;
    overflow: hidden;
    padding: 0 !important;
    border: 0 !important;
    background: transparent;
}
.navbar .mega-menu .container {
    padding: 40px !important;
    border: 1px solid #393939;
    background: #252424;
    border-radius: 5px;
}
.navbar .mega-menu .title {
    margin-bottom: 20px;
}
.navbar .mega-menu .title .sub-title {
    font-weight: 600;
}
.navbar .mega-menu .item-img .img {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar .logo {
    position: relative;
}
.navbar .contact-button {
    position: relative;
}
.navbar .contact-button .butn {
    background: #fff;
    color: #222121;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.navbar .contact-button .butn:hover {
    background: transparent;
    color: #fff;
}
.navbar .menu-icon {
    padding: 25px 30px;
}
.navbar .dropdown-toggle:after {
    margin-left: 5px;
    vertical-align: 12px;
}

/* Titles
-----------------------------------------------------------------*/
.sec-head {
    padding-bottom: 60px;
    position: relative;
}
.sec-head:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 1px solid #fff;
    height: 40px;
    opacity: 0.3;
}

.sm-title-dot {
    position: relative;
}
.sm-title-dot:before {
    content: "";
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 20px;
}

.sm-title-numb {
    color: #888;
    font-weight: 300;
}
.sm-title-numb span {
    position: relative;
    padding-right: 60px;
}
.sm-title-numb span:after {
    content: "";
    width: 20px;
    border-bottom: 1px solid #888;
    position: absolute;
    left: 30px;
    top: 50%;
}

.sec-head-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sec-head-line span {
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: #171717;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}

/* About Intro
-----------------------------------------------------------------*/
.intro-style1 .container-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.intro-style1 .rectangle {
    background: #d2d7d3;
    height: 500px;
    width: 25%;
    border-radius: 15px;
    margin: 0 5px;
}

.intro-style2 .fs-250 {
    position: relative;
    display: inline-block;
    line-height: 1;
}
.intro-style2 .fs-250 span {
    position: absolute;
    top: 40px;
    right: -30px;
    font-size: 30px;
}

.img-bord-color {
    border-bottom: 10px solid #005a82;
}

.skills .sub-bg {
    padding: 20px 10px;
    text-align: center;
}

.skills .tag {
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    margin: 4px 0;
}

/* Blog
-----------------------------------------------------------------*/
.blog-style1 .item {
    position: relative;
}
.blog-style1 .item:hover .date {
    opacity: 0;
}
.blog-style1 .item:hover .icon span {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.blog-style1 .item .fit-img {
    position: relative;
}
.blog-style1 .item .date {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    padding: 15px;
    color: #fff;
    z-index: 4;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog-style1 .item .date div {
    width: 60px;
    height: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 12px;
}
.blog-style1 .item .date div i {
    display: block;
    font-size: 18px;
    font-weight: 500;
}
.blog-style1 .item .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    background: #171717;
    border-top-left-radius: 50%;
    padding: 15px;
}
.blog-style1 .item .icon:before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 6px 6px 0 6px #171717;
    box-shadow: 6px 6px 0 6px #171717;
}
.blog-style1 .item .icon:after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 6px 6px 0 6px #171717;
    box-shadow: 6px 6px 0 6px #171717;
}
.blog-style1 .item .icon span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog-style1 .item .icon span svg {
    width: 15px;
    fill: #000;
}
.blog-style1 .item .icon:hover span {
    background: rgba(255, 255, 255, 0.2);
}
.blog-style1 .item .icon:hover span svg {
    fill: #5fff66;
}
.blog-style1 .item .text {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-style1 .item .date-show {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #171717;
    text-align: center;
    padding: 15px 10px;
    border-radius: 5px;
}
.blog-style1 .item .date-show span {
    font-size: 30px;
    font-weight: 500;
    display: block;
}

.blog-style2 .item .text {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .search-box {
    position: relative;
}
.sidebar .search-box input {
    color: #fff;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    width: 100%;
    background: transparent;
}
.sidebar .search-box input:focus {
    border-color: #fff;
}
.sidebar .search-box .icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sidebar .widget {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar .widget .title-widget {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
}
.sidebar .widget.catogry li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
}
.sidebar .widget.catogry li:last-of-type {
    margin-bottom: 0;
}
.sidebar .widget.catogry li:hover {
    background: rgba(255, 255, 255, 0.02);
}
.sidebar .widget.last-post-thum .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.sidebar .widget.last-post-thum .item:last-of-type {
    margin-bottom: 0;
}
.sidebar .widget.last-post-thum .item:hover .img a .date {
    opacity: 1;
}
.sidebar .widget.last-post-thum .item .img {
    width: 90px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
}
.sidebar .widget.last-post-thum .item .img a {
    width: 100%;
    height: 100%;
    position: relative;
}
.sidebar .widget.last-post-thum .item .img a .date {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    width: 60px;
    height: 60px;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.sidebar .widget.last-post-thum .item .img a .date span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    line-height: 1;
}
.sidebar .widget.last-post-thum .item .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.sidebar .widget.last-post-thum .item .cont {
    padding-left: 25px;
}
.sidebar .widget.last-post-thum .item .cont h6 {
    font-size: 17px;
}
.sidebar .widget.last-post-thum .item .cont .tag {
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
}
.sidebar .widget.tags a {
    padding: 8px 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    margin: 2px 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.sidebar .widget.tags a:hover {
    background: #6250eb;
}

.blog-main .item .content {
    margin-top: 40px;
}
.blog-main .item .content .post-date {
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 12px;
    color: #ddd;
    text-transform: uppercase;
    margin-right: 15px;
}

.blog-header .tag a {
    padding: 8px 20px;
    background: #6250eb;
    border-radius: 30px;
}

.blog-header .background {
    height: 400px;
}

.main-post .spec-letter {
    font-size: 60px;
    line-height: 50px;
    padding-right: 10px;
    float: left;
}

.main-post .post-qoute {
    position: relative;
    padding: 40px;
    padding-left: 120px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.main-post .post-qoute h6 {
    position: relative;
}
.main-post .post-qoute h6:before {
    content: "“";
    position: absolute;
    top: 80px;
    left: -100px;
    font-size: 180px;
    font-family: Poppins;
    line-height: 0;
}

.main-post .iner-img {
    height: 400px;
}
.main-post .iner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main-post .unorder-list li,
.main-post .order-list li {
    margin-top: 10px;
    opacity: 0.7;
    padding-left: 15px;
    position: relative;
}
.main-post .unorder-list li:before,
.main-post .order-list li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 10px;
}

.main-post .order-list li {
    padding-left: 0;
}
.main-post .order-list li:before {
    display: none;
}
.main-post .order-list li span {
    font-size: 13px;
}

.main-post .info-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.main-post .info-area .tags span,
.main-post .info-area .share-icon span {
    font-size: 14px;
    margin-right: 5px;
    opacity: 0.7;
}
.main-post .info-area .tags a,
.main-post .info-area .share-icon a {
    padding: 7px 20px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin-right: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.main-post .info-area .tags a:hover,
.main-post .info-area .share-icon a:hover {
    background: #6250eb;
    color: #fff;
}
.main-post .info-area .share-icon a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 11px;
    text-align: center;
    padding: 0;
}

.main-post .author-area {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.main-post .author-area .author-img .img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.main-post .next-prv-post .thumb-post {
    width: 100%;
    padding: 40px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.main-post .next-prv-post .thumb-post:after {
    content: "";
    background: #1a1a1a;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 0.7;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.main-post .next-prv-post .thumb-post:first-of-type {
    margin-right: 15px;
}
.main-post .next-prv-post .thumb-post:last-of-type {
    margin-left: 15px;
}

.comments-post .item-box {
    position: relative;
}
.comments-post .item-box p {
    font-size: 14px;
    width: 80%;
}
.comments-post .item-box.replayed {
    margin-left: 30px;
}
.comments-post .item-box .replay-butn {
    position: absolute;
    top: 15px;
    right: 15px;
}
.comments-post .item-box .replay-butn a {
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.comments-post .item-box .replay-butn a:hover {
    background: var(--maincolor);
    color: #1d1d1d;
}

.comments-from input,
.comments-from textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: transparent;
    color: #fff;
    padding: 15px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.comments-from input:focus,
.comments-from textarea:focus {
    border-color: #fff;
}

.comments-from textarea {
    min-height: 180px;
}

.comments-from button {
    padding: 15px 35px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.comments-from button .text {
    position: relative;
    z-index: 4;
}
.comments-from button:hover {
    color: #1d1d1d;
    background: #fff;
}

/* Clients
-----------------------------------------------------------------*/
.clients-ds .item {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80px;
    height: 100%;
    padding: 50px 30px;
}
.clients-ds .item .text-center {
    width: 100%;
}
.clients-ds .item .img {
    max-width: 100px;
    margin: auto;
    opacity: 0.5;
}
.clients-ds .item p {
    margin-top: 30px;
}
.clients-ds .item:hover .img {
    opacity: 1;
}

.marq-brand .item-marq {
    padding: 0;
    text-align: center;
}
.marq-brand .item-marq a {
    width: 320px;
    height: 180px;
    line-height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 10px;
    margin: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.marq-brand .item-marq a img {
    vertical-align: middle;
    max-width: 120px;
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.marq-brand .item-marq a:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}
.marq-brand .item-marq a:hover img {
    opacity: 1;
}

.marq-brand .item {
    padding: 0 50px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.marq-brand a:hover img {
    opacity: 1;
}

.marq-brand a img {
    vertical-align: middle;
    max-width: 100px;
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* Contact
-----------------------------------------------------------------*/
.contact input,
.contact textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    padding: 15px 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.contact input:focus,
.contact textarea:focus {
    border-color: #fff;
}

.contact textarea {
    min-height: 300px;
}

.contact button {
    border-radius: 30px;
    border: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.contact button:hover {
    background: #005a82;
    color: #fff;
}

.contact .info-box {
    padding: 80px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.contact .info-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/map.png);
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}
.contact .info-box .phone {
    color: #005a82;
}

.contact .form2 input,
.contact .form2 textarea {
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
}

.google-map {
    height: 450px;
    width: 100%;
    position: relative;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pricing
-----------------------------------------------------------------*/
.price-style1 .item {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.price-style1 .item .info {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-style1 .item .info span {
    opacity: 0.7;
}
.price-style1 .item ul {
    padding: 0;
}
.price-style1 .item li {
    position: relative;
    margin: 15px 0;
    padding-left: 30px;
}
.price-style1 .item li:before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.price-style1 .butn {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.price-style1 .butn.active {
    background: #005a82;
    color: #fff;
}
.price-style1 .butn:hover {
    background: transparent;
    color: #fff;
}

/* Footer
-----------------------------------------------------------------*/
.call-action-style2 {
    position: relative;
}
.call-action-style2:hover .butn-call {
    opacity: 1;
}
.call-action-style2 .butn-call {
    background: #005a82;
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}
.call-action-style2 .lg-text .item-marq {
    padding: 0 50px;
}
.call-action-style2 .lg-text .item-marq:nth-of-type(odd) h2 {
    -webkit-text-fill-color: #fff;
}
.call-action-style2 .lg-text h2 {
    font-size: 14vw;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    width: 120%;
    text-align: center;
    line-height: 1;
}

.footer-style1 {
    padding-top: 120px;
}
.footer-style1 .links a {
    margin-right: 30px;
}
.footer-style1 .links a:last-of-type {
    margin-right: 0;
}
.footer-style1 .email-contact,
.footer-style1 .links a {
    opacity: 0.7;
}
.footer-style1 .email-contact:hover,
.footer-style1 .links a:hover {
    opacity: 1;
}
.footer-style1 .social-line .item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
}
.footer-style1 .social-line .item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 1px solid #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.footer-style1 .social-line .item:hover:after {
    width: 100%;
}
.footer-style1 .lg-text {
    overflow: hidden;
    text-align: center;
    margin-top: 80px;
}
.footer-style1 .lg-text h2 {
    font-size: 30vw;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: -200px;
}

/* Footer MSGI Branding */
footer {
    background: linear-gradient(180deg, #053a5f 0%, #001d35 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imgs/sq-pattern.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

footer p,
footer h6,
footer a {
    color: #fff !important;
}

footer a:hover {
    color: var(--base-color, #053a5f) !important;
}

.footer-style2 {
    position: relative;
}
.footer-style2 .bg-gr {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}
.footer-style2 .social-icon-circle a:hover {
    background: #fff;
    color: #000;
}
.footer-style2 .call-action-style2 .butn-call {
    background: #fff;
}

footer .social-icon-circle.hover-light a:hover {
    background: #fff;
    color: #000;
}

.digital-agency .call-action-style2 .butn-call {
    background: #2d03ff;
}

.digital-agency .social-icon-circle a:hover {
    background: #2d03ff;
}

/* Headers
-----------------------------------------------------------------*/
.hero-style1 {
    position: relative;
    padding: 200px 0 120px;
    z-index: 10;
}
.hero-style1 .lg-text h1 {
    font-size: 15vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.8rem;
    line-height: 0.8;
}
.hero-style1 .wrapper-imgs {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 9;
}
.hero-style1 .wrapper-imgs .fit-img {
    width: 80px;
    height: 350px;
    border-radius: 60px;
    margin: 0 5px;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.hero-style1 .wrapper-imgs .fit-img .info {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 10px;
    width: calc(100% - 20px);
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 5;
    opacity: 0;
}
.hero-style1 .cards-wrapper {
    position: relative;
    height: 350px;
}
.hero-style1 .cards-wrapper .fit-img {
    height: 450px;
    overflow: hidden;
    position: relative;
}
.hero-style1 .cards-wrapper .fit-img .info {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 10px;
    width: calc(100% - 20px);
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.hero-style2 {
    padding: 200px 0 0;
    position: relative;
}
.hero-style2:before {
    content: "";
    position: absolute;
    top: 0;
    left: -6%;
    height: 600px;
    width: 600px;
    -webkit-filter: blur(70px);
    filter: blur(70px);
    display: inline-block;
    background-color: rgba(5, 45, 146, 0.6);
    border-radius: 30%;
    pointer-events: none;
}

.hero-style3 {
    padding: 120px 0 120px;
}
.hero-style3 .caption {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-style3 .container {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.hero-style3 .container:after,
.hero-style3 .container:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 0;
    left: -2px;
}
.hero-style3 .container:after {
    top: auto;
    bottom: 0;
}
.hero-style3 h1 {
    font-size: 90px;
}
.hero-style3 .exp {
    margin-right: 80px;
    width: 100%;
}
.hero-style3 .exp h2 {
    font-size: 300px;
    line-height: 1;
    white-space: nowrap;
    position: relative;
}
.hero-style3 .exp h2 span {
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 30px;
    background: #005a82;
    color: #000;
    position: absolute;
    bottom: 60px;
    right: -20px;
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
}
.hero-style3 .box1,
.hero-style3 .box2,
.hero-style3 .box3,
.hero-style3 .box4 {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.hero-style3 .box1:after,
.hero-style3 .box1:before,
.hero-style3 .box2:after,
.hero-style3 .box2:before,
.hero-style3 .box3:after,
.hero-style3 .box3:before,
.hero-style3 .box4:after,
.hero-style3 .box4:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 0;
    right: -2px;
}
.hero-style3 .box1:after,
.hero-style3 .box2:after,
.hero-style3 .box3:after,
.hero-style3 .box4:after {
    top: auto;
    bottom: 0;
}
.hero-style3 .box3:after {
    right: auto;
    left: -2px;
    bottom: auto;
    top: 0;
}
.hero-style3 .box4:before {
    right: auto;
    left: -2px;
    top: auto;
    bottom: 0;
}
.hero-style3 .box2,
.hero-style3 .box4 {
    border-right: 0;
}
.hero-style3 .box3,
.hero-style3 .box4 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-style3 .lg-text {
    font-size: 22vw;
    line-height: 0.8;
    position: relative;
}
.hero-style3 .lg-text .img1 {
    width: 160px;
    height: 220px;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 15%;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
    z-index: -1;
    overflow: hidden;
}
.hero-style3 .lg-text .img2 {
    width: 160px;
    height: 220px;
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    right: 10%;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    overflow: hidden;
}
.hero-style3 .lg-text .img3 {
    width: 160px;
    height: 220px;
    border-radius: 15px;
    position: absolute;
    top: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    z-index: -1;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.hero-style4 {
    padding: 220px 0 60px;
    position: relative;
}
.hero-style4 h1 {
    font-size: 10vw;
    letter-spacing: -4px;
}
.hero-style4.f-style:after {
    content: "";
    width: 750px;
    height: 750px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.hero-style5 {
    padding: 200px 0 0;
}
.hero-style5 .links > div {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}
.hero-style5 .links > div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #005a82;
    z-index: -1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.hero-style5 .links > div:hover:after {
    width: 100%;
}
.hero-style5 .links > div:hover a {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transform-origin: 0%;
    -ms-transform-origin: 0%;
    transform-origin: 0%;
}
.hero-style5 .links a {
    font-size: 80px;
    line-height: 0.8;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.hero-style5 .caption h1 {
    font-size: 7.8vw;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-style6 {
    padding: 200px 0 60px;
}
.hero-style6 .tags li {
    display: inline-block;
}
.hero-style6 .tags a {
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin: 4px 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.hero-style6 .tags a:hover {
    background: #fff;
    color: #000;
}
.hero-style6 .circle-button svg {
    fill: #fff;
}

.content__img {
    width: 225px;
    height: 170px;
    border-radius: 10px;
    position: absolute;
    top: 170px;
    left: 0px;
    opacity: 0;
    overflow: hidden;
    will-change: transform, filter;
}

.content__img-inner {
    background-position: 50% 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-size: cover;
    position: absolute;
    top: calc(-1 * 20px / 2);
    left: calc(-1 * 20px / 2);
}

.pg-hero {
    padding: 200px 0 0;
}
.pg-hero h1 {
    letter-spacing: -2px;
}
.pg-hero .main-marq {
    margin-bottom: -50px;
}
.pg-hero .main-marq h4 {
    text-transform: uppercase;
    line-height: 1;
    font-size: 12vw !important;
    font-weight: 500;
}

/* Faqs
-----------------------------------------------------------------*/
.faq-style1 .accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
}
.faq-style1 .accordion-item h6 {
    font-weight: 300;
}
.faq-style1 .accordion-item .arrow {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.faq-style1 .accordion-item.active {
    background: rgba(255, 255, 255, 0.02);
}
.faq-style1 .accordion-item.active h6 {
    font-weight: 500;
}

/* Portfolio
-----------------------------------------------------------------*/
.work-style1 .item .fit-img img {
    height: 100%;
}

.work-style2 {
    position: relative;
    padding-top: 240px !important;
    z-index: 4;
}
.work-style2 .sec-head-crev {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.work-style3 .item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.work-style3 .item:hover .fit-img .icon-arrow {
    opacity: 1;
}

.work-style3 .item img {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.work-style3 .item .fit-img {
    position: relative;
}
.work-style3 .item .fit-img .icon-arrow {
    width: 150px;
    height: 150px;
    line-height: 170px;
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}
.work-style3 .item .fit-img .icon-arrow svg {
    width: 40px;
}

.portfolio-crev .work-boxs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.portfolio-crev .item {
    width: 33.333%;
    max-height: 90vh;
    height: 600px;
    margin: 0 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.portfolio-crev .item .bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.portfolio-crev .item .bg-img .cont {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #0f0f0f;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.portfolio-crev .item .bg-img .cont.dark-st h5,
.portfolio-crev .item .bg-img .cont.dark-st span {
    background: #0f0f0f;
}
.portfolio-crev .item .bg-img .cont h5,
.portfolio-crev .item .bg-img .cont span {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
}
.portfolio-crev .item .bg-img .cont h5 {
    text-decoration: underline;
    margin-bottom: 10px;
}
.portfolio-crev .item .bg-img .cont span {
    color: #494949;
}
.portfolio-crev .item.active {
    width: calc(100vw - 140px * 3);
}
.portfolio-crev .item.active .bg-img .cont {
    opacity: 1;
    visibility: visible;
}
.portfolio-crev .item.active .bg-img .cont h5,
.portfolio-crev .item.active .bg-img .cont span {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
}
.portfolio-crev .item.active .bg-img .cont h5 {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.portfolio-crev .item.active .bg-img .cont span {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.portfolio-elegant .work-boxs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.portfolio-elegant .item {
    width: 25%;
    max-height: 70vh;
    height: 500px;
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.portfolio-elegant .item .bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}
.portfolio-elegant .item .cont {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.portfolio-elegant .item .cont h6 {
    font-size: 18px;
}
.portfolio-elegant .item .cont span {
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #ccc;
}
.portfolio-elegant .item.active {
    width: calc(100vw - 140px * 3);
}
.portfolio-elegant .item.active .cont span {
    opacity: 1;
}

.parallax-slider-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.parallax-slider-wrapper .parallax-sliders {
    position: absolute;
    top: 0;
    left: 0;
    width: 3800px;
    height: 100%;
}
.parallax-slider-wrapper .parallax-slider-inner {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 80%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    left: 70px;
    margin-top: 15px;
}
.parallax-slider-wrapper .parallax-item {
    position: relative;
    width: 500px;
    height: 100%;
    overflow: hidden;
}
.parallax-slider-wrapper .parallax-item:hover .parallax-content {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}
.parallax-slider-wrapper .parallax-item:hover .parallax-img::after {
    opacity: 1;
    height: 100%;
    visibility: visible;
}
.parallax-slider-wrapper .parallax-content {
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: 55;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin: 40px 40px 30px 35px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.parallax-slider-wrapper .parallax-content span {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}
.parallax-slider-wrapper .parallax-content h4 {
    font-size: 40px;
    line-height: 1;
    padding-bottom: 10px;
    letter-spacing: -2px;
}
.parallax-slider-wrapper .parallax-img {
    position: absolute;
    height: 100%;
    width: 800px;
    background-size: cover;
    background-position: center;
    margin-left: -100px;
}
.parallax-slider-wrapper .parallax-img::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.3);
}

.showcase-full {
    position: relative;
}
.showcase-full .parallax-slider-full .caption {
    position: relative;
}
.showcase-full .parallax-slider-full .caption h1 {
    font-size: 110px;
    position: relative;
    line-height: 1.2;
}
.showcase-full .parallax-slider-full .swiper-slide-active .caption .discover {
    opacity: 1;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}
.showcase-full .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
}
.showcase-full .swiper-slide .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
}
.showcase-full .caption h6 {
    font-size: 20px;
    font-weight: 400;
}
.showcase-full .slider-contro {
    position: absolute;
    bottom: 60px;
    left: 80px;
    width: calc(100% - 160px);
}
.showcase-full .slider-contro i {
    margin: 0 10px;
    color: #fff;
}
.showcase-full .slider-contro span {
    color: #fff;
    white-space: nowrap;
}
.showcase-full .dots {
    bottom: 50px;
    z-index: 1;
}
.showcase-full .dots span {
    background: #fff;
    width: 5px;
    height: 5px;
    margin: 0 7px !important;
    border-radius: 50% !important;
}
.showcase-full .dots span.swiper-pagination-bullet-active {
    position: relative;
}
.showcase-full .dots span.swiper-pagination-bullet-active:after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #fff;
    border-radius: 50%;
}
.showcase-full .swiper-button-next:after,
.showcase-full .swiper-button-prev:after {
    display: none;
}

.inter-links-center {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: auto;
}
.inter-links-center::-webkit-scrollbar {
    width: 0;
}
.inter-links-center::-webkit-scrollbar-track {
    background: transparent;
}
.inter-links-center::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}
.inter-links-center::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.inter-links-center .links-text li {
    padding: 30px 0;
    position: relative;
    z-index: 9;
}
.inter-links-center .links-text li .text {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-text-stroke: 1px transparent;
}
.inter-links-center .links-text li.no-active {
    opacity: 0.3;
}
.inter-links-center .links-text li.no-active .text {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}
.inter-links-center .links-text li h2 {
    font-weight: 700;
    font-size: 80px;
}
.inter-links-center .links-text li h2 a .tag {
    font-size: 14px;
    display: block;
    font-weight: 400;
}
.inter-links-center .links-text li h2 .num {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    margin-right: 15px;
}
.inter-links-center .links-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.inter-links-center .links-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}
.inter-links-center .links-img .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}
.inter-links-center .links-img .img.current {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.inter-links-center .links-img .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Services
-----------------------------------------------------------------*/
.serv-style1 .item {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.serv-style1 .item .img {
    -webkit-clip-path: polygon(
        0.057% 7.915%,
        0.057% 7.915%,
        0.016% 6.68%,
        0.093% 5.491%,
        0.278% 4.367%,
        0.561% 3.328%,
        0.933% 2.394%,
        1.384% 1.586%,
        1.906% 0.922%,
        2.489% 0.423%,
        3.122% 0.109%,
        3.798% 0%,
        96.169% 0%,
        96.169% 0%,
        96.847% 0.11%,
        97.484% 0.427%,
        98.068% 0.93%,
        98.591% 1.599%,
        99.043% 2.414%,
        99.415% 3.354%,
        99.696% 4.4%,
        99.878% 5.531%,
        99.951% 6.726%,
        99.905% 7.966%,
        92.486% 94.172%,
        92.486% 94.172%,
        92.361% 95.151%,
        92.165% 96.067%,
        91.903% 96.911%,
        91.582% 97.673%,
        91.208% 98.344%,
        90.786% 98.915%,
        90.323% 99.375%,
        89.825% 99.716%,
        89.298% 99.927%,
        88.749% 100%,
        10.856% 100%,
        10.856% 100%,
        10.303% 99.927%,
        9.774% 99.713%,
        9.274% 99.369%,
        8.809% 98.904%,
        8.386% 98.328%,
        8.011% 97.65%,
        7.691% 96.881%,
        7.43% 96.03%,
        7.236% 95.107%,
        7.115% 94.122%,
        0.057% 7.915%
    );
    clip-path: polygon(
        0.057% 7.915%,
        0.057% 7.915%,
        0.016% 6.68%,
        0.093% 5.491%,
        0.278% 4.367%,
        0.561% 3.328%,
        0.933% 2.394%,
        1.384% 1.586%,
        1.906% 0.922%,
        2.489% 0.423%,
        3.122% 0.109%,
        3.798% 0%,
        96.169% 0%,
        96.169% 0%,
        96.847% 0.11%,
        97.484% 0.427%,
        98.068% 0.93%,
        98.591% 1.599%,
        99.043% 2.414%,
        99.415% 3.354%,
        99.696% 4.4%,
        99.878% 5.531%,
        99.951% 6.726%,
        99.905% 7.966%,
        92.486% 94.172%,
        92.486% 94.172%,
        92.361% 95.151%,
        92.165% 96.067%,
        91.903% 96.911%,
        91.582% 97.673%,
        91.208% 98.344%,
        90.786% 98.915%,
        90.323% 99.375%,
        89.825% 99.716%,
        89.298% 99.927%,
        88.749% 100%,
        10.856% 100%,
        10.856% 100%,
        10.303% 99.927%,
        9.774% 99.713%,
        9.274% 99.369%,
        8.809% 98.904%,
        8.386% 98.328%,
        8.011% 97.65%,
        7.691% 96.881%,
        7.43% 96.03%,
        7.236% 95.107%,
        7.115% 94.122%,
        0.057% 7.915%
    );
    height: 250px;
    overflow: hidden;
}
.serv-style1 .item ul {
    margin: 0;
}
.serv-style1 .item ul li {
    margin-bottom: 20px;
}

.serv-style2 {
    background-color: #171717;
}
.serv-style2 h3 {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.serv-style2 h3 .fit-img {
    position: absolute;
    top: 50%;
    height: 70px;
    right: -130px;
    width: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.serv-style2 .item:hover h3 .fit-img {
    width: 100px;
}

.serv-style3 .accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0 0;
    background: transparent;
}
.serv-style3 .accordion-item .icon-arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50%;
}
.serv-style3 .accordion-item.active .icon-arrow {
    border-color: rgba(255, 255, 255, 0.5);
}

.serv-style3 .accordion-header h6 {
    color: #005a82;
}

.serv-style3 .accordion-collapse {
    border-radius: 0;
}

.serv-style3 .accordion-body {
    padding: 0;
}

.serv-style3 .tags a {
    display: block;
    margin-bottom: 10px;
}

.serv-style4 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.serv-style4 .item {
    padding: 80px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.serv-style4 .item:last-of-type {
    border-right: 0;
}
.serv-style4 .item .text {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.serv-style4 .item:hover .text {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.serv-style5 .item {
    padding: 60px 40px 0;
}
.serv-style5 .item .img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.process .item {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    height: 100%;
}
.process .item span {
    color: #005a82;
}
.process .item h6 {
    font-size: 26px;
}

/* Team
-----------------------------------------------------------------*/
.team-mp .item {
    background: #1f1f1f;
    border-radius: 15px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-mp .item:hover {
    background: #2d03ff;
}
.team-mp .item .img {
    width: 420px;
    height: 170px;
    overflow: hidden;
}
.team-mp .item .img img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.team-mp .item .cont {
    padding: 30px 0 0 50px;
}
.team-mp .item .cont span {
    font-size: 14px;
    color: #b1b1b1;
    margin-top: 15px;
}
.team-mp .item .social-icon {
    padding: 30px 30px 0 0;
}
.team-mp .item .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 14px;
    margin: 0 5px;
}
.team-mp .item .social-icon a:hover {
    background: #fff;
    color: #212121;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-mp.style2 .item:hover {
    background: #005a82;
}

.team-style1 .item {
    position: relative;
    z-index: 3;
}
.team-style1 .item:after {
    content: "";
    width: 100vw;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
    opacity: 0;
}
.team-style1 .item .fit-img {
    position: absolute;
    top: -50px;
    left: 100px;
    width: 200px;
    height: 220px;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}
.team-style1 .item:hover .fit-img {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.team-style1 .item:hover:after {
    opacity: 1;
}

.team-style2 .caption h2 {
    font-size: 12vw;
    line-height: 1;
}

.team-style2 .gallery__item {
    margin-top: -225px;
    position: relative;
}
.team-style2 .gallery__item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-style2 .item .fit-img {
    position: relative;
}
.team-style2 .item .fit-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(transparent),
        to(#1f1f1f)
    );
    background: -webkit-linear-gradient(transparent, #1f1f1f);
    background: -o-linear-gradient(transparent, #1f1f1f);
    background: linear-gradient(transparent, #1f1f1f);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-style2 .item .fit-img .cont {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-style2 .item .fit-img:hover:after,
.team-style2 .item .fit-img:hover .cont {
    opacity: 1;
}

.team-style3 {
    position: relative;
    padding-top: 340px !important;
    z-index: 4;
}
.team-style3.no-pad {
    padding-top: 120px !important;
}
.team-style3 .sec-head-crev {
    position: absolute;
    top: 120px;
    width: 100%;
    z-index: -1;
}
.team-style3 .sec-head-crev h2 {
    letter-spacing: -4px;
}
.team-style3 .item {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.team-style3 .item.mt-mins {
    margin-top: -100px;
}
.team-style3 .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(transparent),
        to(#1f1f1f)
    );
    background: -webkit-linear-gradient(transparent, #1f1f1f);
    background: -o-linear-gradient(transparent, #1f1f1f);
    background: linear-gradient(transparent, #1f1f1f);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-style3 .item .cont {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-style3 .item:hover:after,
.team-style3 .item:hover .cont {
    opacity: 1;
}

/* Testimonials
-----------------------------------------------------------------*/
.testimonials-ds .qoute-icon {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.testimonials-ds .qoute-icon .text {
    width: 240px;
}
.testimonials-ds .qoute-icon .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
}

.testimonials-ds .item .info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials-ds .item .info .img-author {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonials-ds .item .info .info-text {
    padding-left: 20px;
}
.testimonials-ds .item .info .info-text p {
    font-size: 14px;
    color: #bbbbbb;
    margin-top: 5px;
}

.testimonials-ds .swiper {
    position: relative;
}
.testimonials-ds .swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto !important;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials-ds .swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 7px;
    background: #bbbbbb;
}
.testimonials-ds
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2d03ff;
}

.box-lyars {
    background: #1f1f1f;
    border-radius: 15px;
    padding: 100px 80px;
    position: relative;
}
.box-lyars .layers {
    position: absolute;
    top: 5px;
    left: 30px;
    right: 30px;
    bottom: -10px;
    background: #1f1f1f;
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}
.box-lyars .layers:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 20px;
    right: 20px;
    bottom: -10px;
    background: #1f1f1f;
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}

.testim-style1 {
    position: relative;
}
.testim-style1 .testim-sliders {
    position: relative;
}
.testim-style1 .testim-sliders .main-slider {
    position: relative;
    overflow: hidden;
}
.testim-style1 .testim-sliders .main-slider .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: auto;
    font-size: 14px;
}
.testim-style1 .testim-sliders .main-slider .swiper-pagination span {
    margin: 0 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.testim-style1
    .testim-sliders
    .main-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background: #111;
}
.testim-style1 .testim-sliders .thumb-slider {
    position: relative;
    overflow: hidden;
}
.testim-style1 .thumb-side {
    text-align: center;
}
.testim-style1 .thumb-side .swiper-button-prev,
.testim-style1 .thumb-side .swiper-button-next {
    position: static;
    margin: 0 5px;
    display: inline-block;
    color: inherit;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}
.testim-style1 .thumb-side .swiper-button-prev:after,
.testim-style1 .thumb-side .swiper-button-next:after {
    font-size: 13px;
}
.testim-style1 .thumb-side .swiper-button-prev:hover,
.testim-style1 .thumb-side .swiper-button-next:hover {
    background: #fff;
    color: #000;
}

.testim-style2 .swiper-slide {
    padding: 20px 20px 30px;
    background: #1f1f1f;
    position: relative;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.testim-style2 .swiper-slide:hover {
    z-index: 3;
    -webkit-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    transform: rotate(0) !important;
}
.testim-style2 .swiper-slide:nth-of-type(even) {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
}

.testim-style2 .bg-light,
.testim-style2 .bg-main-color {
    color: #000;
}
.testim-style2 .bg-light p,
.testim-style2 .bg-main-color p {
    color: #4d4d4d;
}

.testim-style3 .testim-swiper {
    padding: 0 120px;
    position: relative;
}

.testim-style3 .swiper-slide {
    padding: 50px;
    border-radius: 15px;
    background: #252525;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.testim-style3 .bg-light,
.testim-style3 .bg-main-color {
    color: #000;
}
.testim-style3 .bg-light p,
.testim-style3 .bg-main-color p {
    color: #4d4d4d;
}

.testim-style3 .swiper-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 4;
}

/* Awards
-----------------------------------------------------------------*/
.award-style1 .item {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.award-style1 .item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.award-style1 .item:hover {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.thecontainer {
    width: 300%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.panel {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
    .md-mb10 {
        margin-bottom: 10px;
    }
    .md-mb15 {
        margin-bottom: 15px;
    }
    .md-mb20 {
        margin-bottom: 20px;
    }
    .md-mb30 {
        margin-bottom: 30px;
    }
    .md-mb40 {
        margin-bottom: 40px;
    }
    .md-mb50 {
        margin-bottom: 50px !important;
    }
    .md-mb80 {
        margin-bottom: 80px;
    }
    .md-no-mrg {
        margin: 0 !important;
    }
    .md-pb10 {
        padding-bottom: 10px;
    }
    .md-pb20 {
        padding-bottom: 20px;
    }
    .md-pb30 {
        padding-bottom: 30px;
    }
    .md-pb40 {
        padding-bottom: 40px;
    }
    .md-pb50 {
        padding-bottom: 50px;
    }
    .md-pb60 {
        padding-bottom: 60px;
    }
    .md-pb70 {
        padding-bottom: 70px;
    }
    .md-pb80 {
        padding-bottom: 80px;
    }
    .md-pt80 {
        padding-top: 80px !important;
    }
    .md-no-pad {
        padding: 0 !important;
    }
    .md-center {
        text-align: center !important;
    }
    .md-order-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .md-order-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .md-order-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .md-order-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .md-hide {
        display: none;
    }
    .justify-end {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-end .vew-all {
        margin-left: 25px;
        margin-top: 25px;
    }
    .justify-end .swiper-controls {
        margin-top: 30px;
    }
    .justify-end .ml-auto {
        margin-left: 0;
        margin-top: 30px;
    }
    .row.sm-marg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.sm-marg > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row.stand-marg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.stand-marg > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row.md-marg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.md-marg > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row.lg-marg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.lg-marg > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row.xlg-marg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.xlg-marg > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row.xxlg-marg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.xxlg-marg > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 28px;
    }
    h5 {
        font-size: 23px;
    }
    h6 {
        font-size: 20px;
    }
    .fz-120 {
        font-size: 90px !important;
    }
    .fz-80 {
        font-size: 60px !important;
    }
    .fz-70 {
        font-size: 50px !important;
    }
    .navbar .logo:after {
        display: none;
    }
    .navbar .contact-button {
        display: none;
    }
    .navbar .mega-menu .item-img .img {
        display: none;
    }
    .navbar {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar .navbar-collapse {
        max-height: 440px;
        overflow: auto;
    }
    .navbar .navbar-collapse::-webkit-scrollbar {
        display: none;
    }
    .navbar.nav-scroll {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .navbar .mega-menu .container {
        padding: 20px 10px !important;
    }
    .navbar .logo {
        max-width: 80px !important;
        margin-left: 30px;
    }
    .navbar .navbar-collapse {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }
    .navbar .navbar-toggler {
        font-size: 20px;
        border-radius: 0;
        padding: 0;
        margin-right: 30px;
    }
    .navbar .navbar-toggler:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 0;
        outline: none;
    }
    .navbar .dropdown-menu {
        display: none;
    }
    .navbar .dropdown-menu.show {
        display: block;
        position: static;
    }
    .navbar .dropdown-menu .dropdown-item .dropdown-side {
        display: none;
        position: static;
        width: 100%;
        margin-top: 15px;
    }
    .navbar .dropdown-menu .dropdown-item .dropdown-side.show {
        display: block;
    }
    .navbar .navbar-nav .nav-link {
        padding: 15px 30px 10px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar .navbar-nav .nav-item:last-of-type .nav-link {
        padding-bottom: 0;
        border-bottom: 0;
    }
    .navbar .navbar-nav .mega-menu {
        width: auto;
        position: static;
        padding: 0;
    }
    .navbar .navbar-nav .mega-menu .item-img {
        font-size: 14px;
        color: #fff;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        padding: 10px 25px;
        position: relative;
    }
    .navbar .navbar-nav .mega-menu .item-img .mt-15 {
        margin-top: 0 !important;
    }
    .navbar .navbar-nav .mega-menu .item-img:after {
        content: "";
        width: 0px;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 10px;
        top: 18px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }
    .navbar .navbar-nav .mega-menu .item-img:hover {
        padding-left: 30px;
        background: transparent;
    }
    .navbar .navbar-nav .mega-menu .item-img:hover:after {
        width: 10px;
    }
    .blur-div {
        display: none;
    }
    .intro-style1 {
        display: none;
    }
    .hero-style2 .fs-80 {
        font-size: 60px !important;
    }
    .cards-wrapper {
        height: auto !important;
    }
    .hero-style1 {
        padding-bottom: 0;
    }
    .hero-style4 {
        padding: 160px 0 0;
    }
    .hero-style4 .fs-20 {
        font-size: 16px !important;
    }
    .hero-style4 h1 {
        letter-spacing: normal;
    }
    .hero-style5 .links a {
        font-size: 40px;
    }
    .hero-style5 .caption h1 {
        font-size: 8.8vw;
    }
    .hero-style3 .container:after,
    .hero-style3 .container:before,
    .hero-style3 .box1:after,
    .hero-style3 .box1:before,
    .hero-style3 .box2:after,
    .hero-style3 .box2:before,
    .hero-style3 .box3:after,
    .hero-style3 .box3:before,
    .hero-style3 .box4:after,
    .hero-style3 .box4:before,
    .hero-style3 .box4 {
        display: none !important;
    }
    .hero-style3 .lg-text .img1,
    .hero-style3 .lg-text .img2,
    .hero-style3 .lg-text .img3 {
        width: 100px;
        height: 150px;
    }
    .portfolio-elegant .work-boxs,
    .portfolio-crev .work-boxs {
        display: block !important;
    }
    .portfolio-elegant .item,
    .portfolio-elegant .item.active,
    .portfolio-crev .item,
    .portfolio-crev .item.active {
        width: 100%;
        height: 400px;
        min-height: 400px;
        margin-bottom: 15px;
    }
    .portfolio-elegant .item,
    .portfolio-elegant .item.active {
        height: auto;
        min-height: auto;
        margin: 0 0 50px !important;
    }
    .portfolio-elegant .item .bg-img,
    .portfolio-elegant .item.active .bg-img {
        height: 400px;
    }
    .team-mp .item .img {
        width: 280px;
    }
    .team-mp .item h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    .team-style2 {
        padding: 120px 0 !important;
    }
    .team-style2 .gallery-wrap {
        display: none !important;
    }
    .team-style3 .item.mt-mins {
        margin-top: 40px !important;
    }
    .sec-head-crev .fs-75 {
        font-size: 50px !important;
    }
    .serv-style1 .item ul li {
        display: inline-block;
        margin: 10px !important;
    }
    .serv-style4 {
        border-bottom: 0;
    }
    .serv-style4 .item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .testim-style3 .swiper-controls {
        top: auto;
        bottom: -30px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .showcase-full .parallax-slider-full .caption h1 {
        font-size: 80px;
    }
    .parallax-slider-wrapper .parallax-slider-inner {
        left: 40px;
    }
    .slider .parallax-slider-full .swiper-slide .bg-img {
        background-position: center center !important;
    }
    .inter-links-center .links-text li h2 {
        font-size: 64px;
    }
    .pg-hero .fs-100 {
        font-size: 80px !important;
    }
    footer .social-icon-circle,
    footer .item {
        margin-bottom: 50px;
    }
    .footer-style1 .lg-text h2 {
        margin-bottom: 0;
    }
    .footer-style1 .links a {
        margin-right: 15px;
    }
    .footer-style1 .justify-content-end {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .sm-mb10 {
        margin-bottom: 10px;
    }
    .sm-mb20 {
        margin-bottom: 20px;
    }
    .sm-mb30 {
        margin-bottom: 30px;
    }
    .sm-mb40 {
        margin-bottom: 40px;
    }
    .sm-mb50 {
        margin-bottom: 50px;
    }
    .sm-mb80 {
        margin-bottom: 80px;
    }
    .sm-pb10 {
        padding-bottom: 10px;
    }
    .sm-pb20 {
        padding-bottom: 20px;
    }
    .sm-pb30 {
        padding-bottom: 30px;
    }
    .sm-pb40 {
        padding-bottom: 40px;
    }
    .sm-pb50 {
        padding-bottom: 50px;
    }
    .sm-pb60 {
        padding-bottom: 60px;
    }
    .sm-pb70 {
        padding-bottom: 70px;
    }
    .sm-pb80 {
        padding-bottom: 80px;
    }
    .sm-hide {
        display: none;
    }
    .fz-70 {
        font-size: 40px !important;
    }
    h1 {
        font-size: 46px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
    .progress-wrap {
        display: none;
    }
    .loader-wrap .loader-wrap-heading .load-text {
        font-size: 20px;
    }
    .hamenu .logo {
        left: 25px;
    }
    .hamenu .close-menu {
        top: 25px;
        right: 25px;
    }
    .hamenu .menu-links .main-menu > li .link {
        font-size: 30px;
    }
    .hamenu .menu-links .main-menu > li .sub-dmenu {
        font-size: 24px;
    }
    .hamenu .menu-links .main-menu .sub-menu li,
    .hamenu .menu-links .main-menu .sub-menu2 li {
        font-size: 20px;
    }
    .hero-style2 .fs-80 {
        font-size: 35px !important;
    }
    .hero-style1 .fs-80 {
        font-size: 45px !important;
    }
    .hero-style3 {
        padding-bottom: 80px;
    }
    .hero-style3 .p-40px {
        padding: 30px 20px !important;
    }
    .hero-style3 h1 {
        font-size: 50px;
    }
    .hero-style3 .box3 {
        display: block !important;
    }
    .hero-style3 .exp {
        margin: 0;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    .hero-style3 .exp h2 {
        font-size: 220px;
    }
    .hero-style6 .fs-90 {
        font-size: 50px !important;
    }
    .sec-head-crev .fs-75 {
        font-size: 30px !important;
    }
    .sec-head-modern .fs-60 {
        font-size: 40px !important;
    }
    .sec-head-crev .fs-75 {
        font-size: 50px !important;
    }
    .sec-head-crev .fs-65 {
        font-size: 40px !important;
    }
    .sec-head-stand .fs-65 {
        font-size: 40px !important;
    }
    .sec-head-stand .fs-50 {
        font-size: 34px !important;
    }
    .img-bord-color .h-600px {
        height: 400px;
    }
    .work-style2 {
        padding-top: 120px !important;
    }
    .intro-style6 .h-600px,
    .work-style3 .item .fit-img {
        height: 400px !important;
    }
    .box-lyars {
        padding: 100px 20px;
    }
    .testimonials-ds .qoute-icon .text {
        width: 160px;
    }
    .testim-style1 .info-text {
        display: block !important;
    }
    .intro-style2 .fs-60,
    .intro-style3 .fs-60 {
        font-size: 34px !important;
    }
    .team-mp .item {
        padding: 30px;
    }
    .team-mp .item .d-flex {
        display: block !important;
    }
    .team-mp .item .img {
        width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        overflow: hidden;
    }
    .team-mp .item .cont {
        padding: 30px 0 0;
        text-align: center;
    }
    .team-mp .item .ml-auto {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin: auto !important;
    }
    .team-mp .item .social-icon {
        padding: 0;
        margin-top: 30px;
    }
    .testim-style2 .swiper-slide {
        -webkit-transform: rotate(0) !important;
        -ms-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }
    .testim-style3 .testim-swiper {
        padding: 0;
    }
    .testim-style3 .swiper-slide {
        padding: 50px 30px;
    }
    .award-style1 .d-flex {
        display: block !important;
    }
    .marq-brand .item-marq a {
        width: 200px;
        height: 130px;
        line-height: 130px;
    }
    .skills .item {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .bg-img.h-600px {
        height: 480px;
    }
    footer .call-action-style2 .butn-call {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    footer .call-action-style2 .butn-call img {
        width: 30px !important;
    }
    footer .mt-80px {
        text-align: center;
        margin-top: 30px !important;
    }
    footer .mt-80px p {
        margin-bottom: 15px;
    }
    .showcase-full .parallax-slider-full .caption h1 {
        font-size: 45px;
    }
    .showcase-full .dots {
        display: none;
    }
    .parallax-slider-wrapper .parallax-slider-inner {
        left: 20px;
    }
    .inter-links-center .links-text li h2 {
        font-size: 30px;
    }
    .pg-hero .fs-100 {
        font-size: 50px !important;
    }
    .blog-header .fz-55 {
        font-size: 30px !important;
    }
    .blog-header .info {
        display: block !important;
    }
    .blog-header .date {
        margin-left: 30px !important;
    }
    .blog-header .right-info {
        margin: 30px 0 0;
    }
    .main-post .fz-60 {
        display: none;
    }
    .main-post .post-qoute {
        padding: 30px 15px;
    }
    .main-post .post-qoute h6:before {
        position: relative;
        left: 0;
    }
    .main-post .info-area {
        display: block !important;
    }
    .main-post .info-area .tags {
        margin-bottom: 30px;
    }
    .main-post .author-area .flex {
        display: block;
    }
    .main-post .author-area .author-img {
        margin: 0 0 30px 0;
    }
    .main-post .author-area .author-img .img {
        width: 80px;
        height: 80px;
    }
    .main-post .next-prv-post {
        display: block;
    }
    .main-post .next-prv-post .thumb-post {
        margin: 0 !important;
    }
    .main-post .next-prv-post .text-right {
        text-align: left;
        margin-top: 30px !important;
    }
    .comments-post .item-box .flex {
        display: block;
    }
    .comments-post .item-box .user-img {
        margin: 0 0 15px 0;
    }
    .comments-post .item-box .replay-post {
        margin: 15px 0 0 0;
    }
    .comments-post .item-box.replayed {
        margin-left: 0;
    }
    .main-post .post-qoute h6:before {
        top: 70px;
    }
    .pg-project .fs-60 {
        font-size: 28px !important;
    }
}

/* ====================== [ End Responsive ] ====================== */
/* Fix alignement boutons langue + thème en version desktop */
@media (min-width: 992px) {
    .lang-switch a,
    .navbar .btn.btn-outline-light {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        height: auto;
        width: auto;
        line-height: normal;
        white-space: nowrap;
    }

    /* Corrige les éléments qui passent en vertical à cause de Bootstrap */
    .lang-switch {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }
}
.lang-switch a,
.theme-toggle-btn {
    border: none !important;
}
#themeBorder {
    border: none !important;
}
/* ============================================ */
/* RESPONSIVE FIXES - À ajouter à la fin du fichier CSS */
/* ============================================ */

/* ============================================ */
/* GRANDS ÉCRANS - 20", 24", 27", 4K, 5K */
/* ============================================ */

/* Très grands écrans 4K et plus (2560px+) */
@media (min-width: 2560px) {
    .inter-links-center {
        padding: 150px 0;
    }

    .inter-links-center .links-text li {
        padding: 50px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 120px !important;
        line-height: 1.2;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 20px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 20px;
        margin-right: 25px;
    }
}

/* Écrans 4K standard (3840x2160) */
@media (min-width: 3840px) {
    .inter-links-center .links-text li h2 {
        font-size: 160px !important;
    }

    .inter-links-center .links-text li {
        padding: 60px 0;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 24px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 24px;
        margin-right: 30px;
    }
}

/* Grands écrans 24" (1920px - 2560px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .inter-links-center {
        padding: 120px 0;
    }

    .inter-links-center .links-text li {
        padding: 40px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 100px !important;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 18px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 18px;
        margin-right: 20px;
    }
}

/* Écrans Full HD standards 20"-22" (1920x1080) */
@media (min-width: 1920px) and (max-width: 2199px) {
    .inter-links-center .links-text li h2 {
        font-size: 90px !important;
    }
}

/* Écrans 21:9 ultrawide */
@media (min-width: 2560px) and (max-height: 1440px) {
    .inter-links-center .links-text li h2 {
        font-size: 110px !important;
    }
}

/* ============================================ */
/* MOYENS ET PETITS ÉCRANS */
/* ============================================ */

/* Desktop 15 pouces et moyens écrans (1366px - 1600px) */
@media (max-width: 1600px) {
    .inter-links-center {
        padding: 80px 0;
    }

    .inter-links-center .links-text li {
        padding: 20px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 60px !important;
    }
}

@media (max-width: 1440px) {
    .inter-links-center .links-text li h2 {
        font-size: 50px !important;
    }

    .inter-links-center .links-text li {
        padding: 15px 0;
    }
}

/* Laptops 15 pouces standard (1366px) */
@media (max-width: 1366px) {
    .inter-links-center {
        padding: 60px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 45px !important;
    }

    .inter-links-center .links-text li {
        padding: 12px 0;
    }
}

/* Tablets et petits laptops (1024px) */
@media (max-width: 1024px) {
    .inter-links-center {
        padding: 50px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 40px !important;
    }

    .inter-links-center .links-text li {
        padding: 10px 0;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 12px;
        margin-right: 10px;
    }
}

/* Tablets portrait (768px) */
@media (max-width: 768px) {
    .inter-links-center {
        padding: 40px 0;
        min-height: 100vh;
    }

    .inter-links-center .links-text li {
        padding: 8px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 32px !important;
        line-height: 1.3;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 12px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 11px;
        margin-right: 8px;
    }

    /* Overlay plus sombre sur mobile pour meilleure lisibilité */
    .inter-links-center .links-img:after {
        background: rgba(0, 0, 0, 0.5);
    }

    /* Zone de clic plus grande sur mobile */
    .inter-links-center .links-text li h2 a {
        display: block;
        padding: 10px 0;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
}

/*                                📱 MOBILE                                   */
/* -------------------------------------------------------------------------- */

/* Smartphones (576px) */
@media (max-width: 576px) {
    .inter-links-center {
        padding: 30px 0;
    }

    .inter-links-center .links-text li {
        padding: 6px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 26px !important;
        line-height: 1.2;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 11px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 10px;
        margin-right: 6px;
    }

    .inter-links-center .links-img:after {
        background: rgba(0, 0, 0, 0.6);
    }
}

/* Petits smartphones (480px) */
@media (max-width: 480px) {
    .inter-links-center {
        padding: 20px 0;
    }

    .inter-links-center .links-text li {
        padding: 5px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 22px !important;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 10px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 9px;
        margin-right: 5px;
    }
}

/* Très petits smartphones (≤ 375px) */
@media (max-width: 375px) {
    .inter-links-center {
        padding: 15px 0;
    }

    .inter-links-center .links-text li {
        padding: 4px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 18px !important;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 9px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 8px;
        margin-right: 4px;
    }
}

/* Paysage mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .inter-links-center {
        padding: 10px 0;
    }

    .inter-links-center .links-text li {
        padding: 3px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 20px !important;
    }
}

/* État inactif sur mobile */
@media (max-width: 768px) {
    .inter-links-center .links-text li.no-active {
        opacity: 0.5;
    }

    .inter-links-center .links-text li.no-active .text {
        -webkit-text-stroke: 0.5px #fff;
    }
}

/* Hauteurs limitées : petits laptops */
@media (max-height: 700px) {
    .inter-links-center .links-text li {
        padding: 8px 0;
    }

    .inter-links-center .links-text li h2 {
        font-size: 35px !important;
    }
}

@media (max-height: 600px) {
    .inter-links-center .links-text li h2 {
        font-size: 28px !important;
    }
}

/* -------------------------------------------------------------------------- */
/*                            🖥️ DESKTOP RESPONSIVE                           */
/* -------------------------------------------------------------------------- */

/* ------ ÉCRANS MOYENS : 1420px → 1599px ------ */
@media (min-width: 1420px) and (max-width: 1599px) {
    .inter-links-center .links-text li h2 {
        font-size: 35px !important;
        line-height: 1.2;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 14px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 14px;
        margin-right: 8px;
    }

    .inter-links-center .links-text li {
        padding: 10px 0;
    }
}

/* ------ ULTRA LARGE ÉCRANS : +1600px ------ */
@media (min-width: 1600px) {
    .inter-links-center .links-text li h2 {
        font-size: 40px !important; /* taille pro et équilibrée */
        line-height: 1.2;
    }

    .inter-links-center .links-text li h2 a .tag {
        font-size: 15px;
    }

    .inter-links-center .links-text li h2 .num {
        font-size: 15px;
        margin-right: 8px;
    }

    .inter-links-center .links-text li {
        padding: 12px 0;
    }
}

.shift-right {
    margin-left: 80px; /* tu peux ajuster ici */
}
