/*===================
1. BASE CSS
===================== */

body {
    font-family: "Atkinson Hyperlegible Next", serif;
    font-optical-sizing: auto;
    font-size: 17px;
    line-height: 1.4;
    color: #60707B;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Atkinson Hyperlegible Next", serif;
    font-weight: 700;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.fix {
    overflow: hidden
}

a:focus,
a:hover {
    color: #303030;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.section-padding {
    padding: 60px 0;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

.preloader {
    width: 80px;
    height: 80px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

.preloader span {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #d6f81d;
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
    animation-delay: -0.8s;
    -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
    0% {
        transform: scale(0, 0);
        opacity: 0.7;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes preloader {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}

.banner-icons {
    max-width: 350px;
    margin: 0 auto 45px;
}

.banner-icons img {
    max-width: 48px;
}

.badge {
    position: absolute;
    top: 9px;
    left: 10px;
    background: #f4462f;
    z-index: 2;
    padding: 7px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.overly {
    position: relative;
    z-index: 1;
}

.overly::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #031820;
    opacity: .9;
    z-index: -1;
}

#scrollUp {
    bottom: 60px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #f4462f;
    right: 30px;
    -webkit-transition: .4s;
    transition: .4s;
}

#scrollUp i {
    font-size: 22px;
}

.custom-btn {
    background: #70be0f;
    padding: 12px 16px;
    display: inline-block;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    transition: .4s;
}

.custom-btn:hover {
    background: #7bd707;
    color: #fff;
}

.custom-btn img {
    margin-right: 5px;
}

.section-intro {
    max-width: 520px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: #28292a;
    margin-bottom: 10px;
}

.grey-bg {
    background-color: #f7f7f7;
}

.section-intro p {
    color: #616163;
    font-size: 18px;
}

.navbar {
    background: #131e00;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .10);
}

/*

    Nav css
*/
.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d6fd00
}

.navbar .navbar-nav li:last-child .nav-link {
    padding-right: 0px;
}

.banner-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Prevents unwanted scroll issues */
}

/* Ensures .banner-txt stays on top */
.banner-txt {
    position: relative;
    z-index: 10;
    padding: 20px;
}


.banner-section::before {
    opacity: .6;
}

.banner-txt h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.banner-txt h1 span {
    color: #d6fd00;
}

.banner-txt p {
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 715px;
    margin: 20px auto 40px;
}

.banner-section .custom-btn {
    background-color: #a5c012;
    color: #ffffff;
    padding: 16px 40px;
}

/* ==========================================
DEMO PAGES
============================================ */
.single-preview {
    margin-bottom: 45px;
    transition: all 0.4s ease 0s;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 4px solid #ffffff;
    box-shadow: 0px 0px 10px 0 rgba(0, 2, 20, 0.10);
    border-radius: 5px;
}

.single-preview:hover {
    box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.25)
}

.single-preview figure {
    position: relative;
    z-index: 1;
    margin: 0;
}

.single-preview figure::after,
.single-preview a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00415d;
    background: -webkit-linear-gradient(to bottom, rgb(40, 64, 0, .35), #222);
    background: linear-gradient(to bottom, rgb(40, 64, 0, .35), #222);
    content: "";
    opacity: 0;
    transition: .5s;
}

.single-preview img {
    width: 100%;
}

.single-preview h4 {
    display: block;
    left: 0;
    position: absolute;
    bottom: -70%;
    width: 100%;
    z-index: 2;
    opacity: 0;
    transition: .4s;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
}

.single-preview a {
    z-index: 9;
    opacity: 1;
    background: transparent;
}

.single-preview:hover h4 {
    bottom: 25px;
    opacity: 1;
}

.single-preview:hover figure::after {
    opacity: 1;
    transition: .4s;
}

/* ==========================================
FEATURE AREA
============================================ */

.single-feature {
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    padding: 50px 30px 30px 30px;
    box-shadow: 0px 7px 34px rgba(215, 216, 222, 0.4);
    min-height: 290px;
    cursor: pointer;
    transition: .4s;
}

.single-feature:hover {
    transform: translate3d(0, -10px, 0);
}

.feature-icon {
    width: 57px;
    height: 57px;
    display: table;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    font-size: 22px;
}

.feature-txt h3 {
    color: #0c1f56;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-txt p {
    max-width: 315px;
    margin: 0 auto;
}

.feature-area .row div:nth-child(1) .feature-icon {
    background: #7910F2;
}

.feature-area .row div:nth-child(2) .feature-icon {
    background: #C76494;
}

.feature-area .row div:nth-child(3) .feature-icon {
    background: #DD4B25;
}

.feature-area .row div:nth-child(4) .feature-icon {
    background: #ff6b6b;
}

.feature-area .row div:nth-child(5) .feature-icon {
    background: #1cd1a1;
}

.feature-area .row div:nth-child(6) .feature-icon {
    background: #4285F4;
}

.feature-area .row div:nth-child(7) .feature-icon {
    background: #0fb10c;
}

.feature-area .row div:nth-child(8) .feature-icon {
    background: #F55D67;
}

.feature-area .row div:nth-child(9) .feature-icon {
    background: #0856e3;
}

.feature-area .row div:nth-child(10) .feature-icon {
    background: #dfd016;
}

.feature-area .row div:nth-child(11) .feature-icon {
    background: #056383;
}



/* PERCHASE AREA */
.purchase-area {
    padding: 75px 0 10px;
    position: relative;
    z-index: 1;
}

.purchase-area::after {
    opacity: .9;
}

.purchase-text p {
    max-width: 550px;
    margin: 0 auto 30px;
}

.purchase-text .custom-btn {
    padding: 16px 45px;
}


.purchase-text p {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 18px;
    color: rgb(214, 214, 214);
}

footer .copy-right {
    padding-top: 20px;
    border-top: 1px solid #243b43;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (min-width:768px) and (max-width: 991px) {
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        padding: 14px 18px;
    }
}

/*=======================================
Mobile Layout: 320px.
=========================================*/
@media only screen and (max-width: 767px) {

    .navbar-collapse.collapse.show {
        padding-bottom: 20px;
    }

    a.navbar-brand {
        max-width: 125px;
    }
.custom-btn {
    padding: 9px 16px;
    font-size: 16px;
}
    .banner-section {
        padding: 95px 0;
    }

    .banner-txt h1,
    .section-title {
        font-size: 30px;
        line-height: 1.3;
        letter-spacing: 1px;
    }
  .banner-txt p,body{
      font-size: 16px;
      line-height: 1.3;
  }
    .navbar .navbar-nav {
        margin: 20px 0 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 13px 10px;
    }

    button.navbar-toggler {
        border: 0 none;
        background: none;
        box-shadow: none;
        padding-top: 8px;

    }

    button.navbar-toggler:focus,
    button.navbar-toggler:hover {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none;
    }

    /* navigation toggle menu */
    .toggle-wrap {
        position: relative;
        cursor: pointer;

        /*disable selection*/
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .toggle-bar,
    .toggle-bar::before,
    .toggle-bar::after,
    .toggle-wrap.active .toggle-bar,
    .toggle-wrap.active .toggle-bar::before,
    .toggle-wrap.active .toggle-bar::after {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .toggle-bar {
        width: 15px;
        margin: 10px 0;
        position: relative;
        border-top: 3px solid #d6fd00;
        display: block;
    }

    .toggle-bar::before,
    .toggle-bar::after {
        content: "";
        display: block;
        background: #d6fd00;
        height: 2px;
        width: 22px;
        position: absolute;
        top: -10px;
        right: 0px;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -ms-transform-origin: 13%;
        -webkit-transform-origin: 13%;
        transform-origin: 13%;
    }

    .toggle-bar,
    .toggle-bar::before,
    .toggle-bar::after {
        border-top: 3px solid #fff
    }

    .bg-info .toggle-bar,
    .bg-info .toggle-bar::before,
    .bg-info .toggle-bar::after {
        border-top: 2px solid #fff;
    }

    .toggle-bar::after {
        top: 6px;
    }

    .toggle-wrap.active .toggle-bar {
        border-top: 6px solid transparent;

        &::after {
            top: 2px;
        }
    }

    .toggle-wrap.active .toggle-bar::before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .toggle-wrap.active .toggle-bar::after {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}