/* Visual Composer CSS */
.photty_element_wrap .countdown .item {
    display: inline-block;
    text-align: center;
    margin-right: 10%;
    letter-spacing: 0.1em;
}

.photty_element_wrap .countdown .item:last-child {
    margin-right: 0;
}

.photty_element_wrap .countdown .item span {
    font-size: 110px;
    font-weight: 500;
}

.photty_element_wrap .countdown .item span.label {
    font-size: 1em;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
    margin-top: 18px;
}

.photty_cs_bottom {
    position: absolute;
    left: 0;
    text-align: center;
    width: 100%;
}

.photty_element_blog .entry-title {
    margin-bottom: 7px;
}

.photty_element_blog .photty_meta {
    text-align: center;
}

.photty_excerpt {
    letter-spacing: 0;
}

.photty_element_blog .photty_excerpt {
    margin-top: 18px;
    text-align: center;
}

.stand_post {
    margin-bottom: 60px;
}

.photty_post_formats {
    text-align: center;
}

.photty_stand_fi {
    display: inline-block;
}

.photty_element_blog .photty_post_formats {
    margin-bottom: 27px;
}

.photty_owlCarousel {
    opacity: 0;
}

/* G R I D   &   M A S O N R Y   G A L L E R Y */
/* Isotope */
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope, .isotope .isotope-item {
    -webkit-transition-duration: .8s;
    -moz-transition-duration: .8s;
    transition-duration: .8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    transition-duration: 0;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

/* Module CSS */
.grid_columns1 .grid-item {
    width: calc(100% - 1px);
}

.grid_columns2 .grid-item {
    width: calc(50% - 1px);
}

.grid_columns3 .grid-item {
    width: calc(33.33% - 1px);
}

.grid_columns4 .grid-item {
    width: calc(25% - 1px);
}

.grid_columns5 .grid-item {
    width: calc(20% - 1px);
}

.grid_columns6 .grid-item {
    width: calc(16.66% - 1px);
}

.grid-item .grid-item-inner {
    position: relative;
    transition: z-index 500ms, opacity 500ms;
}

.grid-item .grid-item-inner a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 18;
}

.photty_grid_inner .grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 400ms;
}

.photty_grid_wrapper .grid-item .grid_overlay {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 400ms;
    opacity: 0;
    z-index: 17;
}

.photty_grid_wrapper .grid-item:hover .grid_overlay {
    opacity: 1;
}

/* Items load_anim FX */
.load_anim,
.anim_el.load_anim {
    opacity: 0 !important;
    z-index: -10 !important;
}

.load_anim.anim_el.grid-item {
    opacity: 1 !important;
    z-index: 2 !important;
}

.anim_el2.load_anim.anim_el.grid-item {
    opacity: 0 !important;
}

.grid-item .photty-img-preloader {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 500ms, z-index 500ms;
}

.load_anim.anim_el.grid-item .photty-img-preloader {
    opacity: 1;
    z-index: 5;
}

.grid-item .photty-img-preloader:before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    border: rgba(0, 0, 0, 0) 3px solid;
    border-top-color: #77797a;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

    -webkit-animation: sas_preloader 750ms ease-in-out infinite;
    animation: sas_preloader 750ms ease-in-out infinite;
}

.grid-item .photty-img-preloader:before {
    -webkit-animation: sas_preloader 750ms ease-in-out infinite;
    animation: sas_preloader 750ms ease-in-out infinite;
    opacity: 1;
}

.load_anim.anim_el.grid-item img.grid_thmb {
    opacity: 0;
}

.anim_el {
    transition: opacity 500ms !important;
}

.grid_loadmore_wrapper {
    text-align: center;
    display: block;
}

.grid_load_more.photty_button {
    margin: 0 auto;
    display: inline-block;
    padding: 13px 40px 15px 40px;
    letter-spacing: 1.65px;
}

@keyframes sas_preloader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes sas_preloader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Photty Image Carousel */
.owl-carousel.photty_image_carousel .owl-stage,
.owl-carousel.photty_image_carousel .owl-stage a {
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.photty_image_carousel .owl-stage:active,
.owl-carousel.photty_image_carousel .owl-stage:active a {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.photty_image_carousel .owl-dots {
    display: none;
}

.photty_image_carousel .photty_img_carousel_item {
    position: relative;
}

.photty_image_carousel .photty_img_carousel_item .photty_img_carousel_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 400ms;
    opacity: 0;
}

.photty_image_carousel .photty_img_carousel_item:hover .photty_img_carousel_overlay {
    opacity: 1;
}

.photty_image_carousel .photty_img_carousel_item a.swipebox {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Photty Price Table */
.photty_price_table {
    display: block;
    position: relative;
}

.photty_price_table .photty_price_table_item:first-child {
    border-radius: 2px 0 0 2px;
}

.photty_price_table .photty_price_table_item:last-child {
    border-radius: 0 2px 2px 0;
}

.photty_price_table .photty_price_table_item {
    position: relative;
    display: block;
    background: #f8f8f8;
    float: left;
    text-align: center;
    padding: 58px 0 59px 0;
}

.photty_price_table .photty_price_table_item.most_popular_item {
    background: #e8eaee;
    border-radius: 2px;
    margin: -20px 0 0 0;
    padding: 78px 0 81px 0;
}

.photty_most_popular_label {
    background: #1f232f;
    color: #ffffff;
    text-transform: uppercase;
    position: absolute;
    right: 30px;
    top: 30px;
    border-radius: 2px;
    font-siZe: 10px;
    line-height: 17px;
    padding: 5px 8px 5px 9px;
    letter-spacing: 1.9px;
}

.photty_price_item_title {
    text-transform: uppercase;
    margin-bottom: 40px;
}

.photty_price_item_content {
    font-size: 15px;
    padding-top: 10px;
}

.photty_price_item_content p {
    font-size: 15px;
    margin: 15px 0;
}

.photty_price_item_content br {
    display: none;
}

.photty_price_item_content p:empty {
    display: none;
}

.photty_price_table_item .photty_button,
.photty_price_table_item.most_popular_item .photty_button:hover {
    background: #1f232f;
}

.photty_price_item_price_block span {
    display: inline-block;
}

.photty_price_item_currency {
    font-size: 52px;
    line-height: 54px;
    vertical-align: top;
}

.photty_price_item_price {
    font-size: 86px;
    line-height: 88px;
    letter-spacing: -3px;
    margin-left: -6px;
}

.photty_price_item_period {
    font-size: 25px;
    line-height: 27px;
    margin-left: -8px;
}

.photty_price_item_button_wrapper {
    padding-top: 20px;
}

.photty_price_item_button_wrapper a.photty_button.photty_price_item_button {
    padding: 13px 30px 15px 30px;
}

/* Promo Text */
.photty_promo_text_inner {
    text-align: center;
}

.photty_promo_text_button_wrapper {
    padding-top: 55px;
}

.photty_promo_text_button_wrapper a.photty_button {
    padding: 13px 30px 15px 30px;
}

/* Testimonials */
.photty_testimonials_slider.photty_owlCarousel.owl-carousel .owl-dots {
    transform: none;
}

.photty_testimonials_slider .photty_testimonials_item {
    text-align: center;
    padding: 0 50px 47px 50px;
}

.photty_testimonials_slider .photty_testimonials_item img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    border-radius: 100%;
    display: inline-block;
    margin: 0 auto;
}

.photty_testimonials_slider .photty_testimonials_item div,
.photty_testimonials_slider .photty_testimonials_item h5 {
    color: #2d2d38;
}

.photty_testimonials_slider .photty_testimonials_item h5 {
    line-height: 30px;
    margin: 0 0 16px 0;
}

.photty_testimonials_slider .photty_testimonials_item div.testimonials_author {
    font-size: 13px;
}

/* Works Slider */
.photty_works_slider_image {
    position: relative;
    margin-bottom: 25px;
}

.photty_works_slider_image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.3;
    z-index: 10;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.photty_works_slider_image .photty_works_slider_title {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    margin: 0 0 28px 0;
}

.photty_works_content {
    overflow: hidden;
}

.photty_works_column3,
.photty_works_column6 {
    float: left;
}

.photty_works_column3 {
    width: 25%;
}

.photty_works_column3 > div {
    padding-right: 30px;
}

.photty_works_column6 {
    width: 50%;
}

.photty_works_slider_item .photty_works_column3 .photty_works_option:first-child {
    margin: 0 0 20px 0;
}

.photty_works_slider_item .photty_works_column3 .photty_works_option h6 {
    text-transform: uppercase;
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 16px;
}

.photty_works_slider.photty_owlCarousel.owl-carousel .owl-dots {
    transform: none;
    margin-top: 50px !important;
}

/* OWL Dots style for Works Slider */
.photty_works_slider.photty_owlCarousel.owl-carousel .owl-dot {
    border: rgba(35, 38, 41, 0) 2px solid;
}

.photty_works_slider.photty_owlCarousel.owl-carousel .owl-dot.active {
    border: rgba(35, 38, 41, 1) 2px solid;
}

.photty_works_slider.photty_owlCarousel.owl-carousel .owl-dot {
    border: rgba(35, 38, 41, 0) 2px solid;
}

.photty_works_slider.photty_owlCarousel.owl-carousel .owl-dot span {
    background: rgba(35, 38, 41, 0.5);
}

.photty_works_slider.photty_owlCarousel.owl-carousel .owl-dot.active span {
    background: rgba(35, 38, 41, 0);
}

/* Grid Blog */
.photty_blog_grid_img_link {
	display:block;
}
.photty_blog_grid {
    font-size: 0;
    line-height: 0;
}

.photty_blog_grid .photty_grid_post_wrapper {
    display: inline-block;
    vertical-align: top;
    margin-left: -1px;
}

.photty_blog_grid .photty_pf_quote {
    background: #1f232f;
    position: relative;
}

.photty_blog_grid .photty_pf_quote_cont {
    padding: 0 40px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog_grid_loadmore_wrapper {
    text-align: center;
}

.blog_grid_loadmore_wrapper a.blog_grid_load_more {
    line-height: 20px;
    padding: 14px 40px 16px 40px;
    margin-top: 15px;
}

/* Stripes */
.photty_stripes {
    position: relative;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.photty_stripes:before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.3;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 30;
    pointer-events: none;
}

.stripes_fullscreen_on.photty_stripes {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.photty_stripes .photty_stripes_item {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    position: relative;
}

.photty_stripes .photty_stripes_item .photty_stripes_item_inner {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stripes_title,
.stripes_descr {
    color: #ffffff;
}

.stripes_title {
    margin-bottom: 12px;
}

.stripes_descr {
    font-size: 13px;
    line-height: 15px;
    padding-bottom: 93px;
}

.photty_stripes .photty_stripes_item a.stripe_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: none;
	z-index: 50;
}

.photty_stripes .photty_stripes_item a.stripe_button_link {
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    transition: none;
}

.stripe_button_link span {
    position: absolute;
    background: #ffffff;
    width: 10px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    transition: width 350ms;
}

.stripe_button_link:hover span {
    width: 100%;
}

.photty_stripe_content {
    width: 100%;
    text-align: center;
    bottom: 33px;
    left: 0;
    position: absolute;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0 30px;
    z-index: 33;
}

/* PM Simple Slider */
.photty_simple_slider_wrapper {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: opacity 500ms, height 300ms;
}

.photty_simple_slider_wrapper.presetup {
    opacity: 0;
}

.photty_simple_slider,
.photty_simple_slider_content {
    opacity: 0;
    transition: opacity 600ms;
}

.photty_simple_slider_wrapper.photty_simple_slider_started .photty_simple_slider,
.photty_simple_slider_wrapper.photty_simple_slider_started .photty_simple_slider_content {
    opacity: 1;
}

.photty_simple_slider_wrapper:before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    border-radius: 100%;
    border: rgba(0, 0, 0, 0) 3px solid;
    border-top-color: #77797a;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: opacity 500ms;
    -webkit-animation: sas_preloader 750ms ease-in-out infinite;
    animation: sas_preloader 750ms ease-in-out infinite;
}

.photty_simple_slider_wrapper.photty_simple_slider_started:before {
    opacity: 0;
    pointer-events: none;
}

.photty_simple_slider_wrapper .photty_simple_slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
}

.photty_simple_slider_wrapper .photty_simple_slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 1000ms, z-index 500ms;
}

.photty_simple_slider_wrapper .photty_simple_slide.active {
    opacity: 1;
    z-index: 10 !important;
}

.photty_simple_slider_overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.photty_simple_slider_content {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0 50px;
    transform: translate(-50%, -50%);
    z-index: 17;
    width: 100%;
}

.photty_simple_slider_content .photty_simple_slider_title:empty,
.photty_simple_slider_content .photty_simple_slider_caption:empty {
    display: none;
}

.photty_simple_slider_content .photty_simple_slider_title {
    margin-bottom: 22px;
}

.photty_simple_slider_content .photty_simple_slider_caption {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 56px;
}

.photty_simple_slider_button_wrapper a.photty_button {
    padding: 13px 30px 15px 30px;
    transition: background 400ms, color 400ms;
}