/*
--------------------------------------------------
Table Of Contents
--------------------------------------------------
- Preloader
- Home Page
    - Logo Style
    - Navigation Style
    - Hero Area
    - Footer Area
- About Page
- Resume Page
- Contact Page
- Extra Activity Page
- Work Page 
- Blog Page
- Single Page
- 404 Page
---------------------------------------------------
*/


/*
----------------------------------------------------
- Preloader
---------------------------------------------------- */

.preloader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000000;
    text-align: center;
    display: table;
}
.preloader-inside {
    position: relative;
    height: auto;
    width: 200px;
    margin-top: 300px;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
    color: #fff;
}
.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.spinner img {
    position: absolute;
    top: 22px;
    left: 0;
    padding: 5px;
}
.spinner:after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.spinner:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.spinner-1:after {
    position: absolute;
    top: 0px;
    left: 0px;
    border: 4px solid transparent;
    border-top-color: #587ddc;
    border-bottom-color: #587ddc;
    animation: spinny 2s linear infinite;
}
@keyframes spinny {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(30deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/*
====================================================
- Home Page
====================================================
*/

a:hover,
a:active,
a:focus,
.pagination li.active a {
    color: #587ddc !important;
    text-decoration: none;
    outline: 0;
}
/*
----------------------------------
- Logo Style
---------------------------------- 
*/

.logo-area {
    width: 100%;
    height: auto;
}
.logo-area a {
    display: inline-block;
    margin-right: 30px;
}
.logo-area span {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

/*
----------------------------------
- Navigation Style
---------------------------------- 
*/

.home-navigation,
.page-navigation {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 80px;
    z-index: 100;
    padding: 20px;
}
.page-navigation {
    background: #587ddc;
    padding-left: 40px;
}
.menu-nav-warp {
    top: 14px;
}
.menu-nav-header {
    background: #587ddc;
}
.cd-stretchy-nav ul span::after {
    content: "";
    display: inline;
    color: #0a9581;
    background-color: #0a9581;
    padding: 0 0 0 3px;
    margin-left: 10px;
    margin-right: -8px;
}
.cd-stretchy-nav ul li {
    position: relative;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.cd-stretchy-nav ul li ul {
    padding: 0;
    text-align: right;
}
.cd-stretchy-nav ul li ul a {
    background: rgba(0, 0, 0, 0.9);
}
.cd-stretchy-nav ul li ul li {
    display: none;
    width: 100%;
}
.cd-stretchy-nav ul li .nav-dropdown {
    position: absolute;
    width: 150px;
    height: auto;
    top: -7px;
    left: -180px;
    overflow: hidden;
    transform: translateX(110%);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -webkit-border-radius: 10px 0px 0px 10px;
    -moz-border-radius: 10px 0px 0px 10px;
    -ms-border-radius: 10px 0px 0px 10px;
    -o-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
    z-index: -1;
}
.cd-stretchy-nav ul li:hover .nav-dropdown {
    display: block;
    transform: translateX(0px);
}
.cd-stretchy-nav ul li:hover .nav-dropdown li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.nav-dropdown li {
    color: #fff;
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
}
nav a {
    text-transform: capitalize;
}

/*
----------------------------------
- Hero Area Style
---------------------------------- 
*/

.hero-area {
    width: 100%;
    height: 100vh;
}
.hero-left {
    position: absolute;
    width: 50%;
    height: auto;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 2;
}
.hero-left-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-left-inner:before {
    content: "";
    position: absolute;
    background-image: url('../images/wall.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 117%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.hero-left-inner:after {
    content: "";
    position: absolute;
    background: #587ddc;
    background-size: cover;
    width: 117%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 0.7;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.hero-right {
    position: absolute;
    background-image: url('../images/hero-right-bg.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 55%;
    height: auto;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 0;
}
.hero-right-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-right-inner:after {
    content: "";
    position: absolute;
    background: #3d4a5f;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    opacity: 0.9;
}
.hero-center {
    width: 100%;
    height: 100vh;
    position: relative;
    display: table;
    z-index: 10;
    text-align: center;
}
.hero-center-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.hero-pattern {
    border: 10px solid #587ddc;
    border-left: 0px;
    width: 290px;
    height: 500px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.hero-pattern:before {
    content: "";
    position: absolute;
    background: #587ddc;
    width: 10px;
    height: 30%;
    top: 0px;
    left: 0px;
    z-index: 2;
}
.hero-pattern:after {
    content: "";
    position: absolute;
    background: #587ddc;
    width: 10px;
    height: 27%;
    bottom: 0px;
    left: 0px;
    z-index: 2;
}
.hero-text-slider,
.hero-author,
.hero-social {
    position: absolute;
}
.hero-text-slider {
    padding: 20px;
    width: 550px;
    height: auto !important;
    background: rgba(88, 125, 220, 0.7);
    top: 160px;
    left: -420px;
}
.hero-text-slider .owl-theme .owl-controls {
    position: absolute;
    bottom: -60px;
    right: 0px;
}
.hero-text-slider .item .lead {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: -10px;
    text-transform: uppercase;
}
.hero-text-slider .item .sublead {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.hero-text-slider .item p {
    margin-bottom: 0px;
}
.hero-author {
    width: 230px;
    height: 280px;
    top: 100px;
    right: -140px;
    text-align: center;
    box-shadow: 1px 2px 10px 1px #111;
}
.hero-author img {
    max-width: 100%;
    max-height: 100%;
}
.hero-social {
    bottom: -20px;
    right: -8px;
    width: 100%;
    text-align: center;
}
.hero-author-mobile {
    margin: 0 auto;
    text-align: center;
    display: table;
    width: 100%;
    height: 100vh;
}
.hero-author-mobile-inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: auto;
}
.hero-author-mobile img {
    width: 200px;
    height: auto;
    box-shadow: 1px 2px 10px 1px #111;
    margin: auto;
}
.hero-author-mobile h1 {
    margin-bottom: 0px;
}

/*
----------------------------------
- Footer Area Style
---------------------------------- 
*/

.footer-area {
    width: 100%;
    height: auto;
    padding: 20px;
    background: #2F3942;
    text-align: center;
}
.footer-area span {
    color: #fff;
    text-transform: uppercase;
}

/*
====================================================
- About Page
====================================================
*/

.about-area {
    width: 100%;
    height: auto;
    padding: 25px 0px !important;
}
.about-left {
    width: 100%;
    height: auto;
    background: #587ddc;
    display: table;
    position: relative;
    padding: 20px;
}
.about-inside {
    width: 100%;
    height: auto;
    border: 1px solid #46535E;
    padding: 15px;
}
.about-left .auth-img {
    width: 200px;
    /*height: 200px;*/
    margin: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /*border-radius: 50%;*/
    margin-bottom: 20px;
    text-align: center;
}
.about-left .auth-img img {
    width: 100%;
    height: 100%;
}
.about-left .auth-intro {
    width: 100%;
    height: auto;
    text-align: center;
}
.about-left .auth-intro h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 500;
}
.about-left .auth-intro span {
    display: inline-block;
    background: #46535E;
    color: #fff;
    padding: 15px 30px;
}
.about-right {
    height: auto;
    display: table;
    position: relative;
    margin-top: -5px;
    padding: 0px;
}
.about-right-inside {
    padding-left: 20px;
    padding-top: 15px;
}
.skill-bar {
    width: 100%;
    height: auto;
}
.skill-bar p {
    margin-bottom: 12px;
}
.progress {
    height: 15px;
    position: static;
    background: #cccccc;
}
.skill-bar div.progress:last-child {
    margin-bottom: 0;
}

/*
====================================================
- Resume Page
====================================================
*/

.resume-area {}
.resume-area .education-area,
.resume-area .experience-area {
    width: 100%;
    background: #587ddc;
    padding: 20px 0px;
}

.links-area{
    width: 100%;
    background: #587ddc;
    padding: 20px 0px;
    margin-bottom: 25px;
    height: auto;
}

.links-area .item{
    font-family: 'Roboto' sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: uppercase;
    padding: 15px 15px 15px 15px;
}
.resume-area .education-area .lead-title,
.resume-area .experience-area .lead-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    background: #46535E;
    text-transform: uppercase;
    padding: 15px 50px 15px 15px;
}
.education-text-slider .experience-text-slider{
    padding: 15px 30px;
}
.education-text-slider .item .item-title,
.education-text-slider .item .item-subtitle,
.experience-text-slider .item .item-title,
.experience-text-slider .item .item-subtitle {
    font-family: 'Roboto' sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.education-text-slider .item .item-subtitle,
.experience-text-slider .item .item-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
}
.download-resume {
    margin-top: 80px;
}

/*
====================================================
- Contact Page
====================================================
*/

.contact-area {}
.contact-left {
    width: 100%;
    height: auto;
    background: #587ddc;
    padding: 15px;
}
.contact-left .tooltip-social {
    margin-bottom: 0px;
}
.google-map-area {}
.google-map,
#gmap {
    width: 100%;
    height: 340px;
}

/*
====================================================
- Extra Activity Page
====================================================
*/

.extra-activity-area {}
.extra-activity-area .tranning-area,
.extra-activity-area .hobby-area {
    width: 100%;
    background: #587ddc;
    padding: 20px 0px;
}
.extra-activity-area .tranning-area .lead-title,
.extra-activity-area .hobby-area .lead-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    background: #46535E;
    padding: 15px 50px 15px 15px;
    text-transform: uppercase;
}
.tranning-text-slider .hobby-text-slider{
    padding: 15px 30px;
}
.tranning-text-slider .item .item-title,
.tranning-text-slider .item .item-subtitle,
.hobby-text-slider .item .item-title,
.hobby-text-slider .item .item-subtitle {
    font-family: 'Roboto' sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.tranning-text-slider .item .item-subtitle,
.hobby-text-slider .item .item-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
}
.tranning-area .owl-theme .owl-controls {
    margin-top: 2px;
}
.hobby-area .hobby-left,
.hobby-area .hobby-right {
    width: 50%;
    padding: 0px 30px;
}
.hobby-item {
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    width: 100%;
    height: 80px;
    padding: 10px;
    margin: 15px 0px;
}
.hobby-item .hobby-circle {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 10px;
    left: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background: #46535E;
    text-align: center;
    line-height: 58px;
    z-index: 1;
}
.hobby-item .hobby-content {
    width: 120px;
    height: 40px;
    background: #395cb7;
    line-height: 38px;
    padding-left: 15px;
    position: absolute;
    top: 20px;
    left: 60px;
    z-index: 0;
}
.hobby-item .hobby-content span {
    text-transform: uppercase;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/*
====================================================
- Work Page
====================================================
*/

.work-area {
    width: 100%;
    height: auto;
}
.portfolio-filter ul {
    font-size: 14px;
    color: #fff;
    padding: 0px;
    margin: 30px 0px 45px;
}
.portfolio-filter ul li {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #fff;
    cursor: pointer;
    margin: 0px 8px;
    font-weight: bold;
}
.portfolio-filter ul li.active {
    color: #587ddc;
    border: 1px solid #587ddc;
}
.portfolio-items {
    width: 100%;
    margin-bottom: 45px;
}
.isotope-item {
    position: relative;
    overflow: hidden;
}
.isotope {
    overflow: hidden;
    z-index: 0;
    padding: 15px;
    text-align: center;
}
.isotope-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0px;
    left: 0px;
    background: #587ddc;
    opacity: 0.8;
    z-index: 1;
    -webkit-transform: translateX(-120%);
    -moz-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    -o-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.isotope:hover .isotope-caption {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.isotope-caption .caption-inside {
    position: relative;
    width: 100%;
    height: 100%;
    display: table;
}
.isotope-caption .caption-inside .caption-content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: auto;
    text-align: center;
}
.isotope-caption .caption-inside .caption-content .title {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.pp_social {
    display: none;
}
/* Award Section */

.award-area {
    background: #2F3942;
    padding: 30px;
}
.award-slider {
    margin: 20px 0px;
}
.award-slider .item {
    text-align: center;
    padding: 15px;
}
.award-slider .item .item-inside {
    padding: 15px;
    border: 1px solid #46535E;
}
.award-slider .item img {
    margin: auto;
}

/*
====================================================
- Blog Page
====================================================
*/

.blog-area {
    width: 100%;
    height: auto;
}
.sticky-post {
    width: 100%;
    height: auto;
    background: #2f3942;
    padding: 15px;
    margin-bottom: 15px;
}
.post-meta {
    width: 100%;
    height: auto;
    border: 1px solid #46535E;
    margin-bottom: 20px;
    padding: 0px 10px;
}
.post-meta span i,
.post-meta span a {
    color: #fff;
    padding: 5px 5px;
    margin: 5px 0px;
    font-size: 12px;
}
.post-meta span a:hover,
.side-bar-list li a:hover,
.regular-post-item a h1:hover,
.post-title:hover {
    color: #587ddc;
}
.regular-post {
    width: 100%;
    height: 1010px;
    padding-top: 15px;
}
.regular-post-item {
    height: auto;
    background: #2f3942;
    padding: 15px;
    margin-bottom: 30px;
}
.regular-post-item .post-title h2 a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin: 20px 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.post-content {
    height: auto;
}
.post-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    line-height: 27px;
    margin-bottom: 20px;
}
.side-content p {
    padding: 5px;
    margin: 20px 0px;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
}
.side-content-bar p {
    padding: 5px;
    margin: 10px 0px 25px;
    color: #fff;
    font-size: 13px;
    text-align: justify;
    line-height: 22px;
}
.single-post .post-title a,
.sticky-post .post-title a {
    display: block;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin: 20px 0px;
}

/*
====================================================
- Sidebar Area
====================================================
*/

.sidebar {
    width: 100%;
    height: auto;
    background: #2F3942;
    border: 1px solid;
    min-height: 300px;
}
.sidebar-widget {
    width: 100%;
    margin-bottom: 0px;
    padding: 15px;
}
.sidebar-widget .widget-title {
    display: block;
    background: #587ddc;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0px;
}
.sidebar-widget .widget-title h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    margin-bottom: 0px;
}
.widget-content {
    padding: 15px;
    background: #46535E;
}
.widget-list {
    padding: 0px;
    margin: 0px;
}
.widget-list li {
    padding: 15px 0px;
    position: relative;
    border-bottom: 1px dashed #ededed;
    margin: 0px;
}
.widget-content .post-feature {
    position: absolute;
    width: 80px;
    height: 65px;
}
.widget-content .post-content {
    padding-left: 90px;
}
.widget-content .post-content h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.widget-content .post-content h2:hover {
    color: #587ddc !important;
}
.widget-content p {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 10px;
}
.widget-body .post-content .post-meta a {
    font-size: 11px;
    font-weight: 400;
    padding: 5px 10px;
    color: #000;
    letter-spacing: 0;
    line-height: 24px;
}
.widget-content .post-content .post-meta {
    padding: 0px;
}
.widget-content .post-content .post-meta i {
    margin-right: 5px;
}
.sidebar-widget.about-me .widget-content {
    text-align: center;
}
.sidebar-widget.about-me .widget-content img.auth-img {
    width: 150px;
    height: 150px;
    border: 4px solid #f9f9f9;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /*border-radius: 50%;*/
    margin-bottom: 20px;
}
.tooltip-social {
    padding: 0px;
    margin: 25px 0px;
}
.tooltip-social li {
    display: inline-block;
}
.tooltip-social li a {
    display: block;
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tooltip-social li a:hover {
    border-color: #fff;
    color: #fff !important;
}
.twt-list ul {
    padding: 0px 15px;
    margin: 0;
    text-align: center;
}
.twt-list i {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    display: block;
}
.twt-list a {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
}
.twt-list span {
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    margin: 0px 3px;
    color: #587ddc !important;
}

/*
====================================================
- Single Page
====================================================
*/

.single-page-area {
    width: 100%;
    height: auto;
}
.single-post {
    width: 100%;
    height: auto;
    background: #2f3942;
    padding: 15px;
    margin-bottom: 30px;
}
.single-post:last-child {
    margin-bottom: 0px;
}
.social-share {
    width: 100%;
    height: auto;
    text-align: center;
}
.social-share ul {
    margin: 30px 0px;
    padding: 0px;
}
.social-share li {
    width: 40px;
    height: 40px;
    background-color: #2f3942;
    border:1px solid #242c33;
    text-align: center;
    margin: 0px;
    padding: 0px;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.social-share a {
    font-size: 18px;
    line-height: 35px;
    color: #fff;
}
.social-share li:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}
.relevant-slider {
    padding: 0px 15px;
    background-color: transparent;
}
.relevant-slider .item {
    padding: 15px;
    margin: 15px;
    background-color: #46535E;
}
.single-post .comments-widget-title h2 {
    font-size: 19px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.post-comment-inner {
    margin-bottom: 30px;
}
.post-comment-inner ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.comment-list {}
.post-comment-inner ol li {
    position: relative;
}
.post-comment-inner ol li .user-img {
    position: absolute;
    width: 85px;
    height: 85px;
}
.post-comment-inner ol li .user-comment {
    padding: 0px 0px 0px 100px;
    margin-bottom: 20px;
}
.post-comment-inner ol li .user-comment h4.cmnt-title a {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #000;
    letter-spacing: 0;
    text-transform: uppercase;
}
.post-comment-inner ol li .user-comment span.cmnt-meta small {
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
    color: #587ddc;
    letter-spacing: 0;
    display: block;
    margin-bottom: 8px;
}
.post-comment-inner ol li .user-comment p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.post-comment-inner ol li ol {
    margin-left: 60px;
}
/*
====================================================
- 404 Page
====================================================
*/

.error-wrap {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    position: relative;
    display: table;
}
.error-container {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin: auto;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.error-container h4 {
    font-size: 25px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: capitalize;
}
.error-container h1 {
    font-size: 130px;
    color: #4f5c67;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
    padding: 10px;
}
.hero-author .owl-pagination {
    display: none;
}
.videoWrapper {
    /*    position: relative;
        padding-bottom: 56.25%;  16:9 
        padding-top: 25px;
        height: 0;*/
}
.videoWrapper iframe {
    /*    position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;*/
}
.videoWrapper1{
    /*    position: relative;
        padding-bottom: 56.25%;  16:9 
        padding-top: 25px;
        height: 0;*/
}
.videoWrapper1 iframe {
    /*    position: absolute;
        top: 0;
        left: 0;
        width: 75%;
        height: 50%;*/
}
.desktop-news-slider{
    display: block;
}
.ticker-container{
    display: none;
}