

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --red: #f52525;
    --body:#eeeeee;
    --text: #888888;
    --gray: #bbbbbb;
    --dark: #041330;
    --white: #ffffff;
    --border: #e8e8e8;
    --heading: #bfcfe6;
    --primary: #477CDB;
    --header-bg: #080110;
    --counter-bg: #f4f5ff;
    --envato: #82b541;
    --envato-hover: #49a010;
    --primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    --primary-bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
}

/*=====================================
            ALL COMMON STYLE
======================================*/
* {
    margin: 0px;
    padding: 0px;
    outline: 0px;
}

img {
    vertical-align: middle;
}

a {
    display: inline-block;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    display: inline-block;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: 'Rubik', sans-serif;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: 700;
    color: var(--heading);
}

h1 {
    font-size: 42px;
    line-height: 52px;
}

h2 {
    font-size: 42px;
    line-height: 50px;
}

h3 {
    font-size: 20px;
    line-height: 28px;
}

h4 {
    font-size: 18px;
    line-height: 26px;
}

.container {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
}

.section {
    margin-bottom: 112px;
}

.section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.section-heading h2 {
    color: var(--primary);
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0px 50px;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0px 15px;
    }
    
    .section {
        margin-bottom: 60px;
    }

    .section-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 38px;
        line-height: 48px;
    }
}

/*=====================================
            BANNER PART STYLE
======================================*/
#banner-part {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.banner-bg {
    width: 800px;
    margin-left: auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: auto;
}

.banner-bg img {
    width: 100%;
    object-fit: cover;
    animation: mc-move 4s linear infinite;
}

@keyframes mc-move {
    0% { transform: rotate(12deg); }
    25% { transform: rotate(0deg); }
    50% { transform: rotate(-12deg); }
    75% { transform: rotate(0deg); }
    100% { transform: rotate(12deg); }
}

.banner-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #477CDB, #05122aa6);
}

.banner-overlay .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.banner-content {
    max-width: 650px;
}

.banner-content .logo {
    height: 50px;
    margin-bottom: 40px;
    filter: brightness(5);
}

.banner-content h1 {
    color: var(--white);
    margin-bottom: 25px;
}
.banner-content h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 500;
}

.banner-content ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-content ul li {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: var(--white);
    -webkit-box-shadow: 0px 25px 35px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 25px 35px 0px rgba(0, 0, 0, 0.15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.banner-content ul li:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}

.banner-content ul li img {
    width: auto;
    height: 30px;
}


/*=====================================
            DEMO PART STYLE
======================================*/
.demo-card-group {
    display: grid;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.demo-card {
    text-align: center;
    transform: translateY(0);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.demo-card:hover {
    transform: translateY(-5px);
}

.demo-media {
    position: relative;
    margin-bottom: 22px;
}

.demo-label {
    position: absolute;
    top: -25px;
    z-index: 1;
    width: 100px;
    height: 100px;
    font-size: 26px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 100px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    border: 8px solid var(--white);
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.2);
}

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

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

.demo-label span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    width: fit-content;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.demo-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
    width: 70px;
    height: 70px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50%;
    line-height: 70px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.2);
}

.demo-img {
    width: 100%;
    height: auto;
    box-shadow: var(--primary-bshadow);
}

.demo-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.demo-btn {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 180px;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 0px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--primary-bshadow);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.demo-card:hover .demo-overlay {
    opacity: 1;
    visibility: visible;
}

.demo-card:hover .demo-btn {
    top: 50%;
}

.demo-name {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--heading);
}

@media (max-width: 400px) {
    #demo-part {
        padding-top: 50px;
    }

    .demo-large-card,
    .demo-medium-card,
    .demo-small-card {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
}

/*=====================================
            SUPPORT PART STYLE
======================================*/
.support-content {
    text-align: center;
}

.support-content a img {
    width: 220px;
    margin-bottom: 25px;
}

.support-content h2 {
    width: 700px;
    margin: 0 auto 45px;
    text-transform: uppercase;
}

.support-content .btn {
    width: 180px;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 0px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;;
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--primary-bshadow);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

@media (max-width: 750px) {
    .support-content h2 {
        width: 100%;
        font-size: 34px;
        line-height: 44px;
    }
}

/*=====================================
            FOOTER PART STYLE
======================================*/
.footer-part {
    padding: 60px 0px 50px;
    text-align: center;
}

.footer-part p {
    color: var(--text);
}

.footer-part p a {
    color: var(--primary);
}

