
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
    line-height: 1;
}
menu, ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Import the RackCute font */
@font-face {
    font-family: 'RackCute';
    src: url('fonts/RackCute/RackCute.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Apply the font to specific elements */
h1,
h2,
h3 {
    font-family: 'RackCute', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #000;
    background: rgb(248,246,225);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(248,246,225,1)), to(rgba(222,247,252,1)));
    background: -o-linear-gradient(bottom, rgba(248,246,225,1) 0%, rgba(222,247,252,1) 100%);
    background: linear-gradient(0deg, rgba(248,246,225,1) 0%, rgba(222,247,252,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f6e1",endColorstr="#def7fc",GradientType=1);
    min-height: 100vh;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}
.wrapper{
    background-image: url(images/footer-bg.png);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    z-index: 11;
}
.inner-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}
.graphic-icon{
    position: absolute;
    z-index: 10;
}
.graphic-icon-1{
    background: url('images/pencil-1.png') no-repeat;
    background-size: contain;
    background-position: left center;
    width: 60px;
    height: 60px;
    top: 20%;
    left: 5%;
}
.graphic-icon-2{
    background: url('images/pencil-2.png') no-repeat;
    background-size: contain;
    background-position: right center;
    width: 50px;
    height: 80px;
    top: 5%;
    right: 50px;
}
.graphic-icon-3{
    background: url('images/a-plus.png') no-repeat;
    background-size: contain;
    background-position: left center;
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: 50px;
}
.graphic-icon-4{
    background: url('images/jar.png') no-repeat;
    background-size: contain;
    background-position: right center;
    width: 60px;
    height: 100px;
    bottom: 5%;
    right: 50px;
}
footer{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 12;
}
footer p{
    font-size: 12px;
}

.inner-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}
section.cards {
    padding-top: 20px;
    overflow: hidden;
}
/* MULTISTEP FORM */
#multiStepForm {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

#multiStepForm .form-step {
    display: none;
}

#multiStepForm .form-step.active {
    display: block;
}
#multiStepForm .form-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.form-group {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
span.error-message {
    color: red;
    font-size: 12px;
    width: 100%;
    padding: 3px 10px 0px;
    line-height: 1.15;
}
::-webkit-input-placeholder {
    color: #000;
    opacity: .50; /* Firefox */
}
::-moz-placeholder {
    color: #000;
    opacity: .50; /* Firefox */
}
:-ms-input-placeholder {
    color: #000;
    opacity: .50; /* Firefox */
}
::-ms-input-placeholder {
    color: #000;
    opacity: .50; /* Firefox */
}
::placeholder {
    color: #000;
    opacity: .50; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #00;
}
#multiStepForm .form-row input,
#multiStepForm .form-row input:focus, #multiStepForm .form-row textarea,#multiStepForm .form-row textarea:focus {
    padding: 15px 20px;
    border: 1px solid #2AC2D0;
    border-radius: 20px;
    outline: none;
    -webkit-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 13px;
    max-width: 100%;
}
textarea{
    max-height: 100px;
}
#multiStepForm .form-row select,
#multiStepForm .form-row select:focus {
    padding: 14px 20px;
    border: 1px solid #2AC2D0;
    border-radius: 20px;
    outline: none;
    -webkit-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 13px;
    color: #00000080;
}
#multiStepForm .form-row select option,
#multiStepForm .form-row select:focus option{
    color: #000;
}
#multiStepForm .form-row .error{
    border: 1px solid red;
}
.forms-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

#multiStepForm button,.generate-btn {
    background-color: #01B4C4;
    color: #fff;
    border: none;
    padding: 13px 80px;
    font-size: 27px;
    line-height: 1;
    font-family: 'Poppins';
    cursor: pointer;
    border-radius: 35px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.25);
    box-shadow: 0 3px 4px rgba(0,0,0,.25);
    text-decoration: none;
}
.generate-btn{
    display: inline-block;
    font-size: 25px;
}
#multiStepForm button.next-btn:not(.generate-btn),#multiStepForm button.prev-btn{
    padding: 10px 30px;
    font-size: 30px;
    width: 270px;
    margin-bottom: 0;
}
#multiStepForm .form-step h2 {
    font-size: 40px;
    color: #00B4C3;
    margin-bottom: 10px;
    line-height: 1.5;
}
#multiStepForm .form-step-1 h2,#multiStepForm .form-step-2 h2{
    font-size: 37px;
    margin-bottom: 30px;
}
#multiStepForm .form-step-1 h2{
    margin-top: -15px;
}
#multiStepForm .form-step-4 h2,
#multiStepForm .form-step-5 h2,
#multiStepForm .form-step-6 h2,
#multiStepForm .form-step-3 h2{
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.form-row-1 .form-group{
    width: calc(50% - 12.5px);
    max-width: 500px;
}

.form-row-2 .form-group{
    width: calc(50% - 16.66px);
    max-width: 220px;
}

.form-row-3 .form-group{
    width: calc(50% - 16.66px);
    max-width: 220px;
}
.form-step-1 .form-row{
    max-width: 750px;
    margin: 0 auto;
}
#multiStepForm .form-row-otp{
    display: none;
}
.theme-selection {
}
.theme-options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    /*max-width: 800px;*/
    margin: -10px auto 0;
}
.theme-selection input{
    display: none;
}
.theme-selection label{
    cursor: pointer;
    width: 100%;
    max-width: calc(25% - 22.5px);
}
.theme-selection .theme-item{
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 8px;
    display: block;
}

.theme-selection img {
    max-width: 200px;
    cursor: pointer;
    border-radius: 20px;
    -webkit-box-shadow: 5px 4px 20px rgba(0,0,0,.25);
    box-shadow: 5px 4px 20px rgba(0,0,0,.25);
    width: 100%;
}

.theme-selection .theme-item:hover, .theme-selection input[type="radio"]:checked + .theme-item {
    border-color: #FFD867;
    background: rgba(255,255,255,.6);
}

.theme-title {
    margin-top: 5px;
    font-size: 20px;
    display: block;
    color: #FC436C;
}
#multiStepForm .two-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    padding-top: 10px;
}

.column-1 {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: calc(45% - 25px);
}
.column-2 {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: calc(55% - 25px);
}


.list-items {
    list-style: none;
    text-align: left;
}
.list-items  li{
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
}
.list-items  li:last-child{
    margin-bottom: 0px;
}
.list-items  li:before{
    content: "";
    background: url('images/list-icon.png') no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    width: 17px;
    height: 17px;
    top: 4px;
}
.list-items  li.dontli:before{
    background: url('images/list-icon-dont.png') no-repeat;
    background-size: contain;

}

.uploaded-photo-preview img {
    max-width: 300px;
    border-radius: 20px;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.photo-upload-file{
    display: none;
}
.photo-upload p,.small-text {
    font-size: 11px;
}
.photo-upload-btn svg{
    vertical-align: middle;
    margin-right: 12px;
    max-width: 28px;
}
#multiStepForm .photo-upload-btn{
    font-size: 16px;
    margin-bottom: 20px;
    padding: 10px 50px;
}
button.submit-btn {
    max-width: 250px;
}
.message-textarea{
    margin-bottom: 20px;
}
.uploaded-photo-preview-wrap {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    display: none;
}
.change-photo {
    position: absolute;
    color: #000;
    background: #ffffffe6;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 27px;
    display: inline-block;
    width: auto;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
    bottom: 10px;
}
.form-result{
    display: none;
    width: 100%;
}
.page-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex        ;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.generated img{
    border-radius: 10px;
    -webkit-box-shadow: 5px 4px 10px rgba(0,0,0,.25);
    box-shadow: 5px 4px 10px rgba(0,0,0,.25);
    max-width: 350px;
}
.share-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 10px;
}

.share-icons svg {
    /*width: 30px;*/
    /*height: 30px;*/
}
.share-icons .facebook svg{
    /*width: 35px;*/
    /*height: 35px;*/
}
.photo-download {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.photo-download-btn,.regenerate-btn {
    background-color: #01B4C4;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    line-height: 1;
    font-family: 'Poppins';
    cursor: pointer;
    border-radius: 35px;
    margin-bottom: 0;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 3px 4px rgba(0, 0, 0, .25);
    max-width: 280px;
    text-align: center;
    text-decoration: none;
}
.photo-download-btn svg {
    vertical-align: middle;
    margin-right: 12px;
    max-width: 22px;
}
.form-result h2 {
    font-size: 42px;
    color: #00B4C3;
    margin-bottom: 10px;
    line-height: 1.3;
}
.form-result h4 {
    font-size: 24px;
    color: #00B4C3;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: 15px;
}
.form-result .two-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    padding-top: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-result .column-1 {
    width: auto;
}
.forms-errors{
    display: none;
}
/* Basic loader styles */
.form-loader {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    z-index: 9999; /* Ensure it's on top of all content */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; /* Flexbox to center the loader */
    flex-direction: column;
    gap: 15px;
}
.loader_txt {
    font-size: 16px;
}

/* Spinning animation for the loader */
.loader {
    border: 8px solid #f3f3f3; /* Light gray background */
    border-top: 8px solid #3498db; /* Blue color for the spinning part */
    border-radius: 50%;
    width: 50px; /* Size of the spinner */
    height: 50px; /* Size of the spinner */
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite; /* Spinning animation */
}

/* Keyframes for spinning animation */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.form-step-active .header .logo{
    max-width: 300px;
}

/* MULTISTEP FORM */
/* HEADER */
.header {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 0 0;
}

.header .top-logo a {
    position: absolute;
    left: 30px;
    top: 20px;
}
.header .top-logo a img{
    max-width: 80px;
}
.header .logo {
    max-width: 400px;
    margin: 0 auto;
}
/* HEADER */

.content h2 {
    font-size: 40px;
    color: #00B4C3;
    margin-bottom: 20px;
    line-height: 1.35;
}

.content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 35px;
    color: #02B4C3;
}
.content .inner-container{
    max-width: 1200px;
}


.generate-btn:hover {
    /*background-color: #0097a7;*/
}

/* Base Flex System for Rows and Columns */
/*.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.gallery-col {
    flex: 1;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    border: 4px solid #FFD867;
    margin-bottom: 30px;
}*/
.gallery-row .slick-list {
    margin: 0 -30px;
}
.gallery-row .slick-slide>div {
    padding: 0 30px;
}
.gallery-card-image,
body img {
    max-width: 100%;
    height: auto;
}
.gallery-col{
    padding: 0 0 10px;
}
.gallery-card-image{
    border: 4px solid #FFD867;
    border-radius: 10px;
    -webkit-box-shadow: 5px 4px 10px rgba(0,0,0,0.15);
    box-shadow: 5px 4px 10px rgba(0,0,0,0.15);
}



footer {
    padding:50px 20px 20px;
    /* background-color: #fff;
    border-top: 2px solid #eee;
    font-size: 0.9rem; */
}

footer a {
    color: #000;
    text-decoration: none;
    margin: 0;
}

footer p {
    font-size: 12px;
    color: #000;
}

footer a:hover {
    text-decoration: underline;
}
.form-step-1-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.klay-video video{
    border-radius: 30px;
    width: 100%;
    background: #D9D9D9;
}
.form-step-1-columns .column-1 {
    max-width: calc(55% - 15px);
    text-align: left;
}
.form-step-1-columns .column-2 {
    max-width: calc(45% - 15px);
}
.checkbox-wrapper-4 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.checkbox-wrapper-4{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: left;
    position: relative;
    font-style: italic;
}
.checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 6px;
}
.checkbox-wrapper-4 .cbx:hover {
    /*background: rgba(0,119,255,0.06);*/
}
.checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-4 .cbx span:first-child {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 2px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border: 1px solid #00B0C1;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-shadow: 0 1px 1px rgba(0,16,75,0.05);
    box-shadow: 0 1px 1px rgba(0,16,75,0.05);
    top: 2px;
    left: 0;
}
.checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 5px;
    left: 5px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 35px;
    font-size: 9px;
}
.checkbox-wrapper-4 .cbx a{
    color: #000;
    text-decoration: underline;
}
.checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: #07f;
}
.checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
    display: none;
}
.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background: #07f;
    border-color: #07f;
    -webkit-animation: wave-4 0.4s ease;
    animation: wave-4 0.4s ease;
}
.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}
.checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@-webkit-keyframes wave-4 {
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}
@keyframes wave-4 {
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.otp-timer {
    display: none;
    text-align: left;
    padding: 8px 0 0 20px;
    font-weight: normal;
    font-size: 10px;
    font-style: italic;
}
#resendOtp {
}
#resendOtp.active{
    text-decoration: underline;
    cursor: pointer;
}
/* Hide the default arrow */
select {
    -webkit-appearance: none; /* For Chrome/Safari */
    -moz-appearance: none;    /* For Firefox */
    appearance: none;
    background: url('images/select.png') no-repeat right 8px center #fff;
    background-size: 15px; /* Adjust size as needed */
}
.right-wrong-photos {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-top: 20px;
}
.right-wrong-photos img {
    width: calc(50% - 12.5px);
}
.form-process  {
    text-align: center;
}
.form-process h2{
    font-size: 43px;
    margin-bottom: 10px;
    color: #00B4C3;
    line-height: 1.5;
    margin-top: -30px;
}

.form-process h3{
    font-size: 30px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #00B4C3;
    line-height: 1.5;
}
.form-process p{
    font-size: 18px;
    margin-bottom: 20px;
}
.form-process img{
    max-width: 220px;
}
.photo-heading {
    display: block;
    margin: 0 auto;
    max-width: 60%;
}
.process-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.process-logo-wrap .timer{
    display: inline-block;
    border: 1px solid #000;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 32px;
    line-height: 1;
    margin-bottom: 20px;
    min-width: 80px;
}
.process-logo img{
    opacity: .6;
    filter: grayscale(100%);
}
.process-logo .process-img {
    position: absolute;
    height: 0;
    opacity: 1;
    width: 100%;
    bottom: 0;
    object-fit: cover;
    object-position: bottom;
    filter:none;
}
#typingEffect{
    min-height: 60px;
    margin-top: 15px;
    margin-bottom: 15px;
}
#progressContainer {
    width: 100%;
    background-color: #D9D9D9;
    height: 26px;
    border-radius: 20px;
    max-width: 420px;
    overflow: hidden;
}
.form-process-1 .process-logo{
    margin-bottom: 10px;
}
.form-process-1 p {
    font-size: 20px;
}
#progressBar {
    width: 0;
    height: 100%;
    background-color: #00B0C1;
    transition: width linear;
    border-radius: 20px;
}

/*responsive*/

@media (max-width: 1024px) {
    body{
        font-size: 16px;
    }

    .top-logo img{
        max-width: 80px;
    }
    .header .logo{
        max-width: 320px;
    }
    #multiStepForm .form-step h2{
        font-size: 36px;
    }
    .content p{
        font-size: 18px;
    }
    .inner-container,.content .inner-container {
        max-width: 90%;
    }
    #multiStepForm button{
        font-size:22px;
        padding: 10px 60px;
    }
    #multiStepForm .form-step-2 h2,#multiStepForm .form-step-1 h2{
        font-size: 32px;
    }
    #multiStepForm .form-step-3 h2, #multiStepForm .form-step-4 h2, #multiStepForm .form-step-5 h2, #multiStepForm .form-step-6 h2{
        font-size: 18px;
    }
    #multiStepForm .form-row input, #multiStepForm .form-row input:focus, #multiStepForm .form-row textarea, #multiStepForm .form-row textarea:focus {
        padding: 10px 20px;
        font-size: 13px;
    }
    #multiStepForm .form-row select, #multiStepForm .form-row select:focus{
        padding: 9px 20px;
        font-size: 13px;
    }
    #multiStepForm button.next-btn:not(.generate-btn), #multiStepForm button.prev-btn {
        padding: 8px 25px;
        font-size: 26px;
        width: 200px;
    }
    #multiStepForm .photo-upload-btn {
        font-size: 16px;
    }
    .photo-upload-btn svg {
        margin-right: 10px;
        max-width: 26px;
    }
    .photo-upload p, .small-text {
        font-size: 10px;
    }
    .generated img{
        width: 100%;
    }
    .form-result h2 {
        font-size: 32px;
    }
    .form-result h4 {
        font-size: 22px;
    }
    .photo-download-btn,.regenerate-btn {
        padding: 11px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 240px;
    }
    .photo-download-btn svg {
        margin-right: 10px;
        max-width: 20px;
    }
    .share-icons svg {
        /*width: 25px;*/
        /*height: 25px;*/
    }
    .share-icons .facebook svg {
        width: 29px;
        height: 29px;
    }
    .form-result .two-column {
        gap: 40px;
    }
    .content h2{
        font-size: 36px;
    }
    .graphic-icon-1{
        width: 50px;
        height: 50px;
        left: 8%;
    }
    .graphic-icon-2{
        top: 10%;
        width: 40px;
        height: 60px;
    }
    .graphic-icon-3{
        width: 45px;
        bottom: 15%;
        left: 8%;
    }
    .graphic-icon-4{
        height: 60px;
        bottom: 10%;
    }
    .form-step-1-columns{
        gap: 30px;
    }
    .form-step-1-columns .column-1 {
        max-width: calc(60% - 15px);
    }
    .form-step-1-columns .column-2 {
        max-width: calc(40% - 15px);
    }
    #multiStepForm button, .generate-btn{
        font-size: 25px;
    }
    .form-step-1 .form-group.form-group {
        width: calc(50% - 12.5px);
        max-width: 100%;
    }
    .form-step-1 .form-row-terms .form-group{
        width: 100%;
    }
    .form-step-1 .form-group.form-group-child-name {
        width: 100%;
        max-width: 100%;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #multiStepForm .form-step-1 .form-group.form-group-child-name input {
        width: calc(50% - 12.5px);
        max-width: 100%;
    }
    #multiStepForm .form-row-2,#multiStepForm .form-row-3{
        gap: 0 25px;
    }
    .form-step-1 .form-row {
        max-width: 600px;
    }
    .form-process h2{
        font-size: 36px
    }
    .form-process h3{
        font-size: 26px
    }
    .form-process hp{
        font-size: 17px
    }
    .form-process img {
        max-width: 200px;
    }

}
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    .header .top-logo a {
        position: unset;
    }
    .header .logo {
        width: 65%;
    }
    .top-logo{
        text-align: center;
        padding: 15px;
    }
    .top-logo img {
        max-width: 70px;
    }
    .inner-container, .content .inner-container {
        max-width: 100%;
    }
    .graphic-icon-1{
        width: 40px;
        height: 40px;
        top: 140px;
        left: 20px;
    }
    .graphic-icon-2{
        top: 120px;
        width: 30px;
        height: 50px;
        right: 20px;
    }
    .graphic-icon-3{
        width: 35px;
        left: 20px;
    }
    .graphic-icon-4{
        height: 50px;
        right: 20px;
    }
    section.cards{
        padding: 0px;
    }
    .gallery-row .slick-list{
        margin: 0 -15px;
    }
    .gallery-row .slick-slide>div {
        padding: 0 15px;
    }
    #multiStepForm .form-step h2 {
        font-size: 32px;
    }
    .content p{
        font-size: 20px;
        margin-bottom: 25px;
    }
    #multiStepForm button {
        font-size: 20px;
        padding: 10px 50px;
    }
    #multiStepForm .form-step-2 h2,#multiStepForm .form-step-1 h2{
        font-size: 26px;
    }
    #multiStepForm .form-step-3 h2, #multiStepForm .form-step-4 h2, #multiStepForm .form-step-5 h2, #multiStepForm .form-step-6 h2 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    #multiStepForm .form-row input, #multiStepForm .form-row input:focus, #multiStepForm .form-row textarea, #multiStepForm .form-row textarea:focus {
        padding: 10px 15px;
        font-size: 12px;
    }
    span.error-message{
        font-size: 11px;
    }
    #multiStepForm .form-row {
        gap: 0px;
    }
    #multiStepForm  .form-step-1 .form-row{
        max-width: 400px;
        margin: 0 auto;
    }
    #multiStepForm  .form-step-1 .form-row-terms{
        max-width: 80%;
    }
    .form-group {
        margin-bottom: 20px;
    }
    #multiStepForm .form-row select, #multiStepForm .form-row select:focus{
        padding: 10px 15px;
        font-size: 12px;
    }
    #multiStepForm button.next-btn:not(.generate-btn), #multiStepForm button.prev-btn {
        padding: 8px 20px;
        font-size: 24px;
        width: 180px;
        margin-bottom: 25px;
    }
    .theme-selection img{
        width: 100%;
        border-radius:10px;
        max-width: 100%;
    }
    .theme-options{
        gap: 20px;
        margin: 0 auto;
        max-width: 450px;
    }
    .theme-selection label {
        max-width: calc(50% - 10px);
    }
    .theme-title {
        font-size: 15px;
    }
    .theme-selection .theme-item {
        border-radius: 10px;
        padding: 5px;
    }
    #multiStepForm .two-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    .column-1,.column-2{
        max-width: 100%;
    }
    #multiStepForm .two-column{
        gap: 20px;
    }
    .photo-upload p, .small-text {
        font-size: 9px;
    }
    #multiStepForm .photo-upload-btn {
        font-size: 15px;
    }
    .photo-upload-btn svg {
        max-width: 24px;
    }
    .form-result h2 {
        font-size: 28px;
    }
    .form-result h4 {
        font-size: 20px;
    }
    .photo-download-btn,.regenerate-btn {
        padding: 11px 30px;
        font-size: 15px;
    }
    .photo-download{
        align-items: center;
        justify-content: center;
    }
    .photo-download-btn svg {
        margin-right: 10px;
        max-width: 18px;
    }
    .share-icons svg {
        /*width: 22px;*/
        /*height: 22px;*/
    }
    .share-icons .facebook svg {
        width: 26px;
        height: 26px;
    }
    .form-result .two-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
    .generated img {
        max-width: 250px;
    }
    .form-result .column-2{
        text-align: center;
    }
    .share-icons {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-row-2 .form-group {
        width: 100%;
        max-width: 100%;
    }
    .form-row-2 .form-group.form-group-age {
        width: 100%;
        max-width: 100%;
    }
    .form-row-2 .form-group.form-group-gender {
        width: 100%;
        max-width: 100%;
    }
    .form-step-1 .form-row-3 .form-group,.form-step-1 .form-row-1 .form-group {
        width: 100%;
        max-width: 100%;
    }
    #multiStepForm .form-step-1 .form-group.form-group-child-name input{
        width: 100%;
    }
    .checkbox-wrapper-4 .cbx {
        width: 100%;
        display: inline-block;
    }
    .form-process h2 {
        font-size: 34px;
    }
    .form-process h3 {
        font-size: 24px;
    }
    .form-process p {
        font-size: 16px;
    }
    .form-process img {
        max-width: 180px;
    }
    .form-step-1-columns{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .form-step-1-columns .column{
        max-width: 400px;
        text-align: center;
    }
    .form-step-1-columns{
        padding: 30px 0;
    }
    .form-step-1-columns .column-1{
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .form-step-1-columns .column{
        max-width: 90%;
    }
    .content h2{
        font-size: 34px;
    }
    .klay-video video{
        max-width: 90%;
    }
    .form-row.two-column .column-1{
        order: 2;
    }
    .form-result .form-row.two-column .column-1{
        order: 0;
    }
    .form-row.form-row-otp .form-group {
        width: 100%;
        max-width: 200px;
    }
    select{
        background-size: 12px;
    }
    .process-logo-wrap .timer{
        font-size: 16px;
    }
    #progressContainer{
        height: 22px;
        max-width: 350px;
    }
    .wrapper {
        background-image: url(images/footer-bg-mobile.png);
        background-size: 100% auto;
    }
}
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    .header .top-logo a {
        position: unset;
    }
    .header .logo {
        width: 60%;
    }
    .top-logo{
        text-align: center;
        padding: 0px 15px 10px;
    }
    .top-logo img {
        max-width: 60px;
    }
    .inner-container {
        max-width: 100%;
    }
    .graphic-icon-1{
    }
    .graphic-icon-2{
    }
    .graphic-icon-3{
    }
    .graphic-icon-4{
    }
    section.cards{
        padding: 0px;
    }
    .gallery-row .slick-list{
        margin: 0 -15px;
    }
    .gallery-row .slick-slide>div {
        padding: 0 15px;
    }
    #multiStepForm .form-step h2 {
        font-size: 30px;
    }
    .content p{
        font-size: 18px;

    }
    .generate-btn {
        font-size: 20px;
        padding: 13px 50px;
    }
    #multiStepForm button {
        font-size: 18px;
        padding: 10px 40px;
    }
    #multiStepForm .form-step-2 h2,#multiStepForm .form-step-1 h2{
        font-size: 24px;
    }
    .photo-heading {
        max-width: 70%;
    }
    #multiStepForm .form-step-3 h2, #multiStepForm .form-step-4 h2, #multiStepForm .form-step-5 h2, #multiStepForm .form-step-6 h2 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    #multiStepForm .form-row input, #multiStepForm .form-row input:focus, #multiStepForm .form-row textarea, #multiStepForm .form-row textarea:focus {
        padding: 10px 15px;
        font-size: 12px;
    }
    #multiStepForm  .form-step-1 .form-row{
        max-width: 300px;
    }
    .form-group {
        /*margin-bottom: 20px;*/
    }
    #multiStepForm .form-row select, #multiStepForm .form-row select:focus{
        padding: 10px 15px;
        font-size: 12px;
    }
    #multiStepForm button.next-btn:not(.generate-btn), #multiStepForm button.prev-btn {
        padding: 8px 20px;
        font-size: 22px;
        width: 170px;
        margin-bottom: 25px;
    }
    .theme-selection img{
        width: 100%;
        border-radius:10px;
    }
    .theme-options{
        gap: 15px;
        margin: 0 auto;
        max-width: 300px;
    }
    .theme-selection label {
        max-width: calc(50% - 8px);
    }
    .theme-title {
        font-size: 14px;
    }
    .theme-selection .theme-item {
        border-radius: 10px;
        padding: 5px;
    }
    #multiStepForm .two-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .column-1,.column-2{
        max-width: 100%;
    }
    #multiStepForm .two-column{
        gap: 20px;
    }
    .photo-upload p, .small-text {
        font-size: 9px;
    }
    #multiStepForm .photo-upload-btn {
        font-size: 14px;
    }
    .photo-upload-btn svg {
        max-width: 22px;
    }
    .form-result h2 {
        margin: 0 auto;
        font-size: 24px;
        max-width: 300px;
    }
    .form-result h4 {
        font-size: 18px;
    }
    .photo-download-btn, .regenerate-btn {
        padding: 11px 30px;
        font-size: 14px;
    }
    .photo-download-btn svg {
        margin-right: 10px;
        max-width: 16px;
    }
    .share-icons svg {
        /*width: 22px;*/
        /*height: 22px;*/
    }
    .share-icons .facebook svg {
        width: 26px;
        height: 26px;
    }
    .form-result .two-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
    .generated img {
        max-width: 210px;
    }
    .form-result .column-2{
        text-align: center;
    }
    .share-icons {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer {
        padding: 50px 10px 10px;
    }
    .list-items li:before {
        background-size: 14px;
    }
    .list-items li {
        margin-bottom: 10px;
    }
    footer p{
        font-size: 10px;
    }
    .form-process h2 {
        font-size: 34px;
    }
    .form-process h3 {
        font-size: 20px;
    }
    .form-process p {
        font-size: 14px;
        max-width: 280px;
        margin: 0 auto 20px;
    }
    #typingEffect{
        height: auto;
        min-height: 80px;
    }
    .form-process img {
        max-width: 150px;
    }
    .content h2{
        font-size: 32px;
    }
    .klay-video video{
        max-width: 100%;
    }
    .form-step-1-columns {
        padding: 10px 0 20px;
    }
    .form-step-1-columns .column{
        max-width: 100%;
    }
    #progressContainer{
        height: 20px;
    }
    .footer .hide-mobile-separator{
        display: none;
    }
    .footer .privacy-policy {
        display: block;
    }
}
@media (max-width: 420px) {
    .header .top-logo a img {
        max-width: 70px;
    }
    .content h2 {
        font-size: 24px;
    }
    .content p {
        font-size: 15px;
    }
    .generate-btn {
        font-size: 18px;
        padding: 12px 50px;
    }
}
@media (min-width: 1025px) and (max-width: 1350px) {
    .content .inner-container {
        padding: 0 100px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .content .inner-container {
        padding: 0 20px;
    }
}