/* =============================================================================

[Table of contents]
/*===========================
0.0 *** Common CSS START ***
=============================*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
} 

body {
    overflow-x: hidden;
    background: white;
}

ul,
ol {
    list-style-type: none;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

img {
    overflow: hidden;
    border: 0;
    vertical-align: middle;
}

.zindex {
    position: relative;
    z-index: 999;
}

.clr {
    clear: both;
}

.vbox-overlay {
    z-index: 999999;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
}

p {
    line-height: 26px;
}

@font-face {
    src: url(../fonts/Rubik-Bold.ttf);
    font-family: rb;
}

@font-face {
    src: url(../fonts/Rubik-Regular.ttf);
    font-family: rr;
}

@font-face {
    src: url(../fonts/Rubik-Medium.ttf);
    font-family: rm;
}

@font-face {
    src: url(../fonts/Parisienne-Regular.ttf);
    font-family: pr;
}

/* preloader */
.preloader {
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.preloader:after {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.loader-box {
    color: #3d8ec3;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    z-index: 1;
}

.loader-box svg {
    display: block;
    width: 100%;
    height: 100%;
}

.loader-box svg rect {
    fill: none;
    stroke: #3d8ec3;
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.loader-box svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@-webkit-keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

.p-100 {
    padding: 100px 0;
}

.pt-120 {
    padding-top: 120px;
}

.desktop-hide {
    display: none;
}

#aboutpage {
    padding: 180px 0 100px;
}

.aboutpage-text h1 {
    font-size: 57px;
    font-family: rb;
    line-height: 68px;
    position: relative;
}

.aboutpage-text h1::after {
    position: absolute;
    content: '';
    bottom: 9px;
    left: 0;
    width: 625px;
    height: 11px;
    background: #3d8ec3;
    z-index: -1;
}

.aboutpage-img {
    margin-top: 60px;
}

.aboutpage-img img {
    border-radius: 8px;

}

.aboutpage-text h3 {
    font-size: 49px;
    font-family: rb;
    padding-top: 30px;
}

.aboutpage-text p {
    color: gray;
    font-size: 18px;
    font-family: rr;
    padding-top: 20px;
}

.aboutpage-text h4 {
    font-size: 32px;
    font-family: pr;
    color: #666;
    padding-top: 20px;

}

.aboutpage-text span {
    font-size: 18px;
    font-family: rr;
    color: #3d8ec3;

}

#contact {
    padding: 150px 0 100px;
}

.contact-item {
    padding: 40px;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    border-radius: 8px;
}

.say-hello {
    border: 2px solid #3d8ec3;
    border-radius: 8px;
    padding: 30px 30px 313px;
}

.say-hello h3 {
    font-size: 49px;
    font-family: rb;
    padding-bottom: 12px;
}

.say-hello h4 {
    font-family: rr;
    font-size: 18px;
    color: gray;
    padding: 15px 0;

}

.say-hello p {
    font-family: rr;
    font-size: 18px;
    color: gray;
    padding-bottom: 70px;
}

.say-hello i {
    color: #3d8ec3;
    padding-right: 8px;

}

.contact-item label {
    font-size: 18px;
    font-family: rr;
    color: gray;
}

.contact-item input {
    height: 45px;
    font-family: rr;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #ced4da;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-item .mainbtn {
    border: none;
}

.contact-item #floatingTextarea2 {
    margin-top: 15px;
}

#aboutpage-m #brand {
    padding: 60px 0;
}

/*===========================
1.0 *** HEADER START ***
=============================*/
.bg-light {
    background-color: #fff !important;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999999;
    -weebkit-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
    padding-top: 15px;
    background: 0 0 !important;
}

.navbar-brand img {
    width: 180px;
    margin-top: -5px;
}

.navbar-brand {
    font-family: rr;
    font-size: 28px;
    color: #2e2e2e;
}

.navbar-brand span {
    font-family: rm;
}

.navbar-light .navbar-nav .nav-link {
    color: grey;
    font-family: rr;
    font-size: 18px;
    margin: 0 8px;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background: #3d8ec3;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.navbar-light .navbar-nav .nav-link:hover:after {
    width: 31px;
}

.nav-bg .navbar-nav .nav-link::after {
    top: -30px;
}

.mainbtn {
    padding: 15px 25px;
    color: #fff !important;
    font-size: 18px;
    font-family: rr;
    background: #2e2e2e;
    position: relative;
    overflow: hidden;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
    border-radius: 8px;
}

.mainbtn:hover {
    background: #3d8ec3;
}

.nav-bg {
    background: white !important;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;

}

.navbar-light .navbar-nav .nav-link.active {
    color: #e84545;
}

/*===========================
2.0 *** BANNER START ***
=============================*/
#banner {
    padding: 200px 0 40px;
}

.banner-txt span.updateNews {
    font-family: rb;
    color: #3d8ec3;
}

.banner-txt span a {
    font-family: rm;
    color: #3d8ec3;
}

.banner-txt h1 {
    font-family: rb;
    font-size: 82px;
    padding-top: 10px;
    padding-bottom: 45px;
    text-shadow: 3px 3px #ffbd8c;

}


.banner-txt p {
    font-family: rr;
    color: grey;
    padding: 20px 140px;
}

.people img {
    width: 60px;
    border-radius: 50%;
    border: 4px solid #fff;
    -webkit-box-shadow: 0 19px 100px -10px rgba(2, 9, 22, .03);
    box-shadow: 0 19px 100px -10px rgba(2, 9, 22, .03);
}

.people .r1,
.people .r2,
.people .r3 {
    margin-left: -21px;
}

.bannerbox {
    padding-top: 12px;
}

.bannerbox span {
    font-family: rr;
    font-size: 18px;
    color: grey;

}

.stars i {
    color: #fbaa33;
}

.banner-txt {
    position: relative;
}

.banner-icon {
    position: absolute;
}

.laravel {
    left: 20px;
    top: 220px;
    width: 35px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.html {
    left: 0;
    top: 0;
    width: 30px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.android {
    left: -165px;
    top: 125px;
    width: 35px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.wordpress {
    left: -112px;
    bottom: 15px;
    width: 45px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.flutter {
    right: 20px;
    top: 220px;
    width: 35px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.dart {
    right: 0;
    top: 0;
    width: 30px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.js {
    right: -165px;
    top: 125px;
    width: 35px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.nodejs {
    right: -112px;
    bottom: 15px;
    width: 45px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

/*===========================
3.0 *** ABOUT START ***
=============================*/
#about {
    padding: 100px 0;
}

.about-txt {
    background: #3d8ec3;
    padding: 100px;
    border-radius: 8px;
    position: relative;
    padding-bottom: 645px;
}

.about-txt h3 {
    font-size: 59px;
    color: #fff;
    font-family: rb;
    padding: 0 20px 20px;
}

.about-txt p {
    font-family: rr;
    font-size: 18px;
    color: #fff;
    padding: 0 200px 40px;
}

.about-txt a {
    padding: 15px 25px;
    color: #fff !important;
    font-size: 18px;
    font-family: rr;
    background: #2e2e2e;
    position: relative;
    overflow: hidden;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
    border-radius: 8px;
}

.about-txt a:hover {
    background: white;
    color: #000 !important;
}

.aboutimg {
    padding-top: 70px;
}

.about-txt img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1125px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

/*===========================
4.0 *** COUNTER START ***
=============================*/
#counter {
    padding: 70px 0 100px;
}

.counter-item h3 {
    font-family: rb;
    font-size: 49px;
    padding-bottom: 10px;
}

.counter-item p {
    font-family: rr;
    font-size: 18px;
    color: grey;
}

/*===========================
5.0 *** SERVICE START ***
=============================*/
#service {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-title.service {
    padding-bottom: 40px;
}

.section-title span {
    font-family: rm;
    color: #3d8ec3;
    font-size: 18px;
}

.section-title h3 {
    font-family: rb;
    font-size: 49px;
}

.service-item {
    padding: 40px 28px;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    margin-top: 30px;
    background: white;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.service-item:hover {
    background: #3d8ec3;
    color: white;
}

.service-item:hover p,
.service-item:hover h4 {
    color: white;
}

.service-item:hover a {
    background: white;
}

.service-item:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.service-item h3 {
    font-size: 27px;
    font-family: rb;
    padding: 0 0 25px;
}

.service-item h4 {
    font-size: 27px;
    font-family: rb;
    padding: 0 0 12px;
    color: #d8d8d8;
}

.service-item p {
    font-family: rr;
    font-size: 18px;
    color: grey;
    padding-top: 25px;
    padding-bottom: 20px;
}

.service-item a {
    font-size: 15px;
    font-family: rr;
    padding: 3px 7px;
    border-radius: 4px;
    background-color: #eef4f8;
    margin-top: 10px;
    color: #3d8ec3;
}

/*===========================
6.0 *** REVIEWS START ***
=============================*/
#review {
    padding: 100px 0;
    background: #1d1d1d;
}

.section-title.review {
    padding-bottom: 40px;
}

.section-title.review h3 {
    color: white;
}

.review-item {
    padding: 30px;
}

.review-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-family: rr;
    padding-top: 20px;
}

.review-item h3 {
    font-size: 25px;
    font-family: rb;
    color: white;
    padding-top: 20px
}

/*===========================
7.0 *** FEATURED START ***
=============================*/
#featured {
    padding: 100px 0 0;
    background: #f9f9f9;
    overflow: hidden;
}

.featured-item span {
    font-family: rm;
    color: #3d8ec3;
    font-size: 18px;
}

.featured-item a {
    color: #000;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;

}

.featured-item h3 {
    font-family: rb;
    font-size: 49px;
    padding-top: 10px;
    padding-bottom: 45px;
}

.featured-item img {
    margin-bottom: -10px;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

/*===========================
8.0 *** WORKS START ***
=============================*/
#works {
    padding: 100px 0;
}

.project-item {
    background: white;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    padding: 30px 25px;
    margin: 20px 15px;
}

.project-item.br8 img {
    border-radius: 8px;
}

.project-item h3 {
    font-size: 25px;
    font-family: rb;
    padding: 25px 0 5px;
}

.project-item span {
    font-size: 18px;
    font-family: rr;
    color: #3d8ec3;
    display: block;
    padding-bottom: 6px;
}

.project-item p {
    font-size: 18px;
    font-family: rr;
    color: gray;
    padding: 12px 0;
}

/*===========================
8.0 *** BRAND START ***
=============================*/
#brand {
    padding: 0 0 90px;
}

.brand-item h3 {
    font-family: rr;
    color: grey;
    font-size: 28px;
}

/*===========================
9.0 *** QUOTE START ***
=============================*/
.quote-text {
    background: #3d8ec3;
    padding: 45px 30px;
    margin-bottom: -35px;
}

.quote-text span {
    color: white;
    font-family: rr;
    font-size: 18px;
}

.quote-text h3 {
    color: white;
    font-family: rb;
    font-size: 38px;
    padding-top: 4px;
}

.quote-text a {
    position: relative;
    top: 24px;
}

.quote-text a i {
    padding-left: 4px;
}

.quote-text a:hover {
    background: white;
    color: #000 !important;
}

/*===========================
9.0 *** FOOTER START ***
=============================*/
#footer {
    padding: 110px 0;
    background: #1d1d1d;
}

.footer-logo a {
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-family: rr;
    padding-top: 20px;
    padding-right: 25px;
}

.footer-item h3 {
    font-size: 21px;
    font-family: rm;
    color: white;
    padding-bottom: 8px;
}

.footer-item a {
    display: block;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    font-family: rr;
    padding: 6px 0;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.footer-item a:hover {
    padding-left: 5px;
    color: white;
}

.social-i {
    padding-top: 20px;
}

.social-i a i {
    font-size: 21px;
    color: grey;
    padding-right: 15px;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.social-i a i:hover {
    color: white;
}

/*===========================
10.0 *** COPY-RIGHT START ***
=============================*/
#copyright {
    padding: 20px 0;
    background: #1d1d1d;
    border-top: 2px dashed #414141;
}

#copyright p {
    font-family: rr;
    font-size: 18px;
    color: grey;
}
