/*
Framework CSS
*/

/* ---------------------------------
    Imports 
   --------------------------------- */
@import url('blog.css?v1');

/* ---------------------------------
    General 
   --------------------------------- */
html,body{
    margin: 0;
    padding: 0;
}
body{
    color: #444;
    font-size: 15px;
    overflow-x: hidden;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a{
    color: #33a1bc;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
    color: #218da8;
    cursor: pointer;
}

p{
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img{
    max-width: 100%;
}

.page-loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: rgb(255, 255, 255); 
    display: flex;
    justify-content: center; 
    align-items: center;
}

.loader-image {
    background: url('../images/panglobal-logo-loader.jpg') no-repeat center; 
    width: 100px; 
    height: 100px; 
    background-size: contain; 
    animation: pulseLoader 1s infinite; 
}

/* Define the pulse animation */
@keyframes pulseLoader {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); 
    }
    100% {
        transform: scale(1);
    }
}


/* ---------------------------------
    Header
   --------------------------------- */
.header-logo{
    display: block;
}
.header-logo img{
    max-width: 300px;
    max-height: 40px;
}

/* Navbar Serach */
.nav-search{
    float: right;
    position: relative;
    padding-left: 15px;
}

.nav-search-field{
    position: absolute;
    display: none;
    width: 260px;
    right: 0;
    top: 156%;
    padding: 8px;
    border-radius: 0;
    background-color: rgba(29,47,52,0.8);
    z-index: 999;
}
.nav-search-field .input-group .form-control:focus{
    box-shadow: none;
    outline: 0 none;
    border-color: #ccc;
}
.nav-search-field .input-group .input-group-btn .btn-default{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.nav-search-field .input-group .input-group-btn .btn-default:hover{
    background-color: #33a1bc;
    border-color: #33a1bc;
    color: #fff;
    outline: 0;
}
.nav-search-field .input-group .input-group-btn .btn-default:focus{
    outline: 0;
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

/* ---------------------------------
    Page Title Bar
   --------------------------------- */
.page-title-bar{
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 0px;
}
.page-title-bar > .container{
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 80px;
}
.page-title-bar img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-title-bar h1, .page-title-bar h2{
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    z-index: 99;
    line-height: 1.3;
    font-weight: 400;
}
.page-title-bar h1{
    font-size: 40px;
}
.page-title-bar h2{
    font-size: 35px;
}
.title-bar-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
}

@media (min-width: 992px){
    
    .page-title-bar{
        height: 300px;
        margin-top: 0;
    }
    .page-title-bar > .container{
        padding-top: 80px;
    }
    .page-title-bar h1{
        font-size: 45px;
        margin-top: 40px;
    }
    .page-title-bar h2{
        font-size: 35px;
        margin-top: 40px;
    }
}

/* ---------------------------------
    Page Layout
   --------------------------------- */
.page-container{
    padding-top: 0px;
    padding-bottom: 0px;
}

/* ---------------------------------
    404 Page
   --------------------------------- */
.page-404{
    text-align: center;
}
.page-404 .error-404{
    font-size: 100px;
}

/* --------------------------------------
    Contact form 7
   -------------------------------------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select{
    background-color: rgba(255,255,255,0.9);
    width: 100%;
    padding: 8px 10px;
    border-radius: 0;
    max-width: 100%;
    font-size: 14px;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #33a1bc;
    color: #777;
    position: relative;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus{
    border: 1px solid #33a1bc;
    outline-color: #33a1bc;
}

.wpcf7 textarea{
    height: 140px;
    max-height: 140px;
    margin-bottom: 0 !important;
    margin: 0;
}
.wpcf7 .row, .wpcf7 .field-row{
    margin-bottom: 10px;
}
div.wpcf7-response-output{
    margin: 0 0 2em;
    color: #444;
    font-size: 14px;
}
.wpcf7 span.wpcf7-not-valid-tip{
    font-size: 13px;
    margin-top: 5px;
}

.wpcf7 input[type="submit"]{
    background-color: #33a1bc;
    color: #fff;
    padding: 10px 35px 8px;
    display: inline-block;
    font-family: inherit;
    text-decoration: none;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease 0s;
    -webkit-appearance: none;
}
.wpcf7 input[type="submit"]:focus{
    outline: 0;
}
.wpcf7 input[type="submit"]:hover{
    color: #fff;
    background-color: #218da8;
}
@media(max-width: 991px){
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="date"],
    .wpcf7 input[type="number"],
    .wpcf7 textarea,
    .wpcf7 select{
        -webkit-appearance: none;
        -moz-appearance: none;
    }
}

/* ---------------------------------
    Footer CTA Banner
   --------------------------------- */
.footer-cta-banner{
    position: relative;
}
.footer-cta-banner img{
    position: absolute;
    width: 100%;
    height: 100%;
   /* object-position: 50% 0; */
    object-fit: cover;
}
.footer-cta-banner > .container{
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}
.footer-cta-banner .cta-title{
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}
.footer-cta-banner .cta-caller-area .vc-theme-button,
.footer-cta-banner .cta-caller-area .cta-or{
    display: inline-block;
    margin-bottom: 10px;
}
.footer-cta-banner .cta-caller-area .cta-or{
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
}
@media(max-width: 767px){
    .footer-cta-banner .cta-title{ font-size: 25px;}
}

/* ---------------------------------
    Footer 
   --------------------------------- */

/* 
Footer Contact Strip
*/
.footer-contact-strip{
    background-color: #33a1bc;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer-contact-strip .strip-text{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}
.footer-contact-strip .vc-theme-button a{
    border: 1px solid #fff;
}
.footer-contact-strip .vc-theme-button a:hover{
    background-color: #fff;
    color: #33a1bc;
}

/*
Footer Widget Area
*/
#footer-widget-area{
    background-color: #181818;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 14px;
}
.footer-logo{
    max-width: 250px;
    max-height: 80px;
    margin-bottom: 15px;
}
.footer-widget-box .widget-title{
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-widget-box .widget-para{
    text-align: justify;
}
.footer-widget-box .widget-para-link{
    color: #33a1bc;
}

.footer-widget-box a{
    color: #fff;
}
.footer-widget-box a:hover{
    color: #218da8;
}

.footer-widget-box .widget-nav-list,
.footer-widget-box .widget-post-list,
.footer-widget-box .widget-contact-list,
.footer-widget-box .widget-social-list{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-widget-box .widget-nav-list li,
.footer-widget-box .widget-post-list li{
    margin-bottom: 10px;
}
.footer-widget-box .widget-nav-list li:last-child,
.footer-widget-box .widget-post-list li:last-child{
    margin-bottom: 0;
}

/* Footer Widget Nav List */
.footer-widget-box .widget-nav-list li a:before{
    content: '\f105';
    font-family: 'FontAwesome';
    padding-right: 7px;
}
.footer-widget-box .widget-nav-list li.active a{
    color: #33a1bc;
}

/* Footer Widget Post List */
.footer-widget-box .widget-post-list li{
   padding-bottom: 10px;
   border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.footer-widget-box .widget-post-list li:last-child{
   padding-bottom: 0;
   border-bottom: none;
}
.footer-widget-box .widget-post-list li .post-date{
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    font-size: 13px;
}

/* Footer Widget Contact List */
.footer-widget-box .widget-contact-list li{
    display: flex;
    margin-bottom: 20px;
}
.footer-widget-box .widget-contact-list li .list-icon{
    width: 40px;
}
.footer-widget-box .widget-contact-list li .list-icon .fa{
    font-size: 18px;
}
.footer-widget-box .widget-contact-list li .list-content p{
    margin-bottom: 0;
}

/* Footer Widget Social List */
.footer-widget-box .widget-social-list{
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-widget-box .widget-social-list li{
    display: inline-block;
}
.footer-widget-box .widget-social-list li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 17px;
    margin-bottom: 5px;
    background-color: transparent;
}
.footer-widget-box .widget-social-list li a:hover{
    border-color: #218da8;
}

/*
Footer Bottom
*/
#footer-bottom{
    background-color: #222222;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
}
#footer-bottom .developer-note a{
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}
#footer-bottom .developer-note img{
    width: 25px;
    height: 25px;
    opacity: 0.8;
    margin-right: 7px;
}

/*
Scroll Top
*/
#scroll-top{
    display: none;
    width: 35px;
    height: 35px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    cursor: default;
    z-index: 999;
}
#scroll-top img{
    width: 100%;
    height: 100%;
    opacity: 0.8;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#scroll-top:hover img{
    opacity: 1;
}


@media(min-width: 768px){
    
    .footer-contact-strip > .container > .row{
        display: flex;
        align-items: center;
    }
    .footer-contact-strip .strip-text{
        margin-bottom: 0;
        font-size: 20px;
    } 
    
    #footer-bottom .copyright-note{
        margin-bottom: 0;
    }
    #footer-bottom > .container > .row{
        display: flex;
        align-items: center;
    }
    #scroll-top{
        width: 40px;
        height: 40px;
        bottom: 90px;
        right: 6%;
    }
}

@media(max-width: 991px){
    .footer-widget-box{
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px dashed rgba(255,255,255,0.5);
    }
}
@media(max-width: 767px){
    #footer-widget-area > .container > .row > .col-xs-12:last-child .footer-widget-box{
        border-bottom: none; 
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* ---------------------------------
    Custom Pagination 
   --------------------------------- */
.pagination-wrapper span,
.pagination-wrapper a {
    display: inline-block;
    padding: 2px 10px;
}
.pagination-wrapper a.page-numbers,
.pagination-wrapper .current{
    background-color: #ebebeb;
    color: #13a1c5;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 5px;
    font-size: 14px;
    margin-right: 3px;
}
.pagination-wrapper a.prev,
.pagination-wrapper a.next{
    width: auto;
}
.pagination-wrapper a.page-numbers:hover {
    background-color: #13a1c5;
    color: #fff;
}
.pagination-wrapper span.page-num {
    margin-right: 10px;
    padding: 0 15px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    background-color: #ebebeb;
    border-radius: 50px;
    font-size: 14px;
}
.pagination-wrapper span.dots {
    padding: 0;
    color: gainsboro;
}
.pagination-wrapper .current {
    background-color: #13a1c5 !important;
    color: #fff !important;;
}

/* ---------------------------------
    Helpers 
   --------------------------------- */
.section-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.txt-center{
    text-align: center;
}

/* Owl Carousel Pagination dots */
.owl-dots .owl-dot{
    display:inline-block;
    zoom:1;
    *display:inline;
}
.owl-dots .owl-dot span{
    width:13px;
    height:13px;
    margin:4px;
    background:transparent;
    border: 2px solid #33a1bc;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    border-radius:100%;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span{
    background:#33a1bc;
    border-color: #33a1bc;
}

/* Owl Carousel Navigation Text */
.owl-nav > div{
    position: absolute;
    top: 45%;
    transform: translate(-50%);
    background-color: rgba(255,255,255,0.8);
    padding: 6px 7px;
}
.owl-nav > div.owl-prev{
    left: 13px;
}
.owl-nav > div.owl-next{
    right: -13px;
}


.cta-working-hours {
    font-weight: 600;
    font-size: 20px;
    color: #2c2c2c;
    margin-top: 5px;
    text-shadow: rgb(44, 44, 44);
}

.cta-company-no{
    font-weight: 400;
    font-size: 16px;
    color: #2c2c2c;
    margin-top: 5px;
    text-shadow: rgb(44, 44, 44);
}