@charset "UTF-8";

/* ------------------------------------------------------------------
 * File         : style.css
 * Author       : Kodec
 * Author URI   : http://www.kodectechnology.com
 *
 * Kodec Technology Copyright 2022 All Rights Reserved.
 * ------------------------------------------------------------------
[Table of contents]
    1. global
    2. header
    3. navigation
    4. slideshow
    5. footer
    6. components
    7. utility
    8. vendors
    9. custom
------------------------------------------------------------------ */
/* [ 1. global ] */
html,
body {
    overflow-x: hidden;
}

@media (max-width: 960px) {
    .uk-section.uk-padding-large {
        padding-left: 0;
        padding-right: 0;
    }
}

.uk-button {
    font-family: "Archivo", sans-serif;
}

.in-button-app {
    background-color: #1a1a1a;
}

.in-button-app:hover {
    transition: all ease 200ms;
    background-color: #FCB42D;
}

@media (max-width: 960px) {
    .in-button-app {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.in-highlight {
    position: relative;
    background: 0 0;
    z-index: 0;
    display: inline-block;
}

.in-highlight::before {
    content: '';
    background: #FCB42D;
    border-radius: 5px;
    position: absolute;
    left: 0;
    right: -2px;
    bottom: -1px;
    height: 4px;
    z-index: -1;
}

.in-list-check>li {
    position: relative;
    padding-left: 30px;
}

.in-list-check>li::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FCB42D;
    content: "\f058";
    position: absolute;
    top: 0;
    left: -12px;
    background-image: none;
}

/* [ 2. header ] */
header{
    background: linear-gradient(0deg, #002533 0%, #181818 80%, #181818 100%);
}
header .uk-logo {
    margin-right: 55px;
}

header .in-optional-nav {
    width: auto;
}

header .in-optional-nav .uk-button-text {
    color: #fff;
    margin-right: 25px;
}

/* [ 3. navigation ] */
.uk-navbar-container {
    position: relative;
    z-index: 2;
    height: 92px;
}

.uk-navbar-nav {
    height: 92px;
}

.uk-navbar-nav a i {
    font-size: 7.5px;
    margin-top: 2px;
    margin-left: 3px;
    transition: all ease 200ms;
}

.uk-navbar-nav a[aria-expanded="true"] i {
    transition: all ease 200ms;
    transform: rotate(-180deg);
}

.uk-navbar-dropdown-nav a i {
    font-size: 13px;
}

.in-mobile-nav .uk-button {
    font-size: 17px;
    padding: 2px 16px;
    color: #fff;
    background-color: transparent;
    box-shadow: inset 0px 0px 0px 2px #e8e8e8;
    border-radius: 10px;
}

.uk-nav-default {
    margin-top: -40px;
}

.uk-nav-default li a {
    font-size: 24px;
}

.uk-nav-sub li a {
    font-size: 18px;
}

.uk-nav-sub li a i {
    margin-left: 8px;
    font-size: 13px;
}

@media (max-width: 960px) {
    .in-mobile-nav {
        position: absolute;
        right: 0;
        z-index: 2;
    }
}

/* [ 4. slideshow ] */
.in-slideshow-gradient {
    background: #002533;
    background: linear-gradient(0deg, #002533 0%, #181818 80%, #181818 100%);
    margin-top: -92px;
}

.in-slideshow {
    padding-top: 92px;
    height: 580px;
}

.in-slideshow.uk-background-contain {
    background-size: 1254px 710px;
    background-position: 84% -38px;
}

.in-slideshow .particles-js-canvas-el {
    position: relative;
    top: -810px;
}

.in-slideshow hr {
    position: relative;
    z-index: 1;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.in-slideshow .uk-container {
    width: 100%;
    position: relative;
}

.in-slideshow .uk-slideshow-items {
    z-index: 1;
    height: 746px;
    top: -86px;
}

.in-slideshow .in-badge-text {
    height: 21px;
    color: #cacdd1;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    padding: 7px 16px 6px;
}

.in-slideshow .in-badge-text .uk-label {
    color: #fff;
    background: #4886d9;
    margin: -2px 14px 0 -10px;
    padding-left: 12px;
    padding-right: 12px;
}

.in-slideshow .in-slide-text {
    margin-top: -59px;
}

.in-slideshow .in-slide-text .uk-text-lead {
    margin-top: 30px;
}

.in-slideshow .in-slide-img {
    position: absolute;
    right: 2px;
    -webkit-animation: float 6s ease-in-out infinite;
            animation: float 6s ease-in-out infinite;
}

.in-slideshow .uk-card-small {
    padding: 13px 12px 11px 16px;
}

.in-slideshow .uk-card-secondary {
    background: rgba(0, 0, 0, 0.2);
}

.in-slideshow .uk-card-secondary h6 {
    font-size: 11px;
}

.in-slideshow .uk-card-secondary h6 span.uk-text-small {
    color: #acacac;
    font-size: 11px;
    font-weight: 300;
    margin-left: 10px;
}

.in-slideshow .uk-card-secondary p {
    font-size: 15px;
    font-weight: 300;
}

.in-slideshow .uk-card-secondary p span.fa-arrow-circle-right,
.in-slideshow .uk-card-secondary p span.fa-spinner {
    font-size: 11px;
    margin: 5px 5px 0 0;
    float: left;
}

.in-slideshow .uk-card-secondary p span.fa-spinner::before {
    width: 11px;
    display: block;
    -webkit-animation: rotate 2s linear infinite;
            animation: rotate 2s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.in-slideshow .in-symbol-logo img {
    margin: -3px 12px 0 0;
}

.in-slideshow .in-price.up p {
    color: #2db47f;
}

.in-slideshow .in-price.up p span.fa-arrow-circle-right {
    display: inline-block;
    transform: rotate(-40deg);
}

.in-slideshow .in-price.down p {
    color: #ec4e70;
}

.in-slideshow .in-price.down p span.fa-arrow-circle-right {
    display: inline-block;
    transform: rotate(40deg);
}

.in-slideshow .uk-dotnav {
    margin-bottom: 245px;
    z-index: 2;
}

.in-slideshow .uk-dotnav li {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@media (max-width: 960px) {
    .in-slideshow-gradient {
        height: 580px;
    }

    .in-slideshow.uk-background-contain {
        background-size: 1100px 623px;
        background-position: -5% -38px;
    }

    .in-slideshow .particles-js-canvas-el {
        top: -691px;
    }

    .in-slideshow .uk-slideshow-items {
        height: 486px;
        top: -20px;
    }

    .in-slideshow .in-slide-text {
        text-align: center;
        margin-top: -350px;
    }

    .in-slideshow .in-slide-text h1 {
        font-size: 2.2rem;
    }

    .in-slideshow .in-slide-img {
        width: 80%;
        top: -118px;
        right: 10%;
    }

    .in-slideshow .uk-dotnav {
        margin-bottom: 80px;
        right: 8%;
    }
}

@media (min-width: 640px) and (max-width: 960px) {
    .in-slideshow-gradient {
        height: 532px;
    }

    .in-slideshow.uk-background-contain {
        background-position: -15% -38px;
    }

    .in-slideshow .particles-js-canvas-el {
        top: -601px;
    }

    .in-slideshow .uk-slideshow-items {
        height: 440px;
    }

    .in-slideshow .in-slide-text {
        text-align: left;
        margin-top: -65px;
    }

    .in-slideshow .in-slide-img {
        width: 45%;
        right: 3%;
    }
}





/* [ 4. slideshow ] */
.in-slideshow-gradient {
    background: #002533;
    background: linear-gradient(0deg, #002533 0%, #181818 80%, #181818 100%);
    margin-top: -92px;
}

.in-slideshow {
    padding-top: 92px;
    height: 580px;
}

.in-slideshow.uk-background-contain {
    background-size: 1254px 710px;
    background-position: 84% -38px;
}

.in-slideshow .particles-js-canvas-el {
    position: relative;
    top: -810px;
}

.in-slideshow hr {
    position: relative;
    z-index: 1;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.in-slideshow .uk-container {
    width: 100%;
    position: relative;
}

.in-slideshow .uk-slideshow-items {
    z-index: 1;
    height: 746px;
    top: -86px;
}

.in-slideshow .in-badge-text {
    height: 21px;
    color: #cacdd1;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    padding: 7px 16px 6px;
}

.in-slideshow .in-badge-text .uk-label {
    color: #fff;
    background: #4886d9;
    margin: -2px 14px 0 -10px;
    padding-left: 12px;
    padding-right: 12px;
}

.in-slideshow .in-slide-text {
    margin-top: -59px;
}

.in-slideshow .in-slide-text .uk-text-lead {
    margin-top: 30px;
}

.in-slideshow .in-slide-img {
    position: absolute;
    right: 2px;
    -webkit-animation: float 6s ease-in-out infinite;
            animation: float 6s ease-in-out infinite;
}

.in-slideshow .uk-card-small {
    padding: 13px 12px 11px 16px;
}

.in-slideshow .uk-card-secondary {
    background: rgba(0, 0, 0, 0.2);
}

.in-slideshow .uk-card-secondary h6 {
    font-size: 11px;
}

.in-slideshow .uk-card-secondary h6 span.uk-text-small {
    color: #acacac;
    font-size: 11px;
    font-weight: 300;
    margin-left: 10px;
}

.in-slideshow .uk-card-secondary p {
    font-size: 15px;
    font-weight: 300;
}

.in-slideshow .uk-card-secondary p span.fa-arrow-circle-right,
.in-slideshow .uk-card-secondary p span.fa-spinner {
    font-size: 11px;
    margin: 5px 5px 0 0;
    float: left;
}

.in-slideshow .uk-card-secondary p span.fa-spinner::before {
    width: 11px;
    display: block;
    -webkit-animation: rotate 2s linear infinite;
            animation: rotate 2s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.in-slideshow .in-symbol-logo img {
    margin: -3px 12px 0 0;
}

.in-slideshow .in-price.up p {
    color: #2db47f;
}

.in-slideshow .in-price.up p span.fa-arrow-circle-right {
    display: inline-block;
    transform: rotate(-40deg);
}

.in-slideshow .in-price.down p {
    color: #ec4e70;
}

.in-slideshow .in-price.down p span.fa-arrow-circle-right {
    display: inline-block;
    transform: rotate(40deg);
}

.in-slideshow .uk-dotnav {
    margin-bottom: 245px;
    z-index: 2;
}

.in-slideshow .uk-dotnav li {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@media (max-width: 960px) {
    .in-slideshow-gradient {
        height: 580px;
    }

    .in-slideshow.uk-background-contain {
        background-size: 1100px 623px;
        background-position: -5% -38px;
    }

    .in-slideshow .particles-js-canvas-el {
        top: -691px;
    }

    .in-slideshow .uk-slideshow-items {
        height: 486px;
        top: -20px;
    }

    .in-slideshow .in-slide-text {
        text-align: center;
        margin-top: -350px;
    }

    .in-slideshow .in-slide-text h1 {
        font-size: 2.2rem;
    }

    .in-slideshow .in-slide-img {
        width: 80%;
        top: -118px;
        right: 10%;
    }

    .in-slideshow .uk-dotnav {
        margin-bottom: 80px;
        right: 8%;
    }
}

@media (min-width: 640px) and (max-width: 960px) {
    .in-slideshow-gradient {
        height: 532px;
    }

    .in-slideshow.uk-background-contain {
        background-position: -15% -38px;
    }

    .in-slideshow .particles-js-canvas-el {
        top: -601px;
    }

    .in-slideshow .uk-slideshow-items {
        height: 440px;
    }

    .in-slideshow .in-slide-text {
        text-align: left;
        margin-top: -65px;
    }

    .in-slideshow .in-slide-img {
        width: 45%;
        right: 3%;
    }
}






/* [ 5. footer ] */
footer .uk-link-text li a:hover {
    color: #e89903;
    text-decoration: none;
}

footer .in-footer-socials li {
    line-height: 36px;
}

footer .in-footer-socials li a {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
}

footer .in-footer-socials li a:hover {
    color: #fff;
    text-decoration: none;
}

footer .in-footer-socials li a .fab {
    font-size: 15px;
    color: #fff;
    margin-right: 8px;
    position: relative;
    top: 1px;
}

footer .in-footer-socials li a.fb-bg {
    background: #3b5998;
}

footer .in-footer-socials li a.fb-bg:hover {
    background: #466ab5;
}

footer .in-footer-socials li a.tw-bg {
    background: #00acee;
}

footer .in-footer-socials li a.tw-bg:hover {
    background: #18bfff;
}

footer .in-footer-socials li a.yt-bg {
    background: #c4302b;
}

footer .in-footer-socials li a.yt-bg:hover {
    background: #d64742;
}

footer .in-footer-socials li a.ig-bg {
    background: #DD2A7B;
}

footer .in-footer-socials li a.ig-bg:hover {
    background: #e34d91;
}

footer .in-footer-socials li a.tl-bg {
    background: #0088CC;
}

footer .in-footer-socials li a.tl-bg:hover {
    background: #00a3f5;
}

footer .in-footer-socials li a.wa-bg {
    background: #128c7e;
}

footer .in-footer-socials li a.wa-bg:hover {
    background: #17b09f;
}

footer .in-footer-socials li a.ld-bg {
    background: #0077b5;
}

footer .in-footer-socials li a.ld-bg:hover {
    background: #0092de;
}

footer .in-footer-socials li a.be-bg {
    background: #1769ff;
}

footer .in-footer-socials li a.be-bg:hover {
    background: #4083ff;
}

footer .uk-text-small {
    color: #999;
}

@media (max-width: 960px) {
    footer .in-footer-socials {
        margin-top: 50px;
    }

    footer .in-footer-socials li {
        margin: 0 5px;
        display: inline-block;
    }

    footer .copyright-text {
        margin-top: 0;
    }
}