body{
    font-family:Lato,sans-serif;
    color:#888;
    background-color:#eee;
    scroll-behavior:smooth
}
a{
    color:#fa5b0f;
    text-decoration:none
}
a:hover{
    color:#111;
    text-decoration:none
}
h1,h2,h3,h4,h5,h6{
    font-family:Lato,sans-serif;
    color:#111
}
.container{
    background-color:#fff;
    padding:30px;
    border-radius:20px;
    position:relative;
    overflow:hidden
}
::-webkit-scrollbar{
    width:4px
}
::-webkit-scrollbar-track{
    background-color:transparent;
    -webkit-border-radius:20px;
    margin-right:10px;
    margin-top:30px;
    margin-bottom:30px;
    border-radius:20px;
    margin-left:10px
}
::-webkit-scrollbar-thumb{
    -webkit-border-radius:20px;
    border-radius:20px;
    height:50px;
    margin-top:30px;
    margin-bottom:30px;
    background:#6d6d6d;
    position:relative
}
img{
    max-width:100%
}
#preloader{
    position:fixed;
    left:0;
    top:0;
    height:100vh;
    width:100%;
    z-index:99999;
    display:flex
}
#preloader:after,#preloader:before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:50%;
    height:100%;
    z-index:-1;
    background-color:#fff;
    -webkit-transition:all .3s ease 0s;
    -o-transition:all .3s ease 0s;
    transition:all .3s ease 0s
}
#preloader:after{
    left:auto;
    right:0
}
#preloader .loader_line{
    margin:auto;
    width:1px;
    height:250px;
    position:relative;
    overflow:hidden;
    -webkit-transition:all .8s ease 0s;
    -o-transition:all .8s ease 0s;
    transition:all .8s ease 0s
}
.loader_line:before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:1px;
    height:0%;
    -webkit-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    background-color:#000;
    -webkit-animation:lineheight 1s ease-in-out 0s forwards;
    -o-animation:lineheight 1s ease-in-out 0s forwards;
    animation:lineheight 1s ease-in-out 0s forwards
}
.loader_line:after{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:1px;
    height:100%;
    background-color:#bbb;
    -webkit-transform:translateY(-100%);
    -ms-transform:translateY(-100%);
    -o-transform:translateY(-100%);
    transform:translateY(-100%);
    -webkit-animation:lineround 1.2s linear 0s infinite;
    -o-animation:lineround 1.2s linear 0s infinite;
    animation:lineround 1.2s linear 0s infinite;
    animation-delay:2s
}
@keyframes lineheight{
    0%{
        height:0%
    }
    100%{
        height:100%
    }
}
@keyframes lineround{
    0%{
        -webkit-transform:translateY(-100%);
        -ms-transform:translateY(-100%);
        -o-transform:translateY(-100%);
        transform:translateY(-100%)
    }
    100%{
        -webkit-transform:translateY(200%);
        -ms-transform:translateY(200%);
        -o-transform:translateY(200%);
        transform:translateY(200%)
    }
}
.preloaded .loader_line:after{
    opacity:0
}
.preloaded .loader_line{
    opacity:0;
    height:100%!important
}
.preloaded:after,.preloaded:before{
    -webkit-animation:preloadedzero .3s ease-in-out .5s forwards;
    -o-animation:preloadedzero .3s ease-in-out .5s forwards;
    animation:preloadedzero .3s ease-in-out .5s forwards
}
@keyframes preloadedzero{
    0%{
        width:50%
    }
    100%{
        width:0%
    }
}
.back-to-top{
    position:fixed;
    visibility:hidden;
    opacity:0;
    right:15px;
    bottom:15px;
    z-index:996;
    background:#fa5b0f;
    width:40px;
    height:40px;
    border-radius:4px;
    transition:all .4s
}
.back-to-top i{
    font-size:20px;
    color:#fff;
    line-height:0
}
.back-to-top:hover{
    background:#fff
}
.back-to-top:hover i{
    color:#fa5b0f
}
.back-to-top.active{
    visibility:visible;
    opacity:1
}
#header{
    z-index:999;
    transition:all .5s;
    background:#212121;
    position:fixed;
    width:260px;
    height:100%
}
#header.header-transparent{
    background:#fff
}
#header.header-scrolled{
    background:#fff
}
#header .social-links{
    position:absolute;
    bottom:0;
    font-size:18px;
    color:#fff;
    line-height:1;
    right:0;
    left:0;
    display:flex;
    transition:.3s;
    margin-bottom:20px;
    justify-content:center;
    align-items:center
}
#header .social-links a{
    font-size:18px;
    display:inline-block;
    background:#fa5b0f;
    color:#fff;
    line-height:1;
    padding:9px 0;
    border-radius:50%;
    text-align:center;
    margin:0 8px;
    width:36px;
    height:36px;
    transition:.3s
}
#header .social-links a:hover{
    background:#eee;
    color:#fa5b0f;
    text-decoration:none
}
#header .profile img{
    margin:20px auto 20px auto;
    display:block;
    max-width:190px;
    border-radius:20px;
    box-shadow:0 0 10px rgb(0 0 0 / 85%)
}
#header .profile h1{
    font-size:40px;
    padding:10px 0;
    margin:0;
    line-height:1;
    font-weight:600;
    -moz-text-align-last:center;
    text-align-last:center;
    border-bottom:1px solid #fa5b0f;
    border-top:1px solid #fa5b0f
}
.navbar{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    height:calc(100vh - 500px);
    width:100%;
    padding:0;
    padding-top:15px;
    overflow:auto
}
.navbar ul{
    margin:0;
    padding:0;
    list-style:none;
    align-items:center
}
.navbar li{
    margin:0 0 15px 0;
    padding:0;
    display:flex;
    background:#eee;
    padding:5px 10px;
    border-radius:10px;
    align-items:center;
    font-weight:700
}
.navbar li a,.navbar li a:focus{
    text-decoration:none;
    color:#111;
    align-items:center;
    justify-content:center;
    display:flex;
    position:relative;
    padding:5px 0;
    -moz-transition:all .3s ease;
    -o-transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -ms-transition:all .3s ease;
    transition:all .3s ease
}
.navbar ul li a:after{
    content:"";
    position:absolute;
    height:1px;
    bottom:7px;
    left:0;
    right:0;
    background-color:#fff;
    visibility:hidden;
    -webkit-transform:scaleX(0);
    -moz-transform:scaleX(0);
    -ms-transform:scaleX(0);
    -o-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transition:all .3s cubic-bezier(.175, .885, .32, 1.275);
    -moz-transition:all .3s cubic-bezier(.175, .885, .32, 1.275);
    -ms-transition:all .3s cubic-bezier(.175, .885, .32, 1.275);
    -o-transition:all .3s cubic-bezier(.175, .885, .32, 1.275);
    transition:all .3s cubic-bezier(.175, .885, .32, 1.275)
}
.navbar ul li a:hover:after{
    visibility:visible;
    -webkit-transform:scaleX(1);
    -moz-transform:scaleX(1);
    display:flex;
    -ms-transform:scaleX(1);
    left:36px;
    -o-transform:scaleX(1);
    transform:scaleX(1)
}
.navbar a i,.navbar a:focus i{
    font-size:20px;
    line-height:0;
    margin-right:15px
}
.navbar .active,.navbar .active i,.navbar .active:focus,.navbar a:hover,.navbar li:hover>a{
    color:#fa5b0f
}
.mobile-nav-toggle{
    color:#fa5b0f;
    font-size:28px;
    cursor:pointer;
    display:none;
    line-height:0;
    transition:.5s
}
.navbar-mobile{
    position:fixed;
    overflow:hidden;
    top:0;
    right:0;
    height:100%;
    bottom:0;
    transition:.5s;
    z-index:999
}
.navbar-mobile ul{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    left:0;
    background:#111;
    padding:10px 0;
    border-radius:20px;
    overflow-y:auto;
    transition:.6s
}
.navbar-mobile a,.navbar-mobile a:focus{
    padding:10px 20px;
    font-size:14px;
    color:#3b434a
}
.navbar-mobile .active,.navbar-mobile a:hover,.navbar-mobile li:hover>a{
    color:#fa5b0f
}
.navbar-mobile .getstarted,.navbar-mobile .getstarted:focus{
    margin:15px
}
#main{
    width:calc(100% - 310px);
    margin-left:285px
}
#hero .container{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:15px
}
#hero .row{
    z-index:1
}
.background{
    position:absolute;
    height:1001px;
    width:400px;
    background:#fa5b0f;
    z-index:0;
    left:-170px;
    top:-410px;
    transform:rotate(45deg)
}
.hero-box{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column
}
.hero-img{
    display:flex;
    max-width:1000px;
    margin:40px auto;
    background:center;
    min-height:600px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 0 20px rgb(0 0 0 / 60%)
}
.hero-img{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:40px auto;
    background:center;
    min-height:600px;
    overflow:hidden
}
.glitch-img-warp{
    position:relative;
    box-shadow:0 0 20px rgb(0 0 0 / 60%);
    margin:40px auto;
    max-width:1000px;
    min-height:600px;
    overflow:hidden;
    border-radius:10px
}
.glitch-img{
    position:absolute;
    width:100%;
    height:100%;
    background-image:url("../img/hero-bg1.jpg");
    top:0;
    left:0;
    background-position:center;
    -moz-background-size:cover;
    -o-background-size:cover;
    -webkit-background-size:cover;
    background-size:cover
}
.water-js{
    position:relative;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    z-index:1;
    background-image:url("../img/hero-bg4.jpg")
}
.particles-js{
    position:relative
}
.particles-js canvas{
    position:absolute;
    top:0;
    z-index:1
}
.hero-img img{
    object-fit:cover;
    display:block;
    min-height:600px
}
.hero-box h1{
    margin:0 0 10px 0;
    font-size:64px;
    font-family:Lato,sans-serif;
    color:#111;
    font-weight:700
}
.hero-box h2{
    color:#111;
    margin-bottom:50px;
    font-size:20px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase
}
.hero-box span{
    color:#fa5b0f
}
.hero-box .btn-scroll{
    transition:.4s;
    color:rgb(0 0 0 / 60%);
    animation:up-down 1s ease-in-out infinite alternate-reverse both
}
.hero-box .btn-scroll i{
    font-size:48px
}
.hero-box .btn-scroll:hover{
    color:#fa5b0f
}
@-webkit-keyframes up-down{
    0%{
        transform:translateY(5px)
    }
    100%{
        transform:translateY(-5px)
    }
}
@keyframes up-down{
    0%{
        transform:translateY(5px)
    }
    100%{
        transform:translateY(-5px)
    }
}
section{
    padding:15px 0;
    overflow:hidden;
    position:relative
}
.pt-15{
    padding-top:30px
}
.section-title{
    text-align:center;
    padding:30px 0;
    position:relative
}
.section-title h2{
    font-size:32px;
    font-weight:700;
    text-transform:capitalize;
    margin-bottom:20px;
    padding-bottom:0;
    color:#fa5b0f;
    position:relative;
    z-index:2
}
.section-title span{
    position:absolute;
    top:25px;
    color:#8888!important;
    left:0;
    right:0;
    z-index:1;
    font-weight:700;
    font-size:60px;
    text-transform:capitalize;
    line-height:0
}
.section-title p{
    margin-bottom:0;
    position:relative;
    z-index:2
}
.breadcrumbs{
    padding:20px 0 0 0;
    min-height:40px
}
.breadcrumbs h2{
    font-size:24px;
    font-weight:300;
    margin:0
}
.breadcrumbs ol{
    display:flex;
    flex-wrap:wrap;
    list-style:none;
    padding:0;
    margin:0;
    font-size:14px
}
.breadcrumbs ol li+li{
    padding-left:10px
}
.breadcrumbs ol li+li::before{
    display:inline-block;
    padding-right:10px;
    color:#6c757d;
    content:"/"
}
.about .content h3{
    font-weight:700;
    font-size:26px;
    color:#3b434a;
    text-transform:uppercase
}
.about .content ul{
    list-style:none;
    padding:0
}
.about .content ul li{
    margin-bottom:20px;
    display:flex;
    align-items:center
}
.about .content ul strong{
    margin-right:10px;
    color:#111
}
.about .content ul i{
    font-size:16px;
    margin-right:5px;
    color:#fa5b0f;
    line-height:0
}
.about .content p:last-child{
    margin-bottom:0
}
.about .content .count-box{
    width:100%;
    margin-top:20px
}
.about .content .count-box i{
    display:block;
    font-size:36px;
    float:left
}
.about .content .count-box span{
    font-size:36px;
    line-height:30px;
    display:block;
    font-weight:700;
    color:#111;
    margin-left:50px
}
.about .content .count-box p{
    padding:15px 0 0 0;
    margin:0 0 0 50px;
    font-family:Lato,sans-serif;
    font-size:14px
}
.about .content .count-box a{
    font-weight:600;
    display:block;
    margin-top:20px;
    color:#5d6a75;
    font-size:15px;
    font-family:Lato,sans-serif;
    transition:ease-in-out .3s
}
.about .content .count-box a:hover{
    color:#82909c
}
.about-img{
    width:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 0 10px rgb(0 0 0 / 20%)
}
.about .about-img:hover .image{
    transform:scale(1);
    transition:ease-in-out .3s
}
.about .image{
    background:url("../img/me.jpg") center center no-repeat;
    background-size:cover;
    height:100%;
    transform:scale(1.1);
    border-radius:20px;
    transition:ease-in-out .3s
}
.about .skills-content{
    margin-top:30px;
    display:flex;
    width:100%
}
.about .skills-content .progress{
    height:60px;
    display:block;
    background:0 0;
    width:100%;
    padding:0 15px;
    border-radius:0
}
.about .skills-content .progress .skill{
    margin:0 0 6px 0;
    text-transform:uppercase;
    display:block;
    font-size:14px;
    font-weight:700;
    font-family:Lato,sans-serif;
    color:#888
}
.about .skills-content .progress .skill .val{
    float:right;
    font-style:normal
}
.about .skills-content .progress-bar-wrap{
    background:#e6e8eb;
    border-radius:20px
}
.about .skills-content .progress-bar{
    width:1px;
    height:10px;
    border-radius:20px;
    transition:3.9s;
    background-color:#fa5b0f
}
.resume .section-title{
    margin-top:30px
}
.resume .resume-title{
    font-size:26px;
    font-weight:700;
    color:#fff;
    margin:20px 0
}
.resume .resume-item{
    padding:0 0 20px 20px;
    margin-top:-2px;
    border-left:2px solid #888;
    position:relative
}
.resume .resume-item h4{
    line-height:18px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    color:#fa5b0f;
    margin-bottom:10px
}
.resume .resume-item h5{
    font-size:16px;
    background:#eee;
    padding:5px 15px;
    border-radius:10px;
    color:#111;
    display:inline-block;
    font-weight:600;
    margin-bottom:10px
}
.resume .resume-item ul{
    padding-left:20px
}
.resume .resume-item ul li{
    padding-bottom:10px
}
.resume .resume-item:last-child{
    padding-bottom:0
}
.resume .resume-item::before{
    content:"";
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50px;
    left:-9px;
    top:0;
    background:#fff;
    border:2px solid #888
}
.services .icon-box{
    padding:30px;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 0 10px rgb(0 0 0 / 40%);
    transition:all .3s ease-in-out;
    text-align:center;
    border:1px solid #eee
}
.services .icon{
    margin:0 auto 20px auto;
    padding-top:17px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    width:72px;
    height:72px;
    background:#eee
}
.services .icon i{
    font-size:36px;
    line-height:1;
    color:#fa5b0f
}
.services .title{
    font-weight:700;
    margin-bottom:15px;
    font-size:18px
}
.services .title a{
    color:#111;
    transition:.3s
}
.services .description{
    font-size:15px;
    line-height:28px;
    margin-bottom:0
}
.services .icon-box:hover{
    border-color:#fa5b0f
}
.services .icon-box:hover .icon i{
    color:#111
}
.services .icon-box:hover .title a{
    color:#fa5b0f
}
.testimonials{
    padding:80px 0;
    background:url("../img/testimonials-bg.jpg") no-repeat;
    background-position:center center;
    background-size:cover;
    position:relative
}
.testimonials::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background:rgb(0 0 0 / 43%)
}
.testimonials .section-header{
    margin-bottom:40px
}
.testimonials .testimonials-carousel,.testimonials .testimonials-slider{
    overflow:hidden
}
.testimonials .testimonial-item{
    text-align:center;
    color:#fff
}
.testimonials .testimonial-item .testimonial-img{
    width:100px;
    border-radius:50%;
    border:6px solid rgb(255 255 255 / 36%);
    margin:0 auto
}
.testimonials .testimonial-item h3{
    font-size:20px;
    font-weight:700;
    margin:10px 0 5px 0;
    color:#fff
}
.testimonials .testimonial-item h4{
    font-size:14px;
    color:#ddd;
    margin:0 0 15px 0
}
.testimonials .testimonial-item .quote-icon-left,.testimonials .testimonial-item .quote-icon-right{
    color:#fa5b0f;
    font-size:26px
}
.testimonials .testimonial-item .quote-icon-left{
    display:inline-block;
    left:-5px;
    position:relative
}
.testimonials .testimonial-item .quote-icon-right{
    display:inline-block;
    right:-5px;
    position:relative;
    top:10px
}
.testimonials .testimonial-item p{
    font-style:italic;
    margin:0 auto 15px auto;
    width:70%
}
.testimonials .swiper-pagination{
    margin-top:20px;
    position:relative
}
.testimonials .swiper-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    opacity:1;
    background-color:rgba(255,255,255,.4)
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active{
    background-color:#fa5b0f
}
.portfolio #portfolio-flters{
    list-style:none;
    margin-bottom:20px;
    padding:0
}
.portfolio #portfolio-flters li{
    cursor:pointer;
    display:inline-block;
    margin:0 10px 10px 10px;
    font-size:15px;
    font-weight:600;
    line-height:1;
    background:#fa5b0f;
    padding:7px 10px;
    text-transform:uppercase;
    color:#fff;
    transition:all .3s ease-in-out;
    border:2px solid #fa5b0f;
    border-radius:10px
}
.portfolio #portfolio-flters li.filter-active,.portfolio #portfolio-flters li:hover{
    color:#111;
    background:#fff
}
.portfolio .portfolio-item{
    margin-bottom:30px
}
.portfolio .portfolio-item .portfolio-img{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 0 10px rgb(0 0 0 / 50%)
}
.portfolio .portfolio-item .portfolio-img img{
    transition:all .8s ease-in-out
}
.portfolio .portfolio-item .portfolio-info{
    opacity:0;
    position:absolute;
    left:12px;
    bottom:0;
    z-index:3;
    right:12px;
    border-radius:0 0 20px 20px;
    transition:all ease-in-out .3s;
    background:rgba(0,0,0,.5);
    padding:10px 15px
}
.portfolio .portfolio-item .portfolio-info h4{
    font-size:18px;
    color:#fff;
    font-weight:600;
    color:#fff;
    margin-bottom:0
}
.portfolio .portfolio-item .portfolio-info p{
    color:rgba(255,255,255,.8);
    font-size:14px;
    margin-bottom:0
}
.portfolio .portfolio-item .portfolio-info .details-link,.portfolio .portfolio-item .portfolio-info .preview-link{
    position:absolute;
    right:40px;
    font-size:24px;
    top:calc(50% - 18px);
    color:#fff;
    transition:.3s
}
.portfolio .portfolio-item .portfolio-info .details-link:hover,.portfolio .portfolio-item .portfolio-info .preview-link:hover{
    color:#fa5b0f
}
.portfolio .portfolio-item .portfolio-info .details-link{
    right:10px
}
.portfolio .portfolio-item:hover .portfolio-img img{
    transform:scale(1.2)
}
.portfolio .portfolio-item:hover .portfolio-info{
    opacity:1
}
.portfolio-details .portfolio-details-slider img{
    width:100%;
    border-radius:20px
}
.portfolio-details .portfolio-details-slider .swiper-pagination{
    margin-top:20px;
    position:relative
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background-color:#fff;
    opacity:1;
    border:1px solid #fa5b0f
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active{
    background-color:#fa5b0f
}
.portfolio-details .portfolio-info{
    padding:30px;
    box-shadow:0 0 10px rgb(0 0 0 / 20%);
    border-radius:20px
}
.portfolio-details .portfolio-info h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #fa5b0f
}
.portfolio-details .portfolio-info ul{
    list-style:none;
    padding:0;
    font-size:15px;
    margin:0
}
.portfolio-details .portfolio-info ul li strong{
    color:#111;
    padding-right:5px
}
.portfolio-details .portfolio-info ul li+li{
    margin-top:10px
}
.portfolio-details .portfolio-description{
    padding-top:30px
}
.portfolio-details .portfolio-description h2{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px
}
.portfolio-details .portfolio-description p{
    padding:0
}
.glightbox-clean .gdesc-inner{
    padding:10px 20px
}
.glightbox-clean .gslide-title{
    font-size:1em;
    font-weight:400;
    color:#000;
    margin:0
}
.pricing .box{
    padding:20px;
    transform:scale(.9);
    background:#fff;
    text-align:center;
    box-shadow:0 0 10px rgb(0 0 0 / 30%);
    border-radius:5px;
    position:relative;
    transition:ease-in .4s;
    overflow:hidden
}
.pricing .box:hover{
    transform:scale(1);
    transition:ease-in .4s
}
.pricing h3{
    font-weight:400;
    margin:-20px -20px 20px -20px;
    padding:20px 15px;
    font-size:16px;
    font-weight:600;
    color:#888;
    background:#fff
}
.pricing h4{
    font-size:36px;
    color:#fa5b0f;
    font-weight:600;
    font-family:Lato,sans-serif;
    margin-bottom:20px
}
.pricing h4 sup{
    font-size:20px;
    top:-12px;
    left:-3px
}
.pricing h4 span{
    color:#bababa;
    font-size:16px;
    font-weight:300
}
.pricing ul{
    padding:0;
    list-style:none;
    color:#888;
    text-align:center;
    line-height:20px;
    font-size:14px
}
.pricing ul li{
    padding-bottom:16px
}
.pricing ul i{
    color:#fa5b0f;
    font-size:18px;
    padding-right:4px
}
.pricing ul .na{
    color:#ccc;
    text-decoration:line-through
}
.pricing .btn-wrap{
    margin:20px -20px -20px -20px;
    padding:20px 15px;
    background:#fff;
    text-align:center
}
.pricing .btn-buy{
    background:#fa5b0f;
    display:inline-block;
    padding:8px 35px;
    border-radius:4px;
    color:#fff;
    transition:none;
    border:1px solid #fa5b0f;
    font-size:14px;
    font-weight:400;
    font-family:Lato,sans-serif;
    font-weight:600;
    transition:.3s
}
.pricing .btn-buy:hover{
    background:#111;
    color:#fff;
    border:1px solid #fa5b0f
}
.pricing .advanced{
    width:200px;
    position:absolute;
    top:18px;
    right:-68px;
    transform:rotate(45deg);
    z-index:1;
    font-size:14px;
    padding:1px 0 3px 0;
    background:#fa5b0f;
    color:#fff
}
.contact .info-box{
    text-align:center;
    box-shadow:0 0 10px rgb(0 0 0 / 20%);
    padding:20px 0 30px 0;
    border-radius:10px;
    margin-top:20px
}
.contact .info-box i.fas{
    font-size:24px;
    color:#fa5b0f;
    border-radius:50%;
    padding:15px;
    background:#eee
}
.contact .info-box h3{
    font-size:20px;
    color:#777;
    font-weight:700;
    margin:10px 0
}
.contact .info-box p{
    padding:0;
    line-height:24px;
    color:#fff;
    font-size:14px;
    margin-bottom:0
}
.contact .social-links{
    margin-top:15px;
    display:flex;
    justify-content:center
}
.contact .social-links a{
    font-size:18px;
    display:inline-block;
    color:#888;
    line-height:1;
    background:#eee;
    margin:0 8px;
    transition:.3s;
    padding:14px;
    border-radius:50px
}
.contact .social-links a:hover{
    color:#fff;
    background:#fa5b0f
}
.email-form{
    box-shadow:0 0 10px rgb(0 0 0 / 20%);
    padding:27px;
    border-radius:5px
}
.email-form .error-message br+br{
    margin-top:25px
}
.email-form input,.email-form textarea{
    border-radius:0;
    font-size:14px;
    background:#212121;
    border:0
}
.email-form .form-control{
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 10px rgb(0 0 0 / 30%);
    color:#111
}
.form-group{
    margin-bottom:20px
}
.form-control:-webkit-autofill,.form-control:-webkit-autofill:active,.form-control:-webkit-autofill:focus,.form-control:-webkit-autofill:hover{
    -webkit-box-shadow:0 0 10px rgb(0 0 0 / 85%);
    -webkit-text-fill-color:#777!important;
    -webkit-transition:background-color 5000s ease-in-out 0s;
    transition:background-color 5000s ease-in-out 0s
}
.email-form input,.email-form textarea{
    border-radius:0;
    box-shadow:none;
    font-size:14px;
    color:#fff
}
.email-form input{
    padding:10px 15px
}
.email-form textarea{
    padding:20px 20px
}
.email-form button[type=submit]{
    background:#fa5b0f;
    border:0;
    padding:10px 24px;
    border:1px solid #fa5b0f;
    color:#fff;
    transition:.4s;
    border-radius:5px
}
.email-form button[type=submit]:hover{
    background:#212121;
    color:#fff
}
.map{
    border-radius:20px;
    overflow:hidden
}
.map iframe{
    width:100%;
    min-height:500px
}
@-webkit-keyframes animate-loading{
    0%{
        transform:rotate(0)
    }
    100%{
        transform:rotate(360deg)
    }
}
@keyframes animate-loading{
    0%{
        transform:rotate(0)
    }
    100%{
        transform:rotate(360deg)
    }
}
#footer{
    font-size:14px;
    text-align:center;
    border-radius:20px;
    padding:0 0 15px 0;
    position:relative
}
#footer .container{
    position:relative
}
#footer h3{
    font-size:36px;
    font-weight:700;
    color:#111;
    position:relative;
    font-family:Lato,sans-serif;
    padding:0;
    margin:0 0 15px 0
}
#footer p{
    font-style:italic;
    padding:0;
    color:#888;
    font-size:15px;
    margin:0 0 20px 0
}
#footer .social-links{
    margin:0 0 20px 0
}
#footer .social-links a{
    font-size:18px;
    display:inline-block;
    background:#fa5b0f;
    color:#fff;
    line-height:1;
    padding:9px 0;
    margin:0 5px;
    border-radius:50%;
    text-align:center;
    width:36px;
    height:36px;
    transition:.3s
}
#footer .social-links a:hover{
    background:#eee;
    color:#fa5b0f;
    text-decoration:none
}
#footer .copyright{
    margin:0 0 5px 0
}
.mouse-cursor{
    position:fixed;
    left:0;
    top:0;
    pointer-events:none;
    border-radius:50%;
    -webkit-transform:translateZ(0);
    transform:translateZ(0);
    visibility:hidden
}
.cursor-inner{
    margin-left:-3px;
    margin-top:-3px;
    width:6px;
    height:6px;
    z-index:99999999;
    background-color:#fa5b0f;
    -webkit-transition:width .3s ease-in-out,height .3s ease-in-out,margin .3s ease-in-out,opacity .3s ease-in-out;
    transition:width .3s ease-in-out,height .3s ease-in-out,margin .3s ease-in-out,opacity .3s ease-in-out
}
.cursor-inner.cursor-hover{
    margin-left:-40px;
    margin-top:-40px;
    width:80px;
    height:80px;
    background-color:#fa5b0f;
    opacity:.3
}
.cursor-outer{
    margin-left:-15px;
    margin-top:-15px;
    width:30px;
    height:30px;
    border:2px solid #fa5b0f;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    z-index:9999999;
    opacity:.5;
    -webkit-transition:all .08s ease-out;
    transition:all .08s ease-out
}
.cursor-outer.cursor-hover{
    opacity:0
}
.gaspar[data-magic-cursor=hide] .mouse-cursor{
    display:none;
    opacity:0;
    visibility:hidden;
    position:absolute;
    z-index:-1111
}
.content-switcher .cursor{
    margin:0;
    list-style-type:none;
    padding-top:15px;
    display:flex;
    align-items:center;
    justify-content:center
}
.content-switcher .cursor li{
    margin:0 20px 0 0;
    display:inline-block
}
.content-switcher .cursor li a{
    text-decoration:none;
    opacity:.4;
    font-weight:600
}
.content-switcher .cursor li a.showme{
    opacity:1
}
.content-switcher .cursor li:nth-child(1) a{
    width:30px;
    height:30px;
    border-radius:100%;
    border:2px solid #111;
    position:relative;
    display:inline-block
}
.content-switcher .cursor li:nth-child(1) a:before{
    position:absolute;
    content:"";
    width:4px;
    height:4px;
    border-radius:100%;
    background-color:#111;
    transform:translate(-50%,-50%);
    left:50%;
    top:50%
}
.content-switcher .cursor li .svg{
    width:25px;
    height:25px;
    fill:#111
}
.content-switcher .cursor li:nth-child(2){
    position:relative;
    top:-2px
}
.blog .blog-post{
    border-radius:10px;
    margin-bottom:24px;
    padding:20px;
    overflow:hidden;
    box-shadow:0 0 10px rgb(0 0 0 / 30%)
}
.blog-thumb{
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 0 10px rgb(0 0 0 / 30%)
}
.blog-thumb img{
    transform:scale(1.2);
    transition:.3s
}
.blog-thumb img:hover{
    transform:scale(1)
}
.down-content{
    padding:10px 0 0 0
}
.down-content h4:hover{
    color:#fa5b0f
}
.down-content h4:hover a{
    color:#fff
}
.down-content ul{
    margin-bottom:0;
    padding:0 0 0 15px
}
.down-content p{
    margin-bottom:0
}
ul.page-numbers{
    list-style:none;
    text-align:center
}
ul.page-numbers li{
    display:inline-block;
    margin:0 5px
}
ul.page-numbers li a{
    width:30px;
    height:30px;
    display:inline-block;
    text-align:center;
    line-height:30px;
    font-size:15px;
    color:#888;
    border:1px solid #fa5b0f;
    font-weight:500;
    transition:all .3s;
    border-radius:5px
}
ul.page-numbers li a:hover{
    color:#fff
}
ul.page-numbers li.active a{
    background-color:#fa5b0f;
    border-color:#fa5b0f;
    color:#fff
}