:root {
    /* --primary-color: "#546DE3"; */
    --primary-color: rgb(84, 109, 227);
    --primary-color-dark: #25208B;
    --color-btn-hover: rgba(37, 32, 139, 0.8);
    --secondary-color: rgb(128, 37, 255);
    --heading-color: rgb(255, 255, 255);
    --heading-color-2: rgb(44, 44, 43);
    --heading-color-3: rgb(20, 20, 21);
    --heading-color-4: rgb(2c, 2c, 2b);
    --text-color: rgb(233, 233, 233);
    --text-color-2: rgb(86, 86, 86);
    --text-color-3: rgb(38, 37, 36);
    --bg-color: rgb(17, 17, 17);
    --bg-color-2: rgb(31, 31, 31);
    --bg-color-3: rgb(255, 255, 255);
}


@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(./webfonts/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(./webfonts/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
    font-family: "Outfit", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    font-weight: normal;
}

a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    color: var(--primary-color);
}
a:hover,
a:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
button:hover,
button:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn {
    padding: 12px 16px;
    cursor: pointer;
    border-width: 1px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:hover,
.btn:active,
.btn:focus {
    outline: none !important;
}

.btn .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    bottom: 0;
    background: #fff;
}
.btn .icon i {
    font-size: 20px;
}
.btn .icon.icon-round {
    border-radius: 50%;
}


.btn.btn-link {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
}
.btn.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 20px;
    font-size: 12px;
}
.btn.btn-lg,
.btn-group-lg > .btn {
    padding: 17px 24px;
    font-size: 16px;
}
.btn.btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    background: transparent;
}
.btn.btn-outline:hover {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.05);
}

.btn.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    border-color: var(--primary-color-dark) !important;
    background: var(--primary-color-dark) !important;
}
.btn.btn-primary.btn-link {
    background: transparent;
    color: #fff;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn.btn-primary .icon i {
    color: var(--primary-color);
}
.btn.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
    color: #fff;
    background: var(--primary-color);
}
.btn.btn-secondary {
    color: #fff;
    border-color: #8bbabb;
    background: #8bbabb;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    border-color: #6ba7a8 !important;
    background: #6ba7a8 !important;
}
.btn.btn-secondary.btn-link {
    color: #8bbabb;
    background: transparent;
}
.btn.btn-secondary .icon i {
    color: #8bbabb;
}
.btn.btn-outline-secondary {
    color: #8bbabb;
    border-color: #8bbabb;
}
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus {
    color: #fff;
    background: #8bbabb;
}
.btn.btn-tertiary {
    color: #fff;
    background: #e2c275;
    border-color: #e2c275;
}
.btn.btn-tertiary:hover,
.btn.btn-tertiary:focus {
    border-color: #d9af4b !important;
    background: #d9af4b !important;
}
.btn.btn-tertiary.btn-link {
    color: #e2c275;
    background: transparent;
}
.btn.btn-tertiary .icon i {
    color: #e2c275;
}
.btn.btn-outline-tertiary {
    color: #e2c275;
    border-color: #e2c275;
}
.btn.btn-outline-tertiary:hover,
.btn.btn-outline-tertiary:focus {
    color: #fff;
    background: #e2c275;
}
.btn.btn-quarternary {
    color: #fff;
    border-color: #b96b9f;
    background: #b96b9f;
}
.btn.btn-quarternary:hover,
.btn.btn-quarternary:focus {
    border-color: #a44d87 !important;
    background: #a44d87 !important;
}
.btn.btn-quarternary.btn-link {
    color: #b96b9f;
    background: transparent;
}
.btn.btn-quarternary .icon i {
    color: #b96b9f;
}
.btn.btn-outline-quarternary {
    color: #b96b9f;
    border-color: #b96b9f;
}
.btn.btn-outline-quarternary:hover,
.btn.btn-outline-quarternary:focus {
    color: #fff;
    background: #b96b9f;
}
.btn.btn-icon {
    width: 35px;
    height: 35px;
    padding: 0;
    font-size: 20px;
    line-height: 33px;
}
.btn.btn-round {
    border-radius: 40px;
}



.logo{
    width: 200px;
}
.drag-image {
    border: 1px dashed var(--primary-color);
    height: 300px;
    width: 350px;
    border-radius: 5px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.drag-image.active {
    border: 2px solid var(--primary-color);
}
.drag-image .icon {
    font-size: 30px;
    color: var(--primary-color);
}
.drag-image h6 {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary-color);
}
.drag-image span {
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    margin: 10px 0 15px 0;
}

.drag-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

#upload-container{
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

.cropper-img {
    display: block;
    max-width: 100%;
}


#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    margin-top: 30px;
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
} 

.card {
    z-index: 0;
    border: none;
    position: relative
}

#msform .fs-title {
    font-size: 25px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: normal;
    text-align: center
}


#msform #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#msform #progressbar .active {
    color: var(--primary-color)
}

#msform #progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#msform #progressbar #tab-1:before {
    font-family: FontAwesome;
    content: "\f125"
}

#msform #progressbar #tab-2:before {
    font-family: FontAwesome;
    content: "\f093"
}

#msform #progressbar #tab-3:before {
    font-family: FontAwesome;
    content: "\e2ca"
}

#msform #progressbar #tab-4:before {
    font-family: FontAwesome;
    content: "\f03e"
}

#msform #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#msform #progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#msform #progressbar li.active:before,
#msform #progressbar li.active:after {
    background: var(--primary-color)
}

#msform .progress {
    height: 20px
}

#msform .progress-bar {
    background-color: var(--primary-color)
}

.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.input-container {
    position: relative;
    margin: 0.5rem;
    flex-grow: 1;
}

.input-container input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 300ms ease;
    padding: 25px;
}

.input-container p {
    background: var(--primary-color);
    color: #FFF;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.input-container label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

input:checked+.radio-tile {
    background-color: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
    transform: scale(1.1);
}

input:hover+.radio-tile {
    box-shadow: 0 0 12px var(--primary-color);
}

input:checked+.radio-tile p {
    background: white;
    color: var(--primary-color);
}

input:checked+.radio-tile label {
    color: white;
}

.pricing-section {
    position: relative;
}

.pricing-section-box {
    margin-bottom: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.pricing-section-box-pic {
    padding: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E3E5EB;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.pricing-section-box-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}



#img-preview-wall-fg{
    position: absolute;
}

.preview-slides-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.preview-slide {
    position: relative;
    top: 0;
    left: 0;
}
.preview-slide .img-preview-wall-bg{
    display: none;
    max-width: 100%;
    max-height: 500px;
    position: relative;
    top: 0;
    left: 0;
}
.preview-slide #img-preview-wall-fg{
    position: absolute;
    z-index: 9;
}

.prev, .next {
    cursor: pointer;
    /* position: absolute;
    top: 50%; */
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.8);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.fade-slide {
    animation-name: fade-slide;
    animation-duration: 1.5s;
}

@keyframes fade-slide {
    from {opacity: .4}
    to {opacity: 1}
}