
.fzt-image-box.type-1 {
    position: relative;
    padding: 20px 40px 30px;
    border-width: 2px;
    border-style: dashed;
    border-color: var(--kidizro-primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 20px;
	flex-wrap: wrap;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.fzt-image-box.type-1 .fzt-image-box-image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px;
}

.fzt-image-box.type-1 .fzt-image-box-image img {
    position: relative;
    -webkit-mask-image: url(images/image-shape-mask.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.fzt-image-box.type-1 .fzt-image-box-image:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--kidizro-border-light-color);
    mask-image: url(images/image-dotted-mask.svg);
    -webkit-mask-image: url(images/image-dotted-mask.svg);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
}

.fzt-image-box.type-1:hover {
    background: rgba(var(--kidizro-primary-color-rgb), 0.05);
}

.fzt-image-box.type-1:hover .fzt-image-box-image:before {
    background: var(--kidizro-primary-color);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fzt-image-box.type-1:hover .fzt-image-box-image img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.fzt-image-box.type-1 .fzt-image-box-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
  }

  .fzt-image-box.type-1 .fzt-image-box-content .fzt-image-box-title {
    display: inline-flex;
    justify-content: inherit;
    padding: 0;
    font-size: var(--kidizro-h4-font-size);
    color: var(--kidizro-primary-color);
    font-family: var(--kidizro-h2-font-family);
    font-weight: 600;
    line-height: 1.2;
    text-align: inherit;
    width: 100%;
}

/* Type 2 */

.fzt-image-box.type-2 {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.fzt-image-box.type-2 .fzt-image-box-image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.fzt-image-box.type-2 .fzt-image-box-image img {
    -webkit-transform: scale(1.1);
        transform: scale(1.1);
    -webkit-transition: var(--transition);
        transition: var(--transition);
}

.fzt-image-box.type-2:hover .fzt-image-box-image img {
    -webkit-transform: scale(1);
        transform: scale(1);
}

.fzt-image-box.type-2 .fzt-image-box-image .fzt-img-overlay {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    left: 0;
    bottom: -50%;
    background: rgba(var(--kidizro-primary-color-rgb), 0.5);
    transform: translateY(50%);
    opacity: 0;
    z-index: 1;
    margin: auto;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.fzt-image-box.type-2 .fzt-image-box-image .fzt-img-overlay.lay-2 {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    left: 25%;
    transform: translateY(40%);
}

.fzt-image-box.type-2 .fzt-image-box-image .fzt-img-overlay.lay-3 {
    transition: 0.7s ease-in-out;
    -webkit-transition: 0.7s ease-in-out;
    left: 50%;
    transform: translateY(20%);
}

.fzt-image-box.type-2 .fzt-image-box-image .fzt-img-overlay.lay-4 {
    transition: 0.9s ease-in-out;
    -webkit-transition: 0.9s ease-in-out;
    transform: translateY(30%);
    left: 75%;
}

.fzt-image-box.type-2 .fzt-image-box-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px;
    background: var(--kidizro-light-color);
    box-shadow: 5px 10px 15px rgba(var(--kidizro-heading-color-rgb), 0.1);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
}

.fzt-image-box.type-2 .fzt-image-box-content:before {
    position: absolute;
    content: "";
    bottom: 0;
    height: 5px;    
    width: 100%;
    background: var(--kidizro-primary-color);
    opacity: 0;
    z-index: 1;
    -webkit-transition: var(--transition);
        transition: var(--transition);
}

  .fzt-image-box.type-2 .fzt-image-box-content .fzt-image-box-title {
    display: inline-flex;
    justify-content: inherit;
    padding: 0;
    font-size: var(--kidizro-h4-font-size);
    color: var(--kidizro-primary-color);
    font-family: var(--kidizro-h2-font-family);
    text-shadow: 0px 3px 8px rgba(var(--kidizro-heading-color-rgb), 0.1);
    font-weight: 600;
    line-height: 1.2;
    text-align: inherit;
    width: 100%;
}

.fzt-image-box.type-2 .fzt-image-box-content > *:not(:last-child) {
    margin: 0 0 20px;
}

.fzt-image-box.type-2:hover .fzt-image-box-image .fzt-img-overlay {
    opacity: 0.75;
    bottom: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.fzt-image-box.type-2:hover .fzt-image-box-content {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.fzt-image-box.type-2:hover .fzt-image-box-content:before {
    bottom: -10px;
    opacity: 1;
}

/* Type 3 */

.fzt-image-box.type-3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

.fzt-image-box.type-3 .fzt-image-box-image {
    position: relative;
    display: flex;
    width: 540px;
    height: 470px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 35px;
}

.fzt-image-box.type-3 .fzt-image-box-image .fzt-image-decor:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 0;
}

.fzt-image-box.type-3 .fzt-image-box-image .fzt-image-decor:before {
    background-color: var(--kidizro-primary-color);
}

.fzt-image-box.type-3 .fzt-image-box-image .fzt-image-decor:before {
    -webkit-mask-image: url(images/image-bg-mask.svg);
    mask-size: 95% auto;
    -webkit-mask-size: 95% auto;
}

.fzt-image-box.type-3 .fzt-image-box-image .fzt-image-decor .dotted-decor {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1px;
    stroke-dasharray: 3, 3;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    color: var(--kidizro-primary-color);
    -webkit-animation: dashed-animation 20s linear infinite paused;
    animation: dashed-animation 20s linear infinite paused;
}

.fzt-image-box.type-3:hover .fzt-image-box-image .fzt-image-decor .dotted-decor {
    animation-play-state: running;
}

@-webkit-keyframes dashed-animation {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

.fzt-image-box.type-3 .fzt-image-box-image img {
    position: relative;
    -webkit-mask-image: url(images/image-mask.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
}

.fzt-image-box.type-3 .fzt-image-box-image:before,
.fzt-image-box.type-3 .fzt-image-box-image:after {
    content: "";
    position: absolute;
    left:0;
    right:0;
    margin: auto;
    border-radius: 50%;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
  }

.fzt-image-box.type-3 .fzt-image-box-image:before {
    -webkit-mask-image: url(images/blob-1.gif);
    width: 37px;
    height: 37px;
    top: 0;
    transform: translate(15px, -5px);
    -webkit-transform: translate(15px, -5px);    
}

.fzt-image-box.type-3 .fzt-image-box-image:after {
    -webkit-mask-image: url(images/blob-2.gif);
    width: 33px;
    height: 33px;
    background: var(--kidizro-border-light-color);
    bottom: 0;
    transform: translate(10px, 15px);
    -webkit-transform: translate(10px, 15px);
}

.fzt-image-box.type-3:hover .fzt-image-box-image img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.fzt-image-box.type-3:hover .fzt-image-box-image:before {
    transform: translate(10px, 460px);
    -webkit-transform: translate(10px, 460px);
}

.fzt-image-box.type-3:hover .fzt-image-box-image:after {
    -webkit-transform: translate(15px, -440px);
    transform: translate(15px, -440px);
}

.fzt-image-box.type-3 .fzt-image-box-image:before {
    background: var(--kidizro-primary-color);
}

/* Type 4 */

.fzt-image-box.type-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.fzt-image-box.type-4 .fzt-image-box-image {
    position: relative;
    display: flex;
    width: 490px;
    height: 464px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.fzt-image-box.type-4 .fzt-image-box-image:before, .fzt-image-box.type-4 .fzt-image-box-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
}

.fzt-image-box.type-4 .fzt-image-box-image:before {
    -webkit-mask-image: url(images/blob-1.gif);
    width: 37px;
    height: 37px;
    bottom: -10px;
    right: 200px;
    left: auto;
    -webkit-animation: animation-color 15s linear infinite both;
    animation: animation-color 15s linear infinite both;
}

.fzt-image-box.type-4 .fzt-image-box-image:after {
    -webkit-mask-image: url(images/blob-2.gif);
    width: 35px;
    height: 35px;
    bottom: 100px;
    right: 80px;
    left: auto;
    -webkit-animation: animation-color 10s linear infinite both reverse;
    animation: animation-color 10s linear infinite both reverse;
    z-index: 1;
}

.fzt-image-box.type-4 .fzt-image-box-image:before {
    background: var(--kidizro-primary-color);
}

.fzt-image-box.type-4 .fzt-image-box-image:after {
    background: var(--kidizro-border-light-color);
}

.fzt-image-box.type-4 .fzt-image-box-image img {
    position: relative;
    -webkit-mask-image: url(images/image-mask-2.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes {
    position: absolute;
    display: flex;
    -webkit-mask-image: url(images/image-mask-2.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span {
    position: absolute;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transition: var(--transition);
        transition: var(--transition);
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(1) {
    width: 152px;
    height: 483px;
    bottom: -50px;
    left: -60px;
    -webkit-mask-image: url(images/img-decor-1.svg);
    background-color: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2) {
    width: 64px;
    height: 81px;
    top: 0px;
    left: 80px;
    -webkit-mask-image: url(images/img-decor-2.svg);
    background-color: var(--kidizro-primary-color);
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(3) {
    width: 153px;
    height: 108px;
    top: -53px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-mask-image: url(images/img-decor-3.svg);
    background-color: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(4) {
    width: 180px;
    height: 156px;
    top: 20px;
    bottom: auto;
    left: auto;
    right: -50px;
    -webkit-mask-image: url(images/img-decor-4.svg);
    background-color: var(--kidizro-custom-color-4); 
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(5) {
    width: 267px;
    height: 469px;
    top: auto;
    bottom: -180px;
    left: auto;
    right: -100px;
    -webkit-mask-image: url(images/img-decor-5.svg);
    background-color: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    width: 465px;
    height: 248px;
    top: auto;
    bottom: -200px;
    left: -280px;
    right: 0;
    margin: auto;
    -webkit-mask-image: url(images/img-decor-6.svg);
    background-color: var(--kidizro-primary-color);
}

.fzt-image-box.type-4:hover .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(1) {
    left: -50px;
    bottom: -50px;
}

.fzt-image-box.type-4:hover .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2) {
    top: 10px;
}

.fzt-image-box.type-4:hover .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(3) {
    top: -33px; 
}

.fzt-image-box.type-4:hover .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(4) {
    top: 30px;
    right: -30px;
}

.fzt-image-box.type-4:hover .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(5) {
    right: -85px;
}

.fzt-image-box.type-4:hover .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    bottom: -180px;
}

/* Kidizro Custom Colors */

.fzt-image-box.type-1.fzt-custom-color-1 {
    border-color: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-1.fzt-custom-color-2 {
    border-color: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-1.fzt-custom-color-3 {
    border-color: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-1.fzt-custom-color-4 {
    border-color: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-1.fzt-custom-color-5 {
    border-color: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-1.fzt-custom-color-1:hover {
    background: rgba(var(--kidizro-custom-color-1-rgb), 0.05);
}

.fzt-image-box.type-1.fzt-custom-color-2:hover {
    background: rgba(var(--kidizro-custom-color-2-rgb), 0.05);
}

.fzt-image-box.type-1.fzt-custom-color-3:hover {
    background: rgba(var(--kidizro-custom-color-3-rgb), 0.05);
}

.fzt-image-box.type-1.fzt-custom-color-4:hover {
    background: rgba(var(--kidizro-custom-color-4-rgb), 0.05);
}

.fzt-image-box.type-1.fzt-custom-color-5:hover {
    background: rgba(var(--kidizro-custom-color-5-rgb), 0.05);
}

.fzt-image-box.type-1.fzt-custom-color-1:hover .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-1.fzt-custom-color-2:hover .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-1.fzt-custom-color-3:hover .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-1.fzt-custom-color-4:hover .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-1.fzt-custom-color-5:hover .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-1.fzt-custom-color-1 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-1.fzt-custom-color-2 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-1.fzt-custom-color-3 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-1.fzt-custom-color-4 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-1.fzt-custom-color-5 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-2.fzt-custom-color-1 .fzt-image-box-image .fzt-img-overlay {
    background: rgba(var(--kidizro-custom-color-1-rgb), 0.5);
}

.fzt-image-box.type-2.fzt-custom-color-2 .fzt-image-box-image .fzt-img-overlay {
    background: rgba(var(--kidizro-custom-color-2-rgb), 0.5);
}

.fzt-image-box.type-2.fzt-custom-color-3 .fzt-image-box-image .fzt-img-overlay {
    background: rgba(var(--kidizro-custom-color-3-rgb), 0.5);
}

.fzt-image-box.type-2.fzt-custom-color-4 .fzt-image-box-image .fzt-img-overlay {
    background: rgba(var(--kidizro-custom-color-4-rgb), 0.5);
}

.fzt-image-box.type-2.fzt-custom-color-5 .fzt-image-box-image .fzt-img-overlay {
    background: rgba(var(--kidizro-custom-color-5-rgb), 0.5);
}

.fzt-image-box.type-2.fzt-custom-color-1 .fzt-image-box-content:before {
    background: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-2.fzt-custom-color-2 .fzt-image-box-content:before {
    background: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-2.fzt-custom-color-3 .fzt-image-box-content:before {
    background: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-2.fzt-custom-color-4 .fzt-image-box-content:before {
    background: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-2.fzt-custom-color-5 .fzt-image-box-content:before {
    background: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-2.fzt-custom-color-1 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-2.fzt-custom-color-2 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-2.fzt-custom-color-3 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-2.fzt-custom-color-4 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-2.fzt-custom-color-5 .fzt-image-box-content .fzt-image-box-title {
    color: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-3.fzt-custom-color-1 .fzt-image-box-image .fzt-image-decor:before {
    background: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-3.fzt-custom-color-2 .fzt-image-box-image .fzt-image-decor:before {
    background: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-3.fzt-custom-color-3 .fzt-image-box-image .fzt-image-decor:before {
    background: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-3.fzt-custom-color-4 .fzt-image-box-image .fzt-image-decor:before {
    background: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-3.fzt-custom-color-5 .fzt-image-box-image .fzt-image-decor:before {
    background: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-3.fzt-custom-color-1 .fzt-image-box-image .fzt-image-decor .dotted-decor {
    color: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-3.fzt-custom-color-2 .fzt-image-box-image .fzt-image-decor .dotted-decor {
    color: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-3.fzt-custom-color-3 .fzt-image-box-image .fzt-image-decor .dotted-decor {
    color: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-3.fzt-custom-color-4 .fzt-image-box-image .fzt-image-decor .dotted-decor {
    color: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-3.fzt-custom-color-5 .fzt-image-box-image .fzt-image-decor .dotted-decor {
    color: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-3.fzt-custom-color-1 .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-3.fzt-custom-color-2 .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-3.fzt-custom-color-3 .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-3.fzt-custom-color-4 .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-3.fzt-custom-color-5 .fzt-image-box-image:before {
    background: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-3.fzt-custom-color-1:hover .fzt-image-decor:after {
    background: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-3.fzt-custom-color-2:hover .fzt-image-decor:after {
    background: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-3.fzt-custom-color-3:hover .fzt-image-decor:after {
    background: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-3.fzt-custom-color-4:hover .fzt-image-decor:after {
    background: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-3.fzt-custom-color-5:hover .fzt-image-decor:after {
    background: var(--kidizro-custom-color-5);
}

.fzt-image-box.type-4.fzt-custom-color-1 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2),
.fzt-image-box.type-4.fzt-custom-color-1 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    background: var(--kidizro-custom-color-1);
}

.fzt-image-box.type-4.fzt-custom-color-2 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2),
.fzt-image-box.type-4.fzt-custom-color-2 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    background: var(--kidizro-custom-color-2);
}

.fzt-image-box.type-4.fzt-custom-color-3 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2),
.fzt-image-box.type-4.fzt-custom-color-3 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    background: var(--kidizro-custom-color-3);
}

.fzt-image-box.type-4.fzt-custom-color-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2),
.fzt-image-box.type-4.fzt-custom-color-4 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    background: var(--kidizro-custom-color-4);
}

.fzt-image-box.type-4.fzt-custom-color-5 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(2),
.fzt-image-box.type-4.fzt-custom-color-5 .fzt-image-box-image .fzt-image-box-shapes > span:nth-child(6) {
    background: var(--kidizro-custom-color-5);
}

/* Responsive */

/* Laptop, 1281px and up */

@media (min-width: 1281px) and (max-width: 1440px) {
    .fzt-image-box.type-4 .fzt-image-box-image:before {
        bottom: -20px;
        right: 200px;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:after {
        bottom: 100px;
        right: 100px;
    }
}

/* Tablets - Landscape, 1025px and up */
@media (min-width: 1025px) and (max-width: 1280px) {
    .fzt-image-box.type-1 {
        padding: 20px 30px 20px;
    }

    .fzt-image-box.type-1 .fzt-image-box-content .fzt-image-box-title {
        font-size: calc(var(--kidizro-h4-font-size) - 5px);
    }

    .fzt-image-box.type-4 .fzt-image-box-image:before {
        bottom: 0px;
        right: 180px;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:after {
        bottom: 100px;
        right: 100px;
    }
}

/* Tablets - Portrait, 768px and up */
@media (min-width: 768px) and (max-width: 1024px) {
    .fzt-image-box.type-1 {
        padding: 20px 25px 30px;
    }

    .fzt-image-box.type-1 .fzt-image-box-content .fzt-image-box-title {
        font-size: calc(var(--kidizro-h4-font-size) - 5px);
    }
}

/* Mobile - Landscape, less than 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .fzt-image-box.type-1 {
        padding: 20px 30px 20px;
    }

    .fzt-image-box.type-1 .fzt-image-box-content .fzt-image-box-title {
        font-size: var(--kidizro-h5-font-size);
    }

    .fzt-image-box.type-4 .fzt-image-box-image:before {
        bottom: -20px;
        right: 200px;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:after {
        bottom: 100px;
        right: 100px;
    }
}

/* Mobile - Portrait, less than 575px */
@media (max-width: 575px) {
    .fzt-image-box.type-3 .fzt-image-box-image {
        width: 100%;
        height: 420px;
        padding: 25px;
    }

    .fzt-image-box.type-3 .fzt-image-box-image:before,
    .fzt-image-box.type-3 .fzt-image-box-image:after {
        content: none;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:before {
        bottom: 0px;
        right: 180px;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:after {
        bottom: 120px;
        right: 120px;
    }
}

/* Small Mobile - Portrait, less than 479px */
@media (max-width: 479px) {
    .fzt-image-box.type-1 {
        padding: 20px 30px 20px;
    }

    .fzt-image-box.type-1 .fzt-image-box-content .fzt-image-box-title {
        font-size: var(--kidizro-h5-font-size);
    }

    .fzt-image-box.type-3 .fzt-image-box-image {
        width: 100%;
        height: 360px;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:before {
        bottom: 50px;
        right: 150px;
        width: 30px;
        height: 30px;
    }

    .fzt-image-box.type-4 .fzt-image-box-image:after {
        bottom: 120px;
        right: 100px;
        width: 25px;
        height: 25px;
    }
}