/* -----------------------------------
1. Globally Applied Styles
2. Header
3. Home and Portfolio
4. About
5. Blog & BlogSingle
5. Services
6. Contact
7. Footer
8. Media Screens
----------------------------------- */
/* --------------------------
1. Globally Applied Styles
-------------------------- */

body {
    font-size: 14px;
    line-height: 24px;
    font-family: "Poppins", serif;
    color: #333;
    background-color: #f5f5f5;
}
.wrapper {
    background-color: #fff;
    margin: 45px 0;
    overflow: hidden;
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
.slicknav_menu {
    display: none;
    height: 75px;
    margin-left: auto;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.slicknav_menu ul {
    padding: 0;
}
.slicknav_menu .slicknav_icon-bar,
.slicknav_menu .slicknav_icon-bar:after,
.slicknav_menu .slicknav_icon-bar:before {
    background-color: #333;
    display: inline-block;
    position: relative;
    top: -4px;
    width: 22px;
    height: 2px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.slicknav_btn {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 40px;
}
.slicknav_btn .slicknav_icon {
    position: relative;
    line-height: 10px;
    height: 19px;
    width: 25px;
    padding-right: 15px;
}
.slicknav_menu .slicknav_open .slicknav_icon-bar {
    background-color: transparent
}
.slicknav_menu .slicknav_icon-bar {
    display: inline-block;
    position: relative
}
.slicknav_menu .slicknav_open .slicknav_icon-bar:before {
    -webkit-transform: translateY(6px) rotateZ(-45deg);
    -moz-transform: translateY(6px) rotateZ(-45deg);
    -ms-transform: translateY(6px) rotateZ(-45deg);
    -o-transform: translateY(6px) rotateZ(-45deg);
    transform: translateY(6px) rotateZ(-45deg)
}
.slicknav_menu .slicknav_icon-bar:before {
    content: "";
    position: absolute;
    top: -6px
}
.slicknav_menu .slicknav_open .slicknav_icon-bar:after {
    -webkit-transform: translateY(-6px) rotateZ(45deg);
    -moz-transform: translateY(-6px) rotateZ(45deg);
    -ms-transform: translateY(-6px) rotateZ(45deg);
    -o-transform: translateY(-6px) rotateZ(45deg);
    transform: translateY(-6px) rotateZ(45deg)
}
.slicknav_menu .slicknav_icon-bar:after {
    content: "";
    position: absolute;
    top: 6px
}
.slicknav_menu .slicknav_nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 75px;
    margin: 0;
    padding: 20px 35px;
    background-color: #444;
}
.slicknav_menu .slicknav_nav li ul {
    padding-left: 20px
}
.slicknav_menu .slicknav_nav li {
    display: block;
    position: relative;
    color: #fff;
    padding-bottom: 10px;
}
.slicknav_menu .slicknav_nav li a {
    display: block;
    outline: 0;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}
.slicknav_menu .slicknav_nav li a a {
    padding: 0
}
.slicknav_menu .slicknav_collapsed .slicknav_arrow,
.slicknav_menu .slicknav_open .slicknav_arrow {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px
}
.slicknav_menu .slicknav_open .slicknav_arrow:before {
    content: "\f107"
}
.slicknav_menu .slicknav_collapsed .slicknav_arrow:before {
    content: "\f105"
}
/* --------------------------
2. Header
-------------------------- */

header {
    padding-top: 45px;
}
header .logo {
    text-align: center;
    padding: 10px 0;
}
header .logo a {
    text-decoration: none;
    color: #333;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1px;
    font-family: "Playfair+Display", serif;
}
header .logo span {
    color: #e6ae48;
    letter-spacing: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
header .menu {
    border-top: 1px solid rgba(136, 136, 136, 0.15);
    border-bottom: 1px solid rgba(136, 136, 136, 0.15);
    padding: 30px 0;
}
header .menu ul {
    text-align: center;
    margin-top:0;
    margin-bottom: 0;
    font-family: "Raleway", serif;
    padding: 0;
}
header .menu ul li {
    display: inline-block;
    margin-right: 45px;
    text-transform: uppercase;
    position: relative;
}
header .menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 16px;
}
header .menu ul li a.active {
    color: #999;
}
header .menu ul li a:hover {
    color: #999;
}
header .menu ul li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
header .menu ul ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    padding: 0;
    left: -30px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    z-index: 999;
    text-align: left;
    border: 1px solid #e1e1e1;
    margin-top: 10px;
}
header .menu ul ul li {
    display: block;
    margin-right: 0;
    padding: 15px 25px;
    border-top: 1px solid rgba(136, 136, 136, 0);
    border-bottom: 1px solid rgba(136, 136, 136, 0.13);
    border-radius: 0;
}
header .menu ul ul li:last-child {
    border-bottom: 0;
}
header .menu ul ul li a {
    font-size: 11px;
    color: #333;
    display: block;
    padding: 0;
    line-height: 18px;
    opacity: 1 !important;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

header .menu ul li ul li ul {
    left: 100%;
    top: 0;
}
header .menu ul ul li a:hover {
    color: #e6ae48;
}
/* --------------------------
3. Home and Portfolio
-------------------------- */
/*Owl redesign*/
.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    background-color: transparent !important;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 44px;
    padding: 0;
    margin: 0;
    margin-top: -20px;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    opacity: 0;
}

.owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}
.owl-theme .owl-nav [class*=owl-] i {
    font-size: 24px;
}

.owl-theme .owl-nav .owl-next {
    right: 15px;
}

.owl-theme .owl-nav .owl-prev {
    left: 15px;
}
/*Owl redesign*/

.page-title {
    padding: 80px 0 60px 0;
    text-align: center;
}
.page-title h3 {
    font-size: 30px;
    line-height: 45px;
    letter-spacing: -1px;
}
.page-title span{
    color:#e6ae48;
}
.portfolio {
    padding-bottom: 60px;
}
.portfolio.second .masonry {
    margin-left: 0;
    margin-right: 0;
}
.portfolio.second .masonry .item {
    margin-bottom: 0;
}
.portfolio.second .col-md-4 {
    padding-left: 0;
    padding-right: 0;
}
.portfolio .filters ul {
    text-align: center;
    padding: 25px 0;
}
.portfolio .filters ul li {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 20px;
    display: inline;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
    transition: .3s all;
}
.portfolio .filters ul li:after {
    content: "";
    height: 1px;
    background-color: #e6ae48;
    position: absolute;
    width: 0%;
    bottom: -1px;
    left: 50%;
    transition: .3s all;
}
.portfolio .filters ul li:hover:after {
    color: #e6ae48;
    left: 0;
    width: 100%;
}
.portfolio .filters ul li:hover,
.portfolio .filters ul li.active {
    color: #e6ae48;
}
.portfolio .filters ul li.active:after {
    color: #e6ae48;
    left: 0;
    width: 100%;
}
.portfolio .masonry {
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
}
.portfolio .masonry .item {
    margin-bottom: 30px;
}
.slider{
    position: relative;
}
.slider .item {
    display: table;
    table-layout: auto;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}
.slider .item .overlay{
    position: absolute;
    background-color: #00000061;
    width: 100%;
    height: 100%;
}
.slider .item .content {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    opacity: 0;
    transition: all 1s ease 0.25s;
        position: relative;
}

.slider .owl-item.active .item .content {
    opacity: 1;
}
.slider .item .content h3 {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 105px;
    line-height: 100px;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 700;
    margin-top: 0;
}
.slider .item .content .line {
    background-color: #fff;
    height: 2px;
    width: 70px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 25px;
}
.slider .item .content span {
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    /* text-decoration: underline; */
    padding-bottom: 3px;
    border-bottom: 2px solid #fff;
}
.portfolio .masonry {
    position: relative;
}
.portfolio .masonry .section .item {
    position: relative;
}
.portfolio .masonry .section .item .full-overlay-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.portfolio .masonry .section .item .overlay-wrapper {
    position: absolute;
    top: 17px;
    right: 17px;
    bottom: 17px;
    left: 17px;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    -webkit-transition: .450s cubic-bezier(.210, .6, .355, 1);
    transition: .450s cubic-bezier(.210, .6, .355, 1);
}
.portfolio .masonry .section .item .overlay-wrapper:hover {
    opacity: 1;
}
.portfolio .masonry .item .overlay-wrapper .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: table;
    table-layout: auto;
}
.portfolio .masonry .item .overlay-wrapper .overlay .overlay-inner {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.portfolio .masonry .item .overlay-wrapper .overlay .overlay-inner h3 {
    margin: 0;
    position: relative;
    z-index: 2;
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
   -webkit-transition: 250ms cubic-bezier(.210, .6, .355, 1) 0s;
    transition: 250ms cubic-bezier(.210, .6, .355, 1) 0s;

}
.portfolio .masonry .item:hover .overlay-wrapper .overlay .overlay-inner h3 {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}
.portfolio .masonry .item .overlay-wrapper .overlay .overlay-inner h3 a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Raleway", serif;
}
.portfolio .masonry .item .overlay-wrapper .overlay .overlay-inner h6 {
    margin: 0;
    margin-top: 5px;
    display: inline-block;
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 350ms cubic-bezier(.210, .6, .355, 1) 0s;
    transition: 350ms cubic-bezier(.210, .6, .355, 1) 0s;
}
.portfolio .masonry .item:hover .overlay-wrapper .overlay .overlay-inner h6 {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.portfolio .masonry .item .overlay-wrapper .overlay .overlay-inner h6 a {
    font-family: "Raleway", serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #999;
}
.btn-load-more {
    display: block;
    text-align: center;
    margin: 30px 0;
}
.btn-load-more .load-more {
    padding: 0 32px;
    border-width: 1px;
    border-color: rgba(49, 49, 49, 0.23);
    height: 55px;
    width: 180px;
    line-height: 43px;
    font-size: 12px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    background: transparent;
    border-radius: 2px;
}
.btn-load-more .load-more {
    text-decoration: none;
    color: #999;
    font-weight: 600;
}
.btn-load-more .load-more:hover {
    background: #333;
    color: #fff;
}

/*Skills*/

 .inner-content {
    position: relative;
    margin: 0 0 5px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    color: #303133;
}
 .inner-content .title {
    display: inline-block;
    z-index: 100;
    padding-right: 30px;
}
 .inner-content .number {
    text-align: right;
    position: absolute;
    right: 0;
}
 .skills {
    position: relative;
    overflow: hidden;
}
 .skills .progress {
     height: 10px;
     margin-bottom: 35px;
     overflow: hidden;
     background-color: rgba(119, 119, 119, 0.1);
     border-radius: 5px;
     box-shadow: none;

}
 .skills .progress .progress-bar {
    background-color: rgba(157, 157, 157, 0.7);
}

.our-skills{
    padding: 60px;
}

.inner-content span{
    font-size: 13px;
    text-transform: uppercase;

 }

.mt-30{
    margin-top: 30px;
}

.progress-bar.first{
    background-color: #e6ae48 !important;
}

.progress-bar.second{
    background-color: #192a88 !important;
}

.progress-bar.third{
    background-color: #000 !important;
}
.our-skills p{
    font-size: 14px;
    line-height: 29px;
    color: #999999db;
    margin-right: 50px;
}

.my-blog{
    padding: 20px 60px;
    text-align: center;
}
.my-blog article h4{
    padding: 6px;
    margin-top: -32px;
    border-radius: 8px;
    background-color: #fff;
    background: #fff !important;
}
.my-blog article a{
    text-decoration: none;
    color: #000;
    background: #fff;
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.my-blog article p{
    font-size: 14px;
    line-height: 29px;
    color: #999999db;
    padding-top: 10px;
}
.my-blog .read-more a{
    color:#e6ae48;
}

/*Portfolio Third-Page*/

.portfolio.third .inner-items {
    padding: 120px 45px 10px 31px;
}
.portfolio.third .page-title {
    padding: 0;
    text-align: left;
}
.portfolio.third .page-title h3 {
    font-size: 40px;
    line-height: 56px;
}
.portfolio.third .page-title p {
    color: #999;
}
.portfolio.third .filters ul {
    padding-top: 100px;
    text-align: right;
}
/*Portfolio Fourth-Page*/

.portfolio.second .fourth-page {
    margin: 25px 40px;
}
.portfolio.second .fourth-page .filters ul {
    padding: 0;
    text-align: left;
}
.portfolio.second .fourth-page p {
    text-align: right;
    color: #e6ae48;
    font-size: 12px;
}
/*Single*/

.wrapper .single .items {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    margin-top: 30px;
}
.wrapper .single.two .items{
    margin-top: 0;
}
.wrapper .single .row {
    margin-right: 15px;
    margin-left: 15px;
}
.wrapper .single .items img {
    max-width: 100%;
}
.wrapper .single .items:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}
.wrapper .single .items img {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 0deg) scale3d(1, 1, 1);
    transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 0deg) scale3d(1, 1, 1);
    transition: .3s all;
    width: 100%;
}
.wrapper .single .items .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0;
    left: 0;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    background-color: rgba(255, 255, 255, 0.7);
}
.wrapper .single .items .overlay .overlay-inner {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.wrapper .single .items:hover .overlay {
    opacity: 0.8;
}
.wrapper .single .items .overlay h3 {
    text-align: center;
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 15px);
    -webkit-transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
    -moz-transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
    -o-transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
    transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
}
.wrapper .single .items:hover .overlay h3 {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .3s .1s cubic-bezier(.455, .03, .515, .955);
    -moz-transition: all .3s .1s cubic-bezier(.455, .03, .515, .955);
    -o-transition: all .3s .1s cubic-bezier(.455, .03, .515, .955);
    transition: all .3s .1s cubic-bezier(.455, .03, .515, .955);
}
.wrapper .single .items .overlay h3 a,
.wrapper .single .items .overlay h3 {
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
    font-family: 'Poppins', sans-serif;
}
.wrapper .single .items .overlay h3.plus-gallery {
    font-size: 29px;
}
.wrapper .single .items .overlay h6 {
    text-align: center;
    padding-top: 5px;
    text-decoration: none;
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: translate(translate(0, 10px));
    -moz-transform: translate(translate(0, 10px));
    -ms-transform: translate(translate(0, 10px));
    -o-transform: translate(translate(0, 10px));
    transform: translate(translate(0, 10px));
    -webkit-transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
    -moz-transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
    -o-transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
    transition: all .15s 75ms cubic-bezier(.2, .45, .44, .93);
}
.wrapper .single .items:hover .overlay h6 {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .4s .2s cubic-bezier(.455, .03, .515, .955);
    -moz-transition: all .4s .2s cubic-bezier(.455, .03, .515, .955);
    -o-transition: all .4s .2s cubic-bezier(.455, .03, .515, .955);
    transition: all .4s .2s cubic-bezier(.455, .03, .515, .955);
}
.wrapper .single .items .overlay h6 a {
    font-size: 12px;
    line-height: 21px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}
.gallery img {
    padding-bottom: 30px;
}
img.mfp-img {
    max-height: 90vh !important
}
.typed-cursor {
    display: none;
}
.wrapper .single .text {
    margin: 0 50px 50px 50px;
}
.wrapper .single .text h3 {
    font-size: 16px;
    line-height: 17px;
    padding-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.wrapper .single .text p {
    font-size: 12px;
    color: #757575;
}
.wrapper .single.two .text {
    padding-top: 20px;
}
.wrapper .single .nav-class {
    padding: 45px 45px 40px 45px;
    display: block;
    background-color: #f5f5f5;
    width: 100%;
    border-top: 1px solid rgba(136, 136, 136, 0.07);
    border-bottom: 1px solid rgba(136, 136, 136, 0.07);
}
.wrapper .single .nav-class .navigation {
    display: table;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    padding-left: 0;
    margin: 0;
    border-radius: 2px;
}
.wrapper .single .nav-class .navigation>li {
    display: table-cell;
}
.wrapper .single .nav-class .navigation .prev {
    width: 33.33333%;
    border: 0px;
    text-align: left;
}
.wrapper .single .nav-class .navigation .next {
    width: 33.33333%;
    border: 0px;
    text-align: right;
}
.wrapper .single .nav-class .navigation a {
    color: #333;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}
.wrapper .single .nav-class .navigation a:hover {
    color: #e6ae48;
}
/*Portfolio-Alternative*/

.portfolio.alternative .text {
    padding-top: 10px;
    padding-bottom: 30px;
}
.portfolio.alternative .text p a {
    font-size: 12px;
    line-height: 26px;
    font-family: "Raleway", serif;
    text-transform: uppercase;
    font-weight: 300;
    color: #888;
    text-decoration: none;
}
.portfolio.alternative .text h4 a {
    font-size: 21px;
    line-height: 16px;
    font-weight: 600;
    font-family: "Open+Sans", serif;
    text-decoration: none;
    color: #2d2d2d;
    ;
}
/* --------------------------
4. About
-------------------------- */

.about {
    padding: 20px;
}
.about .text h3 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Raleway";
}
.about .text span {
    color: #e6ae48;
    font-size: 13px;
    line-height: 17px;
}
.about .text p {
    font-size: 12px;
    line-height: 21px;
    color: #888;
    padding-top: 20px;
    margin-right: 50px;
}
/*About2*/

.about.two {
    padding: 0;
}
.about.two .text {
    padding: 30px 80px 45px 80px;
}
.about.two .text span {
    line-height: 30px;
    font-size: 14px;
}
.about.two .text h3 {
    font-size: 19px;
}
.about.two .text p {
    font-size: 14px;
    line-height: 29px;
    margin-right: 0;
}
.about .signature {
    padding-top: 30px;
}
/* --------------------------
5. Blog and BlogSingle
-------------------------- */

.blog {
    padding: 0 45px 30px 45px;
}
.blog article  img{
    width:100%;
}
.blog article .text h4 a {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 25px;
    color: #333;
    text-decoration: none;
}
.blog article {
    margin-bottom: 70px;
}
.blog article .text {
    padding: 20px 40px 20px 40px;
    text-align: center;
}
.blog article .text span a {
    color: #e6ae48;
    letter-spacing: 1px;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
}
.blog article .text .date {
    color: #999;
    font-size: 11px;
    margin-right: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blog article .text .read-more a {
    float: left;
    color: #333;
    font-weight: 500;
    font-size: 12px;
    text-transform: none;
}
.blog article .text p {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    padding-top: 10px;
    text-align: left;
}
/*Blog-Single*/

.blog.single {
    padding: 0;
}
.blog.single .row {
    margin-left: -15px;
    margin-right: -15px;
}
blockquote {
    border-left: 3px solid #f5f5f5;
    border-right: 3px solid #f5f5f5;
    padding: 5px 5px 5px 20px;
    margin-bottom: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.blog.single article .single-pictures {
    margin: 30px 0;
}
.blog.single article {
    margin-bottom: 0;
}
.blog.single article .text .comments h4 {
    text-transform: uppercase;
    font-size: 16px;
    text-align: left;
    padding-bottom: 30px;
}
.blog.single article .text .comments .details {
    text-align: left;
}
.blog.single article .text .comments .details h6 {
    font-size: 15px;
    line-height: 10px;
}
.blog.single article .text .comments .details span {
    font-size: 11px;
    color: #e6ae48;
}
.blog.single article .text .comments .details p {
    padding-top: 5px;
}
.blog.single article .text .comments hr {
    margin-top: 35px;
    margin-bottom: 45px;
}
.blog.single article .text h5 {
    text-transform: uppercase;
    font-size: 16px;
    text-align: left;
    padding-bottom: 30px;
    padding-top: 10px;
}
.blog.single article .contact-form {
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
}
/* --------------------------
6. Contact
-------------------------- */

#map {
    width: 100%;
    height: 460px;
    background-color: grey;
}
.contact {
    padding-bottom: 80px;
}
.contact-form {
    width: 780px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.contact-form label {
    font-size: 13px;
    line-height: 26px;
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
}
.contact-form label span {
    color: #e6ae48;
}
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    background-color: #f5f5f5;
    border-color: rgba(51, 51, 51, 0.02);
    border-width: 1px;
    border-style: solid;
    border-radius: 1px;
    font-weight: 400;
    color: #777777;
    font-size: 13px;
    line-height: 20px;
    padding: 11px 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    outline: 0;
}
.contact-form form textarea {
    height: 200px;
}
.contact-form form input.btn {
    background-color: #333;
    width: 20%;
    height: 45px;
    float: right;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
}
.contact .page-title {
    padding: 65px 0;
}
/* -------------------------
7. Contact
-------------------------- */

footer {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 45px;
}
footer .details p {
    font-family: "Raleway", serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    letter-spacing: 1px;
}
.footer {
    padding: 70px 0;
    background-color: #0f0f0f;
    text-align: center;
}
.footer .item {
    color: #fff;
}
.footer .item h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Lato", serif;
}
.footer .item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
}
.footer .secondrow {
    margin-left: 0;
    margin-right: 0;
}
.footer .item span {
    color: rgba(230, 174, 72, 0.68);
}
.footer .social-icons {
    color: #fff;
}
.footer .social-icons ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.footer .social-icons ul li {
    display: inline-block;
    margin-right: 15px;
}
.footer .social-icons ul li a i {
    font-size: 15px;
    color: #fff;
    line-height: 30px;
}
.footer .social-icons ul li:last-child {
    margin-right: 0;
}
.footer .social-icons ul li a i:hover {
    color: #e6ae48;
}
/* --------------------------
8. Media Screens
-------------------------- */
/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    header .logo a {
        font-size: 45px;
    }
    header .logo span {
        letter-spacing: 6px;
        font-size: 14px;
    }
    header .menu {
        padding: 15px;
    }
    header .menu ul li a {
        font-size: 11px;
    }
    .footer {
        padding: 50px 0;
    }
    .footer .item h4 {
        font-size: 12px;
    }
    .footer .item p {
        font-size: 10px;
        line-height: 17px;
    }
    .footer .social-icons ul li a i {
        font-size: 11px;
    }
    .footer .social-icons ul li {
        margin-right: : 5px;
    }
    footer .details p {
        font-size: 12px;
    }
    header .logo {
        text-align: center;
        padding: 55px 0;
    }
    .page-title h3 {
        font-size: 21px;
        line-height: 36px;
    }
    .portfolio .filters ul {
        padding: 15px 0;
    }
    .page-title {
        padding: 60px 0;
    }
    .portfolio .filters ul li {
        font-size: 10px;
        margin-right: 20px;
    }
    .btn-load-more .load-more {
        padding: 0 20px;
        height: 38px;
        width: 160px;
        line-height: 35px;
        font-size: 10px;
    }
    .portfolio.third .filters ul li {
        margin-right: 10px;
    }
    .portfolio.second .fourth-page {
        margin: 15px 30px;
    }
    .portfolio.third .filters ul {
        padding-top: 70px;
        text-align: center;
    }
    .portfolio.third .page-title h3 {
        font-size: 30px;
        line-height: 44px;
    }
    .portfolio.third .inner-items {
        padding: 80px 45px 9px 45px;
    }
    .blog article .text h4 a {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .blog article .text {
        padding: 10px 40px 0px 40px;
    }
    .blog article .text p {
        font-size: 11px;
        line-height: 20px;
    }
    .blog article .text p {
        font-size: 11px;
        line-height: 20px;
    }
    .blog article .text .date {
        font-size: 11px;
    }
    .blog article {
        margin-bottom: 50px;
    }
    .contact-form {
        width: 550px;
    }
    .contact-form label {
        font-size: 12px;
        line-height: 20px;
    }
    .contact .page-title {
        padding: 30px 0;
    }
    .contact {
        padding-bottom: 40px;
    }
    .portfolio .masonry .item .overlay .overlay-inner h3 a {
        font-size: 15px;
    }
    .about .text p {
        font-size: 10px;
        line-height: 18px;
        margin-right: 0;
    }
    .about .text span {
        color: #e6ae48;
        font-size: 11px;
        line-height: 8px;
    }
    .about .text h3 {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .about.two .text {
        padding: 20px 60px 30px 60px;
    }
    .about.two .text h3 {
        font-size: 15px;
    }
    .about.two .text p {
        font-size: 11px;
        line-height: 22px;
    }
    .about.two .text span {
        line-height: 19px;
        font-size: 12px;
        letter-spacing: 3px;
    }
    .portfolio.alternative .text h4 a {
        font-size: 19px;
    }
    .blog {
        padding: 0 45px 45px 45px;
    }
    .wrapper .single .text p {
        font-size: 11px;
        line-height: 20px;
    }
    .wrapper .single .text h3 {
        font-size: 15px;
    }
    .wrapper .single .text {
        margin: 0 0 40px 0;
    }
    .about .signature{
        margin-bottom: 30px;
    }
    .contact-form form input.btn{
        float:left;
        width:35%;
    }
}
/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
    header .logo {
        padding: 10px 0;
        text-align: left;
        margin-left: 20px;
    }
    header .logo a {
        font-size: 30px;
        line-height: 10px;
    }
    header .logo span {
        letter-spacing: 2px;
        font-size: 10px;
        line-height: 10px;
    }
    header .menu {
        padding: 0;
    }
    header .menu ul {
        display: none;
    }
    .page-title {
        padding: 29px 0;
    }
    .page-title h3 {
        font-size: 15px;
        line-height: 26px;
    }
    .footer .item p {
        padding-bottom: 15px;
    }
    .footer {
        padding: 25px 0;
    }
    .footer .social-icons ul li a i {
        line-height: 20px;
    }
    .portfolio.third .inner-items {
        padding: 36px 45px 9px 45px;
    }
    .portfolio.third .page-title h3 {
        font-size: 26px;
        line-height: 35px;
    }
    .portfolio.third .filters ul {
        padding-top: 40px;
    }
    .portfolio .filters ul li {
        font-size: 10px;
        margin-right: 14px;
    }
    .portfolio.second .fourth-page p {
        text-align: left;
        color: #e6ae48;
        font-size: 11px;
    }
    .about .text h3 {
        font-size: 14px;
    }
    .about {
        padding: 20px;
    }
    .about.two .text {
        padding: 10px 20px 20px 30px;
    }
    .blog {
        padding: 0;
        margin-bottom: 30px;
    }
    .contact-form {
        width: 315px;
    }
    .slicknav_menu {
        display: block;
    }
    .container {
        padding-right: 0;
        padding-left: 0;
    }
    .wrapper {
        margin: 0;
    }
    footer {
        padding: 20px 0;
    }
    header {
        padding-top: 20px;
    }
}
