/*----------------------------------------------------------------*/
/* ----------------------------------------------------------------

 == Table Of Content

	01 Basic
	02 Navbar
	03 Header
	04 Hero
	05 Quote
	06 Portfolio
	07 Numbers
	08 Services
	09 serv-tabs
	10 Team
	11 Price
	12 Testimonials
	13 Blog
	14 Clients
	15 Contact
	16 Footer
	17 Responsive
	18 carousel
	19 custome
 

---------------------------------------------------------------- */
/* ----------------------------------------------------------------
     [ 01 Start Basic ]
-----------------------------------------------------------------*/

@import url("fonts-styles/primary-estedad.css");
@import url("fonts-styles/secondary-pinar.css");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
    list-style: none;
}

html {
    overflow-x: hidden !important;

}

body {
    color: #00000a;
    line-height: 1.3;
    font-weight: 400;
    font-size: 14px;
    font-family: "primary-font", "segoe ui", "tahoma";
    overflow-x: hidden !important;
    direction: rtl;
}

.ltr-text {
    display: inline-block;
    direction: ltr;
}

.primary-font {
    font-family: "primary-font", "segoe ui", "tahoma" !important;
}

.secondary-font {
    font-family: "secondary-font", "primary-font", "segoe ui", "tahoma" !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
    line-height: 1.85;
}

p {
    font-size: 14px;
    color: #666;
    line-height: 2;
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

video {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border-radius: 0;
}


.section-head {
    margin-bottom: 25px;
}

.section-head h4 {
    position: relative;
    margin-top: 50px;
    padding: 0 15px 0 0;
    font-size: 35px;
    font-weight: 700;
}

.section-head h4:before {
    content: '';
    width: 1px;
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
    position: absolute;
    right: 0;
    bottom: 10px;
    top: 10px;
}

.section-head h4 span {
    font-weight: 200;
    padding-bottom: 5px;
}

.bg-gray {
    background: #f7f7f7;
}

.bg-gray .owl-theme .owl-dots .owl-dot span {
    background: #777;
}

.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100% !important;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center !important;
}

.section-padding {
    padding: 100px 0;
}

.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%;
    right: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.cd-headline {
    font-size: 3rem;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .cd-headline {
        font-size: 4.4rem;
        font-weight: 300;
    }
}

@media only screen and (min-width: 1200px) {
    .cd-headline {
        font-size: 6rem;
    }
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: right;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    right: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

/* xclip */
.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
    /* line */
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 2px;
    height: 70%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline b.is-visible {
    opacity: 1;
    font-weight: 900;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F7F8FA;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
}

.butn {
    padding: 10px 30px;
    border: 1px solid #8BC53Bff;
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
    border-radius: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.butn:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 100%;
    z-index: 1;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.butn:hover:after {
    width: 100%;
    right: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.butn span {
    position: relative;
    z-index: 2;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.butn:hover span {
    color: #8BC53Bff;
}

.butn-border {
    background: transparent;
}

.butn-border:after {
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
}

.butn-border span {
    color: #8BC53Bff;
}

.butn-border:hover span {
    color: #fff;
}

/* ----------------------------------------------------------------
     [ End Basic ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 02 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9;
    min-height: 80px;
}

.navbar .icon-bar {
    color: #fff;
}

.navbar .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #eee;
    margin: 15px 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.navbar .navbar-nav .active {
    color: #8BC53Bff !important;
}

.nav-scroll {
    background: #fff;
    box-shadow: 0 1px 0 rgba(12, 12, 12, 0.04);
    position: fixed;
    top: -100px;
    right: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.nav-scroll .icon-bar {
    color: #222;
}

.nav-scroll .navbar-nav .nav-link {
    color: #222;
}

.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #111;
}

.logo {
    height: 30px;
    margin: 10px 0;
}

.logo img {
    width: auto;
    height: 100%;
}

.margin-right {
    margin-right: 20px;
}

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 03 Start Header ]
-----------------------------------------------------------------*/
.header {
    min-height: 100vh;
    overflow: hidden;
}

.header .container {
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 80px;
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h3 {
    font-weight: 400;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.header .caption h1 {
    margin: 15px 0;
    font-size: 70px;
    font-weight: 700;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.header .caption h1 b {
    color: #8BC53Bff;
}

.header .caption p {
    font-size: 16px;
    color: #eee;
    margin-top: 25px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.header .caption .butn {
    margin: 30px 5px 0;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.header .caption .butn:hover {
    border-color: #fff;
}

.header .caption .butn:hover span {
    color: #1c1c1c;
}

.header .caption .butn-border {
    border-color: #fff;
}

.header .caption .butn-border span {
    color: #fff;
}

.header .caption .butn-border:after {
    background: #fff;
}

.header .arrow {
    position: absolute;
    bottom: 5vh;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    z-index: 8;
}

.header .arrow i {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.header .arrow i:before {
    vertical-align: middle;
}

.header .arrow i:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.header .arrow i:hover:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.header.creative .arrow {
    bottom: calc(5vh + 5.5vw);
}

.slider .arrow, .slider-fade .arrow {
    display: none !important;
}

.slider .owl-item, .slider-fade .owl-item {
    height: 100vh;
    min-height: 500px;
    position: relative;
}

.slider .item, .slider-fade .item {
    position: absolute;
    top: 0;
    right: 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%;
}

.creative {
    min-height: calc(100vh + 5.5vw);
    padding-bottom: 5.5vw;
}

.creative .svg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.creative .svg svg {
    fill: #fff;
    width: 101%;
}

.bg-vid {
    position: absolute;
    top: 50%;
    right: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

#particles-js {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 04 Start Hero ]
-----------------------------------------------------------------*/
.hero .extra-text {
    font-weight: 500;
    margin-bottom: 25px;
}

.hero .extra-text span {
    font-weight: 700;
}

.hero .item {
    background: #fff;
    text-align: center;
    padding: 30px 15px;
    -webkit-box-shadow: 0px 5px 35px 0px rgba(148, 148, 148, 0.15);
    box-shadow: 0px 5px 35px 0px rgba(148, 148, 148, 0.15);
    border-radius: 0;
    margin-bottom: 30px;
}

.hero .item .icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #8BC53Bff;
}

.hero .item h6 {
    margin-bottom: 15px;
}

.hero .mission p {
    margin-bottom: 30px;
}

.hero .mission i {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.hero .mission i:before {
    margin-left: 0.1em;
}

.hero .mission .small-text {
    margin-right: 10px;
    font-size: 13px;
    color: #666;
}

.hero .skills {
    padding-top: 80px;
}

.hero .skills .prog-item {
    margin-bottom: 25px;
}

.hero .skills .prog-item:last-child {
    margin-bottom: 0;
}

.hero .skills .prog-item p {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 8px;
}

.hero .skills .prog-item .skills-progress {
    width: 100%;
    height: 2px;
    background: #eee;
    border-radius: 0;
    position: relative;
}

.hero .skills .prog-item .skills-progress span {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
    width: 10%;
    border-radius: 0;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.hero .skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 10px;
    color: #777;
}

/* ----------------------------------------------------------------
     [ End Hero ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 05 Start Quote ]
-----------------------------------------------------------------*/
.quote {
    background-attachment: fixed;
}

.quote p .icon {
    font-size: 30px;
    margin: 0 15px;
    padding: 0;
    opacity: .3;
    line-height: 1;
}

.quote p {
    font-size: 17px;
}

.quote h5 {
    color: #8BC53Bff;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 5px;
    font-family: inherit;
}

.quote h6 {
    font-size: 12px;
    font-family: inherit;
    color: #ccc;
}

/* ----------------------------------------------------------------
     [ End Quote ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 06 Start Portfolio ]
-----------------------------------------------------------------*/
.portfolio {
    overflow: hidden;
}

.portfolio .filtering span {
    margin-left: 30px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    line-height: 2;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.portfolio .filtering span:last-child {
    margin: 0;
}

.portfolio .filtering .active {
    border-color: #8BC53Bff;
    color: #8BC53Bff;
}

.portfolio .items {
    margin-top: 30px;
}


.portfolio .item-img a:hover {
    transform: scale(1.1);
}

.portfolio .item-img {
    position: relative;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    transition: 1s;
}

.portfolio .item-img img {
    transition: 5s;
}

.portfolio .item-img a {
    position: absolute;
    bottom: 10px;
    padding: 5px 12px;
    text-decoration: none;
    font-size: 11px;
    border-radius: 0;
    opacity: 0;
    transition: 0.3s;
    width: max-content;
    z-index: 3;
}

.portfolio .item-img a:first-of-type {
    left: 10px;
    background: linear-gradient(135deg, rgb(139, 197, 59), rgb(182, 230, 78));
    color: whitesmoke;
}

.portfolio .item-img a:last-of-type {
    left: 75px;
    background: linear-gradient(135deg, #cfcfcf, #e4e2e2);
    color: #606060;
}

.portfolio .item-img:hover {
    transform: scale(1.1);
    z-index: 5;
}

.portfolio .item-img:hover img:first-child {
    transform: translateY(calc(-100% + 300px));
}

.portfolio .item-img:hover a {
    opacity: 1;
}

.portfolio .item-img:hover .item-img-overlay {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.portfolio .item-img:hover p {
    opacity: 1;
    -webkit-transform: translateY(0);
}

.portfolio .item-img:hover h6 {
    opacity: 1;
    -webkit-transform: translateY(0);
}

.portfolio .item-img:hover .overlay-info img {
    opacity: 1;
    -webkit-transform: translateY(0);
}

.portfolio .item-img p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;

    text-align: right;
    font-family: inherit;
    font-size: 16px;
    color: whitesmoke !important;
    position: absolute;
    right: 20px;
    bottom: 60px;
    margin-bottom: 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.portfolio .item-img h6 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    font-family: inherit;
    font-size: 12px;
    color: whitesmoke;
    position: absolute;
    right: 55px;
    bottom: 35px;
    margin-bottom: 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.portfolio .item-img .overlay-info img {
    position: absolute;
    right: 20px;
    bottom: 35px;
    width: 30px;
    margin-bottom: 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.portfolio .item-img-overlay {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(#0000, #020203a8 53.12%, #040405e6);
    color: black;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 2;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.portfolio .item-img-overlay p {
    color: black;
}

/* ----------------------------------------------------------------
     [ End Portfolio ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 07 Start Numbers ]
-----------------------------------------------------------------*/
.numbers {
    background-attachment: fixed;
}

.numbers .item .icon {
    font-size: 45px;
    margin-bottom: 10px;
    color: #ccc;
}

.numbers .item h2 {
    font-weight: 800;
    font-family: inherit;
    margin-bottom: 8px;
}

.numbers .item h6 {
    font-size: 16px;
    color: #ccc;
    font-weight: 500;
    font-family: inherit;
}

/* ----------------------------------------------------------------
     [ End Numbers ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 08 Start services ]
-----------------------------------------------------------------*/
.services .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    -webkit-box-shadow: 0px 5px 35px 0px rgba(148, 148, 148, 0.15);
    box-shadow: 0px 5px 35px 0px rgba(148, 148, 148, 0.15);
    border-radius: 0;
    margin-bottom: 30px;
}

.services .item .icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #8BC53Bff;
}

.services .item h6 {
    margin-bottom: 15px;
    font-weight: 500;
}

/* ----------------------------------------------------------------
     [ End Services ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 09 Start Services Tabs ]
-----------------------------------------------------------------*/
.serv-tabs {
    background-attachment: fixed;
}

.serv-tabs .content .tab-item {
    display: none;
    position: relative;
}

.serv-tabs .content .curent {
    display: block;
}

.serv-tabs .content .bord {
    padding-left: 30px;
}

.serv-tabs .content .bord:after {
    content: '';
    width: 1px;
    height: 100%;
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
    position: absolute;
    left: 1px;
    top: 0;
    opacity: .7;
}

.serv-tabs .content .spcial {
    padding-right: 30px;
}

.serv-tabs .content .spcial p {
    color: #fff;
    font-size: 16px;
}

.serv-tabs .tabs-icon {
    margin-top: 20px;
}

.serv-tabs .tabs-icon .item div {
    text-align: center;
    padding: 25px 0;
    background: rgba(70, 70, 70, 0.55);
    margin-top: 30px;
    border-radius: 0;
    cursor: pointer;
}

.serv-tabs .tabs-icon .item .icon {
    font-size: 30px;
    color: #8BC53Bff;
    margin-bottom: 6px;
}

.serv-tabs .tabs-icon .item h6 {
    font-size: 16px;
    font-weight: 500;
}

.serv-tabs .tabs-icon .active div {
    background: #fff;
}

.serv-tabs .tabs-icon .active h6 {
    color: #111;
}

/* ----------------------------------------------------------------
     [ End Services Tabs ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 10 Start Team ]
-----------------------------------------------------------------*/
.team .titem .team-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    margin: auto;
}

.team .titem .team-img:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.team .titem img {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.team .titem h6 {
    font-size: 17px;
    font-weight: 500;
    font-family: inherit;
    margin: 20px 0 10px;
}

.team .titem span {
    font-size: 14px;
    color: #959595;
}

.team .titem .social {
    margin: 20px 0 15px;
}

.team .titem .social a {
    margin: 0 7px;
}

/* ----------------------------------------------------------------
     [ End Team ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 11 Start Price ]
-----------------------------------------------------------------*/
.price .item {
    padding: 30px 0;
    background: #fff;
    border-radius: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.price .item:hover {
    -webkit-box-shadow: 0px 5px 40px 0px rgba(148, 148, 148, 0.2);
    box-shadow: 0px 5px 40px 0px rgba(148, 148, 148, 0.2);
}

.price .type {
    margin-bottom: 30px;
}

.price .type .icon {
    display: none;
    font-size: 45px;
    color: #eee;
    margin-bottom: 10px;
}

.price .type h4 {
    font-size: 25px;
    font-weight: 500;
}

.price .value {
    padding: 30px 0;
    position: relative;
}

.price .value:before, .price .value:after {
    content: '';
    background: #eee;
    width: 70%;
    height: 1px;
    position: absolute;
    right: 15%;
}

.price .value:before {
    top: 0;
}

.price .value:after {
    bottom: 0;
}

.price .value h3 {
    display: inline-block;
    padding-left: 10px;
    font-size: 35px;
    font-weight: 800;
    font-family: inherit;
    position: relative;
}

.price .value h3 span {
    font-size: 14px;
    position: absolute;
    top: 15px;
    left: -37px;
}

.price .value .per {
    font-size: 13px;
    color: #777;
    vertical-align: middle;
    margin-top: 10px;
}

.price .features {
    padding: 15px 0;
}

.price .features li {
    margin: 15px 0;
    color: #777;
}

.price .order {
    padding-top: 15px;
    position: relative;
}

.price .order:before {
    content: '';
    background: #eee;
    width: 70%;
    height: 1px;
    position: absolute;
    right: 15%;
    top: 0;
}

.price .order .butn {
    margin-top: 15px;
}

.price .active {
    -webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------------
     [ End Price ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 12 Start Testimonails ]
-----------------------------------------------------------------*/
.testimonails {
    background-attachment: fixed;
}

.testimonails .client-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .2);
    overflow: hidden;
    margin: 0 auto 15px;
}

.testimonails h5 {
    color: #8BC53Bff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    margin: 0 0 5px;
}

.testimonails h6 {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 30px;
    font-family: inherit;
}

.testimonails .owl-theme .owl-dots {
    margin-top: 30px !important;
}

/* ----------------------------------------------------------------
     [ End Testimonails ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 13 Start Blog ]
-----------------------------------------------------------------*/
.blog .item {
    -webkit-box-shadow: 0px 5px 35px 0px rgba(148, 148, 148, 0.15);
    box-shadow: 0px 5px 35px 0px rgba(148, 148, 148, 0.15);
    border-radius: 0;
    transition: all 1s;
}

.blog .item:hover {
    transform: scale(1.1);
}

.blog .item .post-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}


.blog .item .post-img:hover img {
    transform: translateY(calc(-100% + 200px));
}


.blog .item .post-img a {
    width: 100%;
}

.blog .item .post-img img {
    -webkit-transition: all 5s;
    transition: all 5s;
}

.blog .item .post-img .date {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #111;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}

.blog .item .post-img .date span {
    display: block;
    font-weight: 700;
    font-size: 12px;
}

.blog .item .content {
    padding: 40px 15px;
    background: #fff;
}

.blog .item .content .tag {
    color: #8BC53Bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog .item .content h5 {
    font-weight: 500;
    font-size: 20px;
    font-family: inherit;
    margin-bottom: 15px;
}

.min-header {
    height: 50vh;
    min-height: 300px;
    background-color: #1c1c1c;
    position: relative;
}

.min-header .v-middle {
    z-index: 4;
}

.min-header h5 {
    font-weight: 700;
    color: #ccc;
    margin-bottom: 15px;
}

.min-header .path {
    display: inline-block;
    padding: 4px 10px 0;
    text-align: center;
    background: rgba(100, 100, 100, .2);
    line-height: 1.85;
}

.min-header .path span {
    margin-bottom: 4px;
    color: #ddd;
}

.min-header .path span:after {
    content: '>>';
    margin: 0 10px;
}

.min-header .path span:last-child:after {
    display: none;
}

.blogs .posts .post {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.blogs .posts .post .full-width {
    border-radius: 0;
    width: 100%;
    overflow: hidden;
}

.blogs .posts .post .full-width img {
    transition: all 5s;
}

.blogs .posts .post .full-width:hover img {
    transform: scale(1.1);
}

.blogs .posts .post .content {
    padding: 50px 15px;
    background: #fff;
}

.blogs .posts .post .content .post-title h5 {
    font-weight: 700;
    font-size: 20px;
    font-family: inherit;
    line-height: 1.95;
    margin-bottom: 16px;
}

.blogs .posts .post .content .meta {
    margin-bottom: 20px;
}

.blogs .posts .post .content .meta li {
    display: inline-block;
    font-size: 12px;
    color: #777;
    margin: 5px;
}

.blogs .posts .post .content .spical {
    padding: 15px;
    margin: 30px 0;
    border-right: 2px solid #111;
    background: #f7f7f7;
    font-size: 16px;
}

.blogs .posts .post .content .butn {
    margin-top: 30px;
    padding: 8px 30px;
    border: 2px solid #ddd;
    font-size: 14px;
}

.blogs .posts .post .content .butn:hover {
    border-color: #8BC53Bff;
}

.blogs .posts .post .content .butn span {
    color: inherit;
}

.blogs .posts .post .content .butn:hover span {
    color: #fff;
}

.blogs .posts .post .share-post {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    text-align: right;
}

.blogs .posts .post .share-post span {
    font-weight: 700;
}

.blogs .posts .post .share-post ul {
    float: left;
}

.blogs .posts .post .share-post ul li {
    display: inline-block;
    margin: 0 10px;
}

.blogs .posts .title-g h3 {
    font-weight: 800;
    font-size: 25px;
}

.blogs .posts .comments-area .comment-box {
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #eee;
}

.blogs .posts .comments-area .comment-box .comment-box {
    margin-right: 80px;
    padding-bottom: 0;
    padding-top: 45px;
    margin-bottom: 0;
    margin-top: 45px;
    border-bottom: 0;
    border-top: 1px solid #eee;
}

.blogs .posts .comments-area .comment-box:last-child {
    margin-bottom: 0;
}

.blogs .posts .comments-area .comment-box .author-thumb {
    width: 80px;
    float: right;
}

.blogs .posts .comments-area .comment-box .comment-info {
    margin-right: 100px;
}

.blogs .posts .comments-area .comment-box .comment-info h6 {
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    margin-bottom: 10px;
}

.blogs .posts .comments-area .comment-box .comment-info .reply {
    margin-top: 12px;
    font-weight: 600;
}

.blogs .posts .comments-area .comment-box .comment-info .reply i {
    padding-left: 5px;
    font-size: 12px;
}

.blogs .posts .comment-form .form input[type='text'],
.blogs .posts .comment-form .form input[type='email'],
.blogs .posts .comment-form .form textarea {
    width: 100%;
    border: 0;
    border-radius: 0;
    padding: 10px 13px;
    background: #f4f4f4;
}

.blogs .posts .comment-form .form .has-error input[type='text'],
.blogs .posts .comment-form .form .has-error input[type='email'],
.blogs .posts .comment-form .form .has-error textarea {
    background: #fff5f5;
}

.blogs .posts .comment-form .form textarea {
    min-height: 78px;
    max-width: 100%;
    line-height: 2;
}

.blogs .posts .comment-form .form button[type='submit'] {
    background: linear-gradient(135deg, #8BC53B, #B6E64E);
    border: 1px solid #8BC53Bff;
    color: #fff;
    padding: 10px 30px;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.blogs .posts .comment-form .form button[type='submit']:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 100%;
    z-index: 1;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogs .posts .comment-form .form button[type='submit'] span {
    position: relative;
    z-index: 2;
}

.blogs .posts .comment-form .form button[type='submit']:hover:after {
    width: 100%;
    right: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.blogs .posts .comment-form .form button[type='submit']:hover span {
    color: #8BC53Bff;
}

.blogs .posts .pagination {
    display: block;
    text-align: center;
}

.blogs .posts .pagination ul {
    margin-bottom: 0;
}

.blogs .posts .pagination li {
    display: inline-block;
    margin: 2px;
}

.blogs .posts .pagination li a {
    min-width: 29px;
    padding: 5px 10px;
    border: 1px solid #ddd;
}

.blogs .posts .pagination li span {
    min-width: 29px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    background-color: #ddd;
}

.blogs .side-bar .widget {
    margin-bottom: 50px;
}

.blogs .side-bar .widget:last-child {
    margin-bottom: 0;
}

.blogs .side-bar .widget .widget-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.blogs .side-bar .widget .widget-title h6 {
    position: relative;
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
}

.blogs .side-bar .widget .widget-title h6:after {
    content: '';
    width: 30px;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    right: 0;
}

.blogs .side-bar .widget li {
    margin-bottom: 5px;
    color: #777;
    line-height: 1.85;
}

.blogs .side-bar .widget li:last-child {
    margin: 0;
}

.blogs .side-bar .search form input {
    width: calc(100% - 52px);
    height: 50px;
    padding: 0 15px;
    border: 0;
    background: #dadada;
}

.blogs .side-bar .search form button {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #1c1c1c;
    color: #fff;
    border: 0;
    float: left;
    cursor: pointer;
}

.blogs .side-bar .search form button i {
    vertical-align: middle;
}

/* ----------------------------------------------------------------
     [ End Blog ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 14 Start Clients ]
-----------------------------------------------------------------*/
.clients {
    padding: 30px 0;
}

.clients .brand {
    padding: 15px;
    opacity: .5;
}

.clients .brand:hover {
    opacity: 1;
}

/* ----------------------------------------------------------------
     [ End Clients ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 15 Start Contact ]
-----------------------------------------------------------------*/
.contact .map {
    padding: 0;
    position: relative;
    z-index: 4;
}

.contact .map #ieatmaps {
    height: 100%;
    min-height: 400px;
}

.contact .map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    vertical-align: top;
}

.information {
    padding: 80px 0;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.information .info .item {
    min-height: 100%;
    padding: 30px;
    background: rgba(70, 70, 70, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
}

.information .info .item .icon {
    font-size: 45px;
}

.information .info .item .cont {
    margin-right: 40px;
    align-self: normal;
}

.information .info .item .cont h6 {
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 5px;
}

.information .info .item .cont p {
    color: #999;
}

.information .info .item .cont p span {
    color: inherit;
}

.contact .contact-form {
    padding: 80px 50px;
}

.contact .contact-form input[type='text'],
.contact .contact-form input[type='email'],
.contact .contact-form textarea {
    width: 100%;
    padding: 10px 13px;
    border: 0;
    background: #f7f7f7;
    border-radius: 0;
}

.contact .contact-form .has-error input[type='text'],
.contact .contact-form .has-error input[type='email'],
.contact .contact-form .has-error textarea {
    background: #fff5f5;
}

.contact .contact-form textarea {
    min-height: 78px;
    max-width: 100%;
    line-height: 2;
}

.contact .contact-form .butn {
    margin-top: 15px;
}

.contact .contact-form .alert {
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 36px;
}

/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 16 Start Footer ]
-----------------------------------------------------------------*/
footer {
    background: #111;
    padding: 80px 0;
}

footer .logo {
    margin-bottom: 15px;
}

footer .social a {
    color: #777;
    font-size: 18px;
    margin: 15px 12px;
}

footer p {
    color: #777;
    font-weight: 700;
}

/* ----------------------------------------------------------------
     [ End Footer ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 17 Responsive ]
-----------------------------------------------------------------*/
@media screen and (max-width: 991.98px) {
    .mb-md50 {
        margin-bottom: 50px;
    }

    .mb-md30 {
        margin-bottom: 30px;
    }

    .mb-md0 {
        margin-bottom: 0;
    }

    .navbar .logo {
        margin-right: 12px;
    }

    .navbar button {
        outline: none !important;
        padding: 0.65rem 0.75rem;
    }

    .navbar .navbar-collapse {
        max-height: -webkit-calc(100vh - 100%);
        max-height: -moz-calc(100vh - 100%);
        max-height: calc(100vh - 100%);
        overflow: auto;
        background: #111;
        text-align: center;
        padding: 0 15px;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        margin: auto;
    }

    .navbar .navbar-collapse.collapsing {
        overflow: hidden;
    }

    .navbar .navbar-collapse .navbar-nav {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar .nav-link {
        margin: 10px auto !important;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }

    .nav-scroll .navbar-collapse .active {
        color: #8BC53Bff !important;
    }

    .header .caption h2 {
        font-size: 30px;
    }

    .header .caption h1 {
        font-size: 50px;
    }

    .header .caption p {
        font-size: 16px;
    }

    .serv-tabs .content .bord {
        padding-left: 0;
        margin-bottom: 50px;
    }

    .serv-tabs .content .bord:after {
        display: none;
    }

    .serv-tabs .content .spcial {
        padding-right: 0;
    }

    .contact .map {
        height: 500px;
    }

    .information .info {
        margin-bottom: 30px;
    }

    .information .info:last-child {
        margin-bottom: 0;
    }

}

@media screen and (max-width: 767.98px) {
    .mb-sm50 {
        margin-bottom: 50px;
    }

    .mb-sm30 {
        margin-bottom: 30px;
    }

    .header .caption h3 {
        font-size: 20px;
    }

    .header .caption h1 {
        font-size: 30px;
    }

    .serv-tabs .tabs-icon .item .icon {
        margin-bottom: 10px;
    }

    .serv-tabs .tabs-icon .item div {
        padding: 15px 0 20px;
    }

    .side-bar {
        margin-top: 100px;
    }
}

@media screen and (max-width: 575.98px) {
    .blogs .posts .comments-area .comment-box .comment-box {
        margin-right: 40px;
    }

    .blogs .posts .comments-area .comment-box .author-thumb {
        width: 60px;
    }

    .blogs .posts .comments-area .comment-box .comment-info {
        margin-right: 80px;
    }

    .contact .contact-form {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* ----------------------------------------------------------------
     [ End Responsive ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 18 carousel ]
-----------------------------------------------------------------*/
.flickity-button {
    display: none !important;
}

.owl-carousel .item {
    width: 100% !important;
    margin: 12px;
}

.carousel-cell {
    width: 250px;
    margin: 8px;
}

/* ----------------------------------------------------------------
 	 [ End carousel ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 19 custome ]
-----------------------------------------------------------------*/
.height-400 {
    top: 0 !important;
    height: 400px !important;
}

.blogs .posts .post .height-400:hover img {
    transform: translateY(calc(-100% + 400px));
}

.hero {
    position: relative;
}

.icon {
    width: 80px;
}

.icon50 {
    width: 50px;
}

.item {
    margin-bottom: 15px;
}

.item-img-overlay.valign a:last-child {
    left: 86%;
}


.portfolio-comment {
    margin-bottom: 20px;
}

.portfolio-comment video {
    border-radius: 0;
}


.custome-video {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.31);
    width: 100%;
}

/* ----------------------------------------------------------------
     [ End custome ]
-----------------------------------------------------------------*/