/* 
_________________                                                 
        |        |                                                        
        |        |                                                  /\    
        |        |                                                 /  \   
        |        |                                                /    \     
        |        |'''''''\ /'''''''\ /'''\  /'''\  /'''''''\     /      \     | /''''\ | /''''\  /'''''\  \     /
        |        |       | |  --   | |    \/     | |   --  |    /   /\   \    |/     * |/     *        |   \   /
        |        |       | |_______/ |     |     | |_______/   /__________\   |        |          /''''|    \ /
        |        |       | |         |     |     | |          /            \  |        |         |  -  |     /
        |        |       | \_______  |     |     | \_________/              \_|        |          \____|  __/
        

Template Name   :   ARVE - Personal Portfolio Template
Created By      :   ThemeArray
Website         :   http://themearray.com
Description     :   
Version         :   1.0.0



================================================================= 
            ARVE - CSS TABLE OF CONTENTS
================================================================= 

    01. GENERAL AND BASIC STYLE CODES
    02. PRELOADER STYLE CODES
    03. GENERAL MARGIN & PADDING
    04. CUSTOM ANIMATION
    05. HOMEPAGE VARIATION CODES
    06. PAGE TRANSFORMATION & BLOCK
    07. HOMEPAGE IMAGE SLIDER
    08. HOMEPAGE ELEMENT STYLE CODES 
    09. ABOUT PAGE STYLE CODES
    10. MAIN NAVIGATION / HEADER
    11. ABOUT SECTION STYLE CODES
        11.1 ABOUT - AVAILABILITY CALANDER
        11.2 ABOUT - SERVICE SECTION STYLE
        11.3 ABOUT - CALL TO ACTION
        11.4 ABOUT - TESTIMONIAL SECTION 
        11.5 ABOUT - PRICING TABLE
    12. RESUME SECTION STYLE CODES
        12.1 RESUME - EXPERIENCE STYLE CODES
        12.2 RESUME SECTION SKILL STYLE CODES
        12.3 RESUME SECTION FUN-FACTS STYLE CODES
        12.4 RESUME WORK PROCESS STYLE CODES
        12.5 RESUME - PARTNAR STYLE CODES
    13. PORTFOLIO SECTION STYLE CODES
        13.1 PORTFOLIO SINGLE PAGE STYLE CODES
    14. BLOG SECTION STYLE CODES
        14.1. BLOG SINGLE & WIDGET STYLE CODES   
    15. CONTACT ME STYLE CODES
    16. GOOGLE MAP STYLE CODES
    17. RESPONSIVE STYLE CODES

================================================================= 


*/




@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

/*  =============================================
    01. GENERAL AND BASIC STYLE CODES
    =============================================   */

* {
    margin: 0;
    padding: 0;
    font-family: inherit;
    outline: none !important;
    list-style: none !important;
    text-decoration: none !important;
}

*:after, 
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444444;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #1B1B1B;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover, 
a:focus {
    color: #1B1B1B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0; 
    color: #1B1B1B;
    font-weight: 600;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 18px;
}

i, em {
    font-style: normal; 
}

img {
    max-width: 100%;
}

/* Button Style */
.btn-st {
    position: relative;
    display: inline-block;
    color: #1B1B1B;
    cursor: pointer;
    font-size: 18px;
    font-weight: 100;
    background-color: transparent;
    border: none;
    z-index: 2;
}

.btn-st:before {
    content: '';
    position: absolute;
    width: 40%;
    height: 200%;
    top: -50%;
    left: -15%;
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    z-index: -1;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.bg-black {
    background-color: #414141;
}

.btn-st:hover:after {
    -webkit-transform: translateX(-55%) translateY(-550%) rotate(90deg) scaleX(0.3);
    -ms-transform: translateX(-55%) translateY(-550%) rotate(90deg) scaleX(0.3);
    transform: translateX(-55%) translateY(-550%) rotate(90deg) scaleX(0.3);
}

.pt-about .price .footer-price .btn-st,
.pt-blog .blog-item .blog-btn .btn-st {
    font-size: 16px;
}
.horizontal_line {
    margin: 15px auto 0 auto;
    width: 100%;
}
.horizontal_line .line {
    height: 2px;
    background-color: #757575;
    margin: 4px auto;
}
.horizontal_line .line.line1 {
    width: 44px;
}
.horizontal_line .line.line2 {
    width: 72px;
}
.horizontal_line .line.line3 {
    width: 44px;
}
.default .demo2_widget {
    display: none;
}
/*  =============================================
    02. PRELOADER STYLE CODES
    =============================================   */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5000;
}
#preloader.loaded {
    visibility: hidden;
}
#preloader.loaded .loading-area {
    opacity: 0;
}
#preloader .loading-area {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
#preloader.loaded .loading-area .circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 50px auto;
    border-radius: 50%;
    border: 3px solid #1B1B1B;
    border-top-color: #fff;
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
}
#preloader.loaded .left-side {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s;
}
#preloader .left-side {
    left: 0;
}
#preloader.loaded .right-side {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s;
}
#preloader .right-side {
    right: 0;
}
#preloader .left-side, 
#preloader .right-side {
    position: absolute;
    width: 50%;
    height: 100%;
    background: #fff;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}
/*  =============================================
    03. GENERAL MARGIN & PADDING
    =============================================   */
.mt-0 {
    margin-top: 0;
}
.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-35 {
    margin-top: 35px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-45 {
    margin-top: 45px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-55 {
    margin-top: 55px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-65 {
    margin-top: 65px;
}
.mt-70 {
    margin-top: 70px;
}
.mt-75 {
    margin-top: 75px;
}
.mt-80 {
    margin-top: 80px;
}
.mt-85 {
    margin-top: 85px;
}
.mt-90 {
    margin-top: 90px;
}
.mt-95 {
    margin-top: 95px;
}
.mt-100 {
    margin-top: 100px;
}
.mt-120 {
    margin-top: 120px;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-55 {
    margin-bottom: 55px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-75 {
    margin-bottom: 75px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-85 {
    margin-bottom: 85px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-95 {
    margin-bottom: 95px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mb-120 {
    margin-bottom: 120px;
}
.m-0 {
    margin: 0px;
}
.pt-0 {
    padding-top: 0;
}
.pt-5 {
    padding-top: 5px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-25 {
    padding-top: 25px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-35 {
    padding-top: 35px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-55 {
    padding-top: 55px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-65 {
    padding-top: 65px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-75 {
    padding-top: 75px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-85 {
    padding-top: 85px;
}
.pt-90 {
    padding-top: 90px;
}
.pt-95 {
    padding-top: 95px;
}
.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0;
}
.pb-5 {
    padding-bottom: 5px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-25 {
    padding-bottom: 25px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-35 {
    padding-bottom: 35px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-45 {
    padding-bottom: 45px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-55 {
    padding-bottom: 55px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pb-65 {
    padding-bottom: 65px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pb-75 {
    padding-bottom: 75px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-85 {
    padding-bottom: 85px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-95 {
    padding-bottom: 95px;
}
.pb-100 {
    padding-bottom: 100px;
}
.p-0 {
    padding: 0;
}

.demo2_widget .quick_booking {
    display: none;
}
/*  =============================================
    04. CUSTOM ANIMATION
    =============================================   */
/* Animation zoomIn */ 
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

/* Animation rotating */ 
@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Animation Spinner */
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes mkSlide {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1
    }
    40% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes mkSlide {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1
    }
    40% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*  =============================================
    05. HOMEPAGE VARIATION CODES
    =============================================   */

/* YouTube Video */
#video-container {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Glitch */
.glitch {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/glitch.jpg);
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    z-index: -1 !important;
}

/* Html Video */
.html-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    background: #000;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
}
body .pt-home {
    background: #fff;
}
body .pt-home.video_bg,
body .pt-home.img_slider,
body .pt-home.yt_bg,
body .pt-home.glitch-bg {
    background: none;
}
/* .yt_bg .img_slider_wrapper {
    left: 14%;
    width: 86%;
}
.yt_bg .img_slider_wrapper iframe {
    margin-left: 0 !important;
    width: 100% !important;
    max-height: 100%;
}
#navigations.top+.yt_bg .img_slider_wrapper {
    left: 0;
    width: 100%;
}

#navigations.right+.yt_bg .img_slider_wrapper {
    left: 0;
    right: 14%;
    width: 86%;
}
#navigations.bottom+.yt_bg .img_slider_wrapper {
    left: 0;
    right: 0;
    width: 100%;
} */
.pt-home.video_bg .banner:before,
.pt-home.glitch-bg .banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.8);
}
.pt-home.video_bg .banner .slider-text h5,
.pt-home.glitch-bg .banner .slider-text h5,
.pt-home.img_slider .banner .slider-text h5,
.pt-home.yt_bg .banner .slider-text h5,
.pt-home.video_bg .banner .slider-text h1,
.pt-home.glitch-bg .banner .slider-text h1,
.pt-home.img_slider .banner .slider-text h1,
.pt-home.yt_bg .banner .slider-text h1,
.pt-home.video_bg .banner .slider-text p,
.pt-home.img_slider .banner .slider-text p,
.pt-home.yt_bg .banner .slider-text p,
.pt-home.glitch-bg .banner .slider-text p {
    color: #fff;
}
.pt-home.video_bg .banner .slider-button a.btn-st,
.pt-home.img_slider .banner .slider-button a.btn-st,
.pt-home.glitch-bg .banner .slider-button a.btn-st {
    background-color: #ffffff;
    color: #000;
}
.pt-home.video_bg .banner .slider-button a.btn-st:hover,
.pt-home.img_slider .banner .slider-button a.btn-st:hover,
.pt-home.glitch-bg .banner .slider-button a.btn-st:hover {
    background-color: #000000;
    color: #fff;
}
/*  =============================================
    06. PAGE TRANSFORMATION & BLOCK
    =============================================   */
.page {
    position: fixed;
    width: 86%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-transition: all .6s cubic-bezier(.5, .2, .2, 1.1);
    -o-transition: all .6s cubic-bezier(.5, .2, .2, 1.1);  
    transition: all .6s cubic-bezier(.5, .2, .2, 1.1);
}
.page .container {
    padding: 0 30px;
}
#about:target .pt-home, 
#resume:target .pt-home,
#portfolio:target .pt-home,
#blog:target .pt-home,
#contact:target .pt-home {
    -webkit-filter: blur(3px);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.pt-about, 
.pt-resume, 
.pt-portfolio, 
.pt-blog,
.pt-contact {
    background-color: #fff;
}
#about:target .pt-about,
#resume:target .pt-resume,
#portfolio:target .pt-portfolio,
#blog:target .pt-blog,
#contact:target .pt-contact {
    -webkit-transition-delay: .3s;
         -o-transition-delay: .3s;
            transition-delay: .3s;
}
.page .header-page,
.page .header-box,
.blog-page .header-box {
    position: relative;
    text-align: center;
}
.blog-page .box {
    position: relative;
    padding: 30px;
    background-color: #f0f1f5;
    border-radius: 10px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
/*  =============================================
    07. HOMEPAGE IMAGE SLIDER
    =============================================   */
.img_slider_wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}
.img_slider_wrapper .slider {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}
.img_slider_wrapper .slider .slider_item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-animation: mkSlide 18s linear infinite 0s;
    animation: mkSlide 18s linear infinite 0s;
    opacity: 0;
}
.img_slider_wrapper .slider .slider_item:nth-child(1) {
    opacity: 1;
}
.img_slider_wrapper .slider .slider_item:nth-child(2) {
    -webkit-animation-delay: 6s;
        animation-delay: 6s;
}
.img_slider_wrapper .slider .slider_item:nth-child(3) {
    -webkit-animation-delay: 12s;
        animation-delay: 12s;
}

/*  =============================================
    08. HOMEPAGE ELEMENT STYLE CODES 
    =============================================   */
.pt-home {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; 
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
}
.pt-home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    background-color: #12171b;
}
.pt-home .banner {
    position: absolute;
    width: 86%;
    height: 100%;
    top: 50%;
    color: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* Social */
.pt-home .social {
    position: absolute;
    bottom: 0px;
    z-index: 1;
}
.pt-home .social ul li {
    display: inline-block;
}

.pt-home .social ul li i {
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.pt-home .social ul li i:hover {
    color: #000 !important;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

body .pt-home:before {
    background-color: unset !important;
}
.pt-home .social ul li i {
    color: #b8b8b8 !important;
}
.pt-home .banner .slider-text {
    padding-left: 11%;
    margin-top: 40vh;
}
.slider-text h5 {
    color: #0d0d0d;
}
.pt-home .banner h1 {
    color: #414141;
    font-size: 40px;
    font-weight: 700;
}
.pt-home .banner p {
    color: #0d0d0d;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 26px;
    margin: 25px 0 35px 0;
}
.slider-button a.btn-st {
    padding: 12px 34px;
    background-color: #414141;
    color: #fff;
}
.slider-button a.btn-st:hover{
    background-color: #000;
}
.slider-button a.btn-st:before{
    display: none;
}
.btn-st {
    color: #0d0d0d;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    padding: 7px 15px;
}
.btn-st:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    background: #414141;
    border-radius: 0;
    padding: 0px;
    z-index: -1;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.btn-st:hover:before {
    width: 100%;
}
.btn-st:hover {
    color: #fff !important;
}

.header-page h2,
.header-box h3 {
    font-weight: 700;
    color: #222;
}
/*  =============================================
    09. ABOUT PAGE STYLE CODES
    =============================================   */
body .info.box .photo img {
    border-radius: unset;
}
body .info.box .photo img:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 10px;
    left: 50px;
    bottom: 0;
    border: 10px solid #efefef;
}
.pt-about .info_list,
.pt-about .about-desc {
    background: #fff;
    padding: 0 5px 30px 30px;
    overflow: hidden;
    margin-top: -5px;
}
.pt-about .download_resume {
    padding: 0px 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pt-about .download_resume a.btn-st {
    background-color: #414141;
    color: #fff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
}
.pt-about .download_resume a.btn-st:hover {
    background-color: #000;
}
.pt-about .download_resume a.btn-st:before{
    content: inherit;
    display: none;
}
.skills .container {
    margin-bottom: -10px;
}
.skill-bar {
    margin-bottom: 28px;
}
.progress-title-holder {
    position: relative;
    font-size: 14px;
}
.progress-title {
    z-index: 100;
}
.progress-wrapper {
    width: 100%;
    z-index: 10;
}
.progress-mark {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%); 
}
.progress-content:after {
    background: #484848 none repeat scroll 0 0;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 4px rgba(72, 72, 72, 0.5);
            box-shadow: 0 0 0 4px rgba(72, 72, 72, 0.5);
    content: "";
    height: 14px;
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 14px;
    z-index: 999;
}
.progress-mark span,
.progress-title-holder {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
}
.progress-outter {
    background-color: #c8c8c8;
}
.progress-content {
    background-color: #484848;
    position: relative;

}
.progress-content,
.progress-outter {
    height: 7px;
    border-radius: 3px;
}

/*  =============================================
    10. MAIN NAVIGATION / HEADER
    =============================================   */

.header-main {
    position: fixed;
    width: 14%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    background-color: #555657;
    z-index: 99;
}
.header-main ul li {
    margin: 30px 0;
    padding-left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.header-main ul li span.active {
    color: #fff;
}
.header-main ul li a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.header-main ul li a i {
    margin-bottom: 10px;
    font-size: 22px;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
#about:target .icon-a,
#resume:target .icon-r,
#portfolio:target .icon-p,
#blog:target .icon-b,
#contact:target .icon-c {
    color: #fff;
    -webkit-transform: scale(1.3) !important;
    -ms-transform: scale(1.3) !important;
    transform: scale(1.3) !important;
}
/* Logo */
.header-main .logo {
    text-align: center;
    padding: 40px 0;
    border-bottom: 5px solid #fff;
}
.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: #070708;
    z-index: 10;
    display: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.header-mobile h2 {
    position: absolute;
    left: 15px;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 70px;
    white-space: nowrap;
}
.header-mobile .header-toggle {
    font-size: 20px;
    line-height: 70px;
    cursor: pointer;
    width: 50px;
    text-align: center;
}
.header-mobile .header-toggle i {
    color: #fff;
}
/*  =============================================
    11. ABOUT SECTION STYLE CODES
    =============================================   */
.pt-about .info_list ul li,
.pt-about .info p,
.pt-about .service_item p {
    font-size: 16px;
    line-height: 30px;
}
.pt-about .info_list ul li{
    line-height: 36px;
    width: 50%;
    float: left;
}
.pt-about .info p:last-child {
    margin-bottom: 0;
}
.download_resume .info-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pt-about .desc-icon {
    display: inline-block;
}
.pt-about .info-icon i {
    display: inline-block;
    line-height: 45px;
    text-align: center;
    width: 45px;
    height: 45px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #1B1B1B;
    background: #fff;
    font-size: 20px;
    border-radius: 100%;
    border: 1px solid #1B1B1B;
    margin-right: 15px;
}
.pt-about .desc-icon h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 15px
}
.pt-about .desc-icon p {
    color: #1B1B1B;
    font-size: 12px;
    line-height: 21px;
}
/*  =============================================
    11.1 ABOUT - AVAILABILITY CALANDER
    =============================================   */
.availablity {
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}
.calendar-today {
    background: #333333;
    padding: 100px 0 50px;
    position: relative;
}
.calendar-wrapp {
	position: relative;
	background-color: #fff;
}
.calendar-wrapp:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 500%;
	height: 100%;
	background-color: #333333;
	z-index: -1;
}
.calendar-today:before {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    height: 100%;
    width: 500%;
    background-color: #333333;
    z-index: -1;
}
#date {
    position: relative;
    width: 200px;
    margin: 0 auto;
    border: 1px solid #fff;
    padding: 30px 0;
    line-height: 1.3em;
    font-size: 72px;
    font-weight: 100;
    color: #fff;
}
#date:before, #date:after {
    content: "";
    position: absolute;
    top: -15px;
    height: 30px;
    width: 1px;
    background: #fff;
}
#date:before {
    left: 30px;
}
#date:after {
    right: 30px;
}
.calendar-today hr {
    width: 150px;
    margin: 40px auto 0;
    border-top: 2px solid #ffffff;
}
#todayDay {
    margin: auto;
    color: #000000;
    font-weight: 400;
    width: 200px;
    background-color: #fff;
    padding: 15px 0px;
    font-size: 16px;
}
.calendar-today p {
	color: #fff;
    max-width: 320px;
    margin: 40px auto 0;
    font-size: 16px;
    padding: 0 15px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 1px
}
.calendar-wrapp .ui-datepicker-next, 
.calendar-wrapp .ui-datepicker-prev {
    position: absolute;
    top: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    height: 38px;
    width: 38px;
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}
.calendar-wrapp .ui-datepicker-prev {
    left: 30px;
}
.calendar-wrapp .ui-datepicker-next {
    right: 30px;
}
.calendar-wrapp .ui-datepicker-next:before, 
.calendar-wrapp .ui-datepicker-prev:before {
    content: "";
    position: absolute;
    top: 12px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
}
.calendar-wrapp .ui-datepicker-prev:before {
    right: 10px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.calendar-wrapp .ui-datepicker-next:before {
    left: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.calendar-wrapp .ui-datepicker-title {
    text-align: center;
    background: #333333;
    color: #fff;
    font-size: 16px;
    padding: 40px 0;
    word-spacing: 2px;
    margin: 0 0 0 0;
}
#calendar-block table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 0.9em;
    width: 100%;
}
.ui-datepicker-month, .ui-datepicker-year, .ui-datepicker-calendar {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin: 0 auto;
}
.calendar-wrapp .ui-datepicker-calendar {
    width: 100%;
    padding: 30px;
    margin: 0 auto;
    background: #fff;
    border: none;
}
.calendar-wrapp .ui-datepicker-calendar thead {
    display: inline-block;
    margin: 40px 0;
    vertical-align: bottom;
    white-space: nowrap;
    width: 100%;
}
.calendar-wrapp .ui-datepicker table tr {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
.calendar-wrapp .ui-datepicker-calendar th {
    float: left;
    display: inline-block;
    padding: 0;
    border: none;
}
.ui-datepicker-other-month {
    opacity: 0.6;
}
.calendar-wrapp td {
    width: 40px;
    height: 30px;
    text-align: center;
    line-height: 2;
    margin: 14px 0;
    font-size: 15px;
    float: left;
    padding: 0;
    border: none;
}
.calendar-wrapp .ui-datepicker table tbody > tr:nth-child(odd) > td {
    background: #f9f9f9;
}
.ui-datepicker-calendar .ui-state-active {
    padding: 5px 10px;
    border: 1px solid #333333;
}
.calendar-wrapp .ui-datepicker table tbody tr td:last-child {
    background: #ecf1f4;
}
/*  =============================================
    11.2 ABOUT - SERVICE SECTION STYLE
    =============================================   */
.pt-about .service_item {
    text-align: center;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
    padding: 40px 15px;
}
.pt-about .service_item i {
    position: relative;
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 70px;
    color: #1B1B1B;
    background-color: #fff;
    border-radius: 50%;
}
.pt-about .service_item:hover i:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 5px;
    left: calc(50% - 30px);
    border-radius: 100%;
    border: 1px solid #1B1B1B;
    -webkit-animation: zoomIn .3s ease;
    animation: zoomIn .3s ease;
}
.pt-about .service_item h4 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
}

/*  =============================================
    11.3 ABOUT - CALL TO ACTION
    =============================================   */
.call_to_action {
    background-color: #ecf1f4;
    padding: 90px 0px;
}
.call_to_action a.hire_btn {
    background-color: #414141;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}
.call_to_action a.hire_btn:hover {
    background-color: #000;
    color: #fff !important;
}
.call_to_action  p.hire_description {
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 0;
}

/*  =============================================
    11.4 ABOUT - TESTIMONIAL SECTION 
    =============================================   */

.pt-about .testimonial {
	overflow: hidden;
	padding: 100px 0;	
}
.testimonial .testimonial-slider {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,.1);
}
.testimonial .testimonial-slider .swiper-slide {
    overflow: hidden;
}
.testimonial .testimonial-slider .swiper-slide .figure img {
    display: none;
}
.testimonial .testimonial-slider .swiper-slide .figure {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}
.testimonial .testimonial-slider .content {
    height: 100%;
    padding: 20px 15px 20px 0;
    overflow: hidden;
}
.testimonial .testimonial-slider .content h2 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 28px;
    text-transform: uppercase;
}
.testimonial .testimonial-slider .content p {
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 300;

}
.testimonial .testimonial-slider .content .client-meta p {
    margin: 0;
}
.testimonial .testimonial-slider .content .client-meta ul li {
    float: left;
    margin-right: 5px;
}
.testimonial .nav-slider {
    height: 90px;
    background: rgba(0,0,0,.03);
    box-shadow: 0 3px 15px rgba(0,0,0,.09);
}
.testimonial .nav-slider .swiper-slide {
    overflow: hidden;
    background-color: #fff;
    border-bottom: 2px solid transparent;
    border-right: 2px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}
.testimonial .nav-slider .swiper-slide figure {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial .nav-slider .swiper-slide:hover {
    background: rgba(0, 0, 0, 0.03);
}

/*  =============================================
    11.5 ABOUT - PRICING TABLE
    =============================================   */
.pt-about .price_item {
    position: relative;
    overflow: hidden;
}
.pt-about .pricing .col-lg-4.mb-50:last-child{
    margin-bottom: 0;
}
.pt-about .price_item .label {
    position: absolute;
    right: -32px;
    top: 15px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #414141;
    color: #fff;
    padding: 7px 30px 7px 30px;
    font-size: 15px;
}
.pt-about .pricing {
    background-color: #ecf1f4;
    padding: 100px 0;
}
.pt-about .price_item .head-price {
    background-color: #fff;
    padding: 25px 0;
}
.pt-about .price_item .head-price i {
    width: 70px;
    height: 70px;
    color: #1B1B1B;
    font-size: 32px;
    background-color: #fff;
    line-height: 70px;
    border-radius: 50%;
    position: relative;
}
.pt-about .price_item:hover i:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 5px;
    left: calc(50% - 30px);
    border-radius: 100%;
    border: 1px solid #1B1B1B;
    -webkit-animation: zoomIn .3s ease;
    animation: zoomIn .3s ease;
}
.pt-about .price_item .head-price h4 {
    font-size: 22px;
    padding-top: 15px;
    font-weight: 600;
    letter-spacing: normal;
}
.pt-about .price_item .body-price .price-plan {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}
.pt-about .price_item .list-price{
    padding: 40px 0;
}
.pt-about .price_item .list-price ul li {
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}
.pt-about .price_item .list-price ul li:last-child {
    margin-bottom: 0;
}
.pt-about .price_item .list-price ul li.disable {
    text-decoration: line-through !important;
}
.pt-about .price_item .footer-price {
    border-top: 1px solid rgba(255,255,255,0.25);
}
.pt-about .price_item .footer-price a {
    color: #fff;
    display: block;
    padding: 20px 0;
    font-weight: 600;
    font-size: 16px;
}
.pt-about .price_item .footer-price a:hover {
    background-color: #000;
}


/*  =============================================
    12.1 RESUME SECTION STYLE CODES
    =============================================   */

/* Experience */
.experience .container {
    margin-bottom: -50px;
}
.experience .section_title {
    background-color: #ecf1f4;
    padding: 15px;
    margin-bottom: 30px;
}
.experience .section_title h4 {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.experience .section_title h4 span {
    background-color: #414141;
    font-weight: 600;
    padding: 10px;
    border-radius: 50%;
    font-size: 21px;
    margin-right: 10px;
    color: #fff;
}
.exprience_item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 45px;
}
.exprience_item .ex_designation {
    font-weight: 700;
    font-size: 20px;
    color: #1B1B1B;
    line-height: 34px;
}
.exprience_item .title {
    margin-bottom: 15px;
}
.exprience_item .ex_date, 
.exprience_item .ex_company, 
.exprience_item .body p {
    font-size: 16px;
    line-height: 30px;
}
.exprience_item:before {
    content: '\e66c';
    position: absolute;
    font-family: 'fa-icon-stroke';
    left: 0;
    top: 36px;
    font-size: 20px;
    line-height: 20px;
    border-radius: 50%;
    font-weight: 600;
}

/*  =============================================
    12.2 RESUME SECTION SKILL STYLE CODES
    =============================================   */
.pt-resume .skill-item {
    padding: 0 20px;
}
.pt-resume .skill-item .progress-title {
    font-size: 17px;
    margin-bottom: 10px;
}
.pt-resume .skill-item .progress {
    height: 8px;
    background-color: #fff;
    margin-bottom: 40px;
    overflow: visible;
}
.pt-resume .skill-item .progress .progress-bar {
    position: relative;
    background-color: #1B1B1B;
    border-radius: 10px;
}
.pt-resume .skill-item .progress .progress-bar:after {
    content: '';
    position: absolute;
    display: block;
    top: -5px;
    right: 0px;
    padding: 6px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #1B1B1B;
}
.pt-resume .skill-item .progress .progress-value {
    position: absolute;
    top: -30px;
    right: 0;
    color: #1B1B1B;
    font-size: 14px;
    font-weight: 600;
}



/*  =============================================
    12.3 RESUME SECTION FUN-FACTS STYLE CODES
    =============================================   */
.counterup_area {
    padding: 100px 0;
    background-color: #ecf1f4;
}
.counterup_area .single_counter_wrapper .count_icon span {
    font-size: 36px;
}
.counterup_area .single_counter_wrapper{
    height: 100%;
}

.counterup_area .count {
    background-color: #747677;
    padding: 30px 15px;
    border-radius: 3px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.counterup_area .single_counter_wrapper span.count_up {
    display: inline-block;
    font-size: 48px;
    margin: 0 0 10px 0;
    line-height: 48px;
    color: #fff;
    font-weight: 500;
}
.counterup_area .single_counter_wrapper .count p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

/*  =============================================
    12.4 RESUME WORK PROCESS STYLE CODES
    =============================================   */
.working_process {
    padding-bottom: 110px;
}
.working_process .container {
    margin-bottom: -20px;
}
.process-head {
    margin-bottom: 30px;
    background: #747677;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.process-head span.process-heading {
    width: 85px;
    height: 60px;
    border: 1px solid #747677;
    font-size: 31px;
    line-height: 58px;
    background-color: #fff;
    font-weight: 100;
}
.process-head b {
    letter-spacing: 2px;
    color: #ffffff;
    width: 100%;
}
.process-list li {
    position: relative;
    margin: 15px 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: unset;
}
.process-list li:last-child {
    margin-bottom: 0px;
}
.process-list b {
    position: absolute;
    top: -4px;
    background: #ffffff;
    padding: 0px 8px;
    left: 3%;
    z-index: 2;
    font-weight: 500;
    color: #000;
}
.process-list span {
    height: 1px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
    display: block;
    background-color: #333;
}

/*  =============================================
    12.5 RESUME - PARTNAR STYLE CODES
    =============================================   */
.my_clients {
    background-color: #ecf1f4;
    padding: 100px 0;
}
.my_clients .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.client_logo {
    border-radius: 3px;
    overflow: hidden;
    padding: 5px;
}
/*  =============================================
    13. PORTFOLIO SECTION STYLE CODES
    =============================================   */
.portfolio-block {
    overflow: hidden;
}
.pt-portfolio .portfolio-filter {
    text-align: center;
}
.pt-portfolio .portfolio-filter ul {
    margin: 0;
}
.pt-portfolio .portfolio-filter ul li {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    border: 1px solid #000;
    margin: 0 5px 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 .pt-portfolio .portfolio-filter ul li.active {
    color: #fff;
    background-color: #1B1B1B;
}
.pt-portfolio .portfolio-items .item figure {
    position: relative;
    cursor: pointer;
    background-color: #f0f1f5;
    overflow: hidden;
    margin-bottom: 30px;
}
.pt-portfolio .portfolio-items .item figure img {
    width: 100%;
    height: 100%; 
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.pt-portfolio .portfolio-items .item figure:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.pt-portfolio .portfolio-items .item:hover figure:after {
    opacity: 1;
}
.pt-portfolio .portfolio-items .item figure figcaption {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 15px;
    width: 100%;
    color: #1B1B1B;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}
.pt-portfolio .portfolio-items .item figure figcaption h3 {
    font-weight: 300;
    font-size: 22px;
    -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
            transform: translateY(-25px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.pt-portfolio .portfolio-items .item figure:hover figcaption h3 {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
}
.pt-portfolio .portfolio-items .item figure figcaption a {
    border: 1px solid #7d7d7d;
    font-size: 16px;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: #7d7d7d;
    margin: 0px 10px;
    -webkit-transform: translateY(-20px) rotate(45deg);
        -ms-transform: translateY(-20px) rotate(45deg);
            transform: translateY(-20px) rotate(45deg);
    opacity: 0;
    visibility: visible;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.pt-portfolio .portfolio-items .item figure:hover figcaption a{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(20px) rotate(45deg);
        -ms-transform: translateY(20px) rotate(45deg);
            transform: translateY(20px) rotate(45deg);
}
.pt-portfolio .portfolio-items .item figure figcaption a i {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.pt-portfolio .portfolio-items .item figure figcaption a i.fa-link {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
 .pt-portfolio .portfolio-items .item figure:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); 
}
.portfolio_banner  .owl-nav {
    position: absolute;
    bottom: 5px;
    right: 10px;
    margin: 0;
}
.portfolio_banner.owl-theme .owl-nav button {
    width: 35px;
    height: 35px;
    margin: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0;
    margin-left: 15px;
}
.portfolio_banner.owl-theme .owl-nav button span {
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.portfolio_banner.owl-theme .owl-nav button:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
    border-color: rgba(255, 255, 255, 0.5);
}

/*  =============================================
    13.1 PORTFOLIO SINGLE PAGE STYLE CODES
    =============================================   */
.portfolio_single_wrapper .project_info,
.portfolio_single_wrapper .send_message {
    padding-left: 50px;
}
.portfolio_single_wrapper .project_info .title,
.portfolio_single_wrapper .send_message .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    border-bottom: 1px solid #c2c2c2;
    padding: 0 0 7px 0;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    color: #000;
}
.portfolio_single_wrapper .info ul li {
    margin-bottom: 10px;
    line-height: 29px;
}
.portfolio_single_wrapper .info ul li span {
    min-width: 70px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    letter-spacing: normal;
    position: relative;
}
.portfolio_single_wrapper .info ul li p {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-weight: 300;
    font-size: 15px;
    padding-left: 15px;
}
.portfolio_single_wrapper .info ul li p .fa-star {
    color: #F8C600;
}
.portfolio_single_wrapper .info ul li span:after {
    content: ':';
    position: absolute;
    right: 0;
}

/*  =============================================
    14. BLOG SECTION STYLE CODES
    =============================================   */
.pt-blog article.single_blog {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 12px rgba(0,0,0,0.09);
            box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 30px;
}
.pt-blog article.single_blog figure {
    margin: 0;
}
.pt-blog .blog_content {
    padding: 27px 25px;
    letter-spacing: normal;
    overflow: hidden;   
}
.pt-blog .blog_content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 10px;
    transition: 0.3s;
}
.pt-blog .blog_content h4:hover {
    color: #000;
}
.pt-blog .blog_content .post_date {
    line-height: 26px;
    padding-bottom: 16px;
    display: none;
}
.pt-blog .blog_content .post_dsc p {
    margin-bottom: 25px;
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
}
.pt-blog .blog_content .post_meta img {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 50%;
}
.pt-blog .blog_content .post_meta li.float-right {
    text-align: right;
}
.pt-blog .blog_content .post_meta p,
.pt-blog .blog_content .post_meta .cats span {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.pt-blog .blog_content .post_meta  .float-right.cats span {
    line-height: 30px;
    height: 30px
}
.pt-blog .blog_content .post_meta p a+a:before {
    content: ',';
    margin: 0 2px 0 0;
}
.pt-blog .blog_content .post_meta {
    overflow: hidden;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
/*  =============================================
    14.1. BLOG SINGLE & WIDGET STYLE CODES
    =============================================   */
.page.blog_single_wrapper {
    background-color: #f1f1f1;
}
.blog_single_wrapper .post_wrapper {
    padding: 30px;
    background-color: #fff;
}
.blog_single_wrapper .post_wrapper span.post_date, 
.blog_single_wrapper .post_wrapper .blog_content p,
.portfolio_single_wrapper .project_overview p {
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
}
.blog_single_wrapper .post_wrapper .blog_content p,
.portfolio_single_wrapper .project_overview p {
    margin-bottom: 18px;
}
.blog_single_wrapper .post_wrapper .post_title,
.portfolio_single_wrapper .project_overview .title {
    font-weight: 500;
    line-height: 40px;
    padding: 0 0 8px 0;
}
.blog_post_footer {
    padding: 25px 0 0;
    border-top: 1px solid #eaeaea;
    margin-top: 41px;
}

.blog_post_footer span,
.portfolio_single_wrapper .project_overview .share span {
    color: #000000;
    font-weight: 300;
    font-size: 15px;
}
.blog_post_footer .share ul li,
.portfolio_single_wrapper .project_overview .share ul li {
    margin-left: 5px;
    display: inline-block;
}
.blog_post_footer .share ul li a,
.portfolio_single_wrapper .project_overview .share ul li a {
    color: #929292;
    font-weight: 300;
    font-size: 14px;
}
.blog_post_footer .share ul li a:hover,
.portfolio_single_wrapper .project_overview .share ul li a:hover {
    color: #000;
}
.blog_single_wrapper .post_wrapper .post_meta .author img {
    margin-right: 10px;
    border-radius: 50%;
}
.blog_single_wrapper .post_wrapper .post_meta p {
    font-size: 13px;
    font-weight: 300;
}
.blog_single_wrapper .post_wrapper .post_meta li:not(:last-child) {
    margin-right: 35px;
}
.blog_single_wrapper .post_wrapper .post_meta .cats span {
    margin-right: 5px;
}
.blog_single_wrapper .post_wrapper .post_meta .cats a:not(:last-child):before {
    content: ',';
    position: absolute;
    right: -4px;
}
.blog_single_wrapper .post_wrapper .post_meta .cats a {
    position: relative;
    margin-right: 4px;
}
.blog_single_wrapper .post_wrapper .blog_content > ul li,
.portfolio_single_wrapper .project_overview > ul li {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    padding-left: 35px;
    position: relative;
    letter-spacing: normal;
}
.blog_single_wrapper .post_wrapper .blog_content > ul li:before,
.portfolio_single_wrapper .project_overview > ul li:before {
    content: '\e66c';
    font-family: 'fa-icon-stroke';
    position: absolute;
    top: 0;
    left: 10px;
}
.blog_single_wrapper .post_wrapper .blog_content blockquote {
    border-left: 5px solid #eee;
    padding: 10px 20px;
    font-style: italic;
    margin-bottom: 20px;
}
.blog_single_wrapper .post_wrapper .blog_content blockquote p {
    margin-bottom: 0;
}
.blog_single_wrapper .post_wrapper .blog_content blockquote p:before {
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
    opacity: 0.5;
}
.blog_single_wrapper .post_wrapper .blog_content blockquote p:after {
    content: "\f10e";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
    opacity: 0.5;
}
.blog_single_wrapper .single-post .author_info {
    background-color: #fff;
    margin: 30px 0;
    padding: 30px;
}
.blog_single_wrapper .single-post .author_info .author_img {
    display: inline-block;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    overflow: hidden;
    vertical-align: middle;
}
.blog_single_wrapper .single-post .author_info .author_dtls {
    display: inline-block;
    width: calc(100% - 95px);
    padding-left: 20px;
    vertical-align: middle;
}
.blog_single_wrapper .single-post .author_info h4 {
    font-weight: 400;
    line-height: 26px;
    letter-spacing: normal;
    margin-bottom: 10px;
}
.blog_single_wrapper .single-post .author_info p {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: normal;
    font-weight: 300;
}

.blog_single_wrapper .single-post .author_info ul li a {
    font-size: 14px;
    color: #c2c2c2;
    padding: 0 8px;
}
.comment-respond {
    background-color: #fff;
    padding: 30px;
}
.comment-respond .comment_area_title h5 {
    font-weight: normal;
    margin-bottom: 25px;
    font-size: 18px;
}
.comment-respond .comment_area_title h5 #cancel-comment-reply-link {
    float: right;
    font-size: 14px;
    font-weight: 300;
}
.comment-respond .reply_form input, 
.comment-respond .reply_form textarea,
.portfolio_single_wrapper .send_message form input,
.portfolio_single_wrapper .send_message form textarea,
.portfolio_single_wrapper .send_message form button[type=submit] {
    border-radius: 0;
    margin-bottom: 30px;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
}
.comment-respond .reply_form input:focus, 
.comment-respond .reply_form textarea:focus,
.portfolio_single_wrapper .send_message form input:focus,
.portfolio_single_wrapper .send_message form textarea:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: inherit;
}
.comment-respond .reply_form input[type=submit],
.portfolio_single_wrapper .send_message form button[type=submit] {
    border: 1px solid #ced4da;
    background-color: transparent;
    color: #000;
    font-weight: normal;
    cursor: pointer;
}
.comment-respond .reply_form input[type=submit]:hover,
.portfolio_single_wrapper .send_message form button[type=submit]:hover {
    background-color: #000;
    color: #fff;
}
.widget {
    background: #fff;
    padding: 40px 30px;
    margin-bottom: 30px;
}
.widget .blog_search input {
    line-height: 34px;
    width: 100%;
    padding: 8px 20px;
    border-color: #eaeaea;
    font-weight: 300;
    border-radius: 0;
}
.widget .blog_search input:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}
.blog_search .blog_search_btn {
    position: absolute;
    right: 12px;
    top: 55%;
    background: none;
    border: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
}
.widget .widget_title {
    border-bottom: 1px solid #ced4da;
    font-weight: 400;
    letter-spacing: normal;
    padding: 0 0 7px 0;
    margin-bottom: 30px;
}
.widget.recent-post ul li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.widget.recent-post ul li:first-child {
    padding-top: 0;
}
.widget.recent-post ul li .post_thumb {
    display: inline-block;
    vertical-align: middle;
}
.widget.recent-post ul li .post_info {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 74px);
    padding-left: 10px;
}
.widget.recent-post ul li .post_info a.post-title {
    letter-spacing: normal;
    font-size: 16px;
}
.widget.recent-post ul li .post_info p.meta {
    margin: 0;
    letter-spacing: normal;
    font-size: 13px;
    color: #767676;
    font-weight: 300;
    line-height: 26px;
}
.widget.category ul li{
    font-weight: 300;
    font-size: 15px;
    letter-spacing: normal;
    margin: 10px 0;
}
.widget.tags ul li {
    display: inline-block;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: normal;
}
.widget.tags ul li a {
    border: 1px solid #ced4da;
    padding: 5px 10px;
    font-size: 13px;
    display: block;
    margin: 0px 5px 10px 0;
}

/*  =============================================
    15. CONTACT ME STYLE CODES
    =============================================   */

.contact-form {
    position: relative;
}
.contact-form input,
.contact-form textarea {
    font-size: 15px;
    padding: 0 20px;
    line-height: 50px;
    background: transparent;
    border: 1px solid #eaeaea;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #eaeaea;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 1);
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contact-form button.submit {
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.contact-form button.submit:hover {
    background-color: #000;
}
.pt-contact .contact-info {
    text-align: center;
    margin-top: 100px;
}
.pt-contact .contact-info .info i {
    font-size: 30px;
    color: #1B1B1B;
}
.pt-contact .contact-info .info p {
    font-size: 15px;
    line-height: 25px;
    padding: 30px 0 0px;
}
.pt-contact .contact-info .info span {
    color: #495057;
}
/* Contact form validation */
.contact-valid .error-messages {
    margin-top: 15px;
}
.contact-valid label.error {
    display: block;
    color: #ff0000;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    margin: 0;
}
.contact-valid #loader {
    display: none;
    margin-top: 30px;
}
.contact-valid #loader i {
    display: inline-block;
    font-size: 23px;
    color: #fff;
    -webkit-animation: rotating linear 2s infinite;
    animation: rotating linear 2s infinite;
}
.contact-valid #success,
.contact-valid #error {
    display: none;
    width: 100%;
    color: #1B1B1B;
    padding: 10px 10px;
    margin-bottom: 5px;
    font-size: 14px;
    text-align: center;
}
.contact-valid #success i,
.contact-valid #error i {
    padding-top: 5px;
    margin-right: 10px;
    margin-left: 5px;
}
.contact-valid #success i {
    color: #25ca7f;
}
.contact-valid #error i {
    color: #ca1d1d;
}
.contact_info li {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}
.contact_info li p:not(:last-child) {
    padding-bottom: 15px;
}
.contact_info li p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}
.contact_info li p.info_title {
    font-weight: 500;
    font-size: 18px;
    color: #222;
}
.contact_info ul li:not(:first-child) {
    padding-top: 20px;
}

/*  =============================================
    16. GOOGLE MAP STYLE CODES
    =============================================   */
.pt-contact .google-map {
    height: 450px;
}
.gmap_canvas iframe {width: 100%; border: none;}
.mapouter {
    position:relative;
    text-align:right;
    height:450px; 
    margin-top: 100px;
}
.gmap_canvas {overflow:hidden;background:none!important;}


/*  =============================================
    17. RESPONSIVE STYLE CODES
    =============================================   */


@media (min-width:1500px){
    .container{
        max-width: 1440px;
    }
}

         
   
@media screen and (min-width: 1024px) {
    .demo_2 #about:target .pt-about .simplebar-wrapper, 
    .demo_2 #resume:target .pt-resume .simplebar-wrapper, 
    .demo_2 #portfolio:target .pt-portfolio .simplebar-wrapper, 
    .demo_2 #blog:target .pt-blog .simplebar-wrapper, 
    .demo_2 #contact:target .pt-contact .simplebar-wrapper, 
    .demo_2 .blog_single_wrapper .simplebar-wrapper, 
    .demo_2 .portfolio_single_wrapper .simplebar-wrapper {
        width: 100%;
    }
    .demo_2 .pt-home .banner {
        left: 20% !important;
    }
}
@media screen and (max-width: 1199px) {
    .page .header-page {
        margin-bottom: 60px;
    }
    .pt-blog .blog_content {
        padding: 25px 15px;
    }
}
  
@media only screen and (min-width: 992px) and (max-width: 1024px)  {
    .demo2_widget {
        width: 30% !important;
    }
    .demo_2 .page,
    .demo_2 .pt-home .banner {
        width: 70% !important;
        left: 30% !important;
    }
    .demo_2.right .page,
    .demo_2.right .pt-home .banner {
        left: unset !important;
        right: 30% !important;
    }
    .demo_2 #about:target .pt-about .simplebar-wrapper, 
    .demo_2 #resume:target .pt-resume .simplebar-wrapper, 
    .demo_2 #portfolio:target .pt-portfolio .simplebar-wrapper, 
    .demo_2 #blog:target .pt-blog .simplebar-wrapper, 
    .demo_2 #contact:target .pt-contact .simplebar-wrapper, 
    .demo_2 .blog_single_wrapper .simplebar-wrapper, 
    .demo_2 .portfolio_single_wrapper .simplebar-wrapper {
        width: 100%;
    }
    .pt-about .service_item {
        padding: 30px 15px;
    }
    .working_process .progress-wrapp,
    .demo_2 .pt-blog .col-lg-4, 
    .my_services .col-lg-4,
    .demo_2 .pt-portfolio .portfolio-items .item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .demo_2 .pt-about .info .col-lg-4,
    .demo_2 .pt-about .info .col-lg-8,
    .pt-contact .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .demo_2 .pt-about .info_list, 
    .demo_2 .pt-about .about-desc {
        padding: 0 30px 30px 30px;
    }
    .demo_2 .pt-about .about-desc h3,
    .demo_2 .pt-contact .text-lg-left {
        text-align: center !important;
    }
    .pt-about .download_resume .download_cv {
        margin-left: -15px;
    }
    .demo_2 .pt-about .info .photo {
        text-align: center !important;
        margin-bottom: 60px;
    }
    .demo_2 .pt-contact .contact_info {
        text-align: center;
        margin-top: 50px;
    }
    .pt-blog .blog_content {
        padding: 25px 20px;
    }
    .working_process .progress-wrapp {
        margin-bottom: 30px !important;
    }
    .working_process {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 991px) {
    .page .header-page {
        margin-bottom: 50px;
    }
    .pt-home .banner {
        overflow-y: scroll;
    }
    .pt-home .banner .slider-img {
        padding-left: 11%;
        padding-right: 50px;
    }
    .pt-home .banner .slider-text {
        margin-top: 160px;
        padding-right: 50px;
    }
    .pt-home .banner .slider-button {
        margin-top: 25px !important;
    }
    .pt-home .banner .slider-button a.btn-st {
        background-color: #414141;
        color: #fff;
    }
    .pt-about .download_resume {
        padding: 0;
    }
    .pt-about .download_resume .download_cv {
        margin-left: -15px;
    }
    .pt-about .info_list, .pt-about .about-desc {
        padding: 0 0 30px 0;
    }
    .calendar-big-holder {
        margin-left: 0;
        margin-right: 0;
    }
    .calendar-today:before,
    .calendar-wrapp:after {
    	display: none;
    }
    .pricing .price_item {
        max-width: 320px;
        margin: 0 auto;
    }
    .pt-about .info .photo {
        margin-bottom: 50px;
    }
    .counterup_area .single_counter_wrapper {
        margin-bottom: 30px;
    }
    .demo_2 .pt-home .banner .col-md-6{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .demo_2 .pt-home .banner .col-md-6.d-none,
    .hidden-sm {
        display: none !important;
    }
    .width-sm {
        width: 50%;
        float: left;
    }
    .pt-contact .contact-info .info {
        margin-bottom: 40px;
    }
    .page .mob-box-mt {
        margin-top: 100px !important;
    }
    .portfolio_single_wrapper .project_info, 
    .portfolio_single_wrapper .send_message {
        padding-left: 0;
    }
    .counterup_area .counter_wrapper .col-md-6 {
        margin-bottom: 30px;
    }
    .contact_info {
        text-align: center;
        margin-bottom: 30px;
    }
    .portfolio_single_wrapper .project_info {
        margin-top: 60px;
    }
    .testimonial .testimonial-slider .content {
        padding: 20px 15px;
    }
    .portfolio-items {
        margin-top: 40px;
    }
    .counter_wrapper {
        margin-bottom: -20px;
    }
    .working_process {
        padding-bottom: 90px;
    }
}
@media (max-width: 991px) and (min-width: 769px) {
    .pt-home .banner .col-md-6.d-none {
        display: none !important;
    }
    .pt-home .banner .col-md-6{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .demo2_widget {
        width: 35% !important;
    }
    .demo_2 .page,
    .demo_2 .pt-home .banner {
        width: 65% !important;
        left: 35% !important;
    }
    .demo_2 #about:target .pt-about .simplebar-wrapper, 
    .demo_2 #resume:target .pt-resume .simplebar-wrapper, 
    .demo_2 #portfolio:target .pt-portfolio .simplebar-wrapper, 
    .demo_2 #blog:target .pt-blog .simplebar-wrapper, 
    .demo_2 #contact:target .pt-contact .simplebar-wrapper, 
    .demo_2 .blog_single_wrapper .simplebar-wrapper, 
    .demo_2 .portfolio_single_wrapper .simplebar-wrapper {
        width: 100%;
    }
    .page.pt-about .call_to_action .col-md-8,
    .page.pt-about .call_to_action .col-md-4,
    .page.pt-about .my_services .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .demo_2.right .page {
        width: 65% !important;
        left: unset !important;
        right: 35% !important;
    }
}
@media screen and (max-width: 768px) {
    .page {
        width: 100%;
    }
    .demo_2 .page {
        width: 100% !important;
        left: 0 !important;
    }
    .pt-about .simplebar-content .about-me .header-page,
    .pt-resume .simplebar-content > .header-page,
    .pt-portfolio .simplebar-content > .header-page,
    .pt-blog .simplebar-content .container > .header-page,
    .pt-contact .simplebar-content > .header-page {
        margin-top: 150px;
    }
    #about:target .pt-about,
    #resume:target .pt-resume,
    #portfolio:target .pt-portfolio,
    #blog:target .pt-blog,
    #contact:target .pt-contact {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .pt-home .banner {
        left: 50% !important;
        -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
                transform: translateX(-50%) translateY(-50%);
        top: 0;
    }
    .pt-home .banner {
        top: 50%;
    }
    .header-main {
        width: 150px;
        background-color: rgba(14, 15, 16, 1);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .header-mobile {
        display: block;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .header-main ul li {
        font-size: 25px;
    }
    .header-main .logo{
        padding: 20px 0;
    }
    .header-main+.pt-home .banner {
        left: 0 !important;
        width: 100%
    }
    .header-main.on+.pt-home .banner {
        left: 10% !important;
        width: 90%;
    }
    .pt-home .banner .slider-text {
        padding-left: 10%;
        padding-right: 10%;
        text-align: center;
    }
    .page .pricing .header-page {
        margin-top: 0 !important;
    }
    .pt-about .info_list, 
    .pt-about .about-desc {
        padding: 0 0 30px 0;
    }
    .pt-about .download_resume {
        padding: 0;
    }
    .pt-about .info .download_cv {
        margin-left: -17px;
    }
    .my_services .col-sm-6 {
        max-width: 100%;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
    .my_clients .header-page.mb-70 {
        margin-top: 0 !important;
    }
    .pt-blog .masonary_blog {
        margin-bottom: 70px;
    }
    .mapouter {
        margin-top: 75px;
    }
    .skills .header-page {
        margin-top: 80px;
    }
    .counterup_area {
        padding: 80px 0;
        margin-top: 80px;
        margin-bottom: 0;
    }
    .availablity {
        padding-bottom: 70px;
    }
    .working_process .header-page,
    .availablity .header-page,
    .my_services .header-page {
        margin-top: 80px;
    }
    .working_process {
        padding-bottom: 70px;
    }
    .my_services {
        margin-bottom: 60px;
    }
    .my_clients {
        padding: 80px 0;
    }
    .call_to_action  {
        margin-top: 0;
    }
    .pt-about .testimonial,
    .pt-about .pricing {
        padding-top: 80px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 575px) {
    .header-main.on+.pt-home .banner {
        left: 0% !important;
        width: 100%;
    }
    .pt-home .banner .slider-text {
        padding-left: 0;
        padding-right: 0;
    }
    .pt-home .social {
        width: auto;
        -webkit-transform: inherit;
            -ms-transform: inherit;
                transform: inherit;
        top: inherit;
        bottom: 20px;
        height: auto;
    }
    .pt-home .social ul {
        margin: 0px;
    }
    .pt-home .social ul li i {
        height: inherit;
        line-height: inherit;
    }
    .pt-about .info .photo img {
        display: block;
        margin: 0 auto 30px;
    }
    .blog_single_wrapper .single-post .author_info .author_img {
        display: block;
        margin: 0 auto 25px;
    }
    .blog_single_wrapper .single-post .author_info .author_dtls {
        display: block;
        width: 100%;
        padding-left: 0;
        vertical-align: middle;
        text-align: center;
    }
    .blog_single_wrapper .post_wrapper .post_meta li:not(:last-child) {
        margin-right: 20px;
    }

}

@media screen and (max-width: 576px) {
    .page .container {
        padding: 0 15px;
    }
    .pt-home .social,
    .pt-home .lang {
        display: none;
    }
    .pricing .header-page {
        margin-top: 0 !important;
    }
    .pt-about .pricing{
        padding: 100px 0 110px;
    }
    .pt-about .download_resume .pl-0{
        padding-right: 0;
    }
    .pt-about .download_resume .col-sm-6.col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .pricing .row .col-sm-12.mb-50:last-child {
        margin-bottom: 0 !important;
    }
    .pt-blog .blog_content {
        padding: 20px 15px;
    }
    .pt-blog .blog_content .post_meta li {
        float: inherit !important;
    }
    .pt-blog .blog_content .post_meta li.cats span {
        padding: 0 12px;
    }
    .pt-contact .google-map {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .pt-about .simplebar-content > .header-page, 
    .pt-resume .simplebar-content > .header-page, 
    .pt-portfolio .simplebar-content > .header-page, 
    .pt-blog .simplebar-content .container > .header-page, 
    .pt-contact .simplebar-content > .header-page {
        margin-top: 140px;
    }
    .pt-about .info_list ul li, 
    .pt-about .info .about-desc p {
        width: 100%;
    }
    .pt-portfolio .portfolio-filter ul li {
        font-size: 13px;
        padding: 5px 15px;
        margin: 4px;
    }
    .pt-portfolio .portfolio-items {
        margin-bottom: 40px;
    }
    .pt-blog .masonary_blog {
        margin-bottom: 60px;
    }
    .mapouter {
        margin-top: 65px;
    }
    .pt-home .banner h1 {
        font-size: 32px;
    }
    .slider-text h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 430px) {
    .pt-home .banner .slider-img {
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (max-width: 380px) {
    .pt-about .download_resume .col-sm-6.col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .download_resume .info-icon {
        margin-bottom: 15px;
    }
    .pt-about .info .download_cv {
        margin-left: 0;
    }
    .pt-about .service_item {
        padding: 30px;
    }
    .pt-about .service_item h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .calendar-wrapp .ui-datepicker-calendar thead {
        margin: 25px 0;
    }
    .calendar-wrapp td {
        margin: 5px 0;
    }
    .call_to_action {
        padding: 80px 0;
    }
    .pt-about .testimonial-item img {
        width: 70px;
        height: 70px;
        margin-right: 10px;
    }
    .pt-about .testimonial-item .author_dsc small {
        font-size: 13px;
        line-height: unset;
    }
    .pt-about .pricing {
        padding: 100px 0 25px;
    }
    .pt-portfolio .portfolio-items .item {
        margin-bottom: 0; 
    }
    .contact-form form .mb-30 {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 350px) {
    .header-page h2, .header-box h3 {
        font-size: 30px;
    }
}