/*********************************************************

    Template Name:  Robin - Personal Portfolio HTML Template
    Author: MouriTheme
    Version: 1.0
    Design and Developed by: MouriTheme

    NB: This is the main stylesheet of this theme.

***********************************************************/

/*Table of Content


1. Default css
2. Preloader Css
3. Navigation area css
4. Mouse animation css
5. Banner area css
6. About area css
7. Services area css
8. skills area css
9. Portfolio area css
10. Statistic area css
11. Experience area css
12. Testimonial area css
13. Contact area css
14. Footer area css

*/


/*===============================
	1. Google Fonts
===============================*/

/*@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,600');*/
/*@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600');*/




/*--- 1. Default css starts ---*/

html,body{
    height: 100%;
}

body{
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100%;
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color: #333333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

p {
    letter-spacing: 0;
    line-height:1.8;
}

a{
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

a:focus{
    outline:none;
    text-decoration: none;
}

a:hover{
    outline:none;
    text-decoration: none;
}

ul,li{
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-title {
    text-align: center;
    padding-bottom: 60px;
}
.section-title h2 span{
    color: #00B0DC;
}
.section-title h2 {
    font-size: 40px;
    color: #262626;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}


/*--- Default css ends---*/

/*-------------- 2. Preloader css starts ---------------*/

.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before, .loader:after {
    content: '';
    border: 1em solid #00B0DC;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0; }
    50% {
        opacity: 1; }
    100% {
        transform: scale(1);
        opacity: 0; }
}


/*---------- preloader css ends -------------*/

/*--- 3. Mouse animation starts---*/

@-webkit-keyframes scroll-ani {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes scroll-ani {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

.mouse-scroll {
    position: absolute;
    left: 48%;
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 2px;
    margin-top: 5%;
    text-decoration: none;
    overflow: hidden;
}

.mouse-scroll .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 60px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #ffffff;
    border-radius: 23px;
}

.mouse-scroll .mouse .mouse-movement {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-animation: scroll-ani 2s linear infinite;
    animation: scroll-ani 2s linear infinite;
}

/*---mouse animation ends---*/

/*---------- 4. Nav area css starts -------------*/

.nav-area{
    height: 65px;
}

.nav-area.sticky_navigation{
    background: #fafafa;
    height: 80px;
}

.navbar-nav {
    margin-top: 15px;
}

.sticky_navigation{
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out ;
    transition: all 0.4s ease-out ;
    -webkit-box-shadow: 0px 3px 4.6px 0.3px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 4.6px 0.3px rgba(0,0,0,0.25);
}

.sticky_navigation .main-menu{
    margin-top: 0;
}

.sticky_navigation .navbar-brand, .sticky_navigation .navbar-brand span {
    color: #000000;
}

.sticky_navigation .navbar-brand:hover, .sticky_navigation .navbar-brand:focus, .sticky_navigation .navbar-brand span {
    color: #262626;
}

.sticky_navigation .nav li a {
    color: #262626;
}

.sticky_navigation .nav li.active a{
    color: #00B0DC;
}

.sticky_navigation .nav li.active::after {
    border-bottom: 1px solid #262626;
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
}

.sticky_navigation .navbar-brand:hover{
    color: #ffffff;
}

.sticky_navigation .logo span {
    color: #00b0dc;
}

.main-menu{
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    margin-top: 10px;
}

.navbar{
    border:0;
    margin-bottom: 0;
}

.navbar-brand{
    padding: 25px 0;
    text-transform: uppercase;
    font-size: 25px;
    display: block;
    color: #ffffff;
    font-weight: 800;
}

.logo {
    padding: 5px;
    font-size: 32px;
    letter-spacing: 3px;
}

.logo span {
    color: #00b0dc;
}

.navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none;
    color: #ffffff;
}

.navbar-right li{
    display: inline-block;
    float: none;
}

.navbar-right li a{
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
}

.navbar-right li.active a{
    color: #00B0DC;
}

.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus{
    background: none;
}

.navbar-toggle .icon-bar{
    background: #033D75;
}

/*---------- Nav area css ends -------------*/

/*----------- 5. Banner area css starts--------------*/


.banner-area{
    background-image: url(../images/Home.jpg); /*--edit image--*/
    background-position: center;
    background-size:cover;
    position: relative;
    height: 100%;
}

.banner-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    content: '';
}

.img-area {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    display: inline-block;
}

.banner-area b{
    font-weight: 100;
}

canvas{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.banner-table{
    display: table;
    margin: 0;
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.banner-table-cell{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.welcome-text .intro h2 {
    color: #fff;
    font-size: 85px;
    font-weight: 800;
    margin-bottom: 10px;
}



.intro h1 {
    color: #fafafa;
    font-size: 18px;
    font-weight: 100;
    margin: 0;
}

.social-icon {
    text-align: center;
    padding-top: 20px;
}

.social-icon ul {
    margin: 0;
}

.social-icon ul li {
    display: inline;
    padding: 0;
    margin: 0 5px;
}

.social-icon ul li a {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    color: #fff;
}

.social-icon ul li a:hover {
    background: #00b0dc;
}

.ah-headline.clip .ah-words-wrapper::after {
    background-color: #fff;
}

.banner-btn {
    background: transparent;
    text-decoration: none;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 25px;
    color: #fff;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 25px;
    border: 2px solid #fafafa;
    font-weight: bold;
}
.banner-btn:hover, .banner-btn:focus {
    text-decoration: none;
    color: #333;
    background: #fafafa;
    border-color: #fafafa;
}

.welcome-text h3 {
    color: #fff;
    font-size: 45px;
}

/*---------Banner area css ends--------------*/

/*---------- 6. About area css starts---------------*/

.stack {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    display: inline-block;
}

.stack img {
    background: #fff;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 10px;
    width: 100%;
    -moz-box-shadow:    1px 1px 2px rgba(0,0,0,.25);
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.25);
    box-shadow:         1px 1px 2px rgba(0,0,0,.25);
}

.stack::before {
    background: #969696;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -10;
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.25);
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.25);
    box-shadow: 1px 1px 2px rgba(0,0,0,.25);
}

.btn-a {
    animation-delay: 2s;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 18px;
    padding: 14px 22px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-animation-delay: 2s;
    -webkit-transition: background .3s ease-in-out, color .3s ease-in-out;
    animation-delay: 2s;
    transition: background .3s ease-in-out, color .3s ease-in-out;
    white-space: nowrap;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-top: 20px;
    text-decoration: none;
    margin-right: 15px;
}

.skill-btn {
    background: #00b0dc;
    border: 1px solid #00b0dc;
    color: #fff;
}

.down-btn {
    background: none;
    color: #2B2F37;
    border: 1px solid #00b0dc;
}

.about-text-left {
    margin-top: 90px;
}

.about-text-left p {
    text-align: right;
    font-size: 15px;
    color: #fafafa;
    margin-bottom: 20px;
}



.about-right h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-text-right h3 {
    color: #fafafa;
    margin-bottom: 45px;
}

.about-text-right h6 {
    color: #333333;
}

.about-right p span {
    color: #262626;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-list{
    list-style: none;
}

.about-right .about-list li {
    margin-bottom: 10px;
}
.about-right .about-list li .title {
    position: relative;
    margin-right: 10px;
    padding-bottom: 1px;
    color: #a1a1a1;
    font-weight: 700;
}
.about-right .about-list li .title:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #e1e1e1;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
.about-right .about-list li .title:after {
    position: absolute;
    content: ':';
    right: -8px;
}
.about-right .about-list li .value {
    position: relative;
}
.about-right .about-list li .value:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
}

/*-------About area css ends--------------*/

/*-------- 7. Services area starts ----------*/


.services-area {
    background: #f8f8f8;
}
.service {
    text-align: center;
}

.service-box {
    padding: 20px;
    margin-bottom: 40px;
    position: relative;
    transition: .9s;
}

.service-icon i {
    font-size: 50px;
    color: #00B0DC;
    margin-bottom: 20px;
}

.service-box:hover:after {
    top: 0;
    height: 100%;
    transition: 0.9s;
}

.service-box:hover .after {
    bottom: 0;
    height: 100%;
    transition: 0.9s;
}

.service-box:hover:before {
    left: 0;
    width: 100%;
    transition: 0.9s;
}

.service-box:hover .before {
    right: 0;
    width: 100%;
    transition: 0.9s;
}

.service-box:hover:before,
.service-box:hover .before {
    width: 100%;
    transition: 0.9s;
}

.service-box:after {
    height: 80%;
    width: 2px;
    content: '';
    top: 10%;
    left: 0px;
    transition: 0.9s;
}

.service-box .before,
.service-box .after,
.service-box:before,
.service-box:after {
    background: #777;
    position: absolute;
    transition: 0.9s;
}

.service-box:before {
    height: 2px;
    width: 80%;
    content: '';
    top: 0px;
    left: 10%;
    transition: 0.9s;
}

.service-box .before {
    height: 2px;
    width: 80%;
    bottom: 0px;
    right: 10%;
    transition: 0.9s;
}

.service-box .after {
    height: 80%;
    width: 2px;
    bottom: 10%;
    right: 0px;
    transition: 0.9s;
}

/*-------- Services area ends ----------*/

/*--------- 8. Skills area starts --------------*/

.skills-area .section-title h2{
    color: #fff;
}

.skills-area{
    position: relative;
    /*background-image: url(../images/skills/1.jpg);*/
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    z-index: 1;
}
.skills-area:before{
    position: absolute;
    content: '';
    background: rgba(0,0,0,0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.skillbar {
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    display: block
}

.skillbar .skillbar-title {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    color: #fff;
}

.skillbar .skillbar-percent {
    float: right;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}

.skillbar-bar {
    background-color: #fff;
    width: 100%;
    height: 15px;
    border-radius: 40px;
}

.skillbar-bar .skillbar-child {
    width: 0;
    height: 100%;
    background-color: #00B0DC;
    -webkit-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
    border-radius: 5px;
}

/*--------- Skills area ends --------------*/

/*----------- 9. Portfolio area Starts --------*/

.portfolio-area {
    background: #fafafa;
}

.project-item img {
    width: 100%;
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #00B0DC;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: crosshair;
}

.overlay .overlay-inner {
    position: absolute;
    top: 35%;
    width: 100%;
    text-align: center;
}

.overlay .overlay-inner h4 {
    color: #ffffff !important;
    margin-bottom: 0 !important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 1px;
}

.overlay .overlay-inner p {
    color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    margin-top: 10px;
}

.project-item:hover .overlay .overlay-inner h4 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.project-item:hover .overlay .overlay-inner p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.project-item a:hover .overlay {
    opacity: 1;
}

ul.port-nav-list {
    padding: 0 0 50px 0;
    list-style: none;
    text-align: center;
}

ul.port-nav-list li {
    display: inline-block;
    margin-right: 10px;
}

ul.port-nav-list li a {
    display: block;
    cursor: pointer;
    color: #262626;
    font-size: 18px;
    padding: 8px 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 100;
}

ul.port-nav-list li a.active {
    color: #00B0DC;
}

.port-items {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.portfolio-items .port-items .single-port {
    overflow: hidden;
    margin-bottom: 25px;
}

.single-port {
    padding: 0;
}

/*-------- Portfolio area css ends---------*/

/*--------- 10. Statistic area starts -----------*/

.statistic-area{
    /*background-image: url(../images/statistic/stats.jpg);*/
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color:#fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.statistic-area:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: -1;
}

.statistic-area .item{
    margin-bottom: 30px;
}

.statistic-area .item .fa{
    color: #fff;
    font-size: 40px;
}

.statistic-area .item p{
    color: #fff;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 300;
}

.statistic-area .item h2 {
    color: #00B0DC;
    font-weight: 800;
    font-size: 45px;
    margin-top: 10px;
}

/*----------------Statistic area ends-------------------*/

/*-------- 11. Experience area starts -------------*/

.fix-down {
    margin-bottom: -30px;
}

.resumes {
    list-style: none;
}

.resumes li {
    padding: 20px;
    box-shadow: 0 0 25px rgba(68, 68, 68, 0.07);
    overflow: hidden;
    position: relative;
}

.resumes li h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.resumes li h4 {
    text-transform: uppercase;
    font-size: 15px;
    color: #00B0DC;
}

.resumes li h5 {
    margin-bottom: 8px;
}

.resumes li p {
    margin-bottom: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/*-------- Experience area ends -------------*/

/*------- 12. Testimonial area css starts --------*/

.testimonial-area .section-title h2 {
    color: #fff;
}

.testimonial-area{
    /*background-image: url(../images/testimonial/1.jpeg);*/
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.testimonial-area:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: -1;
}
.single-testimonial {
    background: #ffffff;
    border-radius: 5px;
    padding: 30px;
}

.single-testimonial p {
    margin-bottom: 30px;
}

.single-testimonial h2 {
    margin: 10px 0 0;
    font-size: 18px;
    text-transform: uppercase;
}

.testi-comment i {
    font-size: 30px;
    color: #00B0DC;
}

.single-testimonial h3 {
    margin: 10px 0 0;
    font-weight: 100;
    font-size: 15px;
}

.testi-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testi-img img {
    width: 100%;
    height: 100%;
}

.owl-theme .owl-controls{
    margin-top: 50px;
    margin-left: 30px;
}

.owl-dots{
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    height: 15px !important;
    width: 15px !important;
    background-color: #ffffff !important;
    opacity: 0.8;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-dot.active {
    background-color: #00B0DC !important;
}


/*------- testimonial area ends --------*/

/*-------------13. Contact area starts -------------*/

.contact-area{
    background-color: #ffffff;
}

.contact-area .form-control{
    border:2px solid #a2a2a2;
    box-shadow: none;
    padding: 6px;
    border-radius: 0;
    margin-bottom: 30px;
}

.right-contact-text {
    margin-bottom: 25px;
}

.right-contact-text i {
    color: #00B0DC;
    font-size: 25px;
    margin-bottom: 10px;
}

.contact-area textarea.form-control{
    border:2px solid #a2a2a2;
    padding: 6px;
    height: 250px;
    margin-bottom: 30px;
}

.btn.btn-send {
    background: #00B0DC;
    color: #ffffff;
    border-radius: 0;
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
}

.right-contact-text h2{
    margin-top: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
}

.right-contact-text p{
    line-height: 21px;
    letter-spacing: 2px;
    font-size: 11px;
    color: #777;
}
/*------------- Contact area ends -------------*/

/*--------------16. Footer area starts -------------*/

.footer-area {
    background: #171717;
    color: #ffffff;
    padding: 30px 0;
}
.footer-area a{
    color: #00B0DC;
}

/*--------------- Footer area ends -------------*/


.portfolio-content{
    /*background-color: black;*/
}




/* about section - start
================================================== */
.about-section .decoration-wrapper {
    padding: 160px 0px;
}

.about-section .deco-group-1,
.about-section .deco-group-2 {
    width: 110px;
    height: 110px;
}

.about-section .deco-group-1 {
    top: 120px;
    left: 90px;
}

.about-section .deco-group-1 .shape-img-1 {
    top: 0px;
    left: 0px;
}

.about-section .deco-group-1 .shape-img-1 img {
    -webkit-animation: zoominout 1.5s infinite alternate;
    animation: zoominout 1.5s infinite alternate;
}

.about-section .deco-group-1 .shape-img-2 {
    right: 0px;
    bottom: 0px;
}

.about-section .deco-group-1 .shape-img-2 img {
    -webkit-animation: zoominout 2s infinite alternate;
    animation: zoominout 2s infinite alternate;
}

.about-section .deco-group-2 {
    bottom: 25%;
    right: 30px;
}

.about-section .deco-group-2 .shape-img-1 {
    top: 0px;
    right: 0px;
}

.about-section .deco-group-2 .shape-img-1 img {
    -webkit-animation: zoominout 1.5s infinite alternate;
    animation: zoominout 1.5s infinite alternate;
}

.about-section .deco-group-2 .shape-img-2 {
    left: 0px;
    bottom: 0px;
}

.about-section .deco-group-2 .shape-img-2 img {
    -webkit-animation: zoominout 2s infinite alternate;
    animation: zoominout 2s infinite alternate;
}

.about-item {
    margin-bottom: 200px;
}

.about-item:last-child {
    margin-bottom: 0px !important;
}

.about-item .item-decoration {
    /* float: left; */
    /* width: 945px; */
    position: relative;
}

.about-item .item-image {
    max-width: 1060px;
}

.about-item .item-image > img {
    /* height: 640px; */
}

.about-item:nth-child(2n+0) .item-decoration {
    /* float: right; */
}

.about-item:nth-child(odd) .item-image {
    margin-right: -35px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(1, 4, 40, 0.12);
    box-shadow: 0px 50px 100px 0px rgba(1, 4, 40, 0.12);
}

.about-item:nth-child(even) .item-image {
    margin-left: -50px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(1, 4, 40, 0.12);
    box-shadow: 0px 50px 100px 0px rgba(1, 4, 40, 0.12);
}

.about-item .item-decoration {
    z-index: 1;
    position: relative;
}

.about-item .item-decoration .deco-img {
    z-index: -1;
    position: absolute;
}

.about-item .item-decoration .shape-img-1 {
    top: -50px;
    right: -280px;
    max-width: 865px;
}

.about-item .item-decoration .shape-img-2 {
    top: -90px;
    right: -220px;
    max-width: 720px;
    position: absolute;
}

.about-item .item-decoration .shape-img-3 {
    left: 80px;
    top: -100px;
    max-width: 475px;
}

.about-item .item-decoration .shape-img-4 {
    right: 200px;
    bottom: -120px;
    max-width: 285px;
}

.about-item .item-content {
    margin-left: -30px;
}

.about-item .icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(15, 2, 39, 0.08);
    box-shadow: 0px 20px 40px 0px rgba(15, 2, 39, 0.08);
}

.about-item .icon > img {
    height: 36px;
    margin: auto;
}

.about-item .item-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-item .item-title span {
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

/* about section - end
================================================== */













/* banner section - start
================================================== */
.banner-section {
    z-index: 3;
    position: relative;
    background: #040B11;
}
.banner-section .shap{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.banner-section .decoration-wrapper {
    min-height: 100vh;
}

.banner-section .banner-content {
    z-index: 5;
    position: relative;
}

.banner-section .sub-title {
    opacity: .5;
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 35px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.banner-section .title-text {
    color: #ffffff;
    font-size: 54px;
    font-weight: 700;
    font-family: 'Inter', serif;
    line-height: 1.3;
    margin-bottom: 60px;
}

.banner-section .title-text span{
    z-index: 1;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: -webkit-linear-gradient(to right, #FAB96D 0%, #FFA38C 100%, #FFFFFF 100%, #fff 0%);
    background: linear-gradient(to right, #FAB96D 0%, #FFA38C 100%, #FFFFFF 100%, #fff 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
.banner-section .title-text strong:before {
    left: 0px;
    right: 0px;
    content: '';
    z-index: -1;
    bottom: 11px;
    height: 12px;
    position: absolute;
    -webkit-animation: fadeInLeft 1s;
    animation: fadeInLeft 1s;
    bottom: 12px;
}
*/

/*
.banner-section .title-text strong:nth-child(1):before {
    background-color: #fec84a;
}

.banner-section .title-text strong:nth-child(2):before {
    background-color: #f962bf;
}

.banner-section .title-text strong:nth-child(3):before {
    background-color: #69e06c;
}
*/

.banner-section .counterup-wrap {
    margin-bottom: 50px;
}

.banner-section .counterup-wrap > ul > li {
    margin-right: 55px;
}

.banner-section .counterup-wrap > ul > li:last-child {
    margin-right: 0px !important;
}

.banner-section .counterup-wrap h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.banner-section .counterup-wrap h3 sup {
    top: -3px;
    margin-left: 3px;
}

.banner-section .counterup-wrap p {
    opacity: .5;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-family: 'Inter', serif;
}

.banner-section .scroll-down {
    width: 40px;
    height: 60px;
    padding: 0px;
    color: #ffffff;
    font-size: 18px;
    line-height: 60px;
    text-align: center;
    border-radius: 45px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.banner-section .scroll-down i {
    margin-left: 2px;
    -webkit-animation: updown 1.5s infinite alternate;
    animation: updown 1.5s infinite alternate;
}

@keyframes updown {
    0% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
}
.banner-section {
    overflow: hidden;
}
.banner-section .banner-images {
    top: 0px;
    right: -60px;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    position: absolute;
}

.banner-section .banner-images > ul {
    top: -80px;
    float: right;
    width: 970px;
    right: -190px;
    height: 1200px;
    position: relative;
    -webkit-transform: rotate(-20deg) !important;
    -ms-transform: rotate(-20deg) !important;
    transform: rotate(-20deg) !important;
}

.banner-section .banner-images > ul > li {
    position: absolute !important;
}

.banner-section .banner-images > ul > li:nth-child(1) {
    left: 0px;
    top: 170px !important;
}

.banner-section .banner-images > ul > li:nth-child(03) {
    right: 350px !important;
    top: 170px !important;
    left: unset !important;
}

.banner-section .banner-images > ul > li:nth-child(3) {
    top: 470px !important;
    left: -130px !important;
}

.banner-section .banner-images > ul > li:nth-child(2) {
    top: 464px !important;
    left: 44px !important;
}

.banner-section .banner-images > ul > li:nth-child(5) {
    top: 460px !important;
    right: -36px !important;
    left: auto !important;
}
.banner-section .banner-images > ul > li:nth-child(6) {
    top: 780px !important;
    left: -30px !important;
}
.banner-section .banner-images > ul > li:nth-child(7) {
    top: 780px !important;
    left: auto!important;
    right: 50px;
}

.banner-section .deco-img {
    z-index: 1;
}

.banner-section .box-image-1 {
    left: 0px;
    top: 250px;
}

.banner-section .box-image-2 {
    top: 40%;
    left: 73%;
}

.banner-section .shape-img-1 {
    top: 35%;
    left: 7%;
    opacity: 0.7;
}

.banner-section .shape-img-2 {
    left: 36%;
    top: 140px;
    -webkit-animation: updown 2s infinite alternate;
    animation: updown 2s infinite alternate;
}

@keyframes updown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.banner-section .shape-img-3 {
    top: 80%;
    left: 130px;
    -webkit-animation: spin 4s infinite linear;
    animation: spin 4s infinite linear;
}

.banner-section .flow-image-1 {
    bottom: 30px;
    left: 24%;
}

/* banner section - end
================================================== */


/* list style settings - start 
================================================== */
.ul-li > ul {
    margin: 0px;
    padding: 0px;
    display: table;
}

.ul-li > ul > li {
    float: left;
    list-style: none;
    display: inline-block;
}

.ul-li-block > ul {
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: table;
}

.ul-li-block > ul > li {
    width: 100%;
    display: table;
    list-style: none;
}

.ul-li-right > ul {
    margin: 0px;
    padding: 0px;
    float: right;
    display: table;
}

.ul-li-right > ul > li {
    float: left;
    list-style: none;
    display: inline-block;
}

.ul-li-center > ul {
    padding: 0px;
    margin: 0 auto;
    display: table;
}

.ul-li-center > ul > li {
    float: left;
    list-style: none;
    display: inline-block;
}

/* list style settings - end
================================================== */


img {
    height: auto;
    max-width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


/* animation css - start
================================================== */
@-webkit-keyframes updown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes updown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes zoominout {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

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

@keyframes zoominout {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

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

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* animation css - start
================================================== */

/* transition - start
================================================== */
a,
button {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/* transition - end
================================================== */

.deco-img,
.deco-group {
    position: absolute;
}












/*
*	01 - media screen and (max-width: 1440px)
*	02 - media screen and (max-width: 1280px)
*	03 - media screen and (max-width: 1199px)
*	04 - media screen and (max-width: 991px)
*	05 - media screen and (max-width: 767px)
*	06 - media screen and (max-width: 680px)
*	07 - media screen and (max-width: 580px)
*	08 - media screen and (max-width: 480px)
*	09 - media screen and (max-width: 380px)
*	10 - media screen and (max-width: 320px)
================================================== */

/*  ====================================================================================================
01 - media screen and (max-width: 1440px) - start
==================================================================================================== */
@media screen and (max-width: 1440px) {

    /* global - start */
    .line-wrap {
        width: 92%;
    }

    /* global - end */
    /* banner - start */
    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(5) {
        max-width: 380px;
    }
    .banner-section .banner-images > ul > li:nth-child(2){
        max-width: 100px;
        right: 261px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 450px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        top: 405px !important;
        left: -135px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        top: 400px !important;
        right: 60px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 688px !important;
        right: -6px !important;
    }
    .banner-section .banner-images > ul > li:nth-child(6) {
        top: 692px !important;
        left: -95px !important;
    }
    .banner-section .banner-images > ul > li:nth-child(7){
        display: none !important;
    }

    .banner-section .banner-images > ul {
        top: -60px;
        width: 780px;
        height: 1030px;
    }

    .banner-section .flow-image-1 {
        left: 22%;
        bottom: 95px;
        max-width: 440px;
    }

    .banner-section .shape-img-1 {
        top: 35%;
        left: 0%;
    }

    .banner-section .shape-img-2 {
        left: 30%;
        top: 100px;
    }

    .banner-section .shape-img-3 {
        left: 30px;
    }

    /* banner - end */
    /* demos - start */
    .demo-section .shape-img-2 {
        top: 40%;
        left: -20%;
    }

    .demo-section .shape-img-3 {
        top: 35%;
        left: 60px;
    }

    .demo-section .shape-img-6 {
        right: 80px;
    }

    .demo-section .flow-image-1 {
        bottom: 40px;
        max-width: 460px;
    }

    /* demos - end */
    /* responsive - start */
    .responsive-section .decoration-wrapper {
        min-height: 600px;
    }

    .responsive-section .shape-img-2 {
        bottom: 40px;
        max-width: 400px;
    }

    .responsive-section .shape-img-1 {
        top: 80px;
        left: 5px;
    }

    .responsive-section .phone-images > ul {
        width: 1210px;
    }

    .responsive-section .phone-images > ul li {
        width: 35%;
    }

    .responsive-section .phone-images > ul li:nth-child(1),
    .responsive-section .phone-images > ul li:nth-child(2),
    .responsive-section .phone-images > ul li:nth-child(3) {
        top: 15%;
    }

    .responsive-section .phone-images > ul li:nth-child(3) {
        left: 60.666%;
    }

    .responsive-section .phone-images > ul li:nth-child(2) {
        left: 31.5%;
    }

    .responsive-section .phone-images > ul li:nth-child(5) {
        left: 59.5%;
    }

    .responsive-section .phone-images > ul li:nth-child(4) {
        top: -40%;
        left: 27%;
    }

    .responsive-section .phone-images > ul li:nth-child(6) {
        top: 72%;
        left: 5%;
    }

    .responsive-section .phone-images > ul li:nth-child(7) {
        top: 73%;
        left: 34%;
    }

    /* responsive - end */
}

/* ====================================================================================================
01 - media screen and (max-width: 1440px) - end
==================================================================================================== */

/*  ====================================================================================================
02 - media screen and (max-width: 1280px) - start
==================================================================================================== */
@media screen and (max-width: 1280px) {

    /* global - start */
    .line-wrap {
        width: 100%;
    }

    .line-wrap:before {
        left: 0px;
    }

    .line-wrap .line-item:last-child:before {
        right: 0px;
    }

    /* global - end */
    /* banner - start */
    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(5) {
        max-width: 340px;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 420px;
        top: 365px !important;
        right: 60px !important;
    }

    .banner-section .banner-images > ul {
        top: -20px;
        width: 690px;
        right: -155px;
        height: 880px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 550px;
        top: 385px !important;
        left: -270px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 655px !important;
    }

    .banner-section .box-image-1 {
        top: 200px;
        max-width: 120px;
    }

    .banner-section .shape-img-3 {
        /* top: 90%; */
        /* left: 25px; */
        /* max-width: 30px; */
    }

    .banner-section .shape-img-2 {
        width: 30px;
    }

    .banner-section .title-text {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 45px;
    }

    .big-title {
        font-size: 100px;
    }

    .demo-section .decoration-wrapper {
        padding-top: 110px;
    }

    .banner-section .flow-image-1 {
        left: 20%;
        bottom: 130px;
    }

    .banner-section .shape-img-1 {
        top: 25%;
        max-width: 80px;
    }

    /* banner - end */
    /* demo - start */
    .demo-section .shape-img-4 {
        top: 20%;
        right: 0px;
    }

    .demo-section .shape-img-2 {
        top: 35%;
        left: -15%;
        max-width: 350px;
    }

    .demo-section .shape-img-3 {
        top: 30%;
        left: 40px;
    }

    .demo-section .shape-img-5 {
        left: 0px;
    }

    .demo-section .flow-image-1 {
        bottom: 30px;
        max-width: 390px;
    }

    /* demo - end */
    /* about - start */
    .about-item .item-image > img {
        height: auto;
    }

    .about-section .deco-group-1 {
        top: 30px;
        left: 50px;
    }

    .about-section .deco-group-2 {
        right: 30px;
        bottom: 60px;
    }

    /* about - end */
    /* responsive - start */
    .responsive-section .phone-images > ul {
        width: 1100px;
    }

    .responsive-section .phone-images > ul li {
        width: 40%;
    }

    .responsive-section .shape-img-1 {
        top: 50px;
        left: 0px;
        max-width: 120px;
    }

    /* responsive - end */
    /* variation - start */
    .variation-section .shape-img-1 {
        top: 200px;
        z-index: -1;
        left: -1230px;
        max-width: 2000px;
    }
    
    /* variation - end */
}

/* ====================================================================================================
02 - media screen and (max-width: 1280px) - end
==================================================================================================== */

/*  ====================================================================================================
03 - media screen and (max-width: 1199px) - start
==================================================================================================== */
@media screen and (max-width: 1199px) {

    /* banner - start */
    .banner-section .banner-images > ul {
        top: 10px;
        width: 590px;
    }

    .banner-section .shape-img-2 {
        top: 150px;
    }

    .banner-section .title-text strong::before {
        height: 6px;
    }

    /* banner - end */
    /* about - start */
    .about-item .item-content {
        margin-left: 0px;
    }

    .about-item .item-title {
        font-size: 32px;
    }

    .about-item .item-decoration .shape-img-4 {
        bottom: -100px;
        max-width: 200px;
    }

    .about-item {
        margin-bottom: 130px;
    }

    /* about - end */
    /* blog - start */
    .blog-section .col-4 .feature-wrap .image-wrap {
        width: 390px;
        margin-left: 0px;
    }

    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 520px;
    }

    /* blog - end */
    /* inner - start */
    .owl-theme.arrow-top-right .owl-nav {
        right: 15px;
    }
    
    .banner-section .banner-images > ul > li:nth-child(1) {
        left: -86px !important;
        top: 147px !important;
    }
    .banner-section .banner-images > ul > li:nth-child(03) {
        max-width: 98px;
        right: 205px !important;
        top: 138px !important;
    }
    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 117px !important;
        top: 369px !important;
        left: -112px !important;
    }
    .banner-section .banner-images > ul > li:nth-child(6) {
        top: 640px !important;
        left: -105px !important;
        max-width: 300px;
    }
    .banner-section .banner-images > ul > li:nth-child(5){
        max-width: 288px;
        right: 72px !important;
        top: 638px !important;
    }

    /* inner - end */
}

@media screen and (max-width: 1024px) {
    .blog-section .col-4 .feature-wrap .image-wrap {
        width: 330px;
    }

    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 455px;
        margin-left: -5px;
    }

    .responsive-section .phone-images > ul {
        width: 1000px;
    }
}

/* ====================================================================================================
03 - media screen and (max-width: 1199px) - end
==================================================================================================== */

/* ====================================================================================================
04 - media screen and (max-width: 991px) - start
==================================================================================================== */
@media screen and (max-width: 991px) {

    /* global - start */
    body {
        font-size: 14px;
    }

    .line-wrap {
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .line-wrap::before {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .line-wrap .line-item {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .line-wrap .line-item::before {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .line-wrap.line-black {
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .line-wrap.line-black::before {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .line-wrap.line-black .line-item {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    .line-wrap.line-black .line-item::before {
        background-color: rgba(0, 0, 0, 0.3);
    }

    /* global - end */
    /* header - start */
    .header-section .main-menu,
    .header-section .btn.btn-border {
        display: none;
    }

    .header-section .brand-logo .menu-btn {
        display: inline-block;
    }

    .header-section {
        padding: 20px 0px;
    }

    /* header - end */
    /* banner - start */
    .banner-section .title-text {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .banner-section .counterup-wrap p {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .banner-section .counterup-wrap h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .banner-section .counterup-wrap > ul > li {
        margin-right: 35px;
    }
    .banner-section .banner-images{
        right: -117px;
    }

/*
    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(2),
    .banner-section .banner-images > ul > li:nth-child(5) {
        max-width: 300px;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 340px;
        top: 340px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 500px;
    }

    .banner-section .banner-images > ul {
        width: 600px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 460px;
        top: 360px !important;
        left: -188px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 575px !important;
    }
*/

    .banner-section .decoration-wrapper {
        min-height: 660px;
    }

    .banner-section .banner-images > ul {
        top: -40px;
        right: -130px;
        height: 775px;
    }

    .banner-section .flow-image-1 {
        left: 15%;
        bottom: 30px;
        max-width: 340px;
    }

    /* banner - end */
    /* demo - start */
    .big-title {
        font-size: 90px;
    }

    .demo-item .item-content .item-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .demo-item .item-content .info-list > ul > li {
        padding-left: 25px;
        margin-bottom: 8px;
    }

    .demo-section .shape-img-2 {
        max-width: 260px;
    }

    .demo-section .shape-img-3 {
        top: 31%;
        left: 15px;
        max-width: 40px;
    }

    .demo-section .shape-img-6 {
        right: 15px;
        max-width: 50px;
    }

    /* demo - end */
    /* about - star */
    .about-item .item-decoration {
        width: 100%;
    }

    .about-item .item-image {
        margin: 0px;
        max-width: 100%;
    }

    .about-item .item-title {
        font-size: 24px;
    }

    .about-item .icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }

    .about-item:nth-child(2n+1) .item-image {
        float: right;
        margin-right: -40px;
    }

    .about-item .item-decoration .shape-img-2 {
        top: -150px;
        right: -300px;
        max-width: 505px;
    }

    .about-item .item-decoration .shape-img-1 {
        top: -40px;
        right: -110px;
        max-width: 480px;
    }

    .about-item .item-decoration .shape-img-3 {
        left: 15px;
        top: -70px;
        max-width: 300px;
    }

    .about-section .deco-group-1 {
        top: 0px;
        left: 15px;
    }

    .about-section .deco-group-2 {
        right: 15px;
        bottom: 40px;
    }

    /* about - end */
    /* blog - start */
    .blog-section .col-4 .feature-wrap .image-wrap {
        width: 320px;
    }

    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 430px;
        margin-left: -40px;
    }

    /* blog - end */
    /* responsive - start */
    .responsive-section .decoration-wrapper {
        min-height: 470px;
    }

    .responsive-section .shape-img-1 {
        top: -10px;
        left: 0px;
        max-width: 100px;
    }

    .responsive-section .section-title .title-text {
        font-size: 54px;
    }

    .responsive-section .section-title p {
        font-size: 16px;
        max-width: 390px;
    }

    .responsive-section .shape-img-2 {
        bottom: 30px;
        max-width: 260px;
    }

    .responsive-section .phone-images > ul {
        width: 930px;
    }

    .responsive-section .decoration-wrapper {
        min-height: 400px;
    }

    .responsive-section .phone-images > ul li {
        width: 35%;
    }

    /* responsive - end */
    /* variation - start */
    .variation-section .shape-img-1 {
        left: -1230px;
        max-width: 1850px;
    }

    /* variation - end */
    /* footer - start */
    .footer-section .shape-img-1 {
        max-width: 440px;
    }

    /* footer - end */
}

/* ====================================================================================================
04 - media screen and (max-width: 991px) - end
==================================================================================================== */

/* ====================================================================================================
05 - media screen and (max-width: 767px) - start
==================================================================================================== */
@media screen and (max-width: 767px) {

    .owl-theme .owl-nav .owl-next,
    .owl-theme .owl-nav .owl-prev {
        width: 40px;
        height: 40px;
    }

    .owl-theme .owl-nav .owl-next::before,
    .owl-theme .owl-nav .owl-prev::before {
        font-size: 16px;
        line-height: 40px;
    }

    .owl-theme.arrow-top-right .owl-nav {
        position: static;
        margin-top: 20px;
    }

    .sec-ptb-110 {
        padding: 80px 0px;
    }

    /* banner - start */
    .banner-section .decoration-wrapper {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 100px;
    }

    .banner-section .banner-images > ul {
        top: -40px;
        width: 470px;
        right: -130px;
        height: 650px;
    }

    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(2),
    .banner-section .banner-images > ul > li:nth-child(5) {
        max-width: 235px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 330px;
        top: 311px !important;
        left: -110px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 240px;
        top: 300px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 465px !important;
    }

    .banner-section .box-image-1 {
        top: 120px;
        max-width: 80px;
    }

    .banner-section .flow-image-1 {
        left: 20%;
        bottom: 15px;
        max-width: 300px;
    }

    .banner-section .shape-img-2 {
        top: 90px;
    }

    .banner-section .counterup-wrap p {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .banner-section .counterup-wrap h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .banner-section .title-text {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .banner-section .title-text strong::before {
        bottom: 6px;
        height: 8px;
    }

    /* banner - end */
    /* demo - start */
    .demo-item .item-content .item-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .demo-item .item-content .info-list > ul > li {
        font-size: 12px;
        padding-left: 20px;
        margin-bottom: 5px;
    }

    .demo-item {
        margin-top: 80px;
    }

    .demo-section .shape-img-4,
    .demo-section .shape-img-5 {
        max-width: 140px;
    }

    .demo-section .shape-img-2 {
        max-width: 200px;
    }

    .demo-section .flow-image-1 {
        bottom: 20px;
        max-width: 270px;
    }

    .big-title {
        font-size: 66px;
    }

    .demo-section .decoration-wrapper {
        padding-top: 80px;
    }

    /* demo - end */
    /* about - start */
    .about-section .order-last {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .about-item .item-decoration .deco-img {
        display: none;
    }

    .about-item .item-decoration .item-image {
        margin: 0px auto 40px !important;
    }

    .about-item {
        text-align: center;
    }

    .about-item .icon {
        margin: 0px auto 30px;
    }

    .about-item {
        margin-bottom: 80px;
    }

    .about-section .decoration-wrapper {
        padding: 80px 0px;
    }

    /* about - end */
    /* blog - start */
    .blog-section .col-4 .feature-wrap .image-wrap {
        width: 245px;
    }

    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 340px;
        margin-left: -40px;
    }

    /* blog - end */
    /* portfolio - start */
    .portfolio-carousel .item {
        padding: 30px;
    }

    .portfolio-carousel.arrow-right-left .owl-prev {
        left: 18.5%;
    }

    .portfolio-carousel.arrow-right-left .owl-next {
        right: 18.5%;
    }

    /* portfolio - end */
    /* layout - start */
    .layout-item .item-title {
        font-size: 14px;
        margin-top: 15px;
    }

    /* layout - end */
    /* responsive - start */
    .responsive-section .section-title .title-text {
        font-size: 42px;
    }

    .responsive-section .section-title p {
        font-size: 14px;
    }

    .responsive-section .phone-images > ul {
        width: 755px;
    }

    .responsive-section .decoration-wrapper {
        min-height: 360px;
    }

    /* responsive - end */
    /* variation - start */
    .variation-section {
        text-align: center;
    }

    .variation-section .header-variation {
        margin-bottom: 80px;
        padding-bottom: 80px;
    }

    .variation-section .header-variation .section-title {
        margin-top: 40px;
    }

    .variation-section .shape-img-1 {
        max-width: 1720px;
    }

    /* variation - end */
    /* innerpage - start */
    .innerpage-section .section-title {
        text-align: center;
    }

    /* innerpage - end */
    /* feature - start */
    .feature-item {
        display: table;
        text-align: center;
        margin: 40px auto 0px !important;
    }

    .feature-item .item-icon {
        margin: 0px auto 25px;
    }

    /* feature - end */
    /* footer - start */
    .footer-section .section-title .title-text {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .footer-section .section-title p {
        margin-bottom: 40px;
    }

    .footer-section .shape-img-1 {
        top: -100%;
        right: -15px;
        max-width: 380px;
    }
    .banner-section .banner-images{
        display: none;
    }

    /* footer - end */
}

/* ====================================================================================================
05 - media screen and (max-width: 767px) - end
==================================================================================================== */

/* ====================================================================================================
06 - media screen and (max-width: 680px) - start
==================================================================================================== */
@media screen and (max-width: 680px) {
    .section-title .title-text {
        font-size: 34px;
    }

    /* banner - start */
    .banner-section .banner-images > ul {
        right: -80px;
        width: 340px;
        height: 650px;
    }

    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(2),
    .banner-section .banner-images > ul > li:nth-child(5),
    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 170px;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        top: 261px !important;
        right: 50px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 240px;
        top: 270px !important;
        left: -80px !important;
    }

    .banner-section .box-image-2 {
        max-width: 70px;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 375px !important;
    }

    .banner-section .flow-image-1 {
        left: unset;
        right: 0px;
        max-width: 250px;
    }

    .banner-section .shape-img-3 {
        left: 25%;
    }

    /* banner - end */
    /* blog - start */
    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 270px;
    }

    .blog-section .col-4 .feature-wrap .image-wrap {
        width: 100%;
    }

    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        margin-left: -25px;
    }

    /* blog - end */
}

/* ====================================================================================================
06 - media screen and (max-width: 680px) - end
==================================================================================================== */

/* ====================================================================================================
07 - media screen and (max-width: 580px) - start
==================================================================================================== */
@media screen and (max-width: 580px) {
    .section-title .title-text {
        font-size: 28px;
    }

    .big-title {
        top: 45px;
        font-size: 50px;
    }

    /* header - start */
    .header-section .brand-logo > a {
        max-width: 110px;
    }

    .header-section .brand-logo .menu-btn {
        font-size: 22px;
        margin: 3px 0px;
    }

    /* header - end */
    /* banner - start */
    .banner-section .title-text {
        font-size: 24px;
    }

    .banner-section .counterup-wrap > ul > li {
        margin-right: 15px;
    }

    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(2),
    .banner-section .banner-images > ul > li:nth-child(5),
    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 155px;
    }

    .banner-section .banner-images > ul {
        width: 315px;
        height: 530px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 225px;
    }

    .banner-section .decoration-wrapper {
        min-height: 480px;
    }

    .banner-section .title-text strong::before {
        height: 4px;
    }

    /* banner - end */
    /* demo - start */
    .demo-item .item-content .item-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .demo-item .item-content .info-list > ul > li::before {
        font-size: 10px;
    }

    .demo-item .item-content .info-list > ul > li {
        font-size: 10px;
        padding-left: 15px;
        margin-bottom: 2px;
    }

    .demo-section .shape-img-2 {
        max-width: 140px;
    }

    /* demo - end */
    /* about - start */
    .about-item .item-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* about - end */
    /* portfolio - end */
    .portfolio-carousel .item .portfolio-fullimage {
        max-width: 320px;
        margin: 0px auto;
    }

    .portfolio-carousel.arrow-right-left .owl-prev {
        left: 30px;
    }

    .portfolio-carousel.arrow-right-left .owl-next {
        right: 30px;
    }

    .portfolio-carousel .item {
        padding: 30px 0px;
    }

    /* portfolio - end */
    /* responsive - end */
    .responsive-section .decoration-wrapper {
        min-height: 280px;
    }

    .responsive-section .section-title .title-text {
        font-size: 30px;
    }

    .responsive-section .section-title p {
        font-size: 12px;
    }

    .responsive-section .phone-images > ul {
        width: 660px;
    }

    .responsive-section .phone-images > ul li {
        width: 30%;
    }

    .responsive-section .phone-images > ul li:nth-child(2) {
        left: 23.5%;
    }

    .responsive-section .phone-images > ul li:nth-child(4) {
        top: -35%;
        left: 21%;
    }

    .responsive-section .phone-images > ul li:nth-child(6) {
        top: 65%;
        left: 3%;
    }

    .responsive-section .phone-images > ul li:nth-child(7) {
        top: 68%;
        left: 24%;
    }

    /* responsive - end */
    /* plugin - start */
    .plugin-item {
        padding: 30px;
    }

    /* plugin - end */
    /* variation - start */
    .variation-section .header-variation .section-title .title-text {
        font-size: 34px;
    }

    /* variation - end */
    /* footer - start */
    .footer-section .section-title .title-text {
        font-size: 30px;
    }

    .footer-section .section-title p {
        font-size: 14px;
    }

    .footer-section .shape-img-1 {
        max-width: 315px;
    }

    /* footer - end */

    .demo-section .portfolio-fullimage {
        max-width: 320px;
        margin: 30px auto 0px;
    }

    .item-badge {
        font-size: 10px;
        padding: 5px 7px;
        border-radius: 2px;
    }

    .demo-item .item-image .item-badge {
        top: -8px;
        left: -8px;
    }
}

/* ====================================================================================================
07 - media screen and (max-width: 580px) - end
==================================================================================================== */

/* ====================================================================================================
08 - media screen and (max-width: 480px) - start
==================================================================================================== */
@media screen and (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .section-title.mb-30 {
        margin-bottom: 15px;
    }

    .section-title.mb-60 {
        margin-bottom: 30px;
    }

    .title-text.mb-30 {
        margin-bottom: 15px;
    }

    .section-title {
        max-width: 240px;
        margin: 0px auto;
    }

    .section-title .title-text {
        font-size: 24px;
    }

    .container.mb-60 {
        margin-bottom: 30px;
    }

    .container.mb-30 {
        margin-bottom: 15px;
    }

    .row.mb-30 {
        margin-bottom: 15px;
    }

    .row.mb-60 {
        margin-bottom: 30px;
    }

    .sec-ptb-110 {
        padding: 60px 0px;
    }

    .btn {
        height: 45px;
        line-height: 45px;
    }

    p.mb-30 {
        margin-bottom: 20px;
    }

    /* banner - start */

    .banner-section .scroll-down {
        width: 30px;
        height: 50px;
        font-size: 14px;
        line-height: 50px;
    }

    .banner-section .decoration-wrapper {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .banner-section .title-text {
        font-size: 20px;
    }

    .banner-section .counterup-wrap {
        margin-bottom: 25px;
    }

    .banner-section .counterup-wrap p {
        font-size: 8px;
    }

    .banner-section .counterup-wrap h3 {
        line-height: 1;
        font-size: 16px;
    }

    .banner-section .banner-images > ul {
        top: -50px;
        right: -130px;
    }

    /* banner - end */
    /* blog - end */
    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 200px;
    }

    /* blog - end */
    /* responsive - start */
    .responsive-section .shape-img-1 {
        z-index: -1;
    }

    .responsive-section .phone-images > ul {
        width: 600px;
    }

    .responsive-section .section-title {
        margin: 0px;
        max-width: 250px;
    }

    .responsive-section .shape-img-2 {
        bottom: 20px;
        max-width: 190px;
    }

    .responsive-section .section-title .title-text {
        font-size: 26px;
    }

    .responsive-section .phone-images > ul {
        -webkit-transform: translateX(400px);
        -ms-transform: translateX(400px);
        transform: translateX(400px);
    }

    /* responsive - end */
    /* plugin - start */
    .plugin-item {
        text-align: center;
        padding: 30px 15px;
    }

    .plugin-item p {
        font-size: 12px;
    }

    .plugin-item .item-icon {
        margin-bottom: 15px;
    }

    .plugin-item .item-title {
        font-size: 14px;
    }

    .plugin-item {
        margin-top: 20px;
    }

    /* plugin - end */
    /* variation - end */
    .variation-section .shape-img-1 {
        display: none;
    }

    .header-variation .variation-fullimage {
        margin: 0px;
        margin-bottom: 20px;
    }

    .header-variation .variation-fullimage:last-child {
        margin-bottom: 0px !important;
    }

    .variation-section .header-variation .section-title p {
        margin-bottom: 30px;
    }

    .variation-fullimage {
        margin-top: 15px;
    }

    .variation-section .header-variation {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    /* variation - end */
    /* features - start */
    .feature-item .item-title {
        font-size: 14px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .feature-item {
        margin: 30px auto 0px !important;
    }

    /* features - end */
    /* about - start */
    .about-item .icon {
        display: none;
    }

    .about-item .item-decoration .item-image {
        margin: 0px auto 30px !important;
    }

    .about-item {
        margin-bottom: 45px;
    }

    .about-item .item-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-section .decoration-wrapper {
        padding: 60px 0px;
    }

    /* about - end */
    /* blog - start */
    .blog-section .decoration-wrapper {
        padding-top: 60px;
    }

    /* blog - end */
    /* layout - start */
    .layout-item {
        margin-top: 20px;
    }

    .layout-item .item-title {
        font-size: 12px;
        margin-top: 8px;
    }

    /* layout - end */
    /* variation - start */
    .variation-section .header-variation .section-title .title-text {
        font-size: 24px;
    }

    .variation-section .header-variation .section-title .title-text span {
        font-size: 24px;
        margin-bottom: 4px;
    }

    /* variation - end */
    /* footer - start */
    .footer-section .section-title .title-text {
        font-size: 24px;
    }

    .footer-section .shape-img-1 {
        top: -90%;
        max-width: 280px;
    }

    /* footer - end */
}

/* ====================================================================================================
08 - media screen and (max-width: 480px) - end
==================================================================================================== */

/* ====================================================================================================
09 - media screen and (max-width: 380px) - start
==================================================================================================== */
@media screen and (max-width: 380px) {
    .section-title .title-text {
        font-size: 22px;
    }

    .section-title.mb-60 {
        margin-bottom: 30px;
    }

    /* header - start */
    .header-section {
        padding: 15px 0px;
    }

    .header-section .brand-logo > a {
        max-width: 85px;
    }

    /* header - end */
    /* banner - start */
    .banner-section .banner-content {
        max-width: 230px;
    }

    .banner-section .banner-images > ul {
        width: 230px;
        height: 460px;
    }

    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(2),
    .banner-section .banner-images > ul > li:nth-child(5),
    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 110px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 165px;
        top: 240px !important;
        left: -60px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        top: 235px !important;
        right: 40px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 330px !important;
        right: unset !important;
        left: 60px !important;
    }

    .banner-section .shape-img-1 {
        top: 25%;
        max-width: 40px;
    }

    .banner-section .box-image-1 {
        top: 90px;
        max-width: 45px;
    }

    .banner-section .box-image-2 {
        max-width: 50px;
    }

    .banner-section .shape-img-2 {
        width: 22px;
    }

    .banner-section .shape-img-3 {
        left: 18%;
        max-width: 20px;
    }

    .banner-section .flow-image-1 {
        max-width: 150px;
    }

    /* banner - end */
    /* demo - start */
    .demo-section .decoration-wrapper {
        padding-top: 50px;
    }

    .big-title {
        top: 34px;
        font-size: 28px;
    }

    .demo-item {
        margin-top: 40px;
    }

    .demo-section .shape-img-4,
    .demo-section .shape-img-5 {
        max-width: 60px;
    }

    .demo-section .shape-img-4 {
        top: 17%;
    }

    .demo-section .shape-img-3 {
        top: 30%;
        left: 8px;
        max-width: 20px;
    }

    .demo-section .shape-img-2 {
        max-width: 85px;
    }

    .demo-item .item-content .item-title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .demo-item .item-content .info-list > ul > li {
        font-size: 8px;
        padding-left: 12px;
    }

    .demo-item .item-content .info-list > ul > li::before {
        top: 0px;
        font-size: 8px;
    }

    .demo-section .shape-img-6 {
        right: 8px;
        max-width: 20px;
    }

    .demo-section .flow-image-1 {
        bottom: 20px;
        max-width: 160px;
    }

    /* demo - end */
    /* blog - start */
    .blog-section .col-4:nth-child(2) .feature-wrap .image-wrap {
        width: 160px;
    }

    /* blog - end */
    /* portfolio - start */
    .portfolio-carousel.arrow-right-left .owl-prev {
        left: 15px;
    }

    .portfolio-carousel.arrow-right-left .owl-next {
        right: 15px;
    }

    /* portfolio - end */
    /* responsive - start */
    .responsive-section .decoration-wrapper {
        min-height: 255px;
    }

    .responsive-section .phone-images > ul {
        width: 560px;
    }

    .responsive-section .shape-img-1 {
        top: -25px;
        max-width: 50px;
    }

    .responsive-section .shape-img-2 {
        bottom: 20px;
        max-width: 150px;
    }

    .responsive-section .section-title .title-text {
        font-size: 20px;
    }

    .responsive-section .section-title p {
        font-size: 10px;
    }

    .responsive-section .section-title {
        margin: 0px;
        max-width: 170px;
    }

    /* responsive - end */
    /* plugin - start */
    .plugin-item .item-title {
        font-size: 12px;
    }

    .plugin-item .item-icon > img {
        height: 30px;
    }

    .plugin-item .item-icon {
        margin-bottom: 10px;
    }

    /* plugin - end */
}

@media screen and (max-width: 350px) {
    .section-title {
        max-width: 285px;
    }

    /* banner - start */
    .banner-section .banner-images > ul {
        top: -75px;
        width: 190px;
        height: 440px;
    }

    .banner-section .banner-images > ul > li:nth-child(1),
    .banner-section .banner-images > ul > li:nth-child(2),
    .banner-section .banner-images > ul > li:nth-child(5),
    .banner-section .banner-images > ul > li:nth-child(2) {
        max-width: 110px;
    }

    .banner-section .banner-images > ul > li:nth-child(3) {
        max-width: 140px;
        top: 235px !important;
        left: -50px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(2) {
        top: 222px !important;
        right: 40px !important;
    }

    .banner-section .banner-images > ul > li:nth-child(5) {
        top: 285px !important;
        left: 70px !important;
    }

    /* banner - end */

    /* owl settings - start */
    .owl-theme.arrow-top-right .owl-nav {
        margin-top: 10px;
    }

    /* owl settings - end */
}

/* ====================================================================================================
09 - media screen and (max-width: 380px) - end
==================================================================================================== */

/* ====================================================================================================
10 - media screen and (max-width: 320px) - start
==================================================================================================== */
/* ====================================================================================================
10 - media screen and (max-width: 320px) - end
==================================================================================================== */





.banner-section .banner-images ul li img{
border-radius: 10px;
border: 1px solid white;
}
body{
    /* overflow-x: hidden; */
    background: aliceblue;
}

.banner-section .container{
    margin-top: 100px;
}
.navbar-header{
    margin-top: -18px;
}
.sticky_navigation .navbar-header{
    margin-top: -10px;
}
/* .nav-area.sticky_navigation { 
    background: linear-gradient(to right, #FAB96D 0%, #FFA38C 100%, #FFFFFF 100%, #fff 0%);
    background: linear-gradient(to right, #FFA38C 0%, #FAB96D 100%, #FFFFFF 100%, #fff 0%);
} */
.logo-img-revert{ 
    display: none !important;
    }
.nav-area.sticky_navigation .logo-img-revert{ 
display: inline-block !important;
}
.logo-img{ 
    display: inline-block !important;
    }
.nav-area.sticky_navigation .logo-img{ 
display: none !important;
}

