/*--------------------------------------------------------------
== Lottie Animations
--------------------------------------------------------------*/
.mgpro-lottie-animations-wrapper {
    min-height: 1px;
}
a{
    transition: 0.3s;
}
/* Carousel arrow style*/
.no-load {
    opacity: 0;
    max-height: 300px;
}

.hide {
    display: none;
}

.mgpro-carousel .swiper-button-prev,
.mgpro-carousel .swiper-container-rtl .swiper-button-next,
.mgpro-carousel .swiper-button-prev:after,
.mgpro-carousel .swiper-container-rtl .swiper-button-next:after,
.mgpro-carousel .swiper-button-next,
.mgpro-carousel .swiper-container-rtl .swiper-button-prev,
.mgpro-carousel .swiper-button-next:after,
.mgpro-carousel .swiper-container-rtl .swiper-button-prev:after {
    background: transparent;
    content: inherit;
}

.mgpro-carousel.swiper-container-horizontal>.swiper-pagination-bullets,
.mgpro-carousel .swiper-pagination-custom,
.mgpro-carousel .swiper-pagination-fraction {
    bottom: -5px;
}


/* Photo bunch style */

@-webkit-keyframes mg_rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes mg_rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes mg_rotating_inverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes mg_rotating_inverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes mg_bounce_sm {

    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }
}

@keyframes mg_bounce_sm {

    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }
}

@-webkit-keyframes mg_bounce_md {

    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}

@keyframes mg_bounce_md {

    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}

@-webkit-keyframes mg_bounce_lg {

    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
    }
}

@keyframes mg_bounce_lg {

    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
    }
}

@-webkit-keyframes mg_fade {

    0%,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes mg_fade {

    0%,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@-webkit-keyframes mg_scale_sm {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes mg_scale_sm {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@-webkit-keyframes mg_scale_md {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}

@keyframes mg_scale_md {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}

@-webkit-keyframes mg_scale_lg {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}

@keyframes mg_scale_lg {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}

.mg-photo-stack-wrapper {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mg-photo-stack-wrapper .mg-photo-stack-item {
    position: absolute;
}

.mg-rotating,
.mg-rotating-inverse {
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform;
}

.mg-rotating {
    -webkit-animation: mg_rotating 50s linear infinite;
    animation: mg_rotating 50s linear infinite;
    -webkit-animation-name: mg_rotating;
    animation-name: mg_rotating;
}

.mg-rotating-inverse {
    -webkit-animation-name: mg_rotating_inverse;
    animation-name: mg_rotating_inverse;
}

.mg-rotating,
.mg-rotating-inverse {
    -webkit-animation-duration: var(--animation_speed, 5s);
    animation-duration: var(--animation_speed, 5s);
}

.mg-bounce,
.mg-bounce-fast {
    -webkit-animation: mg_bounce 6s ease infinite;
    animation: mg_bounce 6s ease infinite;
    will-change: transform;
}

.mg-bounce {
    -webkit-animation: mg_bounce 3s ease-in-out infinite;
    animation: mg_bounce 3s ease-in-out infinite;
}

.mg-bounce-lg,
.mg-bounce-md,
.mg-bounce-sm,
.mg-fade,
.mg-scale-lg,
.mg-scale-md,
.mg-scale-sm {
    -webkit-animation-name: mg_bounce_sm;
    animation-name: mg_bounce_sm;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform;
}

.mg-bounce-lg,
.mg-bounce-md,
.mg-fade,
.mg-scale-lg,
.mg-scale-md,
.mg-scale-sm {
    -webkit-animation-name: mg_bounce_md;
    animation-name: mg_bounce_md;
}

.mg-bounce-lg,
.mg-fade,
.mg-scale-lg,
.mg-scale-md,
.mg-scale-sm {
    -webkit-animation-name: mg_bounce_lg;
    animation-name: mg_bounce_lg;
}

.mg-fade,
.mg-scale-lg,
.mg-scale-md,
.mg-scale-sm {
    -webkit-animation-name: mg_scale_sm;
    animation-name: mg_scale_sm;
}

.mg-fade,
.mg-scale-lg,
.mg-scale-md {
    -webkit-animation-name: mg_scale_md;
    animation-name: mg_scale_md;
}

.mg-fade,
.mg-scale-lg {
    -webkit-animation-name: mg_scale_lg;
    animation-name: mg_scale_lg;
}

.mg-fade {
    -webkit-animation-name: mg_fade;
    animation-name: mg_fade;
}

.mg-bounce-lg,
.mg-bounce-md,
.mg-bounce-sm,
.mg-fade,
.mg-scale-lg,
.mg-scale-md,
.mg-scale-sm {
    -webkit-animation-duration: var(--animation_speed, 5s);
    animation-duration: var(--animation_speed, 5s);
}

.scale,
.scale-inverse,
.scale-inverse-lg,
.scale-inverse-sm,
.scale-lg,
.scale-sm {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.scale *,
.scale-inverse *,
.scale-inverse-lg *,
.scale-inverse-sm *,
.scale-lg *,
.scale-sm * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.scale-sm:hover,
.scaled-sm {
    z-index: 999;
    -webkit-transform: scale(1.05) !important;
    -ms-transform: scale(1.05) !important;
    transform: scale(1.05) !important;
}

.scale:hover,
.scaled {
    z-index: 999;
    -webkit-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
}

.scale-lg:hover,
.scaled-lg {
    z-index: 999;
    -webkit-transform: scale(1.15) !important;
    -ms-transform: scale(1.15) !important;
    transform: scale(1.15) !important;
}

.scale-inverse-sm:hover {
    -webkit-transform: scale(0.95) !important;
    -ms-transform: scale(0.95) !important;
    transform: scale(0.95) !important;
}

.scale-inverse:hover {
    -webkit-transform: scale(0.925) !important;
    -ms-transform: scale(0.925) !important;
    transform: scale(0.925) !important;
}

.scale-inverse-lg:hover {
    -webkit-transform: scale(0.9) !important;
    -ms-transform: scale(0.9) !important;
    transform: scale(0.9) !important;
}

.fly-sm {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fly-sm:hover {
    -webkit-transform: translate(0, -3px) !important;
    -ms-transform: translate(0, -3px) !important;
    transform: translate(0, -3px) !important;
}

.fly-sm,
.fly-sm * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.fly {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fly:hover {
    -webkit-transform: translate(0, -6px) !important;
    -ms-transform: translate(0, -6px) !important;
    transform: translate(0, -6px) !important;
}

.fly,
.fly * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.fly-lg {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fly-lg:hover {
    -webkit-transform: translate(0, -9px) !important;
    -ms-transform: translate(0, -9px) !important;
    transform: translate(0, -9px) !important;
}

.fly-lg,
.fly-lg * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* PDF viewr*/

.mg-title-flex,
.pdf-icon,
.pdf_viewer_options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pdf_viewer_options {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mg-title-flex,
.pdf-icon {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.mg-title-flex {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.pdf-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mg-title-flex h2 {
    margin-bottom: 5px;
}

.pdf-button a {
    padding: 12px 20px;
    border-radius: 5px;
    background-color: #075da9;
    color: #fff;
}

.mg-pdf-error {
    min-height: 300px;
    background: #fafafa;
}

.mg-pdf-error h3 {
    color: #b50000;
    font-size: 30px;
}

/* Promo Box Css */


.promo-box {
    text-align: center;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 40px 25px 40px 25px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

h4.mg-promo-subtitle {
    font-size: 20px;
}

.mg-promo-subtitle {
    margin: 0;
    color: gray;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.mg-promo-title {
    font-weight: bold;
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.mg-extra-subtitle {
    margin: 0;
    color: #898787;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.mg-promo-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    overflow: hidden;
}

.mg-promo-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 20px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

p.mg-promo-des {
    font-size: 25px;
}

.mg-promo-des {
    color: #333;
    margin-top: 0;
    margin-bottom: 40px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.mg-promo-btn {
    text-decoration: none;
    font-size: 18px;
    background: black;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.mg-promo-btn:hover {
    background-color: blueviolet;
    color: #fff;
}

.mg-promo-badge {
    position: absolute;
    top: 35%;
    right: 10%;
    width: 100px;
    height: 100px;
    background-color: blueviolet;
    color: #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-size: 25px;
    overflow: hidden;
}



/* Comparison Table*/
.mg-comparison-table {
    position: relative
}

.mg-comparison-table__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 0;
    background-color: #001D9C;
    color: #fff;
    vertical-align: middle;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px
}

.mg-comparison-table__head-column-cell-title-tag {
    margin: 0
}

.mg-comparison-table__head.table-sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%
}

.mg-comparison-table__head-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 15px;
    width: 15%
}

.mg-comparison-table__head-item:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.mg-comparison-table__head-item .mg-comparison-table__head-column-cell-icon {
    margin: 0 10px 0 0
}

.mg-comparison-table__head-item.icon-right .mg-comparison-table__head-column-cell-icon {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 0 10px
}

.mg-comparison-table__row {
    margin-bottom: 25px
}

.mg-comparison-table__row-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #e7e7e9;
    background-color: transparent;
    vertical-align: middle
}

.mg-comparison-table__row-item:first-child {
    border-top: 0
}

.mg-comparison-table__row-item:last-child {
    border-bottom: 0
}

.mg-comparison-table__row-item-cell {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 15px;
    width: 15%
}

.mg-comparison-table__row-item-cell:first-child {
    -webkit-box-flex: 10;
    -ms-flex-positive: 10;
    flex-grow: 10
}

.mg-comparison-table__row-item-cell-title-tag {
    margin: 0;
    font-weight: var(--e-global-typography-text-font-weight);
    font-family: var(--e-global-typography-text-font-family), Sans-serif
}

.mg-comparison-table__row-cell-icon {
    font-size: 20px;
    line-height: 1
}
.tesitmonila-car-main {
    padding-bottom: 30px;
    overflow: hidden;
}
.mg-comparison-table__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 15px;
}

.mg-comparison-table__btns-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 15%;
    text-align: center
}

@media screen and (min-width: 300px) and (max-width:900px) {
    .mg-comparison-table__btns-item {
        width: auto
    }
}

.mg-comparison-table__btns-item a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #673ab7;
    color: #fff;
    font-weight: var(--e-global-typography-accent-font-weight);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif
}

.mg-comparison-table__btns-item a:hover {
    background-color: #001D9C
}

@media screen and (min-width: 300px) and (max-width:900px) {
    .mg-comparison-table .elementor-widget-container {
        overflow-x: auto
    }
}




/*------------------------------------------------------------------
Price Menu Css 
-------------------------------------------------------------------*/
.mgp-price-list .mgp-price-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.mgp-price-list .mgp-price-list-text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.mgp-price-list .mgp-price-list-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
}

.mgp-price-list.no-separator .mgp-price-list-header {
    display: block;
}

.mgp-price-list .mgp-price-list-image {
    padding-right: 18px;
    width: 150px;
    min-width: 150px;
}

.mgp-price-list .mgp-price-list-image img {
    width: 100%;
}

.mgp-price-list .mgp-price-list-title {
    max-width: 80%;
}

.mgp-price-list .mgp-price-list-description {
    color: #999999;
    font-size: 14px;
    margin: 10px 0 0;
}

.mgp-price-list .mgp-price-list-separator {
    border-bottom: 2px dotted #b5b5b5;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 20px;
    height: 0;
}

.mgp-price-list .mgp-price-list-price-wrap {
    display: inline-block;
}

.mgp-price-list.mgp-price-list-inline .mgp-price-list-price-wrap {
    margin-top: 10px;
}

.mgp-price-list .mgp-price-list-price {
    font-size: 16px;
    border-radius: 2px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mgp-price-list .mgp-price-list-discount-price {
    text-decoration: line-through;
    color: #ccc;
}

/* RTL */
body.rtl .mgp-price-list .mgp-price-list-image {
    padding-left: 25px;
    padding-right: 0;
}

body.rtl .mgp-price-list .mgp-price-list-price {
    padding-right: 30px;
    padding-left: 0;
}

/*------------------------------------------------------------------
Responsive
-------------------------------------------------------------------*/
@media only screen and (max-width: 480px) {
    .mgp-price-list .mgp-price-list-item {
        display: block;
    }

    .mgp-price-list .mgp-price-list-image {
        padding: 0;
    }

    .mgp-price-list .mgp-price-list-title {
        font-size: 14px;
        max-width: 100%;
    }

    .mgp-price-list .mgp-price-list-description {
        font-size: 12px;
    }
}

/* Filter style*/

.xportfolio .xportfolio-item button:hover,
.xportfolio .xportfolio-item button.active {
    color: #333;
    background: #fff;
}

.xportfolio .xportfolio-item {
    margin: 0 auto;
    padding: 10px;
}

.xportfolio .xportfolio-item button {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    color: #000;
    margin-right: 0.6rem;
    border-radius: 0;
    text-transform: uppercase;
    margin: 10px 0;
}

.xportfolio .xportfolio-item.pxmenus2 button,
.xportfolio .xportfolio-item.pxmenus3 button {
    border: 1px solid #ccc;
    background: #001D9C;
    color: #fff;
}

.xportfolio .xportfolio-item.pxmenus3 button.active,
.xportfolio .xportfolio-item.pxmenus3 button:hover,
.xportfolio .xportfolio-item.pxmenus2 button.active,
.xportfolio .xportfolio-item.pxmenus2 button:hover {
    color: #001D9C;
    background: #fff;
}

.xportfolio .xportfolio-item.pxmenus3 button {
    border-radius: 20px;
}

.filters.pxm-filters {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.xp-filter-items .col-lg-4.filtr-item {
    width: 33% !important;
}
.xportfolio .xportfolio-item.pxmenus4 button {
    border-radius: 0 20px;
}

.pxn-fullnav button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.xportfolio .view-icon i {
    font-size: 50px;
}

.xportfolio.pxgstyle1 .xportfolio-single {
    padding: 0;
    border-radius: 0;
}

.xportfolio .xportfolio-heading {
    font-weight: 600;
    color: #001D9C;
    font-size: 24px;
    margin: 5px 0 10px 0;
    text-transform: inherit;
}

.pfilter-ioverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0.2;
}

/* Common style */
.pfilter-item figure .xportfolio-heading,
.pfilter-item figure .xportfolio-subtitle,
.pfilter-item figure a {
    color: #fff;
}

.pfilter-item figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin-bottom: 20px !important;
    width: 100%;
    height: auto;
    background: #3085a3;
    text-align: center;
}

.pfilter-item figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.pfilter-item figure figcaption {
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pfilter-item figure figcaption::before,
.pfilter-item figure figcaption::after {
    pointer-events: none;
}

.pfilter-item figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.pfilter-item figure figcaption>a {
    font-size: 14px;
}

.pfilter-item figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.pfilter-item figure h2 span {
    font-weight: 800;
}

.pfilter-item figure h2,
.pfilter-item figure p {
    margin: 0;
}

.pfilter-item figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

a.mgp-filter-btn {
    display: block;
}

.mgp-flight-icon.flight-icon-hover {
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.filtr-item:hover .mgp-flight-icon.flight-icon-hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/*-----------------*/
/***** effect 1 *****/
/*-----------------*/

figure.mgpf-effect1 {
    background: #fff;
}

figure.mgpf-effect1 img {
    opacity: 0.95;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

figure.mgpf-effect1:hover img {
    -webkit-transform: scale3d(0.95, 0.95, 1);
    transform: scale3d(0.95, 0.95, 1);
}

figure.mgpf-effect1 .xportfolio-heading {
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

figure.mgpf-effect1 p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

figure.mgpf-effect1:hover .xportfolio-heading {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.mgpf-effect1:hover .xportfolio-subtitle {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0);
}

/*---------------*/
/***** mgpf-effect2 *****/
/*---------------*/

figure.mgpf-effect2 {
    background: #030c17;
}

figure.mgpf-effect2 img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.mgpf-effect2 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1);
}

figure.mgpf-effect2 h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

figure.mgpf-effect2 p {
    padding: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

figure.mgpf-effect2:hover h2 {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

figure.mgpf-effect2:hover figcaption::before,
figure.mgpf-effect2:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

figure.mgpf-effect2:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}

figure.mgpf-effect2:hover img {
    opacity: 0.4;
}

/*---------------*/
/***** Jazz *****/
/*---------------*/

figure.mgpf-effect3 {
    background: -o-linear-gradient(135deg, #f3cf3f 0%, #f33f58 100%);
    background: linear-gradient(-45deg, #f3cf3f 0%, #f33f58 100%);
}

figure.mgpf-effect3 img {
    opacity: 0.9;
}

figure.mgpf-effect3 figcaption::after,
figure.mgpf-effect3 img,
figure.mgpf-effect3 p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

figure.mgpf-effect3 figcaption::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

figure.mgpf-effect3 h2,
figure.mgpf-effect3 p {
    opacity: 1;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}

figure.mgpf-effect3 h2 {
    padding-top: 5px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

figure.mgpf-effect3 p {
    padding: 0.5em 2em;
    text-transform: none;
    font-size: 0.85em;
    opacity: 0;
}

figure.mgpf-effect3:hover img {
    opacity: 0.7;
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
}

figure.mgpf-effect3:hover figcaption::after {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}

figure.mgpf-effect3:hover h2,
figure.mgpf-effect3:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/*-----------------*/
/***** Apollo *****/
/*-----------------*/

figure.mgpf-effect4 {
    background: #3498db;
}

figure.mgpf-effect4 img {
    opacity: 0.95;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
}

figure.mgpf-effect4 figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    -o-transition: transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

figure.mgpf-effect4 p {
    margin: 1em;
    padding: 0 1em;
    border-right: 4px solid #fff;
    text-align: right;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.mgpf-effect4 h2 {
    text-align: left;
}

figure.mgpf-effect4:hover img {
    opacity: 0.6;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

figure.mgpf-effect4:hover figcaption::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

figure.mgpf-effect4:hover p {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}


figure.mgpf-effect5 {
    background: -o-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
    background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}

figure.mgpf-effect5 img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.mgpf-effect5 figcaption {
    padding: 10px;
    background-color: rgba(58, 52, 42, 0.7);
    -webkit-transition: background-color 0.35s;
    -o-transition: background-color 0.35s;
    transition: background-color 0.35s;
}

figure.mgpf-effect5 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: '';
}

figure.mgpf-effect5 h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

figure.mgpf-effect5 figcaption::before,
figure.mgpf-effect5 p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

figure.mgpf-effect5:hover h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.mgpf-effect5:hover figcaption::before,
figure.mgpf-effect5:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

figure.mgpf-effect5:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}

figure.mgpf-effect5:hover img {
    opacity: 0.4;
}

figure.mgpf-effect6 {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

figure.mgpf-effect6 img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(0, 0, 300px);
    transform: translate3d(0, 0, 300px);
}

figure.mgpf-effect6:hover img {
    opacity: 0.6;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.mgpf-effect6 figcaption::before,
figure.mgpf-effect6 figcaption::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #fff;
    content: '';
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

figure.mgpf-effect6:hover figcaption::before {
    opacity: 0.5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

figure.mgpf-effect6:hover figcaption::after {
    opacity: 0.5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

figure.mgpf-effect6 h2,
figure.mgpf-effect6 p {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

figure.mgpf-effect6 h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}

figure.mgpf-effect6 p {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}

figure.mgpf-effect6:hover h2 {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}

figure.mgpf-effect6:hover p {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}

/*Filter loader*/
.mgp-fil-loader {
    background: #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

.mgp-loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.mgp-loader div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: mgp-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: mgp-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.mgp-loader div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes mgp-loader {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

@keyframes mgp-loader {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}