/* 
    01. Google Fonts
    02. Global Properties
    03. Preloader
	04. Sections
	05. Buttons
    06. Scrollbar
    07. Selection
    08. Header
    09. Slider
	10. Services
    11. About
    12. FAQs
    13. Team
	14. Testimonials
	15. Blog
    16. Contact
	17. Footer
    18. Overlay Effect Bg image
	19. Media Query
*/


/* =======  01. Google Fonts (Playfair Display & Open Sans)  ======= */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

/* ======= 02. Global Properties  ======= */


/* Typography */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}


body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.9em;
    font-weight: 400;
    color: #828282;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.9em;
    font-weight: 400;
    color: #828282;
}

img {
    width: 100%;
    height: auto;
}

span,
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 30px;
    
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}


/* margin top */

.mt-100 {
    margin-top: 100px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-10 {
    margin-top: 27px;
    margin-bottom:35px;
}


/* margin bottom */
.mb-10 {
    margin-bottom: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}


/* margin top */

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


/* padding-bottom */

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

b {
    color: #fdb813;
    font-weight: 500;
}


/* br-10 */

.br {
    border-radius: 10px;
}


/* ======= 03. Preloader  ======= */

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 999999999;
}

.loader {
    height: 1px;
    background-color: #fff;
    position: absolute;
    z-index: 999999999;
}



/* ======= 04. Sections  ======= */


/* section head gold */

.section-padding {
    /*padding: 100px 0;*/
	padding:30px 0px 15px 0px;
}

.section-head-gold {
    text-align: center;
}

.section-head-gold h4 {
    font-size: 35px;
    font-weight: 500;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 30px;
}

.section-head-gold h4::before,
.section-head-gold h4::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    background-color: #fdb813;
}

.section-head-gold h4::before {
    bottom: 0px;
    right: calc(50% - 15px);
}

.section-head-gold h4::after {
    bottom: 0;
    left: calc(50% - 15px);
}

.section-head-gold.left {
    text-align: left;
}

.section-head-gold.left h4::before {
    right: auto;
    left: 0;
}

.section-head-gold.left h4::after {
    left: 0;
    width: 70px;
}


/* section head white */

.section-head-white {
    margin-bottom: 70px;
    text-align: center;
}

.section-head-white h4 {
    font-size: 30px;
    font-weight: 500;
    position: relative;
}

.section-head-white h4::before,
.section-head-white h4::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    background-color: #fff;
}

.section-head-white h4::before {
    bottom: 0px;
    right: calc(50% - 15px);
}

.section-head-white h4::after {
    bottom: 0;
    left: calc(50% - 15px);
}

.section-head-white.left {
    text-align: left;
}

.section-head-white.left h4::before {
    right: auto;
    left: 0;
}

.section-head-white.left h4::after {
    left: 0;
    width: 70px;
}

[data-overlay-color] .section-head-gold p {
    color: #828282;
}

[data-overlay-color] .section-head-white p {
    color: #828282;
}

.bg-gray {
    background: #f9f9f9;
}

.o-hidden {
    overflow: hidden;
}

.pos-re {
    position: relative;
}

.full-width {
    width: 100% !important;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


/* owl theme */

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 15px;
    line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 7px;
    border-radius: 50%;
    background: #ddd;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fdb813;
}


/* ======= 05. Buttons  ======= */
.butn {
    padding: 12px 32px;
    background: #000000;
    border: 1px solid transparent;
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
    outline: none !important;
    overflow: hidden;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.butn span {
    position: relative;
    z-index: 2;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    color: #fff;
	font-family: 'Open Sans', sans-serif;
}

.butn:before,
.butn:after {
    content: '';
    width: 0;
    height: 100%;
    background: #000000;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    z-index: 1;
    opacity: .4;
}

.butn:after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background: #000000;
    opacity: 1;
}

.butn:hover:before,
.butn:hover:after {
    width: 100%;
}

.butn:hover:after {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.butn:hover span {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.butn-bg {
    margin-top: 10px;
    background: #fdb813;
    border-color: #fdb813;
    color: #000000;
    border-radius: 30px;
}

.butn-bg:hover span {
    color: #fdb813;
}

.butn-light {
    background: #000000;
}

.butn-light:before,
.butn-light:after {
    background: #fdb813;
}

.butn-light:hover span {
    color: #000000;
}

.butn-light span {
    color: #fdb813;
}

.butn-bord {
    background: transparent;
    border: 1px solid #fdb813;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.butn-bord:before,
.butn-bord:after {
    background: #fdb813;
}

.butn-bord:hover {
    border-color: #fdb813;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.butn-bord:hover span {
    color: #000000;
}


/* ======= 06. Scrollbar  ======= */

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}


/* ======= 05. Selection  ======= */

::-webkit-selection {
    color: #828282;
    background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
    color: #828282;
    background: rgba(0, 0, 0, 0.1);
}

::selection {
    color: #828282;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= 07. Header  ======= */

.header {
    min-height: 100vh;
	/*
    position: relative;
	max-height: 60vh;
	overflow: hidden;
	*/
}

.header.video {
    overflow: hidden;
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h4 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    letter-spacing: 20px;
}

.header .caption h1 {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fdb813;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.header .caption p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    color: #fff;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.header .caption p span {
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 15px;
    position: relative;
}

.header .caption p span:last-child {
    padding: 0;
}

.header .caption p span:last-child:after {
    display: none;
}

.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #fdb813;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}

.header .caption .fonda-button {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.header .image-logo {
    width: 120px;
    display: inline-block;
    margin-bottom: 15px;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}


/* ======= 08. Slider  ======= */

.slider .owl-item,
.slider-fade .owl-item {
    height: 110vh;
    position: relative;
}

.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}

.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 5vh;
    width: 100%;
}


/* ======= 09. Services  ======= */

.services .extra-title {}

.services .extra-title span {
    color: #fdb813;
}

.services .feat-item .feat-inner {
    padding: 40px 20px;
    -webkit-box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    background: #fff;
    border: 1px solid #fff;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-bottom: 30px;
}

.services .feat-item .feat-inner:hover {
    border: 1px solid #fdb813;
}

.services .feat-item.active .feat-inner {
    margin-top: -25px;
    padding-top: 75px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 3;
}

.services .feat-item .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    /*font-size: 40px;*/
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    z-index: 3;
    text-align: center;
    /*float: left;*/
    color: #84bd00;
}

.services .feat-item .feat-info {
    overflow: hidden;
    margin-top: 10px;
}

.services .feat-item h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.services .feat-item h6 {
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
}


/* ======= 10. About ======= */

.about .tab-content .left .box-white {
    padding: 50px 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 5px 5px 5px;
}

.signature {
    width: 180px;
    text-align: right;
}

.title {
    font-size: 35px;
    margin-bottom: 15px;
}

.sub-title {
    color: #fdb813;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Open Sans', sans-serif;
}

.feat li {
    margin: 0;
    text-align: center;
    padding: 30px 5px;
    background-color: #f7f7f7;
}

.feat li:nth-child(odd) {
    background-color: #f3f3f3;
}

.feat li:hover {
    color: #fff;
    background-color: #fdb813;
}

.feat li:hover .icon {
    color: #eee;
}

.feat {
    margin: 0;
}

.feat .icon {
    font-size: 30px;
    color: #fdb813;

}

.feat h6 {
    font-size: 15px;
    font-weight: 400;
}

.about .tab-content .image {
    padding: 0;
    position: relative;
    margin-left: -20px;
    margin-top: -40px;
    max-width: calc(50% + 20px);
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.image .img {
    position: relative;
}

.image .img .vid {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 1.4em;
    font-size: 70px;
    color: #fdb813;
    z-index: 3;
}

.image .img .vid:hover:after {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
}

.image .img .vid:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .7;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.image .img img {
    border-radius: 5px;
    -webkit-box-shadow: 0 25px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.07);
}

.about .tab-content .image .owl-dots {
    margin-top: -30px;
    position: relative;
    z-index: 7;
}


/* about-us */

.about-us .img {
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-us .item .icon {
    width: 85px;
    height: 85px;
    text-align: center;
    line-height: 85px;
    font-size: 35px;
    border-radius: 50%;
    border: 1px solid transparent;
    color: #fdb813;
    float: left;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.about-us .item .icon:before {
    position: relative;
    z-index: 3;
}

.about-us .item .cont {
    margin-left: 100px;
}

.about-us .item .cont h5 {
    font-size: 18px;
    font-weight: 500;

}

.about-us .item .cont p {
    font-size: 15px;
}


/* ======= 11. FAQ ======= */

.card {
    background-color: transparent;
    border: 0px solid transparent;
    border-radius: 0px;
}

.card-header {
    /*padding: 15px 30px 15px 30px;*/
	padding:0px 5px 5px 5px
    border: 1px solid #F7F8F9;
    background-color: #F7F8F9;
}

.card-header .btn-link {
    color: #333333;
}

.card-body {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    padding: 10px 10px 20px 10px;
}

.card-title {
    text-align: left;
    position: relative;
    margin: 0;
}

.accordion > .card .card-header {
	/*
    margin-bottom: 15px;
    -webkit-box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    background: #fff;
    border: 1px solid #fff;
	*/
	margin-bottom: 10px;
    border-radius: 5px;
    background: #fdb813;
    border: 1px solid #e4a613;	
}
/*
.accordion .card-header:after {
    font-family: 'FontAwesome';
    content: "\f107";
    float: right;
    color: #fdb813;
}

.accordion .card-header.collapsed:after {
    content: "\f105";
    color: #fdb813;
}
*/

.collapse {
/*   
border: 1px solid #fdb813;
margin-bottom: 10px;
*/
}

/* ======= 12. Team  ======= */

.team .item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}

.team .item:hover .team-img:after {
    opacity: .9;
}

.team .item:hover .social {
    bottom: 30%;
}

.team .item .team-img {
    position: relative;
    overflow: hidden;
}

.team .item .team-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdb813;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.team .item:hover .info {
    bottom: 30px;
}

.team .info {
    color: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50%;
    z-index: 2;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.team .info h6 {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.team .info span {
    font-weight: 500;
    color: #fff;
}

.team .info .social a {
    font-size: 15px;
    margin: 10px;
}


.team .item .infos {
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 20px;
    background-color: #fff;
}

.team .item .infos h6 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 0px;
}

.team .item .infos span {
    color: #828282;
    font-size: 15px;
    font-weight: 400;
}


/* ======= 13. Testimonials  ======= */

.rating {
    float: right;
    white-space: nowrap;
    line-height: 100%;
    display: inline-block;
    font-size: 0;
    position: relative;
    overflow: hidden;
    width: 85px;
    margin-top: 15px;
}

.rating::before,
.rating span::before {
    font-family: 'FontAwesome', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.5;
}

.rating::before {
    content: "\f005\f005\f005\f005\f005";
    color: #ccc;
}

.rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    line-height: 100%;
}

.rating span::before {
    content: "\f005\f005\f005\f005\f005";
    color: #fdb813;
}

.rating.rating-5 span {
    width: 100%;
}

.testimonials .item-box {
    margin-bottom: 20px;
}

.testimonials .item-inner {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
}

.testimonials .item-box .quote span {
    color: #fdb813;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: none;

}

.testimonials .item-box p {
    font-size: 15px;
    color: #828282;
    font-weight: 400;
    text-align: left;
}

.quote {
    padding: 10px;
}

.testimonials .item-box .info {
    text-align: left;
    margin: 30px 0 15px;
}

.testimonials .item-box .info .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}

.testimonials .item-box .info .cont {
    margin-left: 60px;
    padding-top: 12px;
}

.testimonials .item-box .info h6 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 0.5em;
    font-style: italic;
}

.testimonials .item-box .info span {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: #ccc;
}


/* ======= 14. Blog  ======= */

.blog .item {
    -webkit-box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    margin-bottom: 30px;
}

.blog .item .post-img {
    overflow: hidden;
    position: relative;
    border-radius: 5px 5px 0 0;
}

.blog .item .post-img:hover .img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.blog .item .post-img .img {
    -webkit-transition: all .4s;
    transition: all .4s;
}

.blog .item .cont {
    padding: 20px 20px 40px 20px;
}

.blog .item .cont h6 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog .item .info {
    font-size: 15px;
    color: #828282;
    margin-bottom: 10px;

}

.blog .item .info a {
    margin-right: 0px;
    font-size: 13px;
}

.blog .item .info a:last-child {
    margin-right: 0;
}

.blog .item .info b {
    color: #000000;
    font-weight: 400;
}

.blog .item .more {
    font-size: 15px;
    font-weight: 500;
    color: #fdb813;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
}

.blog .item .more:hover i {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.blog .item .more i {
    font-size: 10px;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}


/* blog pagination */

.ann-pagination-wrap {
    padding-top: 40px;
}

.ann-pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}

.ann-pagination-wrap li a {
    background: #f6f6f6;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #828282;
    font-weight: 400;
    border-radius: 50%;
}

.ann-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}

.ann-pagination-wrap li a.active {
    background-color: #fdb813;
    border: 1px solid #fdb813;
    color: #fff;
}

/* blog and post sidebar */
.side-bar .widget {
    margin-bottom: 50px;
    overflow: hidden;
}

.side-bar .widget ul {
    margin-bottom: 0;
}

.side-bar .widget ul li {
    margin-bottom: 10px;
}

.side-bar .widget ul li:last-child {
    margin-bottom: 0;
}

.side-bar .widget ul li i {
    font-size: 10px;
    margin-right: 5px;
    color: #fdb813;
}

.side-bar .widget .recent li {
    display: block;
    overflow: hidden;
}

.side-bar .widget .recent .thum {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
}

.side-bar .widget .recent a {
    display: block;
}

.side-bar .widget-title {
    margin-bottom: 30px;
}

.side-bar .widget-title h6 {
    font-size: 24px;
    background-color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.side-bar .search form {
    position: relative;
}

.side-bar .search form input {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f7f7f7;
}

.side-bar .search form button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    color: #828282;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.side-bar .gallery li {
    width: 33.33333%;
    float: left;
    border: 5px solid #fff;
}

.side-bar .tags li {
    font-size: 12px;
    margin: 2px !important;
    padding: 5px 10px;
    background-color: #000000;
    color: #fff !important;
    border-radius: 4px;
    float: left;
}

.side-bar .tags li:hover {
    background-color: #fdb813;
}


/* Post */

.post .item {
    margin-bottom: 0px;
}

.post .item .post-img {
    overflow: hidden;
    position: relative;
}

.post .item .post-img:hover .img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.post .item .post-img .img {
    -webkit-transition: all .4s;
    transition: all .4s;
}

.post .item .cont {
    padding: 20px 0px;
}

.post .item .cont h6 {
    font-size: 24px;
    margin-bottom: 10px;
}

.post .item .info {
    font-size: 15px;
    color: #828282;
    margin-bottom: 10px;

}

.post .item .info a {
    margin-right: 0px;
    font-size: 13px;
}

.post .item .info a:last-child {
    margin-right: 0;
}

.post .item .info b {
    color: #000000;
    font-weight: 400;
}

.post .item .more {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fdb813;
}

.post .item .more:hover i {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.post .item .more i {
    font-size: 10px;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.post .item .spical {
    margin: 15px;
    padding: 15px;
    border-left: 4px solid #000000;
}

.breadcru i {
    font-size: 8px;
}

.breadcru a,
.breadcru i {
    color: #84bd00;
    ;
    margin: 0 10px 0;
}

.breadcru a:hover {
    color: #fff;
    ;
    margin: 0 10px 0;
}

/* Post Comment */
.post .title {
    font-size: 24px;
    margin-bottom: 50px;
    padding-bottom: 15px;
    position: relative;
}

.post .title:after {
    content: '';
    width: 60px;
    height: 2px;
    background: #fdb813;
    position: absolute;
    left: 0;
    bottom: 0;
}

.post .comments,
.post .add-comment {
    padding: 15px 0px;
    border-radius: 5px;
}

.post .comments .com,
.post .add-comment .com {
    margin-bottom: 60px;
}

.post .comments .com:last-child,
.post .add-comment .com:last-child {
    margin-bottom: 0;
}

.post .comments .com:nth-child(odd),
.post .add-comment .com:nth-child(odd) {
    margin-left: 50px;
}

.post .comments .img,
.post .add-comment .img {
    width: 80px;
    height: 80px;
    float: left;
    border-radius: 50%;
    border: 1px solid #eee;
    overflow: hidden;
    margin-right: 15px;
}

.post .comment .cont,
.post .add-comment .cont {
    margin-left: 75px;
}

.post .comments .cont h6,
.post .add-comment .cont h6 {
    font-size: 18px;
    margin-bottom: 0px;
}

.post .comments .cont span,
.post .add-comment .cont span {
    color: #828282;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 0px;
}

.post .comments .cont .reply,
.post .add-comment .cont .reply {
    float: right;
    margin-right: 15px;
    margin-top: -15px;
    font-size: 15px;
}

.post .comments .cont .reply:hover,
.post .add-comment .cont .reply:hover {
    color: #fdb813;
}


/* ======= 16. Contact  ======= */

.contact .contact-info h5 {
    font-size: 18px;
    font-weight: 500;

}

.contact .contact-info .item {
    text-align: center;
}

.contact .contact-info .item .icon {
    font-size: 40px;
    color: #fdb813;
}

.contact .contact-info .item .cont {
    margin-bottom: 0px
}

.contact .contact-info .item .cont h6 {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.contact .contact-info .item .cont p {
    color: #84bd00;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    margin-right:0;
}

.contact .form input,
.contact .form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 0;
    background-color: #f9f9f9;
    font-weight: 400;
}

.contact .form textarea {
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}

.contact .fonda-button {
    margin: 0;
}


/* ======= 17. Footer  ======= */

footer {
    padding: 130px 0;
    background-color: #333333;
}

footer .social a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: transparent;
    border-radius: 50%;
    color: #84bd00;
    font-size: 18px;
    margin: 0px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

footer .social a:hover {
    color: #fff;
}

footer .social a::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-color: #84bd00;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
    border-radius: 50%;
    transition: 0.4s;
}

footer .social a:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

footer .social a i {
    position: relative;
}

footer p {
    color: #e7e6e4;
    font-size: 12px;
    font-weight: 400;
}

footer p a {
    color: #fdb813;
}

footer img {
    width: 100px;
    margin-bottom: 15px;

}


/* ======= 18. Overlay Effect Bg image  ======= */

[data-overlay-dark],
[data-overlay-color],
[data-overlay-light] {
    position: relative;
}

[data-overlay-dark] .container,
[data-overlay-color] .container,
[data-overlay-light] .container {
    position: relative;
    color: #fff;
    z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-color]:before,
[data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-dark]:before {
    background: #000;
}

[data-overlay-color]:before {
    background-color: #000;
}

[data-overlay-light]:before {
    background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}

[data-overlay-dark] p {
    color: #ccc;
}

[data-overlay-dark="0"]:before,
[data-overlay-color="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-color="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-color="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-color="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-color="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-color="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-color="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-color="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-color="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-color="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-color="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}


/* ======= 19. Media Query  ======= */

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding-left: 30px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .mobile-navigation {
        display: inline-block;
    }

    #primary-navigation {
        display: none;
    }

    .section-padding {
        padding: 100px 0;
    }

    .fonda-side-content > .logo h1 {
        color: #fff;
        font-weight: 500;
        margin: 0;
        font-size: 15px;
        margin-left: 10px;
    }

    .fonda-side-content > .logo h1 span {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .about-us .content {
        margin-top: 50px
    }

    .mb-md50 {
        margin-bottom: 50px;
    }

    .mb-md30 {
        margin-bottom: 30px;
    }

    .mb-md0 {
        margin-bottom: 0;
    }

    .bgimg-height {
        height: 400px;
    }

    .bg-fixed {
        background-attachment: scroll !important;
    }

    .header {
        background-attachment: scroll !important;
        background-position: 50% 0 !important;
    }

    .header .caption h4 {
        font-size: 30px;
    }

    .header .caption h1 {
        font-size: 45px;
        line-height: 1.2em;
    }

    .services .feat-item.active .text-center {
        padding-top: 50px;
        margin-top: 0;
    }

    .about .tab-content .image {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        margin: 50px 0 0;
    }

    .fonda-side-content > .logo h1 {
        color: #fff;
        font-weight: 500;
        margin: 0;
        font-size: 15px;
        margin-left: 10px;
    }

    .fonda-side-content > .logo h1 span {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .section-head-white {
        margin-bottom: 50px;
    }

    .services .feat-item.active .feat-inner {
        margin-top: 0;
    }

    .mb-sm50 {
        margin-bottom: 50px;
    }

    .mb-sm30 {
        margin-bottom: 30px;
    }

    .services .extra-title {
        font-size: 22px;
    }

    .works .filtering .filter {
        padding: 0;
    }

    .works .filtering span {
        margin: 0;
    }

    .section-padding {
        padding: 70px 0;
    }

    .fonda-side-content > .logo img {
        max-width: inherit;
        max-height: 30px;
        width: auto;
    }

    .fonda-side-content > .logo h1 {
        color: #fff;
        font-weight: 500;
        margin: 0;
        font-size: 15px;
        margin-left: 10px;
    }

    .fonda-side-content > .logo h1 span {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .header .caption h4 {
        font-size: 15px;
        line-height: 1.75em;
    }

    .header .caption h1 {
        font-size: 40px;
        line-height: 1.2em;
    }

    .works .filtering span {
        padding: 5px 12px;
    }

    .fonda-side-content > .logo img {
        max-width: inherit;
        max-height: 30px;
        width: auto;
    }

    .fonda-side-content > .logo h1 {
        color: #fff;
        font-weight: 500;
        margin: 0;
        font-size: 18px;
        margin-left: 10px;
    }

    .fonda-side-content > .logo h1 span {
        display: none;
    }

    .header .caption p {
        font-size: 15px;
        font-weight: 400;
        color: #eee;
        word-spacing: 2px;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }
}
