@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Oleo+Script+Swash+Caps:wght@400;700&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    overflow-x: hidden;
}

.img-responsive {
    width: 100%;
    height: auto;
}

h5 {
    color: #01c9f5;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

h5::before {
    content: "\f141";
    margin-right: 20px;
    font-family: "FontAwesome";
}

h5::after {
    content: "\f141";
    margin-left: 20px;
    font-family: "FontAwesome";
}

a:hover {
    color: #0066ff;
    text-decoration: none;
}

/* ====Navigation Section==== */
nav {
    padding: 10px 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    transition: 0.2s;
}
.logo {
    font-family: 'Oleo Script Swash Caps', cursive;
    font-size: 35px;
    color: #fff;
}
.logo:hover {
    color: #fff;
    text-decoration: none;
}
.main-menu {
    padding: 0;
}
.main-menu > li {
    list-style: none;
    float: left;
    padding: 10px 15px 0;
}
.main-menu > li > a {
    color: #fff;
}
.main-menu > li > a:hover {
    text-decoration: none;
}
.parent-dropdown {
    position: relative;
}
.child-dropdown {
    padding: 0;
    position: absolute;
    background: #1e266d;
    padding: 20px 10px;
    border-radius: 10px;
    display: none;
}
.child-dropdown > li {
    list-style: none;
    padding: 5px 0;
}
.child-dropdown > li > a {
    color: #fff;
}
.child-dropdown > li > a:hover {
    text-decoration: none;
}
.fa-bars {
    display: none;
}

@media (max-width:768px) {
    .hero-circles {
        display: none;
    }
    .fa-bars {
        display: block !important;
        position: absolute;
        top: 18px;
        right: 65px;
        color: #fff;
        font-size: 30px;
        z-index: 99;
    }
    .main-menu {
        display: none;
        text-align: center;
    }
    .main-menu > li {
        float: none;
    }
    .custom-menu {
        background-color: #1e266d;
        position: absolute;
        right: 0;
        left: 0;
        top: 73px;
    }
    .child-dropdown {
        position: relative;
    }
    .banner img,
    .projects img,
    .technologies img {
        margin-top: 25px;
    }
    footer {
        text-align: center;
        line-height: 42px;
    }
}

/* ===Banner Section=== */
.banner {
    background-color: #0e1b38;
    color: #fff;
    padding: 160px 0;
    position: relative;
}
.banner:before {
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    width: 700px;
    height: 700px;
    background: #0066ff;
    line-height: 700px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-30%, -50%);
    -ms-transform: translate(-30%, -50%);
    transform: translate(-30%, -50%);
}
.banner h1 {
    font-size: 51px;
    font-weight: 700;
}
.banner p {
    font-weight: 600;
}
.cust-btn {
    background-color: #01c9f5;
    color: #fff;
    padding: 11px 35px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.5s;
    font-weight: 700;
}
.cust-btn:hover {
    background-color: #0066ff;
    color: #fff;
    text-decoration: none;
}
.hero-circles {
    width: 800px;
    height: 800px;
    background: white;
    line-height: 800px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    right: -350px;
    top: -350px;
    z-index: 0;
    opacity: 0.1;
}
.hero-circles:before {
    width: 100%;
    height: 100%;
    background: white;
    line-height: 100%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    content: '';
    z-index: -4;
    right: 15%;
    top: 30%;
    opacity: 0.65;
    -webkit-animation: customSlideInRight linear 1.5s both;
    animation: customSlideInRight linear 1.5s both;
}
.hero-circles:after {
    width: 100%;
    height: 100%;
    background: white;
    line-height: 100%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    content: '';
    z-index: -3;
    right: 5%;
    top: 15%;
    opacity: 0.55;
    -webkit-animation: customSlideInRight linear 1s both;
    animation: customSlideInRight linear 1s both;
}

.hero-dot-one {
    left: 5%;
    bottom: 35%;
}
.hero-dot-two {
    left: 45%;
    top: 20%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.hero-dot-three {
    right: 50%;
    bottom: 15%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.hero-dot-four {
    right: 10%;
    top: 54%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.hero-dot-one, .hero-dot-two, .hero-dot-three, .hero-dot-four  {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #7379f2;
    line-height: 12px;
    border-radius: 50%;
    text-align: center;
    animation-name: blink;
    animation-duration: 0.7s;
    animation-delay: 0.1s;
    animation-iteration-count: infinite;
}

@keyframes blink {
    0% {
        width: 12px;
        height: 12px;
    }
    20% {
        width: 10px;
        height: 10px;
    }
    40% {
        width: 8px;
        height: 8px;
    }
    60% {
        width: 6px;
        height: 6px;
    }
    80% {
        width: 4px;
        height: 4px;
    }
    100% {
        width: 2px;
        height: 2px;
    }
}

/* ====Offer Section==== */
.offer {
    padding: 60px 0 0;
}
.offer h2 {
    color: #1e266d;
    font-weight: 700;
}
.main-serv {
    padding: 15px;
}
.custom-serv {
    background: white;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 60px 45px;
    border-radius: 7px;
    margin-bottom: 30px;
    border: 1px solid #eeeff1;
}
.custom-serv:hover {
    -webkit-box-shadow: 20px 0 60px rgb(14 27 56 / 15%);
    box-shadow: 20px 0 60px rgb(14 27 56 / 15%);
}
.custom-serv h4 {
    padding-top: 20px;
}
.custom-serv h4 a {
    color: #1e266d;
}
.custom-serv h4 a:hover {
    color: #0066ff;
    text-decoration: none;
}
.read-more {
    font-weight: 700;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #0066ff;
    text-transform: capitalize;
    transition: 0.2s;
}
.read-more:hover i {
    margin-left: 10px;
}

/* ====About Us Section=== */
.about-us {
    padding: 80px 0 60px;
    position: relative;
}
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
}
.about-us h1 {
    color: #1e266d;
}
.about-us h1 span {
    color: #01c9f5;
}
.about-us ul {
    padding: 0;
    padding-bottom: 6px;
}
.about-us ul li {
    list-style: none;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1e266d;
    font-family: "Quicksand", sans-serif;
}
.about-us ul li:before {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    color: white;
    font-size: 12px;
    content: "\f00c";
    margin-right: 20px;
    width: 25px;
    height: 25px;
    background: #0066ff;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    font-family: 'FontAwesome';
}

/* ====Want Section==== */
.want {
    padding: 60px;
}
.want h1 {
    color: #1e266d;
}

/* ====Projects Section==== */
.projects {
    padding: 60px 0;
    background-color: #0e1b38;
    color: #fff;
    background-image: url('../images/project-bg.png');
    background-repeat: no-repeat;
    background-position: 0 50px;
}

/* ===Why Choose Us Section=== */
.choose {
    padding: 60px 0;
}
.choose h1,
.technologies h1 {
    color: #1e266d;
}

/* ===Technologies Section=== */
.technologies {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* ====Pricing Section=== */
.pricing {
    padding: 60px 0;
    background-color: #0e1b38;
}
.pricing h5 {
    display: block;
}
.main-price {
    padding: 15px;
}
.custom-price {
    padding: 20px;
    background-color: #fff;
    border-radius: 32px;
}
.custom-price h4 {
    color: #1e266d;
}
.custom-price span {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0066ff;
}
.custom-price span:before {
    content: '$';
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}
.custom-price ul {
    padding: 0;
    padding-bottom: 6px;
}
.custom-price ul li {
    list-style: none;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1e266d;
    font-family: "Quicksand", sans-serif;
}
.custom-price ul li:before {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    color: white;
    font-size: 12px;
    content: "\f00c";
    margin-right: 20px;
    width: 25px;
    height: 25px;
    background: #0066ff;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    font-family: 'FontAwesome';
}

/* ====Footer Section==== */
footer {
    padding: 60px 0;background-color: #0e1b38;
    color: #fff;
}
footer p {
    margin-bottom: 0;
    font-size: 19px;
}
footer i {
    color: #01c9f5;
}
footer a {
    color: #fff;
    padding: 10px;
}
footer a:hover {
    color: #01c9f5;
}

/* ====About Page=== */
.about-banner {
    background-color: #0e1b38;
    color: #fff;
    padding: 130px 0;
}
.about-banner h1 {
    font-size: 50px;
}

/*===Quicken Page===*/
.quick-strap {
    background-color:#961C1C;
    padding:10px 0;
}
.quick-strap a {
    color: #fff;
    border: 1px solid #fff;
    padding: 18px;
}