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



* This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

This files contents are outlined below >>>>

*** SEARCH EACH SECTION AS IT COMMENTS, YOU WILL GET THE RIGHT SECTION.

*******************************************
*******************************************

==== CSS INDEX

01 - IMPORTED CSS
02 - DEFAULT CSS
03 - NAV CSS
04 - BANNER SECTION CSS
05 - ABOUT SECTION CSS
06 - SERVICE SECTION CSS
07 - WORK SECTION CSS
08 - TESTIMONIAL SECTION CSS
09 - BLOG SECTION CSS
10 - CONTACT SECTION CSS
11 - HIRE SECTION CSS
12 - FOOTER SECTION CSS

*/


/*================================================
01 - IMPORTED CSS
==================================================*/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800');

/*================================================
02 - DEFAULT CSS
==================================================*/

body {
        background-color: #e6e6ff;
        height: 100vh;
    width: 100%;
    -webkit-background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center center
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 14px;
    color:  #00a3cc;
    font-weight: 400;
    line-height: 25px;
}

html,
body {
    height: 100%;
    color:  #00a3cc;
}

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

.fabon-btn {
    background: #212121 none repeat scroll 0 0;
    border: 2px solid #212121;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 10px 20px;
    text-transform: uppercase;
}

.fabon-btn:hover {
    background: transparent none repeat scroll 0 0;
    color: #212121
}

.site-heading {
    margin-bottom: 50px;
    text-align: center;
}

.site-heading>h2 {
    color:  #00a3cc;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}

.site-heading>h2:after {
    background: #333 none repeat scroll 0 0;
    content: "";
    height: 2px;
    left: -45%;
    position: absolute;
    top: 50%;
    width: 40%;
}

.site-heading>h2:before {
    background: #333 none repeat scroll 0 0;
    content: "";
    height: 2px;
    right: -45%;
    position: absolute;
    top: 52%;
    width: 40%;
}

p {
    line-height: 1.6;
    color: #777;
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a {
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    color: inherit
}

a:focus {
    text-decoration: none;
    outline: medium none;
    color: inherit
}

a:hover {
    color: inherit;
    text-decoration: none;
    color: inherit
}

input:focus,
textarea:focus,
button:focus {
    outline: medium none
}

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

li {
    list-style-type: none;
}

.section_100 {
    padding: 100px 0;
}

.section_50 {
    padding: 50px 0;
}

.section_15 {
    padding: 15px 0
}

.pad-right {
    padding-right: 0
}

.section_t_100 {
    padding-top: 100px
}

.section_b_70 {
    padding-bottom: 70px
}

/*================================================
03 - NAV CSS
==================================================*/

nav.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    padding-top: 30px;
    padding-bottom: 20px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
        border-radius: 5px;
}

nav.navbar .logo {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-family: "Poppins", sans-serif;
        border-radius: 5px;
}

nav.navbar .navbar-toggler {
    border: 0;
        border-radius: 5px;
        color: white;
}

nav.navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        border-radius: 5px;
}

nav.navbar .nav-item {
    font-size: 13px;
    font-weight: 400;
    padding-right: 13px;
    padding-left: 13px;
    color:  #00a3cc;
    text-transform: uppercase;
        border-radius: 5px;
}

nav.navbar .nav-item:first-child {
    padding-left: 0;
        border-radius: 5px;
}

nav.navbar .nav-item:last-child {
    padding-right: 0;
        border-radius: 5px;
}

nav.navbar .nav-item .nav-link {
    color: #fff;
    position: relative;
    text-decoration: none;
    padding: 0;
        border-radius: 5px;
}

nav.navbar .nav-item .nav-link:before {
    content: "*";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 5px;
}

nav.navbar .nav-item .nav-link.active:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
        border-radius: 5px;
        color: white;
        background-color: rgba(0, 0, 0, 0.7);
}

nav.fixed-top {
    position: fixed;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 18px 1px rgba(255, 255, 255, 0.7);
        border-radius: 5px;
        color: red;
}

nav.fixed-top .logo {
    color: red;
        border-radius: 5px;
}

nav.fixed-top .logo:focus,
nav.fixed-top .logo:hover {
    color: red;
        border-radius: 5px;
        background-color: red;
}

nav.fixed-top .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        border-radius: 5px;
        color: red;
}

nav.fixed-top .nav-item {
    color:  #00a3cc;
        border-radius: 5px;
}

nav.fixed-top .nav-item .nav-link {
    color:  #00a3cc !important;
        border-radius: 5px;
}

nav.fixed-top .nav-item .nav-link:before {
    background-color: #000;
        border-radius: 5px;
}


/*================================================
04 - BANNER SECTION CSS
==================================================*/

.banner {
    background-image: url('logoo.png');
    height: 100vh;
    width: 100%;
    -webkit-background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    
    background-position: center center;
    color:  #00a3cc;
}

.roller {
    background-image: url('logoo.png');
        height: 100vh;
    width: 100%;
    -webkit-background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    
    background-position: center center;
}

.banner-caption {
    border-radius: 4px;
    display: table;
    height: 100%;
    width: 100%;
}

.banner-caption .container {
    display: table-cell;
    height: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    width: 100%;
}

.banner-welcome>h3 {
    color:  #00a3cc;
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 20px;
}

.typed-static {
    color:  #00a3cc;
}

.caption-inner span {
    color:  #00a3cc;
    font-size: 30px;
    font-weight: 400;
}

.banner-welcome {
    position: relative;
    z-index: 22;
    text-align: center
}

.mouse-icon {
    background: rgba(0, 0, 0, 0.69) none repeat scroll 0 0;
    border: 3px solid #fff;
    border-radius: 15px;
    bottom: 30px;
    height: 42px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 30px;
    z-index: 2;
}

.mouse-icon .wheel {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: down;
    animation-name: down;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #fff none repeat scroll 0 0;
    border-radius: 10px;
    display: block;
    height: 8px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 4px;
    width: 3px;
}

@-webkit-keyframes down {
    0% {
        top: 5px;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    30% {
        top: 15px;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    60% {
        top: 15px;
        opacity: 0.60;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    }
    100% {
        top: 25px;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes down {
    0% {
        top: 5px;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    30% {
        top: 15px;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        top: 25px;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.banner-area {
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 22
}

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

.ah-words-wrapper b {
    margin-left: 5px
}


/*================================================
05 - ABOUT SECTION CSS
==================================================*/

.about-avatar {
    text-align: center;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
}

.about-avatar>img {
    border-radius: 50%;
    padding: 8px;
    background: #dddddd none repeat scroll 0 0;
}

.about-left>h2 {
    color: #111;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-left>ul {
    margin-top: 10px;
}

.about-left li {
    color: #333;
    display: inline-block;
    margin-top: 15px;
    width: 49%;
}

.about-left span {
    color: #111;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    width: 40%;
}

.about-left ul li span>i {
    border: 1px solid #111;
    border-radius: 50%;
    color: #111;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    text-align: center;
    width: 30px;
}

.about_btns a {
    margin-top: 30px;
}

.fabon-about-area .skills-prog h6 {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.fabon-about-area .skills-prog .barfiller {
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 0;
    height: 6px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.fabon-about-area .skills-prog .barfiller:last-child {
    margin-bottom: 0
}

.fabon-about-area .skills-prog .barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
    background: #222 none repeat scroll 0 0 !important;
    border-radius: 0;
}

.fabon-about-area .skills-prog .barfiller .tip {
    margin-top: -20px;
    padding: 2px 4px;
    color: #222;
    top: -8px;
    font-size: 12px;
    font-weight: bold;
    left: 5px;
    border-radius: 4px !important;
    position: absolute;
    z-index: 2;
}


/*================================================
06 - SERVICE SECTION CSS
==================================================*/

.fabon-service-area {
    background: #f4f4f4 none repeat scroll 0 0;
}

.single-service {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    margin-bottom: 30px;
    z-index: 55;
    overflow: hidden
}

.service-icon {
    background-color: #eee;
    border-radius: 20px;
    display: inline-block;
    height: 82px;
    position: relative;
    width: 82px;
    z-index: -2;
    overflow: hidden
}

.service-icon i {
    color: #222;
    font-size: 30px;
    line-height: 82px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.service-icon i:after {
    background-color: #111;
    border-radius: 0px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    z-index: -1;
}

.single-service>h4 {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: capitalize
}

.single-service:hover .service-icon i:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single-service:hover .service-icon i {
    color: #fff;
}

.service-hover {
    border-color: #111 transparent;
    border-style: solid;
    border-width: 0 0 50px 50px;
    bottom: -50px;
    content: "";
    cursor: pointer;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    right: -50px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: visible;
}

.service-hover>a {
    color: #fff;
    display: block;
    left: -31px;
    padding: 3px 10px;
    position: absolute;
    top: 18px;
}

.single-service:hover .service-hover {
    bottom: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    right: 0;
    visibility: visible;
}


/*================================================
07 - WORK SECTION CSS
==================================================*/

.portfolio-filter ul {
    margin-bottom: 30px
}

.portfolio-filter ul li {
    border: medium none;
    border-radius: 10px;
    color: #111;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin: 0 5px;
    padding: 5px 15px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s
}

.portfolio-filter ul li:hover,
.portfolio-filter ul li.current {
    background: #212121 none repeat scroll 0 0;
    color: #fff;
}

.fabon-work-area .item-content {
    margin-bottom: 30px;
    position: relative
}

.fabon-work-area .item-content img {
    width: 100%
}

.fabon-work-area .item-content .item-img-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f7f7f7;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    overflow: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    color: #fff;
    z-index: 1
}

.fabon-work-area .item-content .item-img-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 170%;
    width: 100%;
    height: 100%;
    border: 1px solid #ea7070;
    background: rgba(0, 0, 0, 0.11);
    -webkit-transform: skewX(45deg);
    transform: skewX(45deg);
    -webkit-transition: all 1s;
    transition: all 1s;
    z-index: -1
}

.fabon-work-area .item-content .item-img-overlay:hover:after {
    top: 0;
    left: -170%
}

.fabon-work-area .item-content .item-img-overlay:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.fabon-work-area .item-content .item-img-overlay .cap {
    bottom: -50%;
    left: 50%;
    position: absolute;
    text-align: center;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.fabon-work-area .item-content .item-img-overlay h6 {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: capitalize;
}

.fabon-work-area .item-content .item-img-overlay .icon a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 5px;
    font-size: 14px
}

.fabon-work-area .item-content .item-img-overlay:hover .cap {
    bottom: 50%;
    margin-bottom: -50px;
}

.zoom-img>a {
    background: #111 none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
}


/*================================================
08 - TESTIMONIAL SECTION CSS
==================================================*/

.fabon-testimonial-area {
    background: #f4f4f4 none repeat scroll 0 0;
}

.single-testimonial {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.single-testimonial>img {
    background: #dddddd none repeat scroll 0 0;
    border-radius: 50%;
    height: 110px;
    margin: 0 auto 15px;
    padding: 6px;
    width: 110px !important;
}

.testimonial-info {
    margin-top: 20px;
}

.testimonial-info>h4 {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
    text-transform: capitalize;
}

.testimonial-info>p {
    text-transform: uppercase;
    color: #777;
}

.fabon-testimonial-area .owl-carousel .owl-stage-outer {
    cursor: move
}

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

.owl-dots .owl-dot {
    display: inline-block;
}

.owl-dots .owl-dot span {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    background: #bfbfbf none repeat scroll 0 0;
    border-radius: 30px;
    display: block;
    height: 10px;
    margin: 5px 7px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 10px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #606060 none repeat scroll 0 0;
}


/*================================================
09 - BLOG SECTION CSS
==================================================*/

.single-blog {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.blog-text {
    padding: 20px;
    text-align: center
}

.blog-img {
    position: relative;
}

.post-date {
    background: #212121 none repeat scroll 0 0;
    color: #fff;
    font-size: 16px;
    height: 60px;
    left: 5px;
    line-height: 20px;
    padding: 8px 0;
    position: absolute;
    text-align: center;
    top: 5px;
    width: 60px;
    border-radius: 5px
}

.blog-text>h3 {
    color: #232323;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}


/*================================================
10 - CONTACT SECTION CSS
==================================================*/

.fabon-contact-area form .form-group .form-control {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: currentcolor currentcolor #222;
    -o-border-image: none;
    border-image: none;
    border-radius: 0;
    border-style: none none solid;
    border-width: 0 0 2px;
    box-shadow: none;
    color: #222;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    height: 3em;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.fabon-contact-area form .form-group textarea.form-control {
    height: auto;
    resize: none;
}

.fabon-contact-area form button {
    background: #212121 none repeat scroll 0 0;
    border: 2px solid #212111;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-top: 30px;
    padding: 10px 20px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    cursor: pointer
}

.fabon-contact-area form button:hover {
    background: transparent none repeat scroll 0 0;
    color: #212111
}


/*================================================
11 - HIRE SECTION CSS
==================================================*/

.fabon-hire-area {
    background: #212121 none repeat scroll 0 0;
    text-align: center;
}

.hire-box>h2 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
}

.hire-box a {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
    color: #fff;
    display: inline-block;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-top: 30px;
    padding: 10px 20px;
    text-transform: uppercase;
}

.hire-box a:hover {
    background: #fff none repeat scroll 0 0;
    color: #212121
}


/*================================================
12 - FOOTER SECTION CSS
==================================================*/

.fabon-footer-area {
    background: #212121 none repeat scroll 0 0;
    padding: 100px 0;
    text-align: center;
}

.fabon-footer-area h3 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fabon-footer-area ul {
    margin: 20px 0
}

.fabon-footer-area ul li {
    display: inline-block;
    margin: 0 4px
}

.fabon-footer-area ul li a {
    background: #252525 none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 17px;
    height: 40px;
    line-height: 43px;
    text-align: center;
    width: 40px;
}

.fabon-footer-area ul li a:hover {
    background: #fff none repeat scroll 0 0;
    color: #212121
}

.fabon-footer-area p {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}
