
/* 1.0 Reset */

:root {
    --body: #565e7e;
    --color: #ff751a;
    --color-hover: #6600ff;
    --bg: #6600ff;
    --bg-white: #f7f5f7;
    --heading: #262a38;
}

/* 1.1 Basic Reset */

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    color: var(--body);
}

/* 1.2 Custom Reset */

a {
    color: var(--heading);
    text-decoration: none;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

a:hover,
a:focus {
    color: var(--color);
    text-decoration: none;
    outline: none;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    font-weight: 500;
    color: var(--heading);
}

h1 {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.375;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.725rem;
}

h4 {
    font-size: 1.325rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
}

.font-icon {
    font-size: 1.8rem;
}

.font-icon-shadow {
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.btn {
    background-color: var(--color);
    font-weight: 500;
    padding: 16px 36px;
    border: none;
    color: white;
    border-radius: 5px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.btn.btn-primary {
    background-color: var(--color);
}

.btn.btn-secondary {
    background-color: #6c757d;
}

.btn.btn-success {
    background-color: #4caf4f;
}

.btn.btn-danger {
    background-color: #e73f3b;
}

.btn.btn-warning {
    background-color: #fc930a;
}

.btn.btn-info {
    background-color: #d9dee4;
}

.btn.btn-dark {
    background-color: #28282a;
}

.btn.btn-light {
    background-color: #e6e6e6;
    color: var(--body);
}

.btn.btn-outline-primary {
    border: 1px solid var(--color);
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-secondary {
    border: 1px solid #6c757d;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-success {
    border: 1px solid #4caf4f;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-danger {
    border: 1px solid #e73f3b;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-warning {
    border: 1px solid #fc930a;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-info {
    border: 1px solid #d9dee4;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-light {
    border: 1px solid #e6e6e6;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-dark {
    border: 1px solid #28282a;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-primary:hover {
    background-color: var(--color);
}

.btn.btn-outline-secondary:hover {
    background-color: #6c757d;
}

.btn.btn-outline-success:hover {
    background-color: #4caf4f;
}

.btn.btn-outline-danger:hover {
    background-color: #e73f3b;
}

.btn.btn-outline-warning:hover {
    background-color: #fc930a;
}

.btn.btn-outline-info:hover {
    background-color: #d9dee4;
}

.btn.btn-outline-dark:hover {
    background-color: #28282a;
}

.btn.btn-outline-light:hover {
    background-color: #e6e6e6;
}

.btn.btn-sm {
    padding: 8px 14px;
    font-size: 12px;
}

.btn.btn-lg {
    padding: 12px 26px;
}

.btn:hover,
.btn:focus {
    background-color: var(--color-hover);
    color: white;
}

img {
    height: auto;
    width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul>li {
    list-style: none;
    line-height: 1.6;
}

.bg-image {
    background: rgba(0, 0, 0, 0.5);
    background-blend-mode: color-burn;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-color {
    background-color: var(--bg-white);
}

.home-wrapper {
    padding: 120px 0 120px;
    position: relative;
}

.home-wrapper-full {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-center {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.home-center-desc {
    display: table-cell;
    vertical-align: middle;
}

.opa {
    position: relative;
    z-index: 1;
}

.justify-vertical {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.no-gutter>.col,
.no-gutter>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
}

.color {
    color: var(--color);
}

input.input,
input.textarea {
    box-shadow: none;
}

input.form-control:hover,
input.input:focus,
input.textarea:hover,
input.textarea:focus {
    box-shadow: none;
}

@media only screen and (max-width: 767.98px) {
    h2 {
        font-size: 2rem;
    }
}

/* Margin | Padding */

/* Margin  */

.m-0 {
    margin: 0 !important;
}

/*  margin Top */

.mt-0 {
    margin-top: 0 !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

/* Margin Bottom */

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-110 {
    margin-bottom: 110px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

/* Margin Right */

.mr-0 {
    margin-right: 0 !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

/* Margin Left */

.ml-0 {
    margin-left: 0 !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

/*  padding  */

.p-0 {
    padding: 0 !important;
}

/* padding Top */

.pt-0 {
    padding-top: 0 !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-120 {
    padding-top: 120px !important;
}

/*  Padding Bottom */

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

/* padding Right */

.pr-0 {
    padding-right: 0 !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

/* padding Left */

.pl-0 {
    padding-left: 0 !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

/* Custom Reset */

.section-title h4 {
    font-size: 16px;
    text-transform: uppercase;
}

.zindex-5 {
    z-index: 5 !important;
}

/* 1.0 Reset end */

/* 2 Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 15px;
    z-index: 1030;
    margin-bottom: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.navbar .navbar-brand {
    font-size: 28px;
    font-weight: 600;
    color: var(--heading);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.navbar .navbar-brand:hover {
    color: var(--color);
}

.navbar .navbar-brand img {
    width: 150px;
    height: 50px;
}

@media (max-width: 575.98px) {
    .navbar .navbar-brand img {
        width: 120px;
        height: auto;
    }
}

.navbar-nav .nav-item .nav-link {
    color: #000;
    margin-left: 20px;
    font-weight: 500;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: -2px 0 5px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
    margin: 0 10px;
}

.navbar .dropdown-menu .dropdown-item {
    margin: 7px 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--color);
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus {
    color: var(--color);
}

.hero-2 .navbar .navbar-brand {
    color: #fff;
}

.hero-2 .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
}

.hero-2 .navbar .navbar-brand:hover {
    color: var(--color);
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.hero-2 .navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--color);
}

.sticky {
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgb(3 27 78 / 10%);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.sticky .navbar-brand {
    color: var(--heading);
}

.sticky .navbar-nav .nav-item .nav-link {
    color: var(--heading);
    margin-left: 20px;
    font-weight: 500;
}

.sticky .navbar-nav .nav-item .nav-link:hover,
.hero-2 .sticky .navbar-nav .nav-item .nav-link:hover {
    color: var(--color);
}

.sticky .nav-item .nav-link.active {
    color: var(--color);
}

@media only screen and (min-width: 720px) {
    .navbar {
        padding: 20px;
    }
}

@media only screen and (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .sticky .navbar-nav .nav-item .nav-link,
    .navbar-nav .nav-item .nav-link {
        margin-left: 0;
    }

    .navbar .btn {
        margin-left: 0 !important;
    }
}

/* 3 Header */

header {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main {
    padding: 200px 0;
}

.main .shape-view {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .main .shape-view {
        display: block;
        content: "";
        position: absolute;
        right: -22%;
        bottom: 0;
        width: 80%;
        z-index: 2;
    }
}

@media only screen and (min-width: 1200px) {
    .main .shape-view {
        bottom: -28%;
    }
}

/* 4 Help */

.help-item {
    padding: 40px 20px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.help-item i {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #fff;
    background-color: var(--color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.help-item:hover {
    background-color: var(--bg);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.help-item:hover h4 {
    color: #fff;
}

/* 5 Video Container */

.video-play {
    position: relative;
    background-image: url(../images/video-container.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.video-play i {
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: var(--color);
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.video-play i:hover {
    background-color: var(--bg);
}


/* 6 Work */

.work-item {
    padding: 42px 20px;
    margin: 1rem 0;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.work-item span {
    font-size: 2.5rem;
    display: inline-block;
    color: #fff;
    background-color: rgba(255, 117, 26, 0.6);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.work-item:hover {
    background-color: var(--bg);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.work-item:hover span {
    background-color: rgb(255, 117, 26);
}

.work-item:hover h4 {
    color: #fff;
}

/* 7 Download */

.download {
    position: relative;
    background-color: var(--bg);
    background-size: cover;
    background-repeat: no-repeat;
}

.download-btn .btn:hover {
    background-color: var(--heading);
}

/* 8 Screenshot */

.screenshot {
    position: relative;
    z-index: 0;
}

.swiper .swiper-slide img {
    object-fit: contain;
    object-position: center;
}

/* 9 Pricing Plan */

.price-item {
    margin: 20px 0;
    padding: 40px 20px;
    border: 1px solid rgba(168, 176, 181, 0.2);
    border-radius: 20px;
    box-shadow: -2px -2px 10px 0px rgba(168, 176, 181, 0.2);
    transition: all .3s ease-in-out;
    background-color: #fff;
}

.price-item:hover {
    box-shadow: -2px -2px 15px 0 var(--color-hover);
}

.price-item h6 {
    font-weight: 500;
    color: var(--body);
}

.price-item h3 {
    font-size: 40px;
}

.price-item p {
    text-transform: uppercase;
}

.price-item i {
    margin-right: 10px;
}

.price-item ul {
    text-align: center;
}

.price-item ul>li {
    margin: 10px 0;
}

.price-pills {
    border: none;
    justify-content: center;
    margin-bottom: 20px;
}

.price-pills .nav-link {
    border: 1px solid #e2e2e2;
    background-color: transparent;
    line-height: 50px;
}

.price-pills>li:hover {
    background-color: transparent;
    color: #fff;
}

.price-pills li.nav-link {
    margin-bottom: 0;
}

.price-pills .nav-link.active {
    background-color: var(--color);
    color: #fff;
    border-bottom: none;
}

.price-pills li.nav-link:hover {
    background-color: var(--color-hover);
    color: #fff;
}

@media only screen and (min-width: 1140px) {
    .price-item ul {
        padding: 0 50px;
    }
}

/* 10 Blog */

.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.blog-thumb img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

/* 11 Contact */

.contact-form input {
    margin: 10px 0;
    line-height: 40px;
}

.contact-form textarea {
    margin: 10px 0;
}

.contact-form input,
.contact-form textarea {
    box-shadow: none;
}

.contact-form input:hover,
.contact-form input:focus,
.contact-form textarea:hover,
.contact-form textarea:focus {
    box-shadow: none;
    border-color: var(--color);
}

/* 12 Footer */

footer {
    position: relative;
}

.footer-item .footer-title {
    font-size: 30px;
    font-weight: 700;
}

.footer-item h4 {
    font-size: 20px;
    color: #fff;
}

.footer-item a {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.footer-item a:hover {
    color: #ffffff;
}

.footer-item .footer-social a {
    color: #fff;
}

.footer-item ul>li {
    margin: 8px 0;
}

.footer-shape {
    display: none;
}

@media only screen and (min-width: 1024px) {

    .footer-shape {
        position: absolute;
        display: block;
        top: -35%;
        left: 0;
        width: 100%;
        z-index: -1;
    }
}

@media only screen and (min-width: 1200px) {
    .footer-shape {
        top: -65%;
    }
}

/* 13 Keyframes */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 118, 26, 0.7);
    }

    60% {
        box-shadow: 0 0 0 15px rgba(255, 118, 26, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 118, 26, 0);
    }
}