@charset "utf-8";

/*
Theme Name: carrby
Theme URI: http://www.wpthemebooster.com/
Author: wpthemebooster
Author URI: http://themeforest.net/user/wpthemebooster
Description: carrby is WordPress theme for agency.
Version: 1.1
License: Themeforest License
License URI: https://themeforest.net/licenses
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Text Domain: carrby

This theme, like WordPress, is licensed under the https://themeforest.net/licenses.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#01  Fonts and Other Styles Import
#02  Theme Reset Style
#03  Slider Style
#04  About Section
#05  Services Section
#06  Portfolio Section
#07  Testimonial Section
#08  Subscribe Section
#09  Blog Section and Blog Page
#10  Sidebar Style
#11  Comment and Contact Form
#12  Footer CSS
#13  Others
-----------------------------------------------------------------*/



/*---------- Reset ---------*/
*{
  margin:0;
  text-decoration:none
}
html{
    height: 100%;
    width: 100%;
    overflow-x: hidden; 
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 28px;
    overflow-x: hidden;
    color: #000000;
    webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a,i,.btn,p, ul, li,:before,:after, span {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
a:hover,a:focus,i:hover,p:hover, ul:hover, li:hover, :hover:before, :hover:after, span:hover {
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media (min-width: 1200px){
  .container {
      max-width: 1170px;
  }
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{
    font-family: 'Poppins', sans-serif;
}
p{
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
}
.clearfix{
  clear: both;
}
.divider{
  margin: 30px 0px;
  display: inline-block;
}
section{
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
}
section.inner-page{
    padding-top: 85px;
}
table {
    margin-bottom: 10px;
    border: 1px solid #eee;
}
table td, table th {
    padding: 3px 10px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}
img{
    max-width: 100%;
}
.section-title{
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2{
    font-size: 45px;
    font-weight: 300;
    line-height: 54px;
    letter-spacing: 0px;
    margin-bottom: 25px;
}
.section-title p{
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about .section-title{
    text-align: left;
    margin-bottom: 20px;
    padding-top: 0px;
}
.about .section-title h2{
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .section-title h2 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    .section-title p {
        font-size: 12px;
        line-height: 24px;
    }
}
::-webkit-input-placeholder { 
    color: #000000;
}
::-moz-placeholder { 
    color: #000000;
}
:-ms-input-placeholder { 
    color: #000000;
}
:-moz-placeholder { 
    color: #000000;
}
:placeholder { 
    color: #000000;
}

/*---------- Button Section ------------*/
.button{
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    padding: 12px 42px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.color_button{
    color: #fff;
}
.color_button:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 100%;
    opacity: 1;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.color_button:hover::before {
    right: 0;
}
.color_button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    opacity: 1;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.color_button:hover::after {
    left: 100%;
}
.color_button:hover{
    color: #fff;
}


/*---------- Slider Section ------------*/
#slider{
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    background-position: center;
    background-size: cover;
}
.section-shape img{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
}
.slider{
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    background-size: cover;

}
.localvideo {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}
.typed-strings{
    display: none;
}
.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
.slide-content{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide-content{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}
.slide-content .sub_heading{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 18px;
    line-height: 28px;
    text-transform: uppercase;
}
.slide-content .heading{
    font-size: 100px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 0;
}
.scroll_btn a{
    position: absolute;
    left: 48.3%;
    top: 75%;
    z-index: 999;
    width: 45px;
    height: 70px;
    text-align: center;
    font-size: 24px;
    line-height: 70px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: anim2 ease-in-out 2s infinite alternate;
    -moz-animation: anim2 ease-in-out 2s infinite alternate;
}
@-webkit-keyframes anim2{
   from {top: 75%;   -webkit-transform: scale(0.8) rotate(0deg)   }
   to   {top: 77%; -webkit-transform: scale(1) rotate(0deg) }
}
@-moz-keyframes anim2{
   from {top: 75%;   -webkit-transform: scale(0.8) rotate(0deg)   }
   to   {top: 77%; -webkit-transform: scale(1) rotate(0deg) }
}
.owl-theme.slider_carousel .owl-item.active h2{
    -webkit-animation: fadeInDown 0.8s both 0.8s;
    animation: fadeInDown 0.8s both 0.8s;
}
.owl-theme.slider_carousel .owl-item.active h6{
    -webkit-animation: fadeInLeft 1s both 1s;
    animation: fadeInLeft 1s both 1s;
}
.owl-theme.slider_carousel .owl-dots, 
.owl-theme.slider_carousel .owl-nav.disabled + .owl-dots,
.owl-theme.slider_carousel .owl-dots{
    margin-top: -50px;
    width: 400px;
    left: 50%;
    position: absolute;
    text-align: center;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.owl-theme.slider_carousel .owl-dots .owl-dot span{
    display: none;
}
.owl-theme.slider_carousel .owl-dots {
    counter-reset: dots;
}
.owl-theme.slider_carousel .owl-dot:before {
    counter-increment:dots;
    content: "0"counter(dots);
}
.owl-theme.slider_carousel .owl-dot{
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    outline: none;
    background: rgba(67, 75, 157, 0.3);
    color: #fff;
    margin: 0px 10px;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
}
.owl-theme.slider_carousel:hover .owl-dot{
    opacity: 1;
    visibility: visible;
}
.owl-theme.slider_carousel .owl-dot:hover,
.owl-theme.slider_carousel .owl-dot.active{
    background: rgba(67, 75, 157, 0.9);
    color: #fff;
    text-decoration: line-through;
}
.owl-theme.slider_carousel .owl-nav{
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-theme.slider_carousel .owl-nav button.owl-prev{
    float: left;
}
.owl-theme.slider_carousel .owl-nav button.owl-next{
    float: right;
}
.owl-theme.slider_carousel .owl-nav button.owl-prev, 
.owl-theme.slider_carousel .owl-nav button.owl-next{
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    width: 40px;
    height: 60px;
    padding: 0px;
    font-size: 30px;
    line-height: 60px;
    color: #fff;
    border-radius: 0px;
}
.owl-theme.slider_carousel .owl-nav [class*='owl-']:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-decoration: none;
    outline: none;
}
.owl-theme.slider_carousel .owl-nav [class*='owl-']:focus {
    outline: none;
}

@media screen and (max-width: 767px) {
    .slide-content .sub_heading{
        letter-spacing: 10px;
    }
    .slide-content .heading{
        font-size: 60px;
        line-height: 80px;
    }
}
@media screen and (max-width: 580px) {
    .slide-content .sub_heading{
        letter-spacing: 5px;
    }
    .slide-content .heading{
        font-size: 40px;
        line-height: 60px;
    }
}

/*---------- Breadcrumb Section ------------*/
.page-header{
    position: relative;
    padding: 90px 0px 90px 0px;
    margin: 0px;
    background: url('../carrby/images/breadcrumb-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-header:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.page-header-content{
    position: relative;
    z-index: 2;
}
.page-header-content h1{
    font-size: 46px;
    line-height: 60px;
    margin-top: 0px;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #fff;
}
.breadcrumb {
    padding: 0px 0px;
    margin-bottom: 0;
    list-style: none;
    display: block;
    background: transparent;
    color: #fff;
}
.breadcrumb a{
    color: #fff;
}
.breadcrumb li{
    position: relative;
    display: inline-block;
    font-size: 16px;
}
.breadcrumb li:before{
    content: "/";
    padding: 0px 5px;
}
.breadcrumb li:first-child:before{
    display: none;
}
.breadcrumb li a:hover,
.breadcrumb li.active{
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .page-header {
        padding: 90px 0px 70px 0px;
    }
    .page-header-content .heading {
        font-size: 40px;
        line-height: 36px;
        margin-bottom: 15px;
    }
}
/*---------- About ---------*/
.about .box-left{
    padding-right: 40px;
}
.about_img_box{
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.about_img_box:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.about_img_box2{
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.about_img_box2 img{
    width: 100%;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.about_img_box img{
    width: 100%;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.about_txt_box{
    margin-bottom: 45px;
}
.about_txt_box:last-child{
    margin-bottom: 0px;
}
.about_txt_box i{
    font-size: 48px;
}
.about_txt_box:hover i{
    color: #ec42cc;
}
.about_txt_box h4{
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.about .box-right .about_txt_box{
    margin-top: 40px;
}
.about .box-right .about_txt_box p{
    margin-bottom: 45px;
}
.about .box-right .about_txt_box p:last-child{
    margin-bottom: 0px;
}
@media screen and (max-width: 991px) {
    .about .box-left{
        padding-right: 0px;
    }
    .about_txt_box{
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .about_txt_box p{
        font-size: 15px;
    }
    .about .box-right .about_txt_box{
        margin-top: 20px;
    }
    .about_img_box {
        margin-top: 0px;
        margin-left: 0;
        margin-bottom: 30px;
    }
    .about_video {
        margin-bottom: 90px;
        margin-top: 90px;
    }
}
@media screen and (max-width: 767px){
    .about_img_box2{
        margin-bottom: 40px;
    }
}

/*---------- Services ---------*/
.pt-0{
    padding-top: 0px;
}
.pt-10{
    padding-top: 10px;
}

.servicebox {
    background: #fff;
    padding: 50px 35px;
    border-radius: 10px;
    transition: all 0.5s ease;
}
.servicebox .srv_img{
    position: relative;
    margin-bottom: 55px;
}
.servicebox .srv_img .secondary_img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.servicebox.active .srv_img .primary_img,
.servicebox:hover .srv_img .primary_img{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.servicebox.active .srv_img .secondary_img,
.servicebox:hover .srv_img .secondary_img{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.servicebox .srv_desc h4{
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 15px;
}
.servicebox .srv_desc p{
    margin-bottom: 0px;
}
@media screen and (max-width: 991px){
    .services{
        padding-bottom: 80px;
    }
    .servicebox{
        margin-bottom: 30px;
    }
    .servicebox .srv_desc h5{
        margin-bottom: 30px;
    }
    .servicebox .srv_desc h4 {
        font-size: 28px;
        line-height: 36px;
    }
    .servicebox .srv_desc p{
        font-size: 16px;
    }

}

/*--------- Portfolio Section ---------*/
.works{
    padding-bottom: 70px;
    overflow: hidden;
}
ul#filters {
    padding: 0;
    list-style: none;
    display: block;
    color: #8d8d8d;
    margin: 0px auto 20px;
}

ul#filters li{
    display: inline-block;
    padding: 0px 20px;
}
.filter {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  cursor: pointer;
}
.portfolio {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  margin-top: 15px;
  margin-bottom: 15px;
  display: none;
  float: left;
}
.portfolio .portfolio-img {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.portfolio .portfolio-img a {
    display: block;
}
.portfolio img {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -ms-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease;
}
.portfolio:hover img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.portfolio .portfolio-info{
    padding: 20px 0px 25px 0px;
}
.portfolio .portfolio-info .label-text h4{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    letter-spacing: 0px;
    font-weight: 400;
}
@media screen and (max-width: 991px){
    ul#filters li{
        padding: 0px 10px;
    }
}

/*------ Portfolio Details -----*/
.portfolio-details-img{
    margin-bottom: 80px;
}
.portfolio-details{
    display: flex;
}
.portfolio-details .full_content{
    max-width: 770px;
    padding-right: 30px;
}
.portfolio-details .full_content h6{
    text-transform: uppercase;
    line-height: 24px;
}
.portfolio-details .full_content h2{
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.5px;
    margin-top: 30px;
    margin-bottom: 60px;
}
.portfolio-details .full_content p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}
.portfolio-details .full_content p:last-child{
    margin-bottom: 0px;
}
.portfolio-details .portfolio-content-img{
    margin-left: auto;
    padding-top: 80px;
}
.portfolio-details .portfolio-content-img img{
    border-radius: 5px;
}
.project_desc{
    padding-bottom: 0px;
}
.project_desc_inner{
    padding: 0px 75px;
}
.project_desc .desc_txt{
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
}
.project_desc_bottom{
    background: #f9fbfd;
    padding: 65px 0px 270px 0px;
    margin-top: 80px;
}
.project_info_grid{
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.project_info_grid .info_grid{
    display: inline-block;
    margin-bottom: 20px;
    text-align: left;
}
.project_info_grid .info_grid h5{
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.7px;
}
.project_info_grid .info_grid p{
    font-weight: 600;
}
@media screen and (max-width: 1199px){
    .project_info_grid .info_grid{
        padding: 0px 50px;
    }
}
@media screen and (max-width: 991px){
    .portfolio-details{
        display: block;
    }
    .portfolio-details .full_content h2 {
        font-size: 30px;
        line-height: 36px;
        letter-spacing: -0.5px;
        margin-top: 25px;
        margin-bottom: 45px;
    }
    .portfolio-details .full_content p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .project_desc .desc_txt{
        font-size: 15px;
    }
    .project_info_grid .info_grid{
        padding: 0px 20px;
    }    
}
@media screen and (max-width: 767px){
    .portfolio-details {
        display: block;
    }
    .project_desc .section-title{
        text-align: left;
    }
    .project_desc_inner{
        padding: 0px 0px;
    }
    .portfolio-details .full_content {
        max-width: 100%;
        padding-right: 0;
    }
    .portfolio-details .portfolio-content-img {
        margin-left: auto;
        padding-top: 50px;
    }
    .project_info_grid{
        display: block;
    }
    .project_info_grid .info_grid{
        padding: 15px 0px;
        margin: 10px 8px;
        border: 1px solid #eee;
        width: 200px;
        max-width: 100%;
        text-align: center;
    }
}
/*------ Service Details -----*/
.service-details-img{
    margin-bottom: 80px;
}
.service-details .full_content h6{
    text-transform: uppercase;
    line-height: 24px;
}
.service-details .full_content h2{
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.5px;
    margin-top: 30px;
    margin-bottom: 60px;
}
.service-details .full_content p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
    letter-spacing: 0;
}
.service-details .full_content p:last-child{
    margin-bottom: 0px;
}
.service-details .portfolio-content-img{
    margin-left: auto;
    padding-top: 80px;
}

/*-------- Service Details ---------*/
.service_post-inner{
    margin-top: 100px;
}
.service_post-list{
    position: relative;
}
.service_post-list:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #f5f5f5;
    margin-left: 5px;
}
.service_post-inner .project_title{
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -1px;
    margin-bottom: 50px;
}
.service_post{
    position: relative;
    padding-left: 30px;
    margin-bottom: 75px;
}
.service_post:last-child{
    margin-bottom: 0px;
}
.service_post:before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    transform: translateY(-50%);
}
.service_post-img img{
    width: 100%;
    -moz-box-shadow: 3px 3px 12px rgba(153, 153, 153, 0.2);
    -webkit-box-shadow: 3px 3px 12px rgba(153, 153, 153, 0.2);
    box-shadow: 3px 3px 12px rgba(153, 153, 153, 0.2);
}
.service_post-header h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}
.service_post-text{
    font-size: 16px;
    line-height: 26px;
}
@media screen and (max-width: 991px){
    section.inner-page {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .service_post-inner{
        margin-top: 80px;
    }
    .service_post-img{
        margin-bottom: 40px;
    }
    .service-details .full_content p{
        font-size: 15px;
    }
    .service_post-text {
        font-size: 15px;
        line-height: 24px;
    }
}

/*---------- Video Banner ---------*/
.video-banner{
    position: relative;
    background: url("../images/video-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 200px;
}
.video-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(48, 9, 150, 0.7);
    width: 100%;
    height: 100%;
}
.video-banner>div{
    position: relative;
}
.video-content{
    
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 5px;
    text-align: center;
    color: #fff;
}
.video_btn{
    display: inline-block;
    margin: 0px 15px;
}
.video_btn a{
    position: relative;
    width: 65px;
    height: 65px;
    display: inline-block;
    text-align: center;
    line-height: 65px;
    font-size: 20px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.video_btn a:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video_btn a i{
    position: relative;
    z-index: 2;
    margin-left: 5px;
}
@media screen and (max-width: 991px){
    .video_btn {
        display: block;
    }
    .video_btn a{
        margin: 15px auto;
    }
}
/*------ Testimonial section -----*/
.testimonials1{
    padding-top: 0px;
    margin-top: -240px;
}
.testibox{
    background: #fff;
    padding: 75px 100px 60px 100px;
    margin: 80px 20px 20px 20px;
    text-align:center;
    -moz-box-shadow: 1px 1px 20px rgba(0, 52, 129, 0.1);
    -webkit-box-shadow: 1px 1px 20px rgba(0, 52, 129, 0.1);
    box-shadow: 1px 1px 20px rgba(0, 52, 129, 0.1);
}
.testibox .testi-img{
    margin: 0 auto;
    width: 140px;
    height: auto;
    border-radius: 100%;
    overflow: hidden;
    border: 8px solid #e1e5e9;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.testibox h4{
    
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-top: 50px;
}
.testibox h6{
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #a2a2a2;
    margin-bottom: 0px;
}
.testibox p{
    font-size: 18px;
    line-height: 28px;
    color: #13191f;
    font-style: italic;
}
.testibox ul{
    padding: 0px;
}
.testibox li{
    display: inline-block;
    font-size: 22px;
}
.testimonials2 .testibox{
    padding: 75px 50px 60px 50px;
}
.testimonials2 .testibox:before{
    content: "";
    position: absolute;
    top: 53%;
    left: 50%;
    background: url('../images/testi-icon.png');
    width: 130px;
    height: 100px;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.testimonials2 .testibox p{
    line-height: 30px;
}
.testimonials2 .testibox h6{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0px;
}
@media screen and (max-width: 991px){
    .testibox{
        margin-bottom: 30px;
    }
    .testibox p {
        font-size: 16px;
        line-height: 26px;
        color: #13191f;
        font-style: italic;
    }
    .testibox h4{
        margin-top: 30px;
    }
}
@media screen and (max-width: 600px){
    .testibox{ 
        padding: 75px 40px 60px 40px;
    }
    
}

/*---------- Team Section ---------*/
.team{
    background: #f9fbfd;
    padding-top: 65px;
    padding-bottom: 65px;
}
.team .section-title {
    text-align: right;
    margin-bottom: 0px;
}
.team .section-title h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
}
.team_member{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e4;
    display: flex;
}
.team_member img{
    width: 130px;
    height: 130px;
    margin-right: 25px;
}
.team_member_inner h4{
    margin-bottom: 5px;
}
.team_member_inner h6{
    color: #7d7d7d;
}
.team_member_inner p{
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
}
@media screen and (max-width: 991px){
    .team .row{
        flex-direction: column-reverse;
    }
    .team .section-title {
        text-align: center;
        margin-bottom: 65px;
    }
    .team_member_inner p {
        font-size: 15px;
        line-height: 26px;
        margin-top: 15px;
    }
}

/*---------- Blog Page---------*/
.blog{
    padding-bottom: 0px;
}
.blog_post .post_content{
    position: relative;
    padding: 0px 0px 20px 0px;
}
.blog_post .post_img{
    position: relative;
    margin: 0px 0px 25px 0px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
p.img_caption{
    text-align: center;
    font-weight: 500;
    padding-top: 10px;
    line-height: 20px;
}
.blog_post .post_img a{
    display: block;
}
.blog_post .post_img img{
    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -ms-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease;
}

.blog_post .post_gallery{
    position: relative;
    overflow: hidden;
    margin: 40px 0px 20px 0px;
}
.blog_post .post_video,
.blog_post .post_audio{
    position: relative;
    overflow: hidden;
    height: 400px;
    margin: 40px 0px 20px 0px;
}
.blog_post .post_video p{
    max-width: 100%;
    height: 100%;
}
.blog_post .post_video iframe,
.blog_post .post_video object,
.blog_post .post_video embed,
.blog_post .post_audio iframe,
.blog_post .post_audio object{
    width: 100%;
    height: 100%;
}
.blog_post .post_cat{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.blog_post .post_cat a{
    font-style: italic;
}
.inner-page .blog_post{
    margin-bottom: 10px;
}
.inner-page .blog_post .post_header{
    margin-bottom: 30px;
}
.blog_post .post_header h2.post_title{
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 0px;
}
.blog_post .post_header h2.post_title,
.blog_post .post_header h2.post_title a{
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0px;
    word-break: break-all;
}
.post_footer{
    margin-top: 30px;
    padding: 15px 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    clear: both;

}
.blog_post .post_meta{
    display: flex;
    margin-bottom: 0px;
    padding: 0px;
}
.blog_post .post_meta li{
    list-style-type: none;
    font-weight: 500;
    color: #333;
}
.blog_post .post_meta li span{
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
}
.blog_post .post_meta li span.author img{
    width: 32px;
    height: 32px;
    border-radius: 100%;
    margin-right: 10px;
}
.blog_post .post_meta li span:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
}
.blog_post .post_meta li:last-child span{
    margin-right: 0px;
    padding-right: 0px;
}
.blog_post .post_meta li:last-child span:after{
    display: none;
}
.post_intro{
    margin-top: 15px;
    color: #716c80;
}
.blog_post .read_more{
    margin-top: 0px;
    margin-left: auto;
}
.blog_post .read_more a {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-right:20px;
}
.blog_post .post_share{
    margin-left: auto;
    display: flex;
}
.blog_post .share_list{
    display: flex;
    margin-bottom: 0px;
    padding: 0px;
}
.blog_post .share_list li{
    list-style-type: none;
    display: inline-block;
}
.blog_post .share_list li a{
    position: relative;
    padding-left: 20px;
    line-height: 30px;
    display: block;
    text-align: center;
    background: transparent;
    border-radius: 100%;
    overflow: hidden;
}
.pagination-div{
    margin-top: 30px;
}
.pagination{
    margin-bottom: 0px;
    list-style-type: none;
}
.blog_grid .pagination{
    justify-content: center;
}
.pagination li a{
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    border: 1px solid #f4f4f4;
    margin-left: -1px;
    display: block;
    font-weight: 500;
    text-align: center;
}
.pagination li a:hover,
.pagination li a.current{
    color: #fff;
}

@media screen and (max-width: 991px){
    .blog_post{
        margin-bottom: 30px;
    }
    .blog_post .post_header h2.post_title, 
    .blog_post .post_header h2.post_title a{
        font-size: 22px;
        line-height: 24px;
    }
    .post_footer{
        display: block;
        margin-top: 30px;
    }
    .blog_post .post_meta{
        margin-top: 15px;
    }
    .blog_post .post_share{
        margin-top: 10px;
    }
    .blog_post .share_list li a{
        padding-left: 0px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 500px){
    .blog_post .post_meta{
        display: block;
        margin-bottom: 0px;
    }
    .blog_post .post_meta li{
        margin-bottom: 15px;
    }
    .blog_post .post_meta li span:after{
        display: none;
    }
}
/*-------- Related Post ---------*/
.related_posts .related_post{
    margin-bottom: 50px;
    -moz-box-shadow: 0px 0px 15px rgba(229, 232, 236, .05);
    -webkit-box-shadow: 0px 0px 15px rgba(229, 232, 236, .05);
    box-shadow: 0px 0px 15px rgba(229, 232, 236, .05);
}
.related_posts .related_post:last-child{
    margin-bottom: 0px;
}
.related_posts .post_img img{
    width: 100%;
}
.related_posts .post_content{
    padding: 50px 0px 50px 50px;
}
.related_posts .post_cat,
.related_posts .post_cat a{
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 3px;
    display: inline-block;
}
.related_posts .post_cat{
    padding: 2px 10px;
    position: absolute;
    margin-top: 30px;
    margin-left: 35px;
    margin-bottom: 0px;
}
.related_posts .post_header h2.post_title,
.related_posts .post_header h2.post_title a{
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.5px;
}
.related_posts .post_text{
    margin-top: 20px;
    margin-bottom: 35px;
}
.related_posts .post_meta{
    margin: 0px;
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    padding-bottom: 25px;
}
.related_posts .post_meta li{
    position: relative;
    list-style-type: none;
    font-weight: 400;
    display: inline-block;
}
.related_posts .post_meta li span{
    margin-right: 20px;
    color: #666;
}
.related_posts .post_meta li span.author{
    margin-right: 70px;
    color: #333;
}
.related_posts .post_meta li span.date:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 45px;
    height: 1px;
}
.related_posts .post_meta li span.date{
    margin-left: 50px;
}
.related_posts .post_meta li:last-child{
    margin-left: auto;
}


/*-------- Blog Sidebar ------------*/
.sidebar{
    position: sticky;
    position: -webkit-sticky;
    top: 30px;
    float: left;
    width: 100%;
}
.sidebar .widget{
    float: left;
    width: 100%;
    margin-bottom: 70px;
}
.sidebar .widget:last-child{
    margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
    .sidebar{
        margin-top: 50px;
    }
}

h4.widget_title{
    margin:0px;
    padding:0px;
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 35px;
    margin-top: 0px;
    padding-bottom: 25px;
    color:#000;

}
h4.widget_title:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    z-index: -1;
}
.sidebar .widget h4.widget_title{
    letter-spacing: 0px;
}
.sidebar .widget ul{
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.sidebar .widget ul ul{
    padding-left: 10px;
}
.sidebar .widget ul li{
    float: left;
    width: 100%;
    
    list-style-type: none;
}
.sidebar .widget ul li:last-child{
    margin-bottom: 0px;
}
.sidebar .widget select{
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    outline: none;
    box-shadow: none;
    background: #f4f4f4;
    border: 1px solid #f2f2f2;
}

/*-----------------------*/
.sidebar_search_form{
    position: relative;
}
.sidebar_search_form .form-control{
    height: 50px;
    border: 1px solid #f4f4f4;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    color: #000;
}
.sidebar_search_form .form-control:focus{
    outline: none;
    box-shadow: none;
}
.sidebar_search_form .form-control-submit{
    position: absolute;
    right: 0;
    width: auto;
    top: 0;
    border: 0;
    background: transparent;
    line-height: 40px;
    padding: 5px 15px;
    cursor: pointer;
}
.post-password-form input[type="password"]{
    color: #666;
    background: #fff;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: block;
    padding: 0.7em;
    width: 100%;
}

.post-password-form input[type="submit"]{
    background-color: #ff8a73;
    border: 0;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1;
    padding: 1em 2em;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;

}
label {
    color: #333;
    display: block;
    font-weight: 800;
    margin-bottom: 0.5em;
}
.full_content h1,h2,h3,h4,h5,h6{
        margin: 0 0 0.75em;
    padding: 1.5em 0 0;
}
h2.post_title{
    margin:0px;
    padding:0px;
}
b, strong{font-weight: bold;}
.cat_title{text-align: left;}
/*-----------------------*/
.recent_posts_list li:last-child{
    margin-bottom: 0px;
}
.recent_posts_list li h6{
    font-size: 16px;
    line-height: 20px;
}
.recent_posts_list li img{
    float: left;
    width: 100%;
    max-width: 100px;
    margin-right: 20px;
}
.recent_posts_list li{
    margin-bottom: 35px;
}
.recent_posts_list .post_content{
    display: table;
}
.recent_posts_list li p.date{
    color: #414857;
    letter-spacing: 0.5px;
    margin-top: 0px;
}
.recent_posts_list li .read_more a{
    font-size: 10px;
    line-height: 26px;
    text-transform: uppercase;
    text-decoration: underline;
}
/*-----------------------*/
.widget_archive ul li a{
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    padding: 10px 0px 10px 0px;
    line-height: 24px;
    display: block;
    color: #414857;
}
.widget_archive ul li:first-child a{
    padding-top: 0px;
}
.widget_archive ul li a span{
    float: right;
}

/*-----------------------*/
.widget_categories ul li a{
    display: block;
    border-bottom: 1px solid #f4f4f4;
    position: relative;
    line-height: 24px;
    padding: 10px 0px 10px 0px;
    color: #414857;
}

.widget_categories ul li a span{
    float: right;
}
/*-----------------------*/
.sidebar_top_news{
    margin-bottom: 35px;
}
.sidebar_top_news img{
    max-width: 100%;
    margin-bottom: 20px;
}
.sidebar_top_news h4{
    font-size: 18px;
    line-height: 26px;
}
/*-----------------------*/
.sidebar .widget .sidebar_tags ul li, .tagcloud li{
    display: inline-block;
    width: auto;
}
.sidebar .widget .sidebar_tags ul.tag_list li a, .tagcloud a{
    
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 5px 20px;
    background: #f4f4f4;
    line-height: 30px;
    letter-spacing: 1px;
}


/*-------- Blog Details ------------*/
.blog_author{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    margin-left: 90px;
}
.blog_author img{
    width: 130px;
    height: 130px;
    border-radius: 100%;
    margin-right: 30px;
}

.blog_author_inner p{
    color: #666;
    margin-top: 15px;
}

.like_post{
    margin: 0px -10px;
}
.like_post img {
    max-width: 100%;
    margin-bottom: 20px;
}
.like_post h4 {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0px 10px;
}
@media screen and (max-width: 767px){
    .blog_author{
        display: block;
    }
}
/*-------- Comments ------------*/
.comment-sec ul.comment-area{
    list-style-type: none;
    padding-left: 0px;
}
.comment-sec ul ul{
    padding-left: 30px;
}
.comment-area li.blog-comment-user {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 25px;
    margin-bottom: 25px;
    padding-left: 0;
}
.comment-area li:last-child{
    margin-bottom: 0px;
    border-bottom: 0px;
    padding-bottom: 0px;
}
.comment-area li p{
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 26px;
}
.comment-area .children{
    list-style-type: none;
    border-top: 1px solid #f4f4f4;
    border-bottom: 0px;
    padding-top: 25px;
    padding-bottom: 0px;
    margin-top: 25px;
    margin-bottom: 0px;
}
.comment-area .commenter{
    float: left;
    height: 130px;
    margin-right: 20px;
}
.comment-area .commenter img{
    border-radius: 100%;
    height: 65px;
    width: 65px;
}
h4.comntr_title{
    display: block;
    font-size: 16px;
    margin-top: 0px;
}
.comment-area .comment-block h6{
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}
.comment-area .comment-block h6 span{
    position: relative;
}
.comment-area .comment-block .reply{
    float: right;
    font-size: 14px;
    font-weight: 400;
}
.comment-area .comment-block .reply a{
    line-height: 20px;
}

.comments-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
.comments-pagination a, .comments-pagination span {
    min-width: 50px;
    height: 40px;
    line-height: 40px;
    padding: 0px 10px;
    background: #fff;
    border: 1px solid #f4f4f4;
    margin-left: -1px;
    display: block;
    font-weight: 500;
    text-align: center;
}
.comments-pagination a:hover, .comments-pagination span.current {
    color: #fff;
}

.inner_posts{
    padding: 50px 35px;
    -moz-box-shadow: 0px 0px 20px rgba(153, 153, 153, 0.15);
    -webkit-box-shadow: 0px 0px 20px rgba(153, 153, 153, 0.15);
    box-shadow: 0px 0px 20px rgba(153, 153, 153, 0.15);
}
.inner_posts .inner-post{
    float: left;
    width: 100%;
}
.inner_posts .inner-post img{
    float: left;
    width: 150px;
    margin-right: 25px;
}
.inner_posts .inner-post.next_post img{
    float: right;
    margin-right: 0px;
    margin-left: 25px;
}
.inner_posts .inner-post.next_post .post_block{
    text-align: right;
}
.inner_posts .inner-post h4{
    font-size: 16px;
    line-height: 26px;
}
.inner_posts .inner-post a.link_to{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 2px;
}
@media screen and (max-width: 767px){
    .blog_author{
        text-align: center;
    }
    .blog_author img{
        float: none;
        margin-right: 0px;
        margin-bottom: 25px;
    }
    .like_posts{
        text-align: center;
    }
    .like_posts .like_post{
        margin: 20px -10px;
    }
    .inner_posts .inner-post.prev_post{
        margin-bottom: 25px;
    }
    .comment-area{
        margin-left: 25px;
    }
    .comment-area .commenter{
        float: none;
        height: 80px;
        margin-right: 20px;
    }
    .comment-sec ul ul {
        padding-left: 10px;
    }
    .comment-area .comment-block h6 span:before{
        width: 20px;
    }
}

/*---- Contact Section----*/
.newsletter_form ::-webkit-input-placeholder { 
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.3;
}
.newsletter_form ::-moz-placeholder { 
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
}
.newsletter_form :-ms-input-placeholder { 
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
}
.newsletter_form :-moz-placeholder { 
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
}
.newsletter_form :placeholder { 
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.3;
}
.newsletter_form h3 {
    color: #fff;
    margin-bottom: 35px;
    margin-top: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}
.newsletter_form .form-group{
    position: relative;
    margin-bottom: 0px;
}
.newsletter_form .form-control {
    color: #fff;
    display: inline-block;
    height: 40px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    padding: 0;
}
.newsletter_form .form-control:last-child {
    margin-right: 0;
}
.submit{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 12px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
}
.top-social li  {
    display: inline-block;
}
.top-social li a {
    color: #fff;
    margin-right: 40px;
}
.top-social li:last-child a {
    margin-right: 0;
}
.contact-info h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
}
.contact-info .contact-info-details {
    color: #fff;
    margin-bottom: 15px;
}
.contact-info .contact-info-details:last-child{
    margin-bottom: 0px;
}
.contact-info-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
}
/*================*/
.contact-form .form-control {
    display: inline-block;
    height: 56px;
    background: transparent;
    color: #666;
    border: 1px solid #f4f4f4;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}
.contact-form .form-control:nth-child(2){
    margin-right: 0px;
}
.contact-form .form-control:focus {
    border-color: #f4f4f4;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.contact-form textarea.form-control {
    width: 100%;
    height: 120px;
    margin: 0px 0px 0px 0px;
    border-radius: 0px;
}
.contact-form .btn{
    margin-top: 25px;
    display: inline-block;
    padding: 10px 70px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 2px;
    border-radius: 0px;
    outline: none;
    -moz-box-shadow: 0px 0px 15px rgba(229, 232, 236, 0.1);
    -webkit-box-shadow: 0px 0px 15px rgba(229, 232, 236, 0.1);
    box-shadow: 0px 0px 15px rgba(229, 232, 236, 0.1);
}
.contact-form .btn:focus{
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*-------- Footer Section ------------*/
.footer {
    padding-top: 165px;
}
.footer .footer-top{
    padding-bottom: 100px;
}
.footer .footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0px;
}
.footer .copyright {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6c6c82;
}
.footer .copyright p{
    margin-bottom: 0px;
}
.footer-social ul {
    margin-bottom: 0px;
}
.footer-social li  {
    display: inline-block;
}
.footer-social li a {
    font-size: 14px;
    color: #fff;
    opacity: 0.2;
    padding: 0px 6px;
}
.footer-social li a:hover{
    opacity: 0.8;
}
.footer-social li:last-child a {
    padding-right: 0;
}
@media screen and (max-width: 767px){
    .footer{
        padding-top: 100px;
    }
    .footer [class*="col-"]{
        margin-bottom: 50px;
    }
    .footer [class*="col-"]:last-child{
        margin-bottom: 0px;
    }
}

/*-------- 404 ------*/
.not-found h1{
    font-size: 100px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 30px;
    text-align: center;
}
.not-found h5{
    font-size: 30px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 10px;
}
.not-found p{
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}
.not-found a.btn{
    outline: none;
    box-shadow: none;
}
.not-found a.btn:hover,.not-found a.btn:focus,.not-found .btn-outline-primary:not(:disabled):not(.disabled):active{
    color: #fff;
    box-shadow: none;
}


/* ----- Last Added CSS ----- */
.sidebar .widget ul li a{
    
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.widget table#wp-calendar{
    width: 100%;
}
.recent-posts-widget-with-thumbnails ul li{
    line-height: 20px;
}
.recent-posts-widget-with-thumbnails ul li a .rpwwt-post-title{
    
    font-size: 16px;
}
.recent-posts-widget-with-thumbnails ul li .rpwwt-post-date{
    margin: 12px 0px 0px 0px;
    color: #8994a0;
}
.widget_meta ul li, .widget_recent_comments ul li, .widget_rss ul li{
    display: block;
    border-bottom: 1px solid #f4f4f4;
    padding: 13px 0px 13px 0px;
}
.widget_meta ul li:first-child, .widget_recent_comments ul li:first-child, .widget_rss ul li:first-child{
    padding-top: 0px;
}
.widget_pages ul li a,
.widget_nav_menu ul li a{
    
    display: block;
    border-bottom: 1px solid #f4f4f4;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 0px 13px 0px;
    color: #111a22;
}
.sidebar .widget.widget_categories ul li,
.sidebar .widget_pages ul li,
.sidebar .widget_nav_menu ul li{
    border-bottom: 0px;
    padding: 0px;
}
.sidebar .widget.widget_calendar caption{
    padding-bottom: 0px;
    line-height: 16px;
    font-weight: 500;
}
.widget_text img{
    width: 100%;
    height: auto;
}
.wp-caption {
    max-width: 100%;
    margin-bottom: 30px;
}
.wp-caption img {
    width: 100%;
}
/* Text meant only for screen readers. */
.page-links{
    clear: both;
}
.page-links span {
    font-weight: 500;
    padding-left: 10px;
    display: inline-block;
}
.page-links span.page-links-title{
    color: #000;
    padding-left: 0px;
}
.page-links a span{
    color: #000;
}
.page-links span.screen-reader-text{
    padding-left: 0px;
}

.entry-footer{
    clear: both;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
    height: auto;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    margin-top:10px;
}
.gallery-caption{
    text-align: center;
}
.bypostauthor{
    color: inherit;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

.comment-form-cookies-consent{
    padding: 15px 15px;
}
.comment-form-cookies-consent input{
    margin-right: 10px;
}

button:focus{
    outline: none;
}
.form-submit{margin-left: 15px;}
blockquote {
    position: relative;
    font-style: italic;
    text-align: left;
    font-size: 16px;
    color: #000;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 40px;
    padding: 15px 0px 15px 15px;
    border-left: 2px solid #f4f4f4;
}
blockquote p{
    font-weight: bold;
}
.comment-area .comment-block {
    display: flow-root;
}
.widget_recent_entries span{display: block;}
.widget_recent_entries ul li {
    overflow: hidden;
}
.post.pingback p a {
    padding: 0px 15px;
}

.post.pingback p {
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.logged-in-as{
    margin-left: 17px;
}
.no-results.not-found{
    padding:0px;
    margin:0px;
}