/*--------------------------------------------------------------
## Home Slider
--------------------------------------------------------------*/
.iktheme-slider-wrapper .iktheme-slider {
    position: relative;
    overflow: hidden;
}
.iktheme-slider-wrapper .iktheme-slide-bg {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    min-width: 100%;
    min-height: 100%;
}
.iktheme-slider-wrapper .iktheme-slider-bg-overlay{
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.iktheme-slider-wrapper .iktheme-slider-inner,
.iktheme-slider-wrapper .iktheme-slider-inner:hover {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.iktheme-slider-wrapper .iktheme-slider-inner {
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: var(--container-width);
    margin: 0 auto;
}
.iktheme-slider-wrapper .iktheme-slider-caption{
    max-width: 75%;
}
.iktheme-slider-super-title {
    border-bottom: 2px solid;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--theme-color);
    font-weight: 700;
}
.iktheme-slider-title {
    font-size: 45px;
    color: var(--white-color);
    line-height: 1.2;
}
.iktheme-slider-description {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}
.iktheme-button-wrapper{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}
.iktheme-button-wrapper .iktheme-button.iktheme-button-primary{
    background-color: var(--theme-color);
}
.iktheme-button-wrapper .iktheme-button.iktheme-button-primary::before {
    background-color: var(--link-color);
}

/**********
 * Default Button
*/
.iktheme-button {
    position: relative;
    text-transform: capitalize;
    font-weight: 600;
    background-color: var(--link-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    z-index: 2;
    overflow: hidden;
    padding: 12px 30px;
    border-radius: 30px;
    gap: 5px;
}
.iktheme-button::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 0px;
    height: 100%;
    z-index: -1;
    background-color: var(--link-hover-color);
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.iktheme-button:hover::before{
    width: 100%;
}
.iktheme-button .elementor-icon{
    font-size: inherit;
}
.iktheme-button .iktheme-link-icon svg{
    vertical-align: middle;
    fill: var(--white-color);
}
.iktheme-button.iktheme-button-primary:hover,
.iktheme-button.iktheme-button-primary:focus{
    color: var(--white-color);
}

.iktheme-button.iktheme-button-border {
    border: 1px solid var(--link-color);
    background-color: transparent;
    color: var(--link-color);
    padding: 10px 35px;
    font-weight: 500;
}
.iktheme-button.iktheme-button-border::before {
    background-color: var(--theme-color);
}
.iktheme-button.iktheme-button-border:hover {
    border: 1px solid var(--theme-color);
    color: var(--white-color);
}
.iktheme-button.iktheme-button-border .iktheme-link-icon svg{
    fill: var(--link-color);
}
.iktheme-button.iktheme-button-border:hover .iktheme-link-icon svg{
    fill: var(--white-color);
}

.iktheme-button.iktheme-button-noborder {
    background-color: transparent;
    color: var(--link-color);
    padding: 0;
    border-radius: 0;
    font-weight: 500;
}
.iktheme-button.iktheme-button-noborder::before {
    background-color: transparent;
}
.iktheme-button.iktheme-button-noborder:hover {
    color: var(--link-hover-color);
}
.iktheme-button.iktheme-button-noborder .iktheme-link-icon svg{
    fill: var(--link-color);
}
.iktheme-button.iktheme-button-noborder:hover .iktheme-link-icon svg{
    fill: var(--theme-color);
}

.iktheme-button.style-white {
    border: 1px solid var(--white-color);
    background-color: var(--white-color);
    color: var(--link-color);
}

.iktheme-button.style-white:hover {
    color: var(--white-color);
}
.iktheme-button.style-white::before {
    background-color: var(--link-hover-color);
}
.iktheme-button.style-white .iktheme-link-icon svg{
    fill: var(--link-color);
}
.iktheme-button.style-white:hover .iktheme-link-icon svg{
    fill: var(--white-color);
}

.iktheme-video-link{
    position: relative;
    z-index: 99;
    font-size: 25px;
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* animation: ripple 0.6s linear infinite; */
}
.iktheme-button-wrapper .iktheme-video-link:hover{
    color: var(--white-color);
}

/* ripple effect */
/* @keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgb(from var(--theme-color) rgb / 0.2),
                0 0 0 10px rgb(from var(--theme-color) rgb / 0.2),
                0 0 0 20px rgb(from var(--theme-color) rgb / 0.2),
                0 0 0 30px rgb(from var(--theme-color) rgb / 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgb(from var(--theme-color) rgb / 0.2),
                0 0 0 20px rgb(from var(--theme-color) rgb / 0.2),
                0 0 0 30px rgb(from var(--theme-color) rgb / 0.2),
                0 0 0 40px rgb(from var(--theme-color) rgb / 0.9);
  }
} */

.iktheme-ken-burns.iktheme-ken-burns--in {
    animation: 75s ease 0s normal none infinite running zoomEffectIn;
    -webkit-animation: 75s ease 0s normal none infinite running zoomEffectIn;
    -o-animation: 75s ease 0s normal none infinite running zoomEffectIn;
    -moz--o-animation: 75s ease 0s normal none infinite running zoomEffectIn;
}
.iktheme-ken-burns.iktheme-ken-burns--out {
    animation: 75s ease 0s normal none infinite running zoomEffectOut;
    -webkit-animation: 75s ease 0s normal none infinite running zoomEffectOut;
    -o-animation: 75s ease 0s normal none infinite running zoomEffectOut;
    -moz--o-animation: 75s ease 0s normal none infinite running zoomEffectOut;
}

@keyframes zoomEffectIn {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(2, 2);
    }
}

@keyframes zoomEffectOut {
    from {
        transform: scale(2, 2);
    }
    to {
        transform: scale(1, 1);
    }
}

/** Navigation ( Arrows & Dots ) */
.nav_image .owl-nav{
    position: absolute;
    left: 4rem;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.nav_image .owl-nav button[class*="owl-"] {
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background-color: rgb(0 0 0 / 50%);
    border: 1px solid var(--white-color);
    border-radius: 5px;
    opacity: 1;
}
.nav_arrow .owl-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.nav_arrow .owl-nav button[class*="owl-"] {
    height: 110px;
    width: 32px;
    background-image: none !important;
    background: var(--theme-color);
    color: var(--white-color);
    opacity: .5;
    -webkit-transition: opacity .35s linear 0s;
    transition: opacity .35s linear 0s;
}
.nav_arrow .owl-nav button.owl-next {
    border-radius: 5px 0 0 5px;
}
.nav_arrow .owl-nav button.owl-prev {
    border-radius: 0 5px 5px 0;
}
.nav_arrow .owl-nav button.owl-next::before,
.nav_arrow .owl-nav button.owl-prev::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 22px;
}
.nav_arrow .owl-nav button.owl-prev::before {
    content: '\f053';
}
.nav_arrow .owl-nav button.owl-next::before {
    content: '\f054';
}
.nav_arrow .owl-nav button.owl-next:hover,
.nav_arrow .owl-nav button.owl-prev:hover {
    opacity: 1;
}
/** Dots Style **/
.number_type .owl-dots,
.dots_type .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.number_type .owl-dots .owl-dot {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}
.dots_type .owl-dots .owl-dot {
    background-color:var(--white-color);
    border: 2px solid var(--white-color);
    width:40px;
    height:10px;
    border-radius: 50px;
}
.number_type .owl-dots .owl-dot.active,
.dots_type .owl-dots .owl-dot.active {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.iktheme-dots-position-right .owl-dots{
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    right: 5rem;
    left: auto;
}
.iktheme-dots-position-left .owl-dots{
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    left: 5rem;
    right: 0;
}
.iktheme-dots-position-left .nav_image .owl-nav,
.iktheme-dots-position-right .nav_image .owl-nav,
.iktheme-dots-position-left .nav_arrow .owl-nav,
.iktheme-dots-position-right .nav_arrow .owl-nav{
    top: auto;
    transform: inherit;
    justify-content: center;
    bottom: 20px;
    gap: 10px;
    left: 5rem;
    right: 5rem;
}
.iktheme-dots-position-left .nav_arrow .owl-nav button[class*="owl-"],
.iktheme-dots-position-right .nav_arrow .owl-nav button[class*="owl-"] {
    height: 65px;
    width: 60px;
    border-radius: 2px;
}
.iktheme-dots-position-center .nav_arrow .owl-nav button[class*="owl-"]{
    height: 110px;
    width: 32px;
}

/*--------------------------------------------------------------
## Marquee Animation Block
--------------------------------------------------------------*/
.ikreate-animation-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    overflow: hidden;
    width: 100%;
}

.ikreate-marquee-content {
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
}
.ikreate-animation-item {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ikreate-animation-item .text-item {
    font-size: 40px;
    font-weight: 500;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: var(--link-color);
    color: transparent;
}
.ikreate-animation-item a:hover .text-item{
    -webkit-text-stroke-color: var(--link-hover-color);
    color: var(--link-hover-color);
}

.ikreate-animation-item.image-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ikreate-animation-item.icon-text-item{
    gap: 10px;
}
.ikreate-animation-item.icon-text-item .elementor-icon i, 
.ikreate-animation-item.icon-text-item .elementor-icon svg{
    font-size:40px;
    color: var(--link-color);
    fill: var(--link-color);
}
.ikreate-animation-item.icon-text-item a{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ikreate-animation-item.icon-text-item a:hover .elementor-icon i,
.ikreate-animation-item.icon-text-item a:hover .elementor-icon svg{
    color: var(--link-hover-color);
    fill: var(--link-hover-color);
}

/*--------------------------------------------------------------
## Circular Rotating
--------------------------------------------------------------*/
.ikreate-circular-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ikreate-circular-container {
    position: relative;
}

.ikreate-circular-text-char {
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: 0 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.ikreate-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    background-color: var(--theme-color);
}
.ikreate-center-icon {
    line-height: 0;
}
.ikreate-center-icon .elementor-icon i, 
.ikreate-center-icon .elementor-icon svg{
    font-size:50px;
    color: var(--white-color);
    fill: var(--white-color);
}

.ikreate-center-content.image{
    padding:5px;
}
.ikreate-center-image img{
    max-width:110px;
    height:110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.ikreate-center-content.number{
    padding:0;
    width: 115px;
    height: 115px;
}
.ikreate-center-number{
    font-size: 40px;
    font-weight: 600;
    color: var(--white-color);
}

/*--------------------------------------------------------------
## Feature Service Block
--------------------------------------------------------------*/
.iktheme-imageicon-box-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #f9fafa;
    overflow: hidden;
}
.iktheme-imageicon-box-wrapper.icon{
    padding: 20px;
    gap: 1.5rem;
}
.iktheme-imageicon-box-wrapper.icon .iktheme-imageicon-box-content{
    padding: 0;
}
.iktheme-imageicon-box-img.iktheme-image-box-img{
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}
.iktheme-imageicon-box-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    padding:20px;
    color: var(--title-color);
}
.iktheme-icon-box-icon{
    display: inline-flex;
    font-size: 65px;
    padding: 18px;
    background-color: var(--theme-color);
    color: var(--white-color);
    fill: var(--white-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.iktheme-box-title{
    margin: 0;
}
.iktheme-imageicon-box-img img{
    width: 100%;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.iktheme-imageicon-layout-left .iktheme-imageicon-box-img img,
.iktheme-imageicon-layout-right .iktheme-imageicon-box-img img{
    height: 500px;
    object-fit: cover;
}

.iktheme-imageicon-box-wrapper.style2{
    position: relative;
}
.iktheme-imageicon-box-wrapper.style2 .iktheme-imageicon-box-img img{
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.iktheme-imageicon-box-wrapper.style2 .iktheme-imageicon-box-content{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    border-radius: 5px;
    width: auto;
    transition: all 0.8s ease;
}
.iktheme-imageicon-box-wrapper.style2:hover .iktheme-imageicon-box-content{
    opacity: 0;
    overflow: hidden;
    transform: scale(0.5);
}

/*--------------------------------------------------------------
## Home Section Title
--------------------------------------------------------------*/
.elementor-widget-ikreateThemes-heading .section-title-wrapper {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## Toggle Service Block Section
--------------------------------------------------------------*/
.iktheme-toggle-service-wrap .iktheme-toggle-service-item {
    position: relative;
    padding-bottom: 25px;
}
.iktheme-toggle-service-item {
    display: flex;
    gap: 1rem;
}
.iktheme-toggle-service-block-wrap,
.iktheme-toggle-inner-service-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.iktheme-toggle-icon-wrapper {
    display: flex;
}
.iktheme-toggle-service-item:last-child{
    padding-bottom: 0;
}
.iktheme-toggle-service-block-wrap .iktheme-item-title{
    margin: 0;
}
.iktheme-toggle-service-wrap .iktheme-toggle-service-icon{
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 9;
    background-color: var(--theme-color);
    color: var(--white-color);
    fill: var(--white-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.iktheme-toggle-service-wrap .iktheme-toggle-service-icon i {
    font-size: 30px;
}
.iktheme-toggle-service-wrap .iktheme-toggle-service-icon svg{
    width: 30px;
    height: 30px;
}
.iktheme-toggle-service-wrap .iktheme-toggle-icon-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    border: 2px dotted var(--theme-color);
}
.iktheme-toggle-service-wrap .iktheme-toggle-service-icon:before {
    content: "";
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    border-radius: 50%;
    border: 2px solid var(--theme-color);
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.iktheme-toggle-service-item:hover .iktheme-toggle-service-icon:before {
    border: 2px dashed var(--theme-color);
    animation: spin 10s linear infinite;
    transition: all .55s cubic-bezier(.645, .045, .355, 1);
}
.iktheme-toggle-service-wrap .iktheme-link-icon svg {
    color: var(--link-color);
    fill: var(--link-color);
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.iktheme-toggle-service-item .iktheme-item-link:hover .iktheme-link-icon svg{
    color: var(--theme-color);
    fill: var(--theme-color);
}
.iktheme-toggle-service-wrap a.iktheme-toggle-service-item:hover .iktheme-item-title,
.iktheme-toggle-service-wrap a.iktheme-toggle-service-item:hover .iktheme-link-icon svg{
    color: var(--theme-color);
    fill: var(--theme-color);
}
.iktheme-position-layout-right .iktheme-toggle-service-item{
    flex-direction: row-reverse;
}
.iktheme-toggle-service-wrap .iktheme-toggle-icon-wrapper:after,
.iktheme-position-layout-left .iktheme-toggle-service-wrap .iktheme-toggle-icon-wrapper:after{
    left: 25px;
    right: auto;
}
.iktheme-position-layout-right .iktheme-toggle-service-wrap .iktheme-toggle-icon-wrapper:after{
    right: 25px;
    left: auto;
}
.iktheme-position-layout-right .iktheme-toggle-service-block-wrap{
    text-align: right;
}
.iktheme-toggle-service-wrap.style2 .iktheme-toggle-service-block-wrap{
    justify-content: space-around;
}

.iktheme-toggle-service-wrap.style2 .iktheme-item-title{
    cursor: pointer;
}

.iktheme-toggle-service-wrap.style2 .iktheme-toggle-service-item:first-child .iktheme-toggle-inner-service-wrap {
    display: inline-flex;
}

.iktheme-toggle-service-wrap.style2 .iktheme-toggle-inner-service-wrap {
    display: none;
}

.iktheme-toggle-service-wrap.style2 .iktheme-toggle-service-item.toggle-active .iktheme-toggle-service-icon:before {
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
}

/*--------------------------------------------------------------
## Service Block
--------------------------------------------------------------*/
.iktheme-service-area .iktheme-service-detail {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.iktheme-feature-service-img {
    width: calc(100% - 300px);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}
.iktheme-feature-service-img .iktheme-feature-image{
    width: 100%;
    display: flex;
    justify-content: center;
}
.iktheme-feature-image img{
    object-fit: cover;
}
.iktheme-feature-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition-duration: 1200ms;
}
.iktheme-service-area .iktheme-service-detail .iktheme-service-box {
    width: 100%;
}
.iktheme-service-area .iktheme-service-item-block {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
    margin-bottom: 16px;
    padding: 15px;
    background-color: #fcfcfc;
    border-radius: 5px;
}
.iktheme-imageicon-layout-left .iktheme-leftdata .iktheme-service-item-block{
    flex-direction: row;
    text-align: start;
}
.iktheme-imageicon-layout-left .iktheme-rightdata .iktheme-service-item-block{
    flex-direction: row-reverse;
    text-align: end;
}
.iktheme-imageicon-layout-right .iktheme-leftdata .iktheme-service-item-block{
    flex-direction: row-reverse;
    text-align: end;
}
.iktheme-imageicon-layout-right .iktheme-rightdata .iktheme-service-item-block{
    flex-direction: row;
    text-align: start;
}
.iktheme-imageicon-layout-above .iktheme-leftdata .iktheme-service-item-block{
    flex-direction: column;
    text-align: end;
    align-items: end;
}
.iktheme-imageicon-layout-above .iktheme-rightdata .iktheme-service-item-block{
    flex-direction: column;
    text-align: start;
    align-items: start;
}
.iktheme-imageicon-layout-below .iktheme-leftdata .iktheme-service-item-block{
    flex-direction: column-reverse;
    text-align: end;
    align-items: end;
}
.iktheme-imageicon-layout-below .iktheme-rightdata .iktheme-service-item-block{
    flex-direction: column-reverse;
    text-align: start;
    align-items: start;
}
.iktheme-service-area .iktheme-service-item-block .iktheme-service-wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.iktheme-service-alignment-end .iktheme-leftdata .iktheme-service-item-block,
.iktheme-service-alignment-start .iktheme-rightdata .iktheme-service-item-block{
    align-items: flex-end;
    text-align: end;
}
.iktheme-service-alignment-end .iktheme-rightdata .iktheme-service-item-block,
.iktheme-service-alignment-start .iktheme-leftdata .iktheme-service-item-block{
    align-items: flex-start;
    text-align: start;
}
.iktheme-service-alignment-center .iktheme-leftdata .iktheme-service-item-block,
.iktheme-service-alignment-center .iktheme-rightdata .iktheme-service-item-block{
    align-items: center;
    text-align: center;
}
.iktheme-service-area .iktheme-service-item-block .iktheme-icon-boxicon{
    color: var(--theme-color);
    fill: var(--theme-color);
}
.iktheme-service-area .iktheme-service-item-block .iktheme-item-title{
    margin: 0;
}
.iktheme-service-area .iktheme-service-item-block:last-child {
    margin-bottom: 0;
}


.iktheme-service-area.style2 .iktheme-service-item-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.iktheme-service-area.style2 .iktheme-service-block:nth-child(2),
.iktheme-service-area.style2 .iktheme-service-block:nth-child(5),
.iktheme-service-area.style2 .iktheme-service-block:nth-child(8) {
    display: flex;
    flex-direction: column-reverse;
}
.iktheme-service-area.style2 .iktheme-top-content img,
.iktheme-service-area.style2 .iktheme-bottom-content{
    min-height: 400px;
}
.iktheme-service-area.style2 .iktheme-top-content {
    position: relative;
    overflow: hidden;
}
.iktheme-service-area.style2 .iktheme-top-content img {
    object-fit: cover;
}
.iktheme-service-area.style2 .iktheme-service-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition-duration: 1200ms;
}
.iktheme-service-area.style2 .iktheme-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    background: #efefef;
}
.iktheme-service-area.style2 .iktheme-bottom-content .iktheme-icon-boxicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--theme-color);
    margin-bottom: 10px;
    clip-path: path("M1.92133 53.4337C-1.28975 65.0875 -1.11481 77.4886 7.42925 85.5867C21.5264 98.9453 46.3572 101.088 63.3776 99.5875C70.6576 98.9453 78.0109 97.3572 84.5233 93.2994C91.0358 89.2416 96.6679 82.4572 98.897 73.8979C102.52 59.9846 96.6453 45.0729 89.5911 33.3316C83.7389 23.5929 76.8484 14.6132 68.4736 8.26082C51.329 -4.74165 33.1912 -2.704 20.1607 16.5749C14.3367 25.181 5.78703 39.392 1.92133 53.4337Z");
}
.iktheme-service-area.style2 .iktheme-bottom-content .iktheme-icon-boxicon .elementor-icon{
    font-size: 60px;
    color: var(--white-color);
    fill: var(--white-color);
}
.iktheme-service-area.style2 .iktheme-item-title{
    margin: 0;
}
.iktheme-service-alignment-start .iktheme-service-area.style2 .iktheme-bottom-content{
    align-items: flex-start;
    text-align: left;
}
.iktheme-service-alignment-center .iktheme-service-area.style2 .iktheme-bottom-content{
    align-items: center;
    text-align: center;
}
.iktheme-service-alignment-end .iktheme-service-area.style2 .iktheme-bottom-content{
    align-items: flex-end;
    text-align: right;
}

.iktheme-service-area.style3 .iktheme-service-item-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.iktheme-service-area.style3 .iktheme-service-block{
    position: relative;
}
.iktheme-service-area.style3 .iktheme-top-content{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}
.iktheme-service-area.style3 .iktheme-top-content a,
.iktheme-service-area.style3 .iktheme-top-content,
.iktheme-service-area.style3 .iktheme-top-content .iktheme-link-icon svg{
    color: var(--white-color);
    fill: var(--white-color);
}

.iktheme-service-area.style3 .iktheme-top-content a:hover,
.iktheme-service-area.style3 .iktheme-top-content a:hover .iktheme-link-icon svg{
    color: var(--theme-color);
    fill: var(--theme-color);
}
.iktheme-service-area.style3 .iktheme-service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.iktheme-service-area.style3 .iktheme-service-image:before {
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}
.iktheme-service-area.style3 .iktheme-service-block:hover .iktheme-top-content {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.iktheme-service-area.style3 .iktheme-bottom-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 45px 30px 40px;
    -webkit-box-shadow: 0 0 30px 5px rgb(var(--theme-rgb-color), 0.05);
    box-shadow: 0 0 30px 5px rgb(var(--theme-rgb-color), 0.05);
}
.iktheme-service-area.style3 .iktheme-bottom-content .iktheme-icon-boxicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--theme-color);
    margin-bottom: 10px;
    clip-path: path("M1.92133 53.4337C-1.28975 65.0875 -1.11481 77.4886 7.42925 85.5867C21.5264 98.9453 46.3572 101.088 63.3776 99.5875C70.6576 98.9453 78.0109 97.3572 84.5233 93.2994C91.0358 89.2416 96.6679 82.4572 98.897 73.8979C102.52 59.9846 96.6453 45.0729 89.5911 33.3316C83.7389 23.5929 76.8484 14.6132 68.4736 8.26082C51.329 -4.74165 33.1912 -2.704 20.1607 16.5749C14.3367 25.181 5.78703 39.392 1.92133 53.4337Z");
}
.iktheme-service-area.style3 .iktheme-item-title{
    margin: 0;
}
.iktheme-service-area.style3 .iktheme-bottom-content .iktheme-icon-boxicon .elementor-icon{
    font-size: 60px;
    color: var(--white-color);
    fill: var(--white-color);
}
.iktheme-service-count {
    color: #e3e3e2b8;
    top: 25px;
    right: 30px;
    position: absolute;
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.15;
    -webkit-text-stroke: 1px var(--theme-color);
}
.iktheme-top-content .iktheme-service-count {
    top: auto;
    bottom: 10px;
    right: 25px;
    opacity: 0.50;
}
.iktheme-service-area.style4 .iktheme-service-item-wrap{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.iktheme-service-area.style4 .iktheme-service-block.active {
    width: 500px;
}
.iktheme-service-area.style4 .iktheme-service-block{
    width: 140px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    cursor: pointer;
}
.iktheme-service-area.style4 .iktheme-service-accodion{
    width: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.iktheme-service-area.style4 .iktheme-service-accodion:before {
    content: '';
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.iktheme-service-area.style4 .iktheme-top-content {
    position: relative;
    width: 140px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.iktheme-service-area.style4 .iktheme-bottom-content {
    height: 100%;
    width: 500px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    flex-shrink: 0;
    padding-left: 140px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
}
.iktheme-service-area.style4 .iktheme-bottom-content .iktheme-icon-boxicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--theme-color);
    margin-bottom: 10px;
    clip-path: path("M1.92133 53.4337C-1.28975 65.0875 -1.11481 77.4886 7.42925 85.5867C21.5264 98.9453 46.3572 101.088 63.3776 99.5875C70.6576 98.9453 78.0109 97.3572 84.5233 93.2994C91.0358 89.2416 96.6679 82.4572 98.897 73.8979C102.52 59.9846 96.6453 45.0729 89.5911 33.3316C83.7389 23.5929 76.8484 14.6132 68.4736 8.26082C51.329 -4.74165 33.1912 -2.704 20.1607 16.5749C14.3367 25.181 5.78703 39.392 1.92133 53.4337Z");
}
.iktheme-service-area.style4 .iktheme-bottom-content .iktheme-icon-boxicon .elementor-icon{
    font-size: 60px;
    color: var(--white-color);
    fill: var(--white-color);
}
.iktheme-service-area.style4 .iktheme-item-title{
    margin: 0;
}
.iktheme-accodion-layout-below .iktheme-service-area.style4 .iktheme-service-item-wrap{
    flex-direction: column;
}
.iktheme-accodion-layout-below .iktheme-service-area.style4 .iktheme-service-block.active {
    width: 100%;
    height: 420px;
}
.iktheme-accodion-layout-below .iktheme-service-area.style4 .iktheme-service-block{
    width: 100%;
    height: 90px;
}
.iktheme-accodion-layout-below .iktheme-service-area.style4 .iktheme-service-accodion {
    width: 100%;
}
.iktheme-accodion-layout-below .iktheme-service-area.style4 .iktheme-top-content{
    width: 100%;
    height: 90px;
    writing-mode: horizontal-tb;
}
.iktheme-accodion-layout-below .iktheme-service-area.style4 .iktheme-bottom-content {
    position: relative;
    padding: 0 30px 30px;
    align-items: center;
    text-align: center;
}

/*--------------------------------------------------------------
## HightLight Block
--------------------------------------------------------------*/
.iktheme-highlight-area .iktheme-highlight-item img {
    width: 100%;
    min-height: 375px;
    object-fit: cover;
}
.iktheme-top-content-wrap,
.iktheme-bottom-content-wrap{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.iktheme-highlight-area .iktheme-icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.iktheme-highlight-title{
    margin: 0;
}
.iktheme-highlight-area .iktheme-link-icon svg {
    color: var(--link-color);
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.iktheme-highlight-area.style1 .iktheme-highlight-item {
    -webkit-perspective: 1000px;
    -o-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    overflow: visible;
    position: relative;
}
.iktheme-highlight-area.style1 .iktheme-highlight-item .iktheme-top-content-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}
.iktheme-highlight-area.style1 .iktheme-highlight-item .iktheme-bottom-content-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--theme-color);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.iktheme-highlight-area.style1 .iktheme-highlight-item:hover .iktheme-bottom-content-wrap {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.iktheme-highlight-area.style2 .iktheme-highlight-item {
    min-height: 375px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    overflow: visible;
    position: relative;
}
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-top-content-wrap1,
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-bottom-content-wrap1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-transition: all 0.7s cubic-bezier(.4, .2, .2, 1);
}
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-top-content-wrap1::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-bottom-content-wrap1::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-top-content-wrap1>div,
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-bottom-content-wrap1>div {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transform: translateY(0) translateZ(60px) scale(.94);
    -webkit-transform: translateY(0) translateZ(60px) scale(.94);
    -ms-transform: translateY(0) translateZ(60px) scale(.94);
}
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-top-content-wrap1 {
    display: flex;
    justify-content: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.iktheme-highlight-area.style2 .iktheme-highlight-item .iktheme-bottom-content-wrap1 {
    display: flex;
    justify-content: center;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.iktheme-highlight-area.style2 .iktheme-highlight-item:hover .iktheme-top-content-wrap1 {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.iktheme-highlight-area.style2 .iktheme-highlight-item:hover .iktheme-bottom-content-wrap1 {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.iktheme-highlight-area.style3 .iktheme-highlight-item {
    position: relative;
    overflow: hidden;
}
.iktheme-highlight-area.style3 .iktheme-highlight-item::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.iktheme-highlight-area.style3 .iktheme-highlight-item .iktheme-top-content-wrap {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    background: var(--theme-color);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iktheme-highlight-area.style3 .iktheme-highlight-item .iktheme-bottom-content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    padding: 20px;
    background: var(--theme-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.iktheme-highlight-area.style3 .iktheme-highlight-item:hover .iktheme-top-content-wrap {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
}
.iktheme-highlight-area.style3 .iktheme-highlight-item:hover .iktheme-bottom-content-wrap {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.iktheme-highlight-area.style4 .iktheme-highlight-item .iktheme-icon-box {
    padding: 20px;
    background-color: var(--theme-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.iktheme-highlight-area.style4 .iktheme-highlight-item .iktheme-bottom-content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
.iktheme-highlight-area.style4 .iktheme-highlight-item:hover .iktheme-bottom-content-wrap {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/*--------------------------------------------------------------
## Team Member
--------------------------------------------------------------*/
.iktheme-team-member-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
}
.iktheme-team-layout-left .iktheme-team-top-content, 
.iktheme-team-layout-right .iktheme-team-top-content{
    width: auto;
    min-width: 50%;
}
.iktheme-team-top-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}
.iktheme-team-member-img{
    transition: all .9s;
}
.iktheme-team-member-img::after {
    content: '';
    background: #0000003d;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all .9s;
}

.iktheme-team-buttom-content {
    display: flex;
    flex-direction: column;
    gap:1rem;
    text-align: center;
    align-items: center;
}

.iktheme-team-title{
    margin: 0;
}

.iktheme-team-designation{
    color: var(--theme-color);
}

.iktheme-team-socialicon-wrap {
    display: flex;
    gap: 10px;
}
.iktheme-team-socialicon-wrap a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
}
.iktheme-team-socialicon-wrap .elementor-icon{
    font-size: 20px;
    color: var(--white-color);
    fill: var(--white-color);
}


.iktheme-team-member-img img{
    width: 100%;
}

.iktheme-team-member-wrapper.style1{
    background-color: var(--box-shadow);
}
.iktheme-team-member-wrapper.style1 .iktheme-team-buttom-content {
    padding: 20px;
}

.iktheme-team-layout-left .iktheme-team-member-wrapper.style2 .iktheme-team-top-content, 
.iktheme-team-layout-right .iktheme-team-member-wrapper.style2 .iktheme-team-top-content {
    width: auto;
    min-width: 35%;
}
.iktheme-team-member-wrapper.style2{
    gap: 1rem;
    padding: 20px;
    background-color: var(--box-shadow);
}
.iktheme-team-member-wrapper.style2 .iktheme-team-top-content {
    display: flex;
    justify-content: center;
}
.iktheme-team-member-wrapper.style2 .ikthemes-team-image-wrap{
    width: 200px;
    height: 200px;
    -webkit-mask-image: url(data:image/png;base64,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);
    mask-image: url(data:image/png;base64,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);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.iktheme-team-member-wrapper.style2 .ikthemes-team-image-wrap .iktheme-team-member-img img{
    height: 200px;
    object-fit: cover;
}

.iktheme-team-member-wrapper.style3 .iktheme-team-top-content .iktheme-team-title,
.iktheme-team-member-wrapper.style6 .iktheme-team-top-content .iktheme-team-title {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 1;
}
.iktheme-team-member-wrapper.style3 .iktheme-team-buttom-content,
.iktheme-team-member-wrapper.style6 .iktheme-team-buttom-content {
    cursor: pointer;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    border-radius: 5px;
    opacity: 0;
    overflow: hidden;
    transform: scale(0.5);
    transition: all 0.4s ease;
}
.iktheme-team-member-wrapper.style3:hover .iktheme-team-buttom-content {
    opacity: 1;
    overflow: visible;
    transform: scale(1);
}

.iktheme-team-member-wrapper.style6 .iktheme-team-buttom-content {
    opacity: 1;
    overflow: visible;
    transform: scale(1);
}
.iktheme-team-member-wrapper.style6:hover .iktheme-team-buttom-content {
    opacity: 0;
    overflow: hidden;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.iktheme-team-member-wrapper.style4{
    flex-direction: column;
}
.iktheme-team-member-wrapper.style4 .iktheme-team-buttom-content {
    border-radius: 0 0 10px 10px;
    padding: 15px;
    background-color: var(--box-shadow);
}

.iktheme-team-member-wrapper.style4 .iktheme-team-top-content .iktheme-team-inner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.iktheme-team-member-wrapper.style4:hover .iktheme-team-inner-wrap{
    opacity: 1;
}

.iktheme-team-member-wrapper.style4:hover .iktheme-team-description {
    transform: translateY(0);
}

.iktheme-team-member-wrapper.style4 .iktheme-team-description {
    transform: translateY(-300px);
    transition: all 0.5s ease 0.2s;
}

.iktheme-team-member-wrapper.style4:hover .iktheme-team-socialicon-wrap {
    transform: translateY(0);
}

.iktheme-team-member-wrapper.style4 .iktheme-team-socialicon-wrap {
    transform: translateY(160px);
    transition: all 0.5s ease 0.2s;
}


.iktheme-team-member-wrapper.style5{
    flex-direction: column;
}
.iktheme-team-member-wrapper.style5 .iktheme-team-buttom-content {
    border-radius: 0 0 10px 10px;
    padding: 15px;
    background-color: var(--box-shadow);
}
.iktheme-team-member-wrapper.style5 .iktheme-team-socialicon-wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    right:10px;
    top: 25%;
    gap: 15px;
    transition: .3s ease-in-out;
    transform: translateX(25%);
    opacity: 0;
    visibility: hidden;
}
.iktheme-team-member-wrapper.style5:hover .iktheme-team-socialicon-wrap {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.iktheme-team-member-wrapper.style7 {
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--box-shadow);
}
.style7 .ikthemes-team-image-header {
    overflow: hidden;
    position: relative;
}
.style7 .ikthemes-team-image-header img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.style7 .ikthemes-team-image-wrap{
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-top: -90px;
    border: 3px solid var(--theme-color);
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    z-index: 3;
}
.style7 .ikthemes-team-image-wrap .iktheme-team-member-img img{
    height: 200px;
    object-fit: cover;
}
.style7 .iktheme-team-designation{
    margin: 0;
}
.style7 .iktheme-team-buttom-content{
    margin:10px;
    padding:20px 10px;
    border-radius:10px;
    background-color: var(--white-color);
}


/*--------------------------------------------------------------
## Testimonial Block
--------------------------------------------------------------*/
.iktheme-testimonial-wrapper{
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed var(--theme-color);
    text-align: center;
    overflow: hidden;
}
.carouseldots .iktheme-testimonial-wrapper{
    align-items: center;
}
.iktheme-testimonial-top-content{
    position: relative;
}
.iktheme-testimonial-buttom-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.iktheme-testimonial-title{
    margin: 0;
}
.iktheme-testimonial-rating i{
    color: var(--theme-color);
}

.iktheme-testimonial-layout-left .iktheme-testimonial-wrapper {
    align-items: center;
}
.iktheme-testimonial-layout-right .iktheme-testimonial-wrapper {
    align-items: center;
}
.iktheme-testimonial-layout-left .iktheme-testimonial-buttom-content{
    text-align: start;
}
.iktheme-testimonial-layout-right .iktheme-testimonial-buttom-content{
    text-align: end;
}
.iktheme-testimonial-layout-left .iktheme-testimonial-top-content, 
.iktheme-testimonial-layout-right .iktheme-testimonial-top-content{
    min-width: 25%;
}

.iktheme-testimonial-wrapper.style1{
    display: flex;
    gap: 1rem;
}
.iktheme-testimonial-wrapper.style1 .iktheme-testimonial-img img{
    width: 120px;
    height: 120px;
    border: 1px solid var(--theme-color);
    padding: 5px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.iktheme-testimonial-wrapper.style2 {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.iktheme-testimonial-wrapper.style2 .iktheme-testimonial-box-wrap{
    display: flex;
    align-items: center;
    gap: 20px;
}
.iktheme-testimonial-wrapper.style2 .iktheme-testimonial-img img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid var(--theme-color);
    padding: 3px;
    border-radius: 50%;
}
.iktheme-testimonial-wrapper.style2 .iktheme-testimonial-rating {
    padding: 10px 20px;
    background: #f0f3f9;
    border-radius: 15px;
    text-align: center;
    width: 100%;
}

.iktheme-testimonial-layout-left .iktheme-testimonial-wrapper.style3 .iktheme-testimonial-top-content, 
.iktheme-testimonial-layout-right .iktheme-testimonial-wrapper.style3 .iktheme-testimonial-top-content{
    max-width: 50%;
}
.iktheme-testimonial-wrapper.style3{
    display: flex;
    padding: 0;
    border: 0;
    -webkit-box-shadow: 0 0 30px 5px rgb(var(--theme-rgb-color), 0.05);
    box-shadow: 0 0 30px 5px rgb(var(--theme-rgb-color), 0.05);
}
.iktheme-testimonial-wrapper.style3 .iktheme-testimonial-top-content img {
    min-height: 400px;
    object-fit: cover;
    width: 100%;
}
.iktheme-testimonial-wrapper.style3 .iktheme-testimonial-buttom-content{
    padding: 20px;
}
.ikthemes-quote-icon .elementor-icon{
    font-size: 35px;
    rotate: 90deg;
    color: var(--theme-color);
    fill: var(--theme-color);
}


.iktheme-testimonial-wrapper.style4,
.iktheme-testimonial-wrapper.style6{
    padding: 0;
    position: relative;
    cursor: pointer;
}
.iktheme-testimonial-wrapper.style4 .iktheme-testimonial-top-content .iktheme-testimonial-title {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
}
.iktheme-testimonial-wrapper.style4 .iktheme-testimonial-top-content img,
.iktheme-testimonial-wrapper.style6 .iktheme-testimonial-top-content img {
    min-height: 400px;
    object-fit: cover;
    width: 100%;
}
.iktheme-testimonial-wrapper.style4 .iktheme-testimonial-buttom-content,
.iktheme-testimonial-wrapper.style6 .iktheme-testimonial-buttom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    border-radius: 5px;
    opacity: 0;
    overflow: hidden;
    transform: scale(0.5);
    transition: all 0.4s ease;
    width: auto;
}
.iktheme-testimonial-wrapper.style4:hover .iktheme-testimonial-buttom-content {
    opacity: 1;
    overflow: visible;
    transform: scale(1);
}

.iktheme-testimonial-wrapper.style6 .iktheme-testimonial-buttom-content {
    opacity: 1;
    overflow: visible;
    transform: scale(1);
}

/*--------------------------------------------------------------
## Testimonial Slide
--------------------------------------------------------------*/
.iktheme-testimonial-slider{
    width: 70%;
    margin: 0 auto;
}

.iktheme-testimonial-slider-wrap{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.iktheme-testimonial-slider-wrap .iktheme-testimonial-top-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.iktheme-testimonial-slider-wrap .iktheme-testimonial-img img {
    width: 70px;
    height: 70px;
    border: 1px solid var(--theme-color);
    padding: 2px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*--------------------------------------------------------------
## Counter Section
--------------------------------------------------------------*/
.iktheme-counter-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:1rem;
}
.iktheme-icon-wrap{
    display: flex;
}
.iktheme-counter-layout-left .iktheme-icon-wrap,
.iktheme-counter-layout-right .iktheme-icon-wrap{
    background: #f9f9f9;
    border-radius: 5px;
    padding: 22px 12px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iktheme-counter-layout-left .iktheme-content-wrap {
    text-align: left;
}
.iktheme-counter-layout-right .iktheme-content-wrap {
    text-align: right;
}
.iktheme-icon-wrap .elementor-icon{
    font-size: 40px;
    color: var(--theme-color);
    fill: var(--theme-color);
}
.iktheme-content-wrap {
    font-size: 40px;
    font-weight: 700;
    color: var(--theme-color);
}
.iktheme-counter-title{
    margin: 0;
    color: var(--theme-color);
}

.iktheme-counter-wrapper.style2{
    position: relative;
    padding:25px;
}
.iktheme-counter-wrapper.style2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    border: 1px solid var(--theme-color);
    transition: all 0.3s ease;
}
.iktheme-counter-wrapper.style2:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    border: 1px solid var(--theme-color);
    transition: all 0.3s ease;
}
.iktheme-counter-wrapper.style2>span:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    border: 1px solid var(--theme-color);
    transition: all 0.3s ease;
}
.iktheme-counter-wrapper.style2>span:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 30px;
    border: 1px solid var(--theme-color);
    transition: all 0.3s ease;
}
.iktheme-counter-wrapper.style2:hover:after, 
.iktheme-counter-wrapper.style2:hover>span:after {
    height: 100%;
}
.iktheme-counter-wrapper.style2:hover:before, 
.iktheme-counter-wrapper.style2:hover>span:before {
    width: 100%;
}

.iktheme-counter-wrapper.style3 {
    position: relative;
    border: 2px solid var(--theme-color);
    border-top: 0;
    padding: 25px;
}
.iktheme-counter-wrapper.style3:before {
    content: "";
    position: absolute;
    width: 30%;
    right: 0;
    top: 0;
    border: 1px solid var(--theme-color);
}
.iktheme-counter-wrapper.style3:after {
    content: "";
    position: absolute;
    width: 30%;
    left: 0;
    top: 0;
    border: 1px solid var(--theme-color);
}
.iktheme-counter-wrapper.style3 .iktheme-icon-wrap {
    transform: translate(0, -15px);
}

.iktheme-counter-wrapper.style4 {
    flex-direction: row;
    padding: 20px;
    gap: 0;
}
.iktheme-counter-wrapper.style4 .iktheme-content-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.iktheme-counter-wrapper.style4 .iktheme-counter-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.iktheme-counter-wrapper.style5{
    width: 265px;
    height: 265px;
    border-radius: 50%;
    background-color: var(--theme-color);
    margin: auto;
    justify-content: center;
    margin: 50px auto;
}
.iktheme-counter-wrapper.style5 .iktheme-icon-wrap .elementor-icon{
    color: var(--white-color);
    fill: var(--white-color);
}
.iktheme-counter-wrapper.style5 .iktheme-content-wrap {
    color: var(--white-color);
}
.iktheme-counter-wrapper.style5 .iktheme-counter-title{
    color: var(--white-color);
}

.counter-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--theme-color);
    -webkit-transition: all 0.4sease-in-out;
    transition: all 0.4sease-in-out;
}
.counter-shape span {
    position: absolute;
    bottom: 52px;
    right: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgb(var(--theme-rgb-color), 0.20);
    z-index: 2;
}
.counter-shape:after, 
.counter-shape:before {
    content: "";
    position: absolute;
    bottom: 20%;
    right: 7%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-sizing: content-box;
    background-color: var(--theme-color);
}
.counter-shape:after {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple3;
    animation-name: ripple3;
}

@keyframes ripple3 {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0;
    }
    30% {
      opacity: 0.4;
    }
    100% {
      -webkit-transform: scale(2.9);
              transform: scale(2.9);
      opacity: 0.2;
    }
}

.iktheme-counter-wrapper.style5:hover .counter-shape {
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}
@-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
## Tab Block
--------------------------------------------------------------*/
.iktheme-tab-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.iktheme-tabs-wrap {
    position: relative;
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    gap: 1rem;
    flex-shrink: 0;
    justify-content: center;
}

.iktheme-tab-item{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap:10px;
    flex-grow: 0;
    flex-basis: content;
    flex-shrink: 0;
    padding: 15px;
    background-color: #f9f9f9;
    color: var(--theme-color);
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.iktheme-tab-item .elementor-icon{
    font-size: 18px;
    color: var(--theme-color);
    fill: var(--theme-color);
}

.iktheme-tab-item.tab-active{
    background-color: var(--theme-color);
    color: var(--white-color);
}
.iktheme-tab-item.tab-active .elementor-icon{
    color: var(--white-color);
    fill: var(--white-color);
}
.iktheme-horizontal-tab-stretch .iktheme-tab-item,
.iktheme-vertical-tab-stretch .iktheme-tab-item{
    flex-grow: 1;
}

.iktheme-tab-layout-right .iktheme-tabs-wrap{
    flex-basis: 25%;
    flex-direction: column;
}
.iktheme-tab-layout-left .iktheme-tabs-wrap{
    flex-basis: 25%;
    flex-direction: column;
}

.iktheme-tab-layout-left .iktheme-tab-item-content{
    text-align: right;
}






.iktheme-tab-wrapper.style2{
    gap: 4rem;
}

.iktheme-tab-layout-above .iktheme-tab-wrapper.style2 .iktheme-tab-item .elementor-icon,
.iktheme-tab-layout-below .iktheme-tab-wrapper.style2 .iktheme-tab-item .elementor-icon{
    font-size: 35px;
}
.iktheme-tab-layout-above .iktheme-tab-wrapper.style2 .iktheme-tab-item{
    flex-direction: column;
    padding: 20px 40px;
}
.iktheme-tab-layout-below .iktheme-tab-wrapper.style2 .iktheme-tab-item {
    flex-direction: column-reverse;
    padding: 20px 40px;
}
.iktheme-tab-layout-above .iktheme-tab-wrapper.style2 .iktheme-tab-item.tab-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background-color: var(--theme-color);
    height: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: -1px;
}

.iktheme-tab-layout-below .iktheme-tab-wrapper.style2 .iktheme-tab-item.tab-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    bottom: 0;
    width: 100%;
    background-color: var(--theme-color);
    height: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    rotate: 180deg;
}
.iktheme-tab-layout-right .iktheme-tab-wrapper.style2 .iktheme-tab-item{
    flex-direction: row;
    padding: 20px;
}
.iktheme-tab-layout-left .iktheme-tab-wrapper.style2 .iktheme-tab-item {
    flex-direction: row-reverse;
    padding: 20px;
}
.iktheme-tab-layout-right .iktheme-tab-wrapper.style2 .iktheme-tab-item.tab-active::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: -100%;
    background-color: var(--theme-color);
    clip-path: polygon(12% 50%, 0 0, 0 100%);
    width: 100%;
    height: 100%; 
    margin-right: 1px;
}
.iktheme-tab-layout-left .iktheme-tab-wrapper.style2 .iktheme-tab-item.tab-active::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    background-color: var(--theme-color);
    clip-path: polygon(88% 50%, 100% 0, 100% 100%);
    width: 100%;
    height: 100%;
    margin-left: 1px;
}


.iktheme-tab-wrapper.style3 .iktheme-tabs-wrap,
.iktheme-tab-wrapper.style3 .iktheme-tabs-content-wrap{
    padding: 15px 0;
}
.iktheme-tab-wrapper.style3 .iktheme-tabs-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--theme-color);
    width: 2px;
    opacity: 0.4;
}
.iktheme-tab-layout-left .iktheme-tab-wrapper.style3 .iktheme-tabs-wrap::after{
    left: 0;
    right: auto;
}
.iktheme-tab-wrapper.style3 .iktheme-tabs-wrap .iktheme-tab-item{
    margin-right: 15px;
    border-radius: 0;
}
.iktheme-tab-layout-left .iktheme-tab-wrapper.style3 .iktheme-tabs-wrap .iktheme-tab-item{
    margin-left: 15px;
    border-radius: 0;
}
.iktheme-tab-wrapper.style3 .iktheme-tabs-wrap .iktheme-tab-item.tab-active:after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    bottom: 0;
    width: 8px;
    background-color: var(--theme-color);
    z-index: 99;
}
.iktheme-tab-layout-left .iktheme-tab-wrapper.style3 .iktheme-tabs-wrap .iktheme-tab-item.tab-active:after{
    left: -18px;
    right: auto;
}

/*--------------------------------------------------------------
## Logo Carousel
--------------------------------------------------------------*/
.ikthemes-logo-list{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

.ikthemes-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/*--------------------------------------------------------------
## Blog Section
--------------------------------------------------------------*/
.ikthemes-blog-wrap{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.ikthemes-blog-item{
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    background-color: #fcfcfc;
}
.ikthemes-blog-post-thumbnail {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ikthemes-blog-post-thumbnail .ikthemes-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease 0.6s;
    -webkit-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
}
.ikthemes-blog-post-thumbnail .ikthemes-post-thumbnail img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.ikthemes-box-content {
    padding:20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ikthemes-blog-title{
    margin: 0;
}
.ikthemes-entry-meta{
    text-transform: capitalize;
}
.ikthemes-entry-meta .avatar {
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid var(--theme-color);
    padding: 2px;
}

.ikthemes-blog-wrap.style2 .ikthemes-box-content{
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.style2 .ikthemes-blog-title a,
.style2 .ikthemes-entry-meta,
.style2 .ikthemes-entry-meta a,
.ikthemes-blog-wrap.style2 .iktheme-button.iktheme-button-noborder,
.ikthemes-blog-wrap.style2 .iktheme-button.iktheme-button-noborder .iktheme-link-icon svg{
    color: var(--white-color);
    fill: var(--white-color);
}
.style2 .ikthemes-blog-title a:hover,
.style2 .ikthemes-entry-meta a:hover,
.ikthemes-blog-wrap.style2 .iktheme-button.iktheme-button-noborder:hover,
.ikthemes-blog-wrap.style2 .iktheme-button.iktheme-button-noborder:hover .iktheme-link-icon svg{
    color: var(--theme-color);
    fill: var(--theme-color);
}

.style3.ikthemes-blog-wrap{
    grid-template-columns: repeat(2, 1fr);
}
.style3 .ikthemes-blog-item {
    flex-direction: row;
}
.style3.ikthemes-blog-wrap .ikthemes-blog-item:first-child{
    grid-row: 1 / span 2;
    flex-direction: column;
}
.style3.ikthemes-blog-wrap .ikthemes-blog-item:first-child .ikthemes-box-content{
    text-align: center;
}
.style3.ikthemes-blog-wrap .ikthemes-box-content {
    padding: 15px;
    text-align: left;
    justify-content: center;
}

/*--------------------------------------------------------------
## Logo Flipster
--------------------------------------------------------------*/
.ikthemes-image-flipster-carousel .ikthemes-image-slide .flip-content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.ikthemes-image-flipster-carousel.flipster-carousel .flip-items .flip-item {
    background-color: var(--white-color);
    opacity: 1;
}

.ikthemes-image-stretch-yes.ikthemes-image-flipster-carousel .ikthemes-image-slide .flip-content img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.ikthemes-disable-nav.ikthemes-image-flipster-carousel .flipto-prev,
.ikthemes-disable-nav.ikthemes-image-flipster-carousel .flipto-next{
    display: none;
}

.ikthemes-image-flipster-carousel .flipto-prev,
.ikthemes-image-flipster-carousel .flipto-next {
    font-size: 30px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-side .flipto-prev,
.ikthemes-image-flipster-carousel.ikthemes-nav-side .flipto-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 110px;
    width: 32px;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-side .flipto-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-side .flipto-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-bottom .flipto-prev,
.ikthemes-image-flipster-carousel.ikthemes-nav-bottom .flipto-next{
    height: 50px;
    width: 40px;
    border-radius: 2px;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-bottom .flipto-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-bottom .flipto-prev {
    margin-right: 5px;
}

.ikthemes-image-flipster-carousel.ikthemes-nav-bottom .flipto-next {
    margin-left: 5px;
}


/*--------------------------------------------------------------
## Pricing Block
--------------------------------------------------------------*/
.ikthemes-pricing-table {
    position: relative;
    text-align: center;
    border-radius: 10px;
    background-color: #f7fbfa;
}
.ikthemes-pricing-header {
    padding: 15px;
    position: relative;
    border-radius: 10px;
    color: var(--white-color);
    background-color: var(--black-color);
}
.style1 .ikthemes-pricing-header:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    min-height: 65px;
    background-color: inherit;
    clip-path: polygon(50% 0%, 98% 38%, 50% 100%, 2% 38%);
}
.ikthemes-pricing-title{
    color: var(--white-color);
}
.ikthemes-pricing-icon {
    position: relative;
    display: inline-block;
    width: 105px;
    height: 105px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white-color);
    background-color: var(--theme-color);
    border: 8px solid var(--white-color);
    border-radius: 100%;
    margin-top: -20px;
}
.ikthemes-pricing-icon svg{
    width: 40px;
    height: 40px;
    fill: var(--white-color);
}
.ikthemes-pricing-icon:after {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: inherit;
    border: 3px dashed var(--theme-color);
    opacity: 1;
    visibility: visible;
    animation: spin 10s linear infinite;
    transition: all .55s cubic-bezier(.645, .045, .355, 1);
    z-index: 1;
}
@keyframes spin {
    from {
        transform: rotate(0deg) scale(1)
    }

    to {
        transform: rotate(360deg)
    }
}

.ikthemes-price-wrap {
    padding: 25px 25px 0;
}
.ikthemes-pricing-price-wrap,
.ikthemes-pricing-current-price{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.ikthemes-pricing-original-price {
    font-size: 25px;
    font-weight: 600;
    text-decoration: line-through;
    color: rgb(var(--theme-rgb-color), 0.50);
    margin-right: 15px;
}
.ikthemes-pricing-price{
    font-size: 45px;
    font-weight: 600;
}
.ikthemes-pricing-current-price .ikthemes-pricing-currency{
    font-size: 25px;
    align-self: flex-start;
}
.ikthemes-pricing-period {
    font-weight: 600;
    align-self: flex-end;
}
.ikthemes-pricing-items {
    padding: 25px 20px;
}
.ikthemes-pricing-list:not(:last-child)::after{
    content: "";
    display: block;
    border-color: #dedede;
    margin: 10px 0;
}
.ikthemes-pricing-list:last-child{
    border: none;
}
.ikthemes-pricing-list svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.ikthemes-pricing-footer {
    padding: 0 25px 25px;
}
.pricing-button .btn{
    padding: 12px 50px;
}
.ikthemes-pricing-info {
    margin-top: 10px;
    font-size: 15px;
}
.ikthemes-most-popular{
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 100px;
    overflow: hidden;
    height: 100px;
    z-index: 9;
}
.left .ikthemes-most-popular{
    right: auto;
    left: 0;
    transform: rotate(360deg);
}
.ikthemes-most-popular-inner{
    position: absolute;
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    line-height: 2;
    font-weight: 800;
    text-transform: uppercase;
    background-color: var(--theme-color);
    color: var(--white-color);
}

.style2 .ikthemes-pricing-header,
.style3 .ikthemes-pricing-header{
    background-color: transparent;
    color: var(--black-color);
}
.style2 .ikthemes-pricing-icon{
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--black-color);
    border: none;
}
.style2 .ikthemes-pricing-icon svg {
    fill: var(--black-color);
    width: 40px;
    height: 40px;
}
.style2 .ikthemes-pricing-icon::after{
    display: none;
}
.style2 .ikthemes-pricing-price-wrap,
.style3 .ikthemes-pricing-price-wrap  {
    padding: 0 25px;
}
.style2 .ikthemes-pricing-icon,
.style3 .ikthemes-pricing-icon{
    margin-top: 20px;
}
.style2 .ikthemes-pricing-title,
.style3 .ikthemes-pricing-title{
    color: var(--black-color);
}

.style3 .ikthemes-pricing-footer {
    padding: 25px 25px 0;
}

/*--------------------------------------------------------------
## Working Process( Step )
--------------------------------------------------------------*/
.working-area{
    position: relative;
    z-index: 2;
}
.working_step_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}
.working_step_item:nth-child(2n) {
    flex-direction: row-reverse;
}
.working_step_item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 6px;
    height: calc(100% + 100px);
    background-color: var(--theme-color);
}
.working_step_item:last-child::before {
    height: 50%;
    top: 0;
}
.working_step_item:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--theme-color);
    border-radius: 15px;
}
.working_step_item .working_number {
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 100%;
    background: var(--white-color);
    border: 5px solid rgba(var(--theme-rgb-color), 90%);
    box-shadow: 0 0px 8px rgba(var(--theme-rgb-color), 90%), 0 0 #eee inset, 0 0 #eee inset;
}
.working_step_item .working_number span {
    font-size: 32px;
    font-weight: 600;
    color: var(--theme-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(var(--theme-rgb-color), 90%);
    border-radius: 100%;
    margin: 0;
    box-shadow: 0 2px 15px rgba(var(--theme-rgb-color), 90%), 1px 0 rgba(var(--theme-rgb-color), 90%) inset, -1px 0 rgba(var(--theme-rgb-color), 90%) inset;
}
.working_step_item .working_text, 
.working_step_item .working_img,
.working_step_item .working-wrap{
    width: 42%;
    position: relative;
}
.working_step_item .working-wrap .working-icon{
    display: inline-block;
}
.working_step_item .working-icon,
.working_step_item:nth-child(2n) .working_text{
    text-align: left;
}
.working_step_item .working_text,
.working_step_item:nth-child(2n) .working-icon,
.working_step_item:nth-child(2n) .working_img{
    text-align: right;
}
.general-align-end .working_step_item:nth-child(2n) .working_text,
.image-align-right .working_step_item:nth-child(2n) .working_img,
.image-align-right .working_step_item:nth-child(2n) .working-icon{
    text-align: left !important;
}
.general-align-start .working_step_item:nth-child(2n) .working_text,
.image-align-right .working_step_item .working-icon,
.image-align-left .working_step_item:nth-child(2n) .working_img{
    text-align: right !important;
}
.image-align-center .working_step_item .working-icon{
    text-align: center;
}
.working_step_item .working_text {
    padding: 25px;
    background-color: #fcfcfc;
    border-radius: 10px;
}
.working_step_item .working_text:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-color: #ff090900;
    top: 40%;
    border-width: 17px;
    right: -33px;
    border-left-color: var(--white-color);
}
.working_step_item:nth-child(2n) .working_text:before {
    transform: rotate(180deg);
    left: -33px;
    right: unset;
}
.working_step_item .working_img img{
    object-fit: cover;
    height: 240px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}
.working_step_item .working-icon svg,
.working_step_item .working-icon i {
    height: 180px;
    width: 180px;
    font-size: 180px;
    cursor: pointer;
    fill: var(--theme-color);
}
.working-area.style2,
.working-area.style3,
.working-area.style4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}
.working_step_item2{
    position: relative;
}
.working_step_item2 .working_text {
    background-color: #fcfcfc;
    padding:30px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    position: relative;
}
.working_step_item2 .working_img{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.working_step_item2 .working_img img{
    position: relative;
    z-index: 9;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.working_step_item2 .working-icon{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 25px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border: 5px solid var(--box-shadow);
}
.working_step_item2 .working_img::after,
.working_step_item2 .working-icon::after {
    position: absolute;
    content: "";
    height: 115px;
    width: 115px;
    border-radius: 50%;
    border: 2px dashed var(--theme-color);
}
.working_step_item2 .working-icon svg{
    width: 50px;
    height: 50px;
    fill: var(--white-color);
}
.working_shape {
    height: 110px;
    width: 100%;
    aspect-ratio: 2;
    -webkit-mask: linear-gradient(0deg, #0000 calc(60px / sqrt(2)), #000 0), radial-gradient(60px at 50% calc(100% - 60px* sqrt(2)), #000 98%, #0000 101%);
    clip-path: polygon(50% 75%, 100% -1px, 0 -1px);
    background: linear-gradient(45deg, #fafafa, #fafafa);
}
.working_step_item2 .working_number span{
    position: absolute;
    z-index: 1;
    bottom:10px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: var(--theme-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.working_step_item4 .working_text {
    padding:10px;
    text-align: center;
    position: relative;
    background-color: #fcfcfc;
}
.workingstep{
    position: relative;
}
.workingstep::after{
    content: '';
    position: absolute;
    width: 400px; 
    height: 150px;  
    border: solid 5px var(--theme-color);
    border-color: var(--theme-color) transparent transparent transparent;
    border-radius: 50% / 100px 150px 0 0;
    left: -50%;
}
.workingstep::before{
    content: '';
    position: absolute;
    display: block;
    margin: 35px auto;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--theme-color);
    border-left: 5px solid var(--theme-color);
    transform: rotate(170deg);
    right: 64%;
}
.item2 .workingstep::after{
    width: 585px;
    height: 125px;
}
.item4 .workingstep::after {
    width: 330px;
    left: -60%;
}
.working_step_item4 .working_img{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.working_step_item4 .working_img img{
    position: relative;
    z-index: 9;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.working_step_item4 .working-icon{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 25px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border: 5px solid var(--box-shadow);
}
.working_step_item4 .working_img::after,
.working_step_item4 .working-icon::after {
    position: absolute;
    content: "";
    height: 115px;
    width: 115px;
    border-radius: 50%;
    border: 2px dashed var(--theme-color);
}
.working_step_item4 .working-icon svg{
    width: 50px;
    height: 50px;
    fill: var(--white-color);
}
.working_step_item4 .working_number{
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -15px;
    left: -42px;
    border: 5px solid var(--box-shadow);
    z-index: 1;
    font-size: 20px;
    font-weight: 600;
}
.working_step_item4:nth-child(2n) .working_img .working_number,
.working_step_item4 .working_img .working_number{
    left: -35px;
}
.working_step_item4:nth-child(2n) .working_number{
    top: -15px;
    bottom: auto;
    left: -42px;
}

/*--------------------------------------------------------------
## CTA ( Call To Action ) Block
--------------------------------------------------------------*/
.calltoaction-wrap {
    position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    overflow: hidden
}
.calltoaction-bg-wrapper {
    position: relative;
    min-height: 400px;
    width: 100%;
    z-index: 2;
}
.calltoaction-bg-image-overlay,
.calltoaction-bg-image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    transition: all .9s;
    z-index: 1;
}
.calltoaction-content-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    justify-content: center;
    background-color: #f9fafa;
    color: var(--title-color);
    padding:50px 20px;
    width: 100%;
    z-index: 2;
}
.calltoaction-layout-skin-cover .calltoaction-content-wrapper{
    max-width: var(--container-width);
    margin: 0 auto;
    overflow: hidden;
}
.calltoaction-icon i,
.calltoaction-icon svg{
    width: 65px;
    height: 65px;
    font-size: 65px;
    fill: var(--title-color);
}
.calltoaction-image-wrap img{
    border-radius: 8px;
}
.calltoaction-title{
    margin-bottom: 0;
}
.calltoaction-button-wrapper .calltoaction-button{
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 3px;
    color: var(--title-color);;
    fill: var(--title-color);;
    border: 2px solid var(--title-color);
}

/* Skin Cover Layout */
.calltoaction-layout-skin-cover .calltoaction-wrap {
    display: block
}

.calltoaction-layout-skin-cover .calltoaction-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .4s;
    width: 100%
}

.calltoaction-layout-skin-cover .calltoaction-content-wrapper {
    min-height: 400px;
    background-color: transparent;
    justify-content: center;
}

/* Features tag Ribbon */
.calltoaction-ribbon {
    position: absolute;
    z-index:9;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px
}

.calltoaction-ribbon-inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(45px) rotate(-45deg);
    margin-top: 45px;
    font-size: 13px;
    line-height: 2;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--theme-color);
    color: #fff
}

.calltoaction-ribbon.calltoaction-ribbon-left {
    transform: rotate(0);
    left: 0;
    right: auto
}

.calltoaction-ribbon.calltoaction-ribbon-right {
    transform: rotate(90deg);
    left: auto;
    right: 0
}



/*! Hover Effect Custom CSS */
.ikreatethemes-bg-transform .ikreatethemes-bg {
    will-change: transform;
}
.ikreatethemes-bg-transform-zoom-in:hover .ikreatethemes-bg,
.ikreatethemes-bg-transform-zoom-out .ikreatethemes-bg {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.ikreatethemes-bg-transform-zoom-out:hover .ikreatethemes-bg {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}
.ikreatethemes-bg-transform-move-left .ikreatethemes-bg {
    transform: scale(1.2) translateX(8%);
    -webkit-transform: scale(1.2) translateX(8%);
    -ms-transform: scale(1.2) translateX(8%);
}
.ikreatethemes-bg-transform-move-left:hover .ikreatethemes-bg,
.ikreatethemes-bg-transform-move-right .ikreatethemes-bg {
    transform: scale(1.2) translateX(-8%);
    -webkit-transform: scale(1.2) translateX(-8%);
    -ms-transform: scale(1.2) translateX(-8%);
}
.ikreatethemes-bg-transform-move-right:hover .ikreatethemes-bg {
    transform: scale(1.2) translateX(8%);
    -webkit-transform: scale(1.2) translateX(8%);
    -ms-transform: scale(1.2) translateX(8%);
}
.ikreatethemes-bg-transform-move-up .ikreatethemes-bg {
    transform: scale(1.2) translateY(8%);
    -webkit-transform: scale(1.2) translateY(8%);
    -ms-transform: scale(1.2) translateY(8%);
}
.ikreatethemes-bg-transform-move-down .ikreatethemes-bg,
.ikreatethemes-bg-transform-move-up:hover .ikreatethemes-bg {
    transform: scale(1.2) translateY(-8%);
    -webkit-transform: scale(1.2) translateY(-8%);
    -ms-transform: scale(1.2) translateY(-8%);
}
.ikreatethemes-bg-transform-move-down:hover .ikreatethemes-bg {
    transform: scale(1.2) translateY(8%);
    -webkit-transform: scale(1.2) translateY(8%);
    -ms-transform: scale(1.2) translateY(8%);
}

.calltoaction-animated-content:focus .calltoaction-animated-item--grow,
.calltoaction-animated-content:hover .calltoaction-animated-item--grow {
    transform: scale(1.1)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--shrink,
.calltoaction-animated-content:hover .calltoaction-animated-item--shrink {
    transform: scale(.85)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--shrink-contained,
.calltoaction-animated-content:hover .calltoaction-animated-item--shrink-contained {
    transform: scale(1)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--enter-zoom-in,
.calltoaction-animated-content:focus .calltoaction-animated-item--enter-zoom-out,
.calltoaction-animated-content:focus .calltoaction-animated-item--fade-in,
.calltoaction-animated-content:hover .calltoaction-animated-item--enter-zoom-in,
.calltoaction-animated-content:hover .calltoaction-animated-item--enter-zoom-out,
.calltoaction-animated-content:hover .calltoaction-animated-item--fade-in {
    transform: scale(1);
    opacity: 1
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-zoom-in,
.calltoaction-animated-content:focus .calltoaction-animated-item--exit-zoom-out,
.calltoaction-animated-content:focus .calltoaction-animated-item--fade-out,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-zoom-in,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-zoom-out,
.calltoaction-animated-content:hover .calltoaction-animated-item--fade-out {
    opacity: 0
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-zoom-out,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-zoom-out {
    transform: scale(.2)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-zoom-in,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-zoom-in {
    transform: scale(2)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--enter-from-bottom,
.calltoaction-animated-content:focus .calltoaction-animated-item--enter-from-left,
.calltoaction-animated-content:focus .calltoaction-animated-item--enter-from-right,
.calltoaction-animated-content:focus .calltoaction-animated-item--enter-from-top,
.calltoaction-animated-content:hover .calltoaction-animated-item--enter-from-bottom,
.calltoaction-animated-content:hover .calltoaction-animated-item--enter-from-left,
.calltoaction-animated-content:hover .calltoaction-animated-item--enter-from-right,
.calltoaction-animated-content:hover .calltoaction-animated-item--enter-from-top {
    opacity: 1;
    transform: translateY(0) translateX(0)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-right,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-right {
    transform: translateX(1000px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-left,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-left {
    transform: translateX(-1000px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-top,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-top {
    transform: translateY(-600px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-bottom,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-bottom {
    transform: translateY(600px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-bottom,
.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-left,
.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-right,
.calltoaction-animated-content:focus .calltoaction-animated-item--exit-to-top,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-bottom,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-left,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-right,
.calltoaction-animated-content:hover .calltoaction-animated-item--exit-to-top {
    opacity: 0
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-right,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-right {
    transform: translateX(30px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-left,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-left {
    transform: translateX(-30px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-up,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-up {
    transform: translateY(-30px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-down,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-down {
    transform: translateY(30px)
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-contained-right,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-contained-right {
    --translate: 8%,0
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-contained-left,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-contained-left {
    --translate: -8%,0
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-contained-top,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-contained-top {
    --translate: 0,-8%
}

.calltoaction-animated-content:focus .calltoaction-animated-item--move-contained-bottom,
.calltoaction-animated-content:hover .calltoaction-animated-item--move-contained-bottom {
    --translate: 0,8%
}

.calltoaction-animated-content [class^=calltoaction-animated-item] {
    will-change: transform,opacity
}

.calltoaction-animated-content .calltoaction-animated-item--shrink-contained {
    transform: scale(1.17)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-zoom-in {
    transform: scale(.2)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-zoom-out {
    transform: scale(2)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-zoom-in,
.calltoaction-animated-content .calltoaction-animated-item--enter-zoom-out,
.calltoaction-animated-content .calltoaction-animated-item--fade-in {
    opacity: 0
}

.calltoaction-animated-content .calltoaction-animated-item--exit-zoom-in,
.calltoaction-animated-content .calltoaction-animated-item--exit-zoom-out,
.calltoaction-animated-content .calltoaction-animated-item--fade-out {
    opacity: 1;
    transform: scale(1)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-from-right {
    transform: translateX(1000px)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-from-left {
    transform: translateX(-1000px)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-from-top {
    transform: translateY(-600px)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-from-bottom {
    transform: translateY(500px)
}

.calltoaction-animated-content .calltoaction-animated-item--enter-from-bottom,
.calltoaction-animated-content .calltoaction-animated-item--enter-from-left,
.calltoaction-animated-content .calltoaction-animated-item--enter-from-right,
.calltoaction-animated-content .calltoaction-animated-item--enter-from-top {
    opacity: 0
}

.calltoaction-animated-content .calltoaction-animated-item--exit-to-bottom,
.calltoaction-animated-content .calltoaction-animated-item--exit-to-left,
.calltoaction-animated-content .calltoaction-animated-item--exit-to-right,
.calltoaction-animated-content .calltoaction-animated-item--exit-to-top {
    opacity: 1;
    transform: translateY(0) translateX(0)
}

.calltoaction-animated-content .calltoaction-animated-item--move-contained-bottom,
.calltoaction-animated-content .calltoaction-animated-item--move-contained-left,
.calltoaction-animated-content .calltoaction-animated-item--move-contained-right,
.calltoaction-animated-content .calltoaction-animated-item--move-contained-top {
    transform: scale(1.2) translate(var(--translate))
}

/*--------------------------------------------------------------
## Video Block
--------------------------------------------------------------*/
.ikthemes-video-popup{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 0;
}
.ikthemes-play-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ikthemes-play-button i{
    font-size: 60px;
    color: var(--white-color);
}
.ikthemes-play-button svg{
    width: 60px;
    height: 60px;
    color: var(--white-color);
    fill: var(--white-color);
}
.ikthemes-play-button img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


.ikthemes-box-shadow-ripples {
    position: absolute;
    z-index: 99;
    width: 80px;
    height: 80px;
    background-color: var(--iktheme-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgb(var(--theme-rgb-color), 0.50);
}
.ikthemes-box-shadow-ripples:before {
    position: absolute;
    content: "";
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border-radius: 50%;
    z-index: 0;

    /* Fallback for all browsers */
    box-shadow:
        0 0 rgba(var(--theme-rgb-color, 29,8,255), 0.2),
        0 0 0 16px rgba(var(--theme-rgb-color, 29,8,255), 0.2),
        0 0 0 32px rgba(var(--theme-rgb-color, 29,8,255), 0.2),
        0 0 0 48px rgba(var(--theme-rgb-color, 29,8,255), 0.2);

    /* Animation */
    animation: ikripples 1s linear infinite;
    animation-play-state: running;
    opacity: 1;
    visibility: visible;
    transform: scale(0.8);

    /* Modern override (optional, only if supported) */
    box-shadow:
        0 0 rgb(from var(--ik-color) r g b / 0.2),
        0 0 0 16px rgb(from var(--ik-color) r g b / 0.2),
        0 0 0 32px rgb(from var(--ik-color) r g b / 0.2),
        0 0 0 48px rgb(from var(--ik-color) r g b / 0.2);
}

.ikthemes-box-shadow-ripples:hover:before {
    animation-play-state: paused;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

@keyframes ikripples {
    to {
        /* Fallback for all browsers (using precomputed RGB via CSS var) */
        box-shadow:
        0 0 0 16px rgba(var(--theme-rgb-color, 29,8,255), 0.2),
        0 0 0 32px rgba(var(--theme-rgb-color, 29,8,255), 0.2),
        0 0 0 48px rgba(var(--theme-rgb-color, 29,8,255), 0.2),
        0 0 0 64px rgba(var(--theme-rgb-color, 29,8,255), 0);

        /* Modern browsers that support rgb(from …) will override */
        box-shadow:
        0 0 0 16px rgb(from var(--iktheme-color) r g b / 0.2),
        0 0 0 32px rgb(from var(--iktheme-color) r g b / 0.2),
        0 0 0 48px rgb(from var(--iktheme-color) r g b / 0.2),
        0 0 0 64px rgb(from var(--iktheme-color) r g b / 0);
    }
}
/*--------------------------------------------------------------
## Contact Section
--------------------------------------------------------------*/
.ikthemes-contact-area{
    position: relative;
}
.ikthemes-contact-area .ikthemes-maps-embed{
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.ikthemes-contact-area .ikthemes-maps-embed > iframe {
    height: 100%;
    width: 100%;
    display: block;
}
.ikthemes-contact-detail-toggle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 25px;
    cursor: pointer;
    z-index: 99;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.1);
}
.ikthemes-contact-detail-toggle i {
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
}
.ikthemes-contact-detail-toggle.ikthemes-closed i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.ikthemes-contact-detail-toggle.ikthemes-open i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.ikthemes-contact-content {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    min-height: 400px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.style1 .ikthemes-contact-content{
    padding: 140px 0;
}
.ikthemes-contact-content.ikthemes-box-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
.ikthemes-contact-form {
    padding: 30px;
    background: #f9f9f9;
    width: 50%;
}
.ikthemes-contact-form div.wpcf7{
    padding: 0;
    background: transparent;
}
.ikthemes-contact-form textarea {
    height: 100px;
    border: 0;
    border-bottom: 2px solid #eeeeee;
    background: none;
}
.ikthemes-contact-form input[type="text"],
.ikthemes-contact-form input[type="email"],
.ikthemes-contact-form input[type="url"],
.ikthemes-contact-form input[type="password"],
.ikthemes-contact-form input[type="search"],
.ikthemes-contact-form input[type="number"],
.ikthemes-contact-form input[type="tel"],
.ikthemes-contact-form input[type="range"],
.ikthemes-contact-form input[type="date"],
.ikthemes-contact-form input[type="month"],
.ikthemes-contact-form input[type="week"],
.ikthemes-contact-form input[type="time"],
.ikthemes-contact-form input[type="datetime"],
.ikthemes-contact-form input[type="datetime-local"],
.ikthemes-contact-form input[type="color"] {
    border: 0;
    border-bottom: 2px solid #eeeeee;
    background: none;
}
.ikthemes-contact-form p {
    margin-bottom: 20px;
}
.ikthemes-contact-form p:last-of-type {
    margin-bottom: 0;
}
.ikthemes-contact-form input[type="submit"] {
    width: 100%;
}
.ikthemes-contact-detail {
    background: var(--theme-color);
    padding: 30px;
    width: 40%;
}
.ikthemes-contact-detail h3 {
    color: var(--white-color);
    margin-bottom: 25px;
}
.ikthemes-touch {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 2px var(--white-color);
}
.ikthemes-touch-icon {
    background:rgb(var(--theme-rgb-color), 0.05);
    color: var(--theme-color);
    border-radius: 5px;
    font-size: 40px;
    margin-right: 20px;
    text-align: center;
    padding: 15px;
}
.ikthemes-touch-icon svg{
    width: 45px;
    height: 45px;
    vertical-align: middle;
    fill: var(--theme-color);
}
.ikthemes-touch-title{
    margin-bottom: 0;
    font-weight: 700;
}
.ikthemes-touch-content{
    margin-bottom: 0;
}
.ikthemes-contact-social-icon {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ikthemes-contact-social-icon a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--white-color);
    color: var(--theme-color);
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
}
.ikthemes-contact-social-icon a svg {
    width: 18px;
    vertical-align: middle;
    fill: var(--theme-color);
}

.style2 .ikthemes-contact-area {
    position: relative;
    display: flex;
    flex-direction: column;
}
.style2 .ikthemes-contact-detail-toggle{
    display: none;
}
.style2.ikthemes-contact-area .ikthemes-maps-embed {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}
.style2.ikthemes-contact-area .ikthemes-maps-embed > iframe {
    min-height: 500px;
}

.style3.ikthemes-contact-area{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.style3.ikthemes-contact-area .ikthemes-touch-contact {
    width: 100%;
    max-width: var(--container-width);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.style3.ikthemes-contact-area .ikthemes-touch {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    margin-bottom: 0;
    gap: 1rem;
    background-color: #fcfcfc;
}
.style3.ikthemes-contact-area .ikthemes-touch .ikthemes-touch-icon{
    background: transparent;
    margin-right: 0;
    padding: 0;
}
.style3.ikthemes-contact-area .ikthemes-maps-embed{
    position: relative;
    width: 50%;
}
.style3.ikthemes-contact-area .ikthemes-contact-detail{
    width: 50%;
    padding: 15px;
}
.style3.ikthemes-contact-area .ikthemes-contact-detail .ikthemes-contact-form{
    width: auto;
}
.style3 .ikthemes-contact-detail h3 {
    color: var(--black-color);
}

/*--------------------------------------------------------------
## Progress Bars
--------------------------------------------------------------*/
.iktheme-progress-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.iktheme-progress-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.iktheme-progress-title{
    margin: 0;
}
.iktheme-progress-bar {
    position: relative;
    height: 20px;
    width: 100%;
    background: var(--box-shadow);
    border-radius: 2px;
}
.iktheme-progress-bar-length {
    background: var(--theme-color);
    height: 100%;
    text-align: right;
    width: 0;
    border-radius: 2px;
}
.iktheme-progress-bar-length span {
    position: absolute;
    right: 0;
    bottom: 100%;
}

/*--------------------------------------------------------------
## Animated Title (Heading)
--------------------------------------------------------------*/ 
.ikat-headline {
    font-size: 65px;
    text-align: center;
    line-height: 1.2;
}

.ikat-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}
.ikat-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}
.ikat-words-wrapper b.is-visible {
    position: relative;
}

/* TYPE ANIMATION */
.ikat-headline.type .ikat-words-wrapper {
    vertical-align: top;
    overflow: hidden;
    padding-right: 10px;
}
.ikat-headline.type .ikat-words-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 65%;
    width: 2px;
    background-color: var(--theme-color);
}
.ikat-headline.type .ikat-words-wrapper.waiting::after {
    animation: ikat-pulse 1s infinite;
}
.ikat-headline.type .ikat-words-wrapper.selected {
    background-color: var(--theme-color);
}
.ikat-headline.type .ikat-words-wrapper.selected::after {
    visibility: hidden;
}
.ikat-headline.type .ikat-words-wrapper.selected b {
    color: var(--white-color);
}
.ikat-headline.type b {
    visibility: hidden;
}
.ikat-headline.type b.is-visible {
    visibility: visible;
}
.ikat-headline.type i {
    position: absolute;
    visibility: hidden;
}
.ikat-headline.type i.in {
    position: relative;
    visibility: visible;
}

@keyframes ikat-pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

/* LOADING BAR ANIMATION */
.ikat-headline.loading-bar .ikat-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.ikat-headline.loading-bar .ikat-words-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: var(--theme-color);
    z-index: 2;
    transition: width 0.3s -0.1s;
}

.ikat-headline.loading-bar .ikat-words-wrapper.is-loading::after {
    width: 100%;
    transition: width 3s;
}
.ikat-headline.loading-bar b {
    opacity: 0;
    transition: opacity 0.3s;
}
.ikat-headline.loading-bar b.is-visible {
    opacity: 1;
    top: 0;
}

/* CLIP ANIMATION */
.ikat-headline.clip .ikat-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.ikat-headline.clip .ikat-words-wrapper::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    margin: auto 0;
    background-color: var(--theme-color);
    width: 2px;
    height: 65%;
}
.ikat-headline.clip b {
    opacity: 0;
}
.ikat-headline.clip b.is-visible {
    opacity: 1;
}

/* ROTATE 1 */
.ikat-headline.rotate-1 .ikat-words-wrapper {
    perspective: 300px;
}
.ikat-headline.rotate-1 b {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: rotateX(180deg);
}
.ikat-headline.rotate-1 b.is-visible {
    opacity: 1;
    transform: rotateX(0deg);
    animation: ikat-rotate-1-in 1.2s;
}
.ikat-headline.rotate-1 b.is-hidden {
    transform: rotateX(180deg);
    animation: ikat-rotate-1-out 1.2s;
}

@keyframes ikat-rotate-1-in {
    0% { transform: rotateX(180deg); opacity: 0; }
    35% { transform: rotateX(120deg); opacity: 0; }
    65% { opacity: 0; }
    100% { transform: rotateX(360deg); opacity: 1; }
}

@keyframes ikat-rotate-1-out {
    0% { transform: rotateX(0deg); opacity: 1; }
    35% { transform: rotateX(-40deg); opacity: 1; }
    65% { opacity: 0; }
    100% { transform: rotateX(180deg); opacity: 0; }
}

/* ROTATE 2 */
.ikat-headline.rotate-2 .ikat-words-wrapper {
    perspective: 300px;
}
.ikat-headline.rotate-2 i, .ikat-headline.rotate-2 em {
    display: inline-block;
    backface-visibility: hidden;
}
.ikat-headline.rotate-2 b {
    opacity: 0;
}
.ikat-headline.rotate-2 i {
    transform-style: preserve-3d;
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
}
.is-visible .ikat-headline.rotate-2 i {
    opacity: 1;
}
.ikat-headline.rotate-2 i.in {
    animation: ikat-rotate-2-in 0.4s forwards;
}
.ikat-headline.rotate-2 i.out {
    animation: ikat-rotate-2-out 0.4s forwards;
}
.ikat-headline.rotate-2 em {
    transform: translateZ(20px);
}

@keyframes ikat-rotate-2-in {
    0% { opacity: 0; transform: translateZ(-20px) rotateX(90deg); }
    60% { opacity: 1; transform: translateZ(-20px) rotateX(-10deg); }
    100% { opacity: 1; transform: translateZ(-20px) rotateX(0deg); }
}

@keyframes ikat-rotate-2-out {
    0% { opacity: 1; transform: translateZ(-20px) rotateX(0); }
    60% { opacity: 0; transform: translateZ(-20px) rotateX(-100deg); }
    100% { opacity: 0; transform: translateZ(-20px) rotateX(-90deg); }
}

/* ROTATE 3 */
.ikat-headline.rotate-3 .ikat-words-wrapper {
    perspective: 300px;
}
.ikat-headline.rotate-3 b {
    opacity: 0;
}
.ikat-headline.rotate-3 i {
    display: inline-block;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}
.is-visible .ikat-headline.rotate-3 i {
    transform: rotateY(0deg);
}
.ikat-headline.rotate-3 i.in {
    animation: ikat-rotate-3-in 0.6s forwards;
}
.ikat-headline.rotate-3 i.out {
    animation: ikat-rotate-3-out 0.6s forwards;
}

@keyframes ikat-rotate-3-in {
    0% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes ikat-rotate-3-out {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(-180deg); }
}

/* SLIDE */
.ikat-headline.slide .ikat-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.ikat-headline.slide b {
    opacity: 0;
}
.ikat-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    animation: slide-in 0.6s;
}
.ikat-headline.slide b.is-hidden {
    animation: slide-out 0.6s;
}

@keyframes slide-in {
    0% { opacity: 0; transform: translateY(-100%); }
    60% { opacity: 1; transform: translateY(20%); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slide-out {
    0% { opacity: 1; transform: translateY(0); }
    60% { opacity: 0; transform: translateY(120%); }
    100% { opacity: 0; transform: translateY(100%); }
}

/* ZOOM */
.ikat-headline.zoom .ikat-words-wrapper {
    perspective: 300px;
}
.ikat-headline.zoom b {
    opacity: 0;
}
.ikat-headline.zoom b.is-visible {
    opacity: 1;
    animation: zoom-in 0.8s;
}
.ikat-headline.zoom b.is-hidden {
    animation: zoom-out 0.8s;
}

@keyframes zoom-in {
    0% { opacity: 0; transform: translateZ(100px); }
    100% { opacity: 1; transform: translateZ(0); }
}

@keyframes zoom-out {
    0% { opacity: 1; transform: translateZ(0); }
    100% { opacity: 0; transform: translateZ(-100px); }
}

/* SCALE */
.ikat-headline.scale b {
    opacity: 0;
}
.ikat-headline.scale i {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
}
.is-visible .ikat-headline.scale i {
    opacity: 1;
}
.ikat-headline.scale i.in {
    animation: scale-up 0.6s forwards;
}
.ikat-headline.scale i.out {
    animation: scale-down 0.6s forwards;
}

@keyframes scale-up {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes scale-down {
    0% { transform: scale(1); opacity: 1; }
    60% { transform: scale(0); opacity: 0; }
}

/* PUSH */
.ikat-headline.push b {
    opacity: 0;
}
.ikat-headline.push b.is-visible {
    opacity: 1;
    animation: push-in 0.6s;
}
.ikat-headline.push b.is-hidden {
    animation: push-out 0.6s;
}

@keyframes push-in {
    0% { opacity: 0; transform: translateX(-100%); }
    60% { opacity: 1; transform: translateX(10%); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes push-out {
    0% { opacity: 1; transform: translateX(0); }
    60% { opacity: 0; transform: translateX(110%); }
    100% { opacity: 0; transform: translateX(100%); }
}

/*--------------------------------------------------------------
## Portfolio Gallery
--------------------------------------------------------------*/  
.iktheme-gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border: solid var(--image-border-width) var(--image-border-color);
    border-radius: var(--image-border-radius);
}

.iktheme-gallery-item-content {
    min-height: 1px;
}

.iktheme-gallery-item-overlay, 
.iktheme-gallery-item-content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.iktheme-gallery-item-overlay {
    mix-blend-mode: var(--overlay-mix-blend-mode);
    transition-duration: var(--overlay-transition-duration);
    transition-property: mix-blend-mode, transform, opacity, background-color;
}

.e-gallery-image.iktheme-gallery-item-image {
    transition-duration: var(--image-transition-duration);
    transition-property: filter, transform;
}

.iktheme-gallery-item-content  {
    display: flex;
    flex-direction: column;
    justify-content: var(--content-justify-content, center);
    text-align: var(--content-text-align);
    padding: var(--content-padding);
}

.iktheme-gallery-item-title {
    color: var(--title-text-color, #ffffff);
    font-weight: bold;
    width: 100%;
    font-size: 24px;
}
.iktheme-gallery-item-description {
    color: var(--description-text-color, #ffffff);
    width: 100%;
}
.iktheme-gallery-item-title + .iktheme-gallery-item-description {
    margin-top: var(--description-margin-top);
}

.iktheme-gallery-item-content > div {
    transition-duration: var(--content-transition-duration);
}
.iktheme-gallery-item-content.calltoaction-sequenced-animation > div:nth-child(2) {
    transition-delay: calc(var(--content-transition-delay) / 3);
}
.iktheme-gallery-item-content.calltoaction-sequenced-animation > div:nth-child(3) {
    transition-delay: calc(var(--content-transition-delay) / 3 * 2);
}
.iktheme-gallery-item-content.calltoaction-sequenced-animation > div:nth-child(4) {
    transition-delay: calc(var(--content-transition-delay) / 3 * 3);
}

.iktheme-team-carousel,
.iktheme-testimonial-carousel,
.iktheme-testimonial-slider,
.ikthemes-logo-carousel{
    overflow: hidden;
}

/* Responsive CSS */
@media screen and (max-width: 1024px) {
    .nav_image .owl-nav {
        left: 10px;
        right: 10px;
    }
    /* Service **/
    .iktheme-service-area .iktheme-service-detail {
        justify-content: space-around;
    }
    .iktheme-feature-service-img{
        display: none;
    }
    .iktheme-service-area.style2 .iktheme-service-item-wrap,
    .iktheme-service-area.style3 .iktheme-service-item-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(2), 
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(4), 
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(6),
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(8),
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(10),
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(12) {
        display: flex;
        flex-direction: column-reverse;
    }
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(5){
        display: flex;
        flex-direction: column;
    }
    /* Tab **/
    .iktheme-tab-layout-left .iktheme-tabs-wrap,
    .iktheme-tab-layout-right .iktheme-tabs-wrap {
        flex-basis: 30%;
    }
    /* Contact **/
    .style3.ikthemes-contact-area .ikthemes-touch-contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .style3.ikthemes-contact-area .ikthemes-touch:last-child{
        grid-column: 3 / 1;
    }
}

@media screen and (max-width: 768px) {
    .iktheme-dots-position-right .owl-dots{
        right: 10px;
    }
    .iktheme-dots-position-left .owl-dots{
        left: 10px;
    }
    .iktheme-dots-position-right .dots_type .owl-dots .owl-dot,
    .iktheme-dots-position-left .dots_type .owl-dots .owl-dot {
        width: 10px;
        height: 40px;
    }
    .iktheme-dots-position-left .nav_image .owl-nav, 
    .iktheme-dots-position-right .nav_image .owl-nav, 
    .iktheme-dots-position-left .nav_arrow .owl-nav, 
    .iktheme-dots-position-right .nav_arrow .owl-nav {
        left: 10px;
        right: 10px;
    }
    .iktheme-slider-caption .iktheme-slider-supertitle, 
    .iktheme-slider-caption .iktheme-slider-content {
        font-size: 18px;
    }
    .iktheme-slider-caption .iktheme-slider-title {
        font-size: 35px;
    }
    /* Animated Title **/
    .ikat-headline{
        font-size: 35px;
    }
    /* Service **/
    .iktheme-accodion-layout-right .iktheme-service-area.style4 .iktheme-service-item-wrap{
        flex-direction: column;
    }
    .iktheme-accodion-layout-right .iktheme-service-area.style4 .iktheme-service-block.active {
        width: 100%;
        height: 380px;
    }
    .iktheme-accodion-layout-right .iktheme-service-area.style4 .iktheme-service-block{
        width: 100%;
        height: 90px;
    }
    .iktheme-accodion-layout-right .iktheme-service-area.style4 .iktheme-service-accodion {
        width: 100%;
    }
    .iktheme-accodion-layout-right .iktheme-service-area.style4 .iktheme-top-content{
        width: 100%;
        height: 90px;
        writing-mode: horizontal-tb;
    }
    .iktheme-accodion-layout-right .iktheme-service-area.style4 .iktheme-bottom-content {
        position: relative;
        padding: 0 30px 30px;
        align-items: center;
        text-align: center;
    }
    /* Toggle Service */
    .iktheme-toggle-service-wrap {
        padding:10px;
    }
    /* Call To Action */
    .calltoaction-content-wrapper{
        padding: 15px;
    }
    /* Tab **/
    .iktheme-tabs-wrap {
        display: flex;
        flex-direction: column;
    }
    .iktheme-tab-layout-left .iktheme-tabs-wrap, 
    .iktheme-tab-layout-right .iktheme-tabs-wrap {
        flex-basis: auto;
    }
    .iktheme-tab-wrapper.style2 {
        gap: 1rem;
    }
    .iktheme-tab-layout-above .iktheme-tab-wrapper.style2 .iktheme-tab-item {
        flex-direction: row;
        padding: 15px;
    }
    .iktheme-tab-layout-above .iktheme-tab-wrapper.style2 .iktheme-tab-item.tab-active::after{
        display: none;
    }
    .iktheme-tab-layout-above .iktheme-tab-wrapper.style2 .iktheme-tab-item .elementor-icon, 
    .iktheme-tab-layout-below .iktheme-tab-wrapper.style2 .iktheme-tab-item .elementor-icon {
        font-size: 20px;
    }
    .iktheme-tab-layout-left .iktheme-tab-wrapper.style2 .iktheme-tab-item,
    .iktheme-tab-layout-right .iktheme-tab-wrapper.style2 .iktheme-tab-item{
        padding: 15px;
    }
    .iktheme-tab-wrapper.style3 .iktheme-tabs-content-wrap,
    .iktheme-tabs-content-wrap {
        padding:5px;
    }
    .iktheme-tab-layout-left .iktheme-tab-wrapper,
    .iktheme-tab-layout-right .iktheme-tab-wrapper {
        flex-direction: column !important;
    }
    /* Contact **/
    .ikthemes-contact-detail,
    .ikthemes-contact-form,
    .style3.ikthemes-contact-area .ikthemes-contact-detail{
        padding: 10px;
    }
    .ikthemes-touch-icon {
        margin-right: 10px;
    }
    /* Working Process **/
    .style1 .working_step_item .working_text:before{
        display: none;
    }
    .working_step_item {
        padding: 10px;
        gap: 1rem;
        flex-direction: row-reverse;
        align-items: stretch;
        margin-bottom: 0;
    }
    .working_step_item .working_text, 
    .working_step_item:nth-child(2n) .working-icon, 
    .working_step_item:nth-child(2n) .working_img {
        text-align: left;
    }
    .working_step_item .working_text, 
    .working_step_item .working_img, 
    .working_step_item .working-wrap {
        width: 50%;
    }
    .working_step_item .working_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }
    .working_step_item .working_img img {
        height: auto;
        border-radius: 0;
    }
    .working_step_item .working_number span{
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .working_step_item::before {
        left: 4.5%;
        z-index: 9;
    }
    .working_step_item:first-child::after {
        left: 3.6%;
        transform: translateX(-3.6%);
    }
    .working_step_item .working_number {
        position: absolute;
        left: 0%;
        z-index: 9;
    }
    /* Blog Block **/
    .style3.ikthemes-blog-wrap .ikthemes-blog-item:first-child {
        grid-row: 1;
    }
    .style3 .ikthemes-blog-item {
        flex-direction: column;
    }
    .style3 .ikthemes-blog-item .ikthemes-box-content {
        text-align: center;
    }
    
}

@media screen and (max-width: 480px) {
    .iktheme-slider-title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .iktheme-slider-description {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .iktheme-slider-super-title,
    .iktheme-video-link{
        display: none;
    }
    .iktheme-button-wrapper {
        gap: 10px;
        flex-direction: column;
    }
    .nav_image .owl-nav {
        left: 0;
        right: 0;
    }
    .nav_image .owl-nav button[class*="owl-"] {
        height: 110px;
        width: 32px;
        background-image: none !important;
        background: var(--theme-color);
        color: var(--white-color);
        opacity: .5;
        -webkit-transition: opacity .35s linear 0s;
        transition: opacity .35s linear 0s;
        border: 0;
    }
    .nav_image .owl-nav button.owl-next {
        border-radius: 5px 0 0 5px;
    }
    .nav_image .owl-nav button.owl-prev {
        border-radius: 0 5px 5px 0;
    }
    .nav_image .owl-nav button.owl-next::before,
    .nav_image .owl-nav button.owl-prev::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 700;
        font-size: 22px;
    }
    .nav_image .owl-nav button.owl-prev::before {
        content: '\f053';
    }
    .nav_image .owl-nav button.owl-next::before {
        content: '\f054';
    }
    .nav_image .owl-nav button.owl-next:hover,
    .nav_image .owl-nav button.owl-prev:hover {
        opacity: 1;
    }
    .iktheme-dots-position-left .nav_arrow .owl-nav button[class*="owl-"], 
    .iktheme-dots-position-right .nav_arrow .owl-nav button[class*="owl-"], 
    .iktheme-dots-position-left .nav_image .owl-nav button[class*="owl-"], 
    .iktheme-dots-position-right .nav_image .owl-nav button[class*="owl-"]{
        height: 50px;
        width: 50px;
        border-radius: 2px;
    }
    .iktheme-dots-position-center .nav_arrow .owl-nav button[class*="owl-"],
    .iktheme-dots-position-center .nav_image .owl-nav button[class*="owl-"]{
        height: 110px;
        width: 32px;
    }
    .iktheme-dots-position-left .nav_image .owl-nav, 
    .iktheme-dots-position-right .nav_image .owl-nav,
    .iktheme-dots-position-left .nav_arrow .owl-nav, 
    .iktheme-dots-position-right .nav_arrow .owl-nav,
    .number_type .owl-dots, .dots_type .owl-dots{
        bottom: 5px;
    }
    /* Animated Title **/
    .ikat-headline{
        font-size: 20px;
        line-height: 1.4;
    }
    /* Service **/
    .iktheme-service-area .iktheme-service-detail {
        display: flex;
        flex-direction: column;
    }
    .iktheme-imageicon-layout-left .iktheme-leftdata .iktheme-service-item-block,
    .iktheme-imageicon-layout-left .iktheme-rightdata .iktheme-service-item-block,
    .iktheme-imageicon-layout-right .iktheme-leftdata .iktheme-service-item-block,
    .iktheme-imageicon-layout-right .iktheme-rightdata .iktheme-service-item-block,
    .iktheme-imageicon-layout-above .iktheme-leftdata .iktheme-service-item-block,
    .iktheme-imageicon-layout-above .iktheme-rightdata .iktheme-service-item-block {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    .iktheme-imageicon-layout-below .iktheme-leftdata .iktheme-service-item-block,
    .iktheme-imageicon-layout-below .iktheme-rightdata .iktheme-service-item-block {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }
    .iktheme-service-area.style2 .iktheme-service-item-wrap,
    .iktheme-service-area.style3 .iktheme-service-item-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(2), 
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(4), 
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(6),
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(8),
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(10),
    .iktheme-service-area.style2 .iktheme-service-block:nth-child(12) {
        display: flex;
        flex-direction: column;
    }
    /* Toggle Service */
    .iktheme-toggle-service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .iktheme-toggle-service-wrap .iktheme-toggle-icon-wrapper:after{
        display: none;
    }
    .iktheme-position-layout-right .iktheme-toggle-service-item {
        flex-direction: column;
    }
    .iktheme-position-layout-right .iktheme-toggle-service-block-wrap {
        text-align: center;
    }
    /* Contact **/
    .ikthemes-contact-form,
    .ikthemes-contact-detail,
    .style3.ikthemes-contact-area .ikthemes-maps-embed {
        width: 100% !important;
    } 
    .ikthemes-contact-content {
        display: flex;
        flex-direction: column !important;
    }
    .ikthemes-touch-icon {
        width: 100%;
    }
    .ikthemes-touch {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .style3.ikthemes-contact-area .ikthemes-touch-contact {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .style3.ikthemes-contact-area .ikthemes-touch:last-child{
        grid-column: 1;
    }
    /* Blog Block **/
    .style3.ikthemes-blog-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    /* Working Process **/
    .working_step_item .working_text:before,
    .working_step_item:first-child::after,
    .working_step_item::before,
    .working_step_item .working_number{
        display: none;
    }
    .working_step_item {
        padding: 0;
        gap: 0;
    }
    .working_step_item,
    .working_step_item:nth-child(2n) {
        flex-direction: column;
    }
    .working_step_item .working_text, 
    .working_step_item .working_img, 
    .working_step_item .working-wrap {
        width: 100%;
    }
    .working_step_item .working_text, 
    .working_step_item:nth-child(2n) .working-icon, 
    .working_step_item:nth-child(2n) .working_img,
    .working_step_item .working-icon, 
    .working_step_item:nth-child(2n) .working_text {
        text-align: center;
        align-items: center;
    }
    .working_step_item .working_text{
        padding: 15px;
    }

}