/**
 Theme Name: MULTIVERSE
 Author: AwesomeThemez
 Developer: Tamjid Bin Murtoza
 Version: 1.0.0
*/

/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. General
3. Preloader
4. ScrollUp
5. Site Header
6. Home Page
7. Other Page
8. Footer
9. Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. Typography
--------------------------------------------------------------*/
body {
    color: #737373;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
button {
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
input, select, textarea {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #c0c0c0;
    outline: none;
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 7px 2px;
    color: #191919;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
textarea {
    height: 80px;
}
input:focus, textarea:focus {
    border-color: #606060;
}
h1, h2, h3, h4, h3, h5, h6 {
    clear: both;
    color: #191919;
    padding: 0;
    margin: 0 0 10px 0;
    font-weight: 400;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 26px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 15px;
}
p {
    margin-bottom: 12px;
}
ul {
    margin: 0 0 15px 0;
    padding-left: 15px;
    list-style: square outside none;
}
ol {
    padding-left: 15px;
    margin-bottom: 15px;
}
li {
    font-size: 14px;
}
dfn, cite, em, i {
    font-style: italic;
}
blockquote {
    margin: 0 14px;
}
address {
    margin: 0 0 15px;
}
img {
    border: 0;
    max-width: 100%;
    height: auto;
}
a {
    font-size: 14px;
    color: #191919;
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover, 
a:focus, 
a:active {
    color: #6B1794;
    text-decoration: none;
}
a:focus,
a:hover, 
a:active {
    outline: none;
}

/*--------------------------------------------------------------
2. General
--------------------------------------------------------------*/
body,
html {
    height: 100%;
    width: 100%
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.section {
    padding: 110px 0 60px;
}
.t-btn {
    display: inline-block;
    background-color: #6B1794;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    line-height: 21px;
    outline: none;
    border: none;
    position: relative;
    letter-spacing: 1px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}
.t-btn span {
    position: relative;
    z-index: 1;
}
.t-btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.t-btn:hover:before {
    width: 105%;
}
.t-btn:hover,
.t-btn:active,
.t-btn:focus {
    color: #191919;
}
.t-btn.white {
    color: #191919;
    background-color: #fff;
}
.t-btn.white:before {
    background-color: #6B1794;
}
.t-btn.white:hover {
    color: #fff;
}
.t-btn.border-style {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 6px 16px;
}
.t-btn.border-style.fill-wh {
    color: #191919;
}
.t-btn.border-style.fill-wh:hover {
    color: #fff;
}
.t-btn.border-style.fill-wh:before {
    width: 105%;
}
.t-btn.border-style.fill-wh:hover:before {
    width: 0%;
}
/*--------------------------------------------------------------
3. Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    background-size: cover;
    height: 100%;
    z-index: 9999999;
}
.preloader-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
}
.preloader-wave:before,
.preloader-wave:after {
    position: absolute;
    display: inline-block;
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-animation: preloader-wave 1.6s linear infinite;
    animation: preloader-wave 1.6s linear infinite;
}
.preloader-wave:after {
    animation-delay: -0.8s;
    -webkit-animation-delay: -0.8s;
}
@keyframes preloader-wave {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
        filter: alpha(opacity=0);
    }
}
@-webkit-keyframes preloader-wave {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

/*--------------------------------------------------------------
4. ScrollUp
--------------------------------------------------------------*/
.scrollup {
    position: fixed;
    bottom: -60px;
    right: 25px;
    color: #fff;
    padding: 5px;
    height: 36px;
    width: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 10;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}
.scrollup:hover {
    background: -webkit-gradient(linear,left top, right top,from(#54ade0) ,to(#9d23d8));
    background: linear-gradient(to right,#54ade0 ,#9d23d8 100%);
}
.scrollup:before {
    content: "\f102";
    font-family: 'FontAwesome';
}
.scrollup.scrollup-show {
    bottom: 25px;
}

/*--------------------------------------------------------------
5. Site Header
--------------------------------------------------------------*/
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    height: 70px;
    background-color: transparent;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    position: relative;
}
.header-wrap:before,
.header-wrap:after {
    content: none;
}
.site-header.small-height {
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    -webkit-box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}
/*Site Branding*/
.site-header .custom-logo {
    max-width: 200px;
    max-height: 60px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.site-header.small-height .custom-logo {
    max-width: 180px;
    max-height: 60px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.custom-logo-link {
    display: inline-block;
}
.site-title {
    line-height: 30px;
    display: inline-block;
}
.site-title a {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 30px;
    display: inherit;
    line-height: inherit;
}
/*End Site Branding*/
/*Navigation*/
.primary-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
}
.primary-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
}
.primary-nav .primary-nav-list {
    height: 100%;
}
.primary-nav .menu-item {
    position: relative;
    margin-right: 33px;
    height: 100%;
}
.primary-nav .menu-item:last-child {
    margin-right: 0px;
}
.nav>li>a:focus, .nav>li>a:hover {
    background-color: transparent;
}
.primary-nav .menu-item > a {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.site-header .primary-nav .menu-item > a {
    height: 100%;
}
.primary-nav-list .menu-item > a {
    color: #fff;
}
.primary-nav-list .active > a, .primary-nav-list .menu-item > a:hover {
    background-color: transparent;
}
.primary-nav-list .current-menu-ancestor .current-menu-ancestor.current-menu-parent > a,
.primary-nav-list .current-menu-ancestor.current-menu-parent .current-menu-item > a {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.3);
}
.site-header .primary-nav .menu-item-has-children > ul {
    width: 200px;
    padding-left: 0;
    background: -webkit-gradient(linear,left top, right top,from(rgba(66, 129, 165, 0.85)) ,to(rgba(107, 23, 148, 0.85)));
    background: linear-gradient(to right,rgba(66, 129, 165, 0.85) ,rgba(107, 23, 148, 0.85) 100%);
    position: absolute;
    top: 70px;
    display: none !important;
    z-index: 10;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.site-header .primary-nav .menu-item-has-children > ul ul {
    top: 1px;
    border-left: 1px solid rgba(142, 141, 141, 0.2);
}
.site-header.small-height .primary-nav .menu-item-has-children > ul {
    top: 70px;
}
.site-header.small-height .primary-nav .menu-item-has-children > ul ul {
    top: 1px;
}
.primary-nav .menu-item:hover  > ul {
    display: block !important;
}
.primary-nav .menu-item-has-children > ul > li {
    padding: 0;
    margin: 0;
    position: relative;
    line-height: 16px;
}
.primary-nav .menu-item-has-children > ul > li a {
    height: initial;
    display: block;
    padding: 11px 15px;
    background: transparent;
    font-size: 12px;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: -1px;
}
.site-header .primary-nav .menu-item-has-children > ul > li a,
.site-header.small-height .primary-nav .menu-item-has-children > ul > li a {
    min-height: 30px;
}
.primary-nav .menu-item-has-children > ul > li:not(:first-child) a {
    border-top: 1px solid rgba(142, 141, 141, 0.2);
}
.primary-nav .menu-item-has-children > ul > li a:hover {
    background: -webkit-gradient(linear,left top, right top,from(rgba(66, 129, 165, 0.9)) ,to(rgba(107, 23, 148, 0.9)));
    background: linear-gradient(to right,rgba(66, 129, 165, 0.9) ,rgba(107, 23, 148, 0.9) 100%);
    color: #fff;
}
.primary-nav .menu-item-has-children > ul > li ul {
    position: absolute;
    left: 100%;
    right: 100%;
    top: 1px;
    display: none;
}
.primary-nav .menu-item-has-children > ul > li:hover ul {
    display: block;
}
/*Mobile Menu Button*/
.m-menu-btn {
    position: relative;
    display:  inline-block;
    width: 30px;
    height: 27px;
    margin: 15px 0px 15px 25px;
    cursor: pointer;
    display: none;
}
.m-menu-btn span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s; 
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s; 
    transition-delay: 0.2s;
}
.m-menu-btn span:before, 
.m-menu-btn span:after {
    position: absolute;
    content: '';
}
.m-menu-btn span, 
.m-menu-btn span:before, 
.m-menu-btn span:after {
    width: 25px;
    height: 2px;
    background-color: #fff;
    display: block;
}
.m-menu-btn span:before {
    margin-top: -8px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
}
.m-menu-btn span:after {
    margin-top: 8px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
}
.m-menu-btn-ext span {
    background-color: rgba(0,0,0,0.0);
    -webkit-transition-delay: 0.2s; 
    transition-delay: 0.2s;
}
.m-menu-btn-ext span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg); 
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s; 
    transition-delay: 0s, 0.2s;
}
.m-menu-btn-ext span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg); 
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s; 
    transition-delay: 0s, 0.2s;
}
.m-dropdown {
    display: none;
}
/*End Mobile Menu Button*/
.primary-nav .primary-nav-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.nav-link {
    position: relative;
}
.nav-link:before {
    content: '';
    position: absolute;
    height: 0px;
    width: 0px;
    border-radius: 50%;
    background-color: #D2D20B;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 16px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav-link.active:before {
    height: 7px;
    width: 7px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/*--------------------------------------------------------------
6. Home Page
--------------------------------------------------------------*/
/*hero*/
.hero {
    height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.parallax {
    background-image: url(../img/slider2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    background-attachment: fixed;
}
.ripple-version.hero {
    background-image: url(../img/slider2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    background-attachment: fixed;
}
.youtube-bg {
    background-color: #3b3b3b;
    background-image: url(../img/youtube-bg-img.jpg);
}
#particles-js {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.8;
}
.cs-container {
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.hero-text {
    position: relative;
    z-index: 10;
    padding-top: 25px;
}
.hero-text h1 {
    color: #fff;
    line-height: 83px;
    font-size: 75px;
    letter-spacing: 1px;
    font-weight: 900;
    text-shadow: 7px 7px 8px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}
.hero-text h4 {
    font-size: 14px;
    color: #fff;
    line-height: 22px;
    margin-bottom: 50px;
}
.hero-btn-group a {
    margin-right: 25px;
}
.hero-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.hero .hero-slider,
.hero .owl-carousel .owl-stage-outer,
.hero .owl-carousel .owl-stage,
.hero .owl-carousel.owl-drag .owl-item {
    height: 100%;
    width: 100%;
}
.hero .owl-carousel .owl-item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.gradient {
    opacity: 0.8;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.youtube-bg .gradient {
    opacity: 0.4;
}
.section-head {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 70px;
}
.section-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 15px;
}
.section-head p {
    color: #737373;
    display: inline-block;
    padding: 0 15px;
    position: relative;
    margin-bottom: 0;
}
.section-head p:before,
.section-head p:after {
    content: '';
    position: absolute;
    top: 10px;
    background-color: #737373;
    height: 1px;
    width: 6px;
}
.section-head p:after {
    left: 0;
}
.section-head p:before {
    right: 0;
}
.single-performance {
    max-width: 270px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 25px;
}
.single-performance:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #6B1794;
}
.single-performance i {
    font-size: 30px;
    color: #6B1794;
    display: block;
    margin-bottom: 26px;
}
.single-performance h3 {
    font-size: 20px;
    font-weight: 500;
    color: #191919;
    margin-bottom: 14px;
}
.single-performance p {
    margin: 0;
}
.about-section {
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
}
.about-video {
    margin-bottom: 50px;
}
.about-text {
    padding-left: 3%;
    margin-bottom: 50px;
}
.about-text h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.about-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.about-text p {
    color: #fff;
    margin-bottom: 15px;
}
.about-btn-group {
    margin-top: 25px;
}
.about-btn-group a {
    margin-right: 15px;
}
/*Services*/
.services.section {
    padding-bottom: 0;
}
.single-service {
    margin-top: 50px;
}
.services .section-head {
    margin-bottom: 20px;
}
.single-service-img {
    margin-bottom: 25px;
    height: 220px;
}
.single-service-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.single-service:hover .single-service-img img {
    opacity: 0.7;
}
.single-service-text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
}
.single-service-text p {
    margin-bottom: 15px;
}
.see-more-btn {
    font-weight: 500;
    color: #6B1794;
    display: inline-block;
}
.see-more-btn:hover {
    color: #191919;
}
/*=== Portfolio ===*/
.portfolio-filter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
     flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0;
}
.portfolio-filter ul li {
    margin: 0px 20px 10px;
}
.portfolio-filter ul li a {
    padding: 5px 0px;
    position: relative;
    color: #191919;
}
.portfolio-filter ul li a:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 1px;
    width: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.portfolio-filter ul li.active a:before {
    width: 90%;
}
.project.section {
    padding-bottom: 0;
}
.project {
    overflow: hidden;
}
.portfolio {
    margin-left: -15px;
    margin-right: -15px;
}
.gutter-less.portfolio {
    margin-left: 0px;
    margin-right: 0px;
}
.grid-sizer,
.portfolio-item {
    padding: 0 15px 30px;
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.gutter-less .portfolio-item {
    padding: 0;
}
.portfolio-item .item-inner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.item-inner .hover-text {
    text-align: center;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hover-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0;
}
.item-inner:hover .hover-text h3 {
    opacity: 1;
}
.hover-text p {
    color: #fff;
    margin-bottom: 80px;
    margin-top: 50px;
    opacity: 0;
    width: 100%;
    -webkit-transform: scale(0.5);
    transform: scale(0.7);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.item-inner:hover .hover-text p {
    margin-bottom: 30px;
    margin-top: 0px;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.portfolio-btn {
    opacity: 0;
    color: #D2D20B;
    font-weight: 500;
}
.item-inner:hover .portfolio-btn {
    opacity: 1;
}

.item-inner:hover .hover-text {
    opacity: 1;
}
.project .owl-carousel {
    position: initial;
}
.project .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 11;
}
.project .owl-dots .owl-dot span {
    display: block;
    height: 10px;
    width: 10px;
    background: #fff;
    margin: 3px;
    position: relative;
    overflow: hidden;
    border: 0;
    outline: none;
}
.project .owl-dots .owl-dot span:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 0px;
    width: 0px;
    background-color: #D2D20B;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.project .owl-dots .owl-dot.active span:before {
    height: 100%;
    width: 100%;
}
.item-inner .gradient {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.item-inner:hover .gradient {
    opacity: 0.8;
}
.project .owl-nav {
    display: none;
}
/*Team*/
.team-member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}
.team-member-img {
    height: 250px;
    width: 250px;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 25px;
}
.team-member-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.team-member-des h3 {
    font-size: 20px;
    font-weight: 500;
}
.team-member-des span {
    font-size: 16px;
    display: block;
    margin-bottom: 25px;
}
.team-member-des p {
    margin-bottom: 25px;
}
.team-social-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.team-social-btn a {
    height: 28px;
    width: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    margin-right: 15px;
    border-radius: 3px;
}
.team-social-btn a:hover {
    color: #D2D20B;
    background: -webkit-gradient(linear,left top, right top,from(#54ade0) ,to(#9d23d8));
    background: linear-gradient(to right,#54ade0 ,#9d23d8 100%);
}
.team-social-btn a:last-child {
    margin-right: 0;
}
/*Testimonial*/
.testimonial-wrap.section {
    padding-bottom: 100px;
}
.testimonial-wrap {
    color: #fff;
    background-image: url(../img/testimonial_bg.jpg);
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
.testimonial-1,
.testimonial-2,
.testimonial-3 {
    max-width: 730px;
    margin: auto;
    padding: 0 10px;
}
.testimonial-wrap .owl-carousel .owl-item .single-testimonial img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
blockquote {
    margin-bottom: 20px;
}
blockquote:before {
    content: "“";
}
blockquote:after {
    content: "”";
}
.single-testimonial h3 {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.single-testimonial span {
    display: block;
    line-height: 20px;
}
.testimonial-wrap .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 25px;
}
.testimonial-wrap .owl-dot span {
    height: 5px;
    display: block;
    width: 18px;
    background-color: #fff;
    margin: 0px 7px;
    position: relative;
}
.testimonial-wrap .owl-dot span:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.testimonial-wrap .owl-dot.active span:before {
    width: 130%;
    background-color: #D2D20B;
}
.testimonial-wrap .owl-prev, .testimonial-wrap .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 45px;
    width: 30px;
    background-color: #191919;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-top: -7px;
}
.testimonial-wrap .owl-prev {
    left: -30px;
}
.testimonial-wrap .owl-next {
    right: -30px;
}
.testimonial-wrap .owl-prev:hover, .testimonial-wrap .owl-next:hover { 
    background-color: #D2D20B;
}
/*Pricing*/
.pricing.section {
    padding-bottom: 0;
}
.single-price {
    padding: 40px 30px;
    border: 1px solid #F2F2F2;
    -webkit-box-shadow: 0px 0px 20px rgba(64,64,64,0.2);
    box-shadow: 0px 0px 20px rgba(64,64,64,0.2);
    border-radius: 2px;
    margin-top: 50px;
}
.pricing .section-head {
    margin-bottom: 20px;
}
.single-price h3 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.single-price h3:before {
    content: '';
    height: 2px;
    width: 90%;
    position: absolute;
    left: 5%;
    bottom: 0;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
}
.single-price .price {
    color: #191919;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
}
.single-price .price span {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    padding-left: 8px;
    position: relative;
}
.single-price .price span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    height: 20px;
    width: 2px;
    background-color: #191919;
}
.single-price ul {
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}
.single-price ul li {
    color: #191919;
    margin-bottom: 16px;
}
.pricing-btn {
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    color: #fff;
    display: block;
    width: 90%;
    margin-left: 5%;
    padding: 9px 0;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}
.pricing-btn span {
    position: relative;
    z-index: 1;
}
.pricing-btn:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    left: 0%;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: -webkit-gradient(linear,left top, right top,from(#54ade0) ,to(#9d23d8));
    background: linear-gradient(to right,#54ade0 ,#9d23d8 100%);
}
.pricing-btn:hover:before {
    width: 100%;
}
.pricing-btn:hover {
    color: #fff;
    
}
/*Blog*/
.home-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}
.home-post-thumbnail {
    height: 290px;
    width: 250px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 25px;
    border-radius: 3px;
    overflow: hidden;
}
.home-post-thumbnail img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 3px;
}
.home-entry-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}
.home-entry-title a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.byline {
    margin-bottom: 15px;
}
.byline span {
    color: #6B1794;
    font-size: 12px;
    display: inline-block;
    line-height: 22px;
    padding-right: 8px;
    margin-right: 8px;
    position: relative;
}
.byline span:last-child {
    padding-right: 0;
    margin-right: 0;
}
.byline span:not(:last-child):before {
    content: '';
    position: absolute;
    right: -2px;
    top: 3px;
    height: 14px;
    width: 1px;
    background-color: #6B1794;
}
.home-entry-content p {
    margin-bottom: 20px;
    line-height: 21px;
}
.read-more-btn {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: none;
    outline: none;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    padding: 5px 20px;
    font-size: 12px;
    cursor: pointer;
    position: relative;
}
.read-more-btn span {
    position: relative;
    z-index: 1;
}
.read-more-btn:before {
    content: '';
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear,left top, right top,from(#54ade0) ,to(#9d23d8));
    background: linear-gradient(to right,#54ade0 ,#9d23d8 100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.read-more-btn:hover:before {
    width: 100%;
}
.read-more-btn:hover {
    color: #fff;
}
/*subscribe*/
.subscribe-wrap {
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
}
.subscribe {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    text-align: center;
}
.subscribe h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
}
.subscribe input {
    width: 100%;
    background-color: #fff;
    border: 1px solid #fff;
    margin-bottom: 30px;
    padding: 7px 15px;
    text-align: center;
    border-radius: 1px;
}
.subscribe-btn {
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 45px;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.subscribe-btn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    height: 100%;
    width: 0%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.subscribe-btn:hover:before {
    width: 110%;
    opacity: 1;
}
.subscribe-btn span {
    position: relative;
    z-index: 1;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.subscribe-btn:hover span {
    color: #191919;
}
/*Contact*/
.cf-msg {
    margin-bottom: 35px;
}
.single-contact-info {
    margin-top: 15px;
    margin-bottom: 75px;
}
.contact-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    height: 60px;
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 20px;
    margin-bottom: 40px;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
}
.contact-icon i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.single-contact-info h3 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
}
.single-contact-info p {
    margin-bottom: 2px;
}
.contact-form-head {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.contact-form-head h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
}
.contact-form-head p {
    margin-bottom: 0;
}
/*Special Input*/
.tm-form-field {
    position: relative;
    margin-bottom: 30px;
}
.tm-form-field input,
.tm-form-field textarea {
    font-size: 14px;
    padding: 5px 10px 3px 3px;
    display: block;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    margin-bottom: 0;
}
.tm-form-field input:focus,
.tm-form-field textarea:focus { 
    outline:none; 
}
.tm-form-field label {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 3px;
    top: 6px;
    margin: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.tm-form-field input:focus ~ label, 
.tm-form-field input:valid ~ label,
.tm-form-field textarea:focus ~ label, 
.tm-form-field textarea:valid ~ label {
    top: -18px;
    left: 0;
    font-size: 12px;
    color: #191919;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.tm-form-field .bar {
    position: relative;
    display: block;
    width: 300px;
}
.tm-form-field .bar {
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.tm-form-field input:focus ~ .bar,
.tm-form-field textarea:focus ~ .bar {
  width:100%;
}
.contact-form {
    margin-bottom: 50px;
}
/*End Special Input*/
.submit-btn {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: none;
    outline: none;
    font-size: 12px;
    cursor: pointer;
    padding: 8px 60px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 10px;
    background: #6B1794;
    position: relative;
}
.submit-btn:hover {
    color: #fff;
}
.submit-btn span {
    position: relative;
    z-index: 1;
}
.submit-btn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 0;
    background-color: #962dca;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.submit-btn:hover:before {
    width: 100%;
}
/*--------------------------------------------------------------
7. Other Page
--------------------------------------------------------------*/
/*page-head*/
.page-head {
    background-image: url(../img/project1_bg.jpg);
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 270px;
}
.page-head-text {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}
.page-head-text h1 {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}
.page-head-text ul {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.page-head-text ul li {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    text-transform: uppercase;
    color: #fff;
}
.page-head-text ul li:before {
    content: '>';
    color: #fff;
    position: absolute;
    right: -4px;
    top: -1px;
    font-size: 18px;
}
.page-head-text ul li:last-child:before {
    display: none;
}
.page-head-text ul li a {
    color: #fff;
}
.page-head-text ul li a:hover {
    color: #D2D20B;
}
/*Blog Details*/
.post {
    margin-bottom: 50px;
}
.post-thumbnail {
    margin-bottom: 25px;
}
.post-thumbnail img {
    width: 100%;
}
.blog-sidebar {
    padding-left: 3.5%;
}
.widget {
    margin-bottom: 50px;
}
.widget-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.widget_recent_entries ul {
    list-style: none;
    padding: 0;
}
.widget_recent_entries ul li:not(:last-child) {
    margin-bottom: 30px;
}
.widget_recent_entries ul li .related-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.related-post-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.related-post-thumbnail img {
    height: 100%;
    width: 100%;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.related-post-details {
    padding-top: 4px;
}
.related-post-details .related-post-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.related-post:hover .related-post-title {
    color: #D2D20B;
}
.related-post-details .byline {
    margin: 0;
}
.widget_categories ul {
    list-style: none;
    padding: 0;
}
.widget_categories ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}
.widget_categories ul li:last-child {
    margin-bottom: 0;
}
.widget_categories ul li:before {
    content: "\f101";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}
.widget_categories ul li a:hover {
    color: #D2D20B;
}
.project-thumb {
    margin-bottom: 40px;
}
.project-overview h2, .project-details-meta h2 {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
}
.project-details-meta {
    margin-bottom: 50px;
    padding-left: 10%;
}
.project-details-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.project-details-meta ul li {
    font-size: 15px;
    color: #737373;
    margin-bottom: 7px;
}
.project-details-meta ul li span {
    font-weight: 500;
    color: #191919;
}
.project-details-wrap .owl-prev,
.project-details-wrap .owl-next {
    position: absolute;
    top: 50%;
    margin-top: -23px;
    height: 46px;
    width: 40px;
    background-color: rgba(25, 25, 25, 0.8);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.project-details-wrap .owl-prev {
    left: 0;
}
.project-details-wrap .owl-next {
    right: 0;
}
.project-details-wrap .owl-prev:hover,
.project-details-wrap .owl-next:hover {
    background-color: rgba(25, 25, 25, 1);
    color: #D2D20B;
}

/*--------------------------------------------------------------
8. Footer
--------------------------------------------------------------*/
.site-footer {
    height: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
    background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
}
.footer-social-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 14px;
}
.footer-social-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #dc3545;
    color: #fff;
    font-size: 18px;
    margin: 8px;
}
.footer-social-btn a:hover {
    background-color: #191919;
}
.copy-right {
    font-size: 12px;
    color: #fff;
}
.copy-right a {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
.copy-right a:hover {
    color: #D2D20B;
}
/*Comments*/
.comments-title, .comment-reply-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #191919;
    font-weight: 700;
    letter-spacing: 0.25px;
    margin-bottom: 30px;
}
.comments-area {
    padding-top: 50px;
    border-top: 1px solid rgba(127, 127, 127, 0.5);
}
.comment-body {
    position: relative;
    margin-left: 120px;
    margin-bottom: 30px;
    min-height: 90px;
}
.children .comment-body {
    min-height: 70px;
}
.comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.comments-area ol {
    list-style: none;
    padding-left: 0;
}
.comments-area .children {
    padding-left: 45px;
}
.comments-area .children .children {
    padding-left: 35px;
}
.comment-author .avatar {
    height: 90px;
    width: 90px;
    position: absolute;
    top: 0;
    left: -120px;
}
.comment-author {
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 6px;
    margin-right: 25px;
}
.comment-author .nm, .comment-author .nm a {
    font-weight: 600;
    color: #191919;
    font-size: 15px;
}
.comment-author .nm a:hover {
    color: #D2D20B;
}
.comment-author .nm:hover {
    color: #D2D20B;
}
.comment-metadata {
    line-height: 22px;
}
.comment-metadata a {
    color: #737373;
    font-weight: 400;
    font-size: 14px;
}
.comment-metadata a:hover {
    color: #D2D20B;
}
.comment-content {
    line-height: 22px;
    font-size: 14px;
}
.comment-content p {
    line-height: inherit;
    color: inherit;
    font-size: inherit;
}
.comment-reply-link {
    font-size: 14px;
    color: #D2D20B;
    position: relative;
}
.comment-reply-link:before {
    content: "\f112";
    font-family: 'FontAwesome';
    margin-right: 4px;
}
.children .comment-body {
    margin-left: 100px;
}
.children .comment-author .avatar {
    height: 70px;
    width: 70px;
    left: -100px;
}
.comment-respond {
    display: block;
    width: 100%;
    margin-top: 70px;
    padding-bottom: 0px;
    margin-bottom: 30px;
}
.comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
    width: 33.3333%;
}
.comment-form-comment {
    width: 100%;
}
.comment-form-author {
    padding-right: 10px;
}
.comment-form-url {
    padding-left: 10px;
}
.form-submit {
    margin-bottom: 0;
}
.comment-form p {
    margin: 0;
}
.comment-form textarea, 
.comment-form input {
    border: 1px solid #cacaca;
    padding: 8px 10px;
    width: 100%;
    background-color: transparent;
}
.comment-form textarea:focus, 
.comment-form input:focus {
    border-color: #D2D20B;
}
/*End Comment*/

/*--------------------------------------------------------------
9. Responsive
--------------------------------------------------------------*/

/*== Start Site Header ==*/
@media screen and (max-width: 1400px) and (min-width: 1001px) {
    .site-header .primary-nav .menu-item-has-children:last-child > ul {
        right: 0px;
    }
}

@media screen and (max-width: 1000px) {
    /*== Home page Header ==*/
    .site-header > div {
        width: 100%;
        padding: 0;
    }
    .site-branding {
        margin-left: 15px;
    }
    .m-menu-btn {
        margin-right: 15px;
    }
    .m-menu-btn {
        display: block;
    }
    .primary-nav-list {
        position: absolute;
        top: 80px;
        width: 100%;
        left: 0;
        display: none;
        max-height: 295px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-left: 0;
        margin: 0;
        background: -webkit-gradient(linear,left top, right top,from(#4281A5) ,to(#6B1794));
        background: linear-gradient(to right,#4281A5 ,#6B1794 100%);
        -webkit-box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, 0.35)
    }
    .small-height .primary-nav-list {
        top: 70px;
        margin: 0;
    }
    .m-menu ul {
        list-style: none;
    }
    .m-menu ul .menu-item a {
        display: block;
        padding: 6px 20px;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px
    }
    .m-menu ul .menu-item ul li a {
        font-size: 12px;
    }
    .m-menu ul .menu-item a:hover {
        background-color: #2b2b2b3b;
        -webkit-box-shadow: 0 0 1px 0px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 1px 0px rgba(255, 255, 255, 0.1)
    }
    .m-dropdown {
        display: inline-block;
        position: absolute;
        top: 9px;
        right: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 10px;
        line-height: 18px;
        height: 20px;
        width: 20px;
        text-align: center;
        z-index: 11;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .m-dropdown:hover {
        color: #fff;
        border-bottom: 1px solid #fff;
    }
    .m-menu ul .menu-item ul {
        display: none;
        padding-left: 10px;
    }
    .m-menu ul > .menu-item {
        position: relative;
    }
    .menu-item.menu-item-has-children > a:after {
    display: none;
    }
    .nav-link:before {
        left: 10px;
        bottom: initial;
        top: 13px;
    }
}
/*== End Site Header ==*/

@media screen and (max-width: 1199px) {
    .about-text {
        padding-left: 0;
    }
    .grid-sizer, .portfolio-item {
        width: 33.333333%;
    }
    .cs-container {
        max-width: 960px;
    }
}

@media screen and (max-width: 991px) {
    .grid-sizer, .portfolio-item {
        width: 50%;
    }
    .item-inner:hover .hover-text p {
        margin-bottom: 20px;
        margin-top: -5px;
    }
    .cs-container {
        max-width: 720px;
    }
}

@media screen and (max-width: 767px) {
    .section {
        padding: 60px 0 20px;
    }
    .section-head {
        margin-bottom: 50px;
    }
    .section-head h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .hero {
        height: auto;
        padding: 110px 0 70px
    }
    .hero-text h1 {
        line-height: 50px;
        font-size: 45px;
        letter-spacing: 1px;
        font-weight: 900;
        text-shadow: 5px 5px 6px rgba(0,0,0,0.4);
    }
    .hero-text h4 {
        max-width: 410px;
        margin-bottom: 40px;
    }
    .single-performance {
        margin-bottom: 40px;
    }
    .about-video {
        margin-bottom: 40px;
    }
    .about-text {
        margin-bottom: 40px;
    }
    .services .section-head {
        margin-bottom: 10px
    }
    .single-service {
        margin-top: 40px;
    }
    .team-member {
        margin-bottom: 40px;
    }
    .testimonial-wrap.section {
        padding-bottom: 60px;
    }
    .single-price {
        margin-top: 40px;
    }
    .pricing .section-head {
        margin-bottom: 10px;
    }
    .home-post {
        margin-bottom: 40px;
    }
    .subscribe {
        margin-bottom: 40px;
    }
    .single-contact-info {
        margin-bottom: 40px;
    }
    .contact-form-head h3 {
        margin-bottom: 20px;
    }
    .contact-form-head {
        margin-bottom: 40px;
    }
    .contact-form {
        margin-bottom: 40px
    }
    .site-footer {
        height: 210px;
    }
    .footer-social-btn a {
        height: 34px;
        width: 34px;
        font-size: 16px;
    }
    .cs-container {
        max-width: 540px;
    }
    .post {
        margin-bottom: 40px;
    }
    .widget {
        margin-bottom: 40px
    }
    .project-details-meta {
        margin-bottom: 40px;
        padding-left: 15px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 650px) {
    .grid-sizer, .portfolio-item {
        width: 100%;
    }
    .testimonial-wrap .owl-prev, .testimonial-wrap .owl-next {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .single-performance {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .single-performance:before {
        left: 50%;
        margin-left: -25px;
    }
    .team-member {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .team-member-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .team-member-des span {
        margin-bottom: 15px;
    }
    .team-social-btn {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .team-member-des p {
        margin-bottom: 20px
    }
    .home-post {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-post-thumbnail {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .single-contact-info {
        margin-bottom: 30px;
    }
    .cs-container {
        max-width: 100%;
    }
    .portfolio-filter ul li {
        margin: 0px 15px 10px;
    }
    .comment-form-author, .comment-form-email, .comment-form-url {
        width: 100%;
    }
    .comment-form-author {
        padding-right: 0;
    }
    .comment-form-url {
        padding-left: 0;
    }
}