

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --body:#eeeeee;
    --text: #555555;
    --gray: #bbbbbb;
    --dark: #020314;
    --white: #ffffff;
    --border: #e8e8e8;
    --heading: #39404a;
    --primary: #0044bb;
    --header-bg: #080110;
    --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(--body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: 700;
    color: var(--heading);
}

h1 {
    font-size: 50px;
    line-height: 58px;
}

h2 {
    font-size: 50px;
    line-height: 60px;
}

h3 {
    font-size: 20px;
    line-height: 28px;
}

h4 {
    font-size: 18px;
    line-height: 26px;
}

.container {
    width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
}

.section {
    padding-top: 110px;
}

.section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.section-heading h2 {
    color: var(--heading);
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0px 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    .section {
        padding-top: 60px;
    }

    .section-heading {
        margin-bottom: 30px;
    }
}

/*=====================================
            HEADER PART STYLE
======================================*/
.header-part {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 3;
    width: 100%;
    padding: 20px 0px;
    background: transparent;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

.header-part.header-fixed {
    padding: 15px 0px;
    background: var(--white);
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.15);
}

.header-part.header-fixed .header-list li a {
    color: var(--heading);
}

.header-mobile {
    display: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    width: 180px;
}

.header-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-list li {
    margin: 0px 20px;
}

.header-list li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    transition: all linear .3s;
}

.header-btn {
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 6px;
    text-transform: capitalize;
    color: var(--white);
    background: var(--envato);
    text-shadow: var(--primary-tshadow);
    box-shadow: var(--primary-bshadow);
}

@media (max-width: 1000px) {
    .header-part {
        padding: 15px 0px;
    }

    .header-part.header-fixed {
        padding: 12px 0px;
    }

    .header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-mobile a img {
        width: 160px;
    }

    .header-list li a {
        color: var(--heading);
    }

    .header-mobile button {
        border: none;
        outline: none;
        background: none;
        cursor: pointer;
    }
    
    .header-mobile button i {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 46px;
        border-radius: 50%;
        text-align: center;
        display: inline-block;
        color: var(--heading);
        background: var(--body);
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }
    
    .header-mobile button i:hover {
        color: var(--white);
        background: var(--primary);
    }

    .header-content {
        position: fixed;
        top: 0px;
        left: -300px;
        width: 260px;
        height: 100vh;
        z-index: 3;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: 8px 15px 25px 0px rgba(0, 0, 0, 0.1);
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

    .header-content.active {
        left: -0px;
    }

    .header-logo {
        width: 100%;
        padding: 12px 0px;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .header-logo img {
        width: 180px;
    }

    .header-list {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .header-list li {
        margin: 7px 0px;
    }
}

/*=====================================
            BANNER PART STYLE
======================================*/
#banner-part {
    background: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
  
.banner-overlay {
    background: url(../demo/images/assets.svg);
    padding: 205px 0px 150px;
    text-align: center;
}
  
.banner-overlay h1 {
    width: 850px;
    font-weight: 500;
    margin: 0px auto 50px;
    color: var(--white);
}
  
.banner-overlay h3 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--white);
}
  
.banner-icon li {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin: 0px 15px;
    display: inline-block;
    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-icon li:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
}
  
.banner-icon li img {
    width: auto;
    height: 40px;
}

@media (max-width: 575px) {
    .banner-overlay h1 {
        width: 100%;
        font-size: 30px;
        line-height: 38px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .banner-overlay h1 {
        width: 100%;
    }
}
  
@media (max-width: 991px) {
    .banner-overlay {
        padding: 130px 0px 80px;
    }
    .banner-icon li {
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin: 8px;
    }
    .banner-icon li img {
        height: 28px;
    }
}
  

/*=====================================
            DEMO PART STYLE
======================================*/
.demo-large-card {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin-bottom: 75px;
}

.demo-medium-card {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.demo-small-card {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.demo-card {
    text-align: center;
    border-radius: 8px;
    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-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--primary-bshadow);
}

.demo-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    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));
    }
}


/*=====================================
            FEATURE PART STYLE
======================================*/
.feature-small-card {
    display: grid;
    grid-gap: 35px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
  
.feature-card {
    border-radius: 8px;
    text-align: center;
    padding: 35px 25px 30px;
    background: var(--white);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.feature-card:hover {
    transform: scale(1.1);
}
  
.feature-card:hover {
    background: var(--white);
    -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.15);
}

.feature-img {
    width: auto;
    height: 60px;
    margin-bottom: 25px;
}

.feature-text {
    font-weight: 500;
    text-transform: capitalize;
}

/*=====================================
            ELEMENT PART STYLE
======================================*/
.element-small-card {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
  
.element-card {
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 30px 0px 25px;
    background: var(--white);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.element-card:hover {
    background: var(--primary);
}

.element-card:hover i,
.element-card:hover p {
    color: var(--white);
}

.element-card i {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.element-card p {
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
 

/*=====================================
            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 30px;
    text-align: center;
}

.footer-part p {
    color: var(--text);
}

.footer-part p a {
    color: var(--primary);
}

