/*
#COLORS ::
pink - #FF625B
olive - #DCE776
light gray - #C0C0C0
dark gray - #686868
text color - #36363E
light bg - #F1F6CE


#FONTS ::
Bungee (Main header)
Teko (Subheader)
Noto Sans (Text)


#TABLE OF CONTENT ::
1- RESET
2- COLORS & BUTTONS
4- ANIMATION
5- LOADER
6- NAV
7- HEADER
8- IMAGE CARDS
9- WHY US
10- DIFFRENCE
11- SERVICES
12- JOIN US
13- YOUR ART
14- FOR BUSINESSES
15- FOOTER
16- MEDIA QUERY

*/

/*--------------------------------------
*********** RESET ***********
--------------------------------------*/

body {
    color: #36363E;
    overflow-x: hidden;
    background: #fff;
    line-height: 1.6em;
    font-size: 14px;
}

p {
    line-height: 1.8em;
}

body, .font-default {
    font-family: 'Noto Sans', sans-serif;
}

.header-font {
    font-family: "Bungee", sans-serif;
}

.subheader-font {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
}

.fs-huge {
    font-size: 34px;
}

.fs-extra {
    font-size: 20px;
}

.fs-7 {
    font-size: 14px;
}

::selection {
    background: #FF625B;
    color: #fff;
}

::-moz-selection {
    background: #FF625B;
    color: #fff;
}

::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
    color: #36363E;
    opacity: 1;
}

::-moz-placeholder, .form-control::-moz-placeholder {
    color: #36363E;
    opacity: 1;
}

:-ms-input-placeholder, .form-control:-ms-input-placeholder {
    color: #36363E;
    opacity: 1;
}

:-moz-placeholder, .form-control:-moz-placeholder {
    color: #36363E;
    opacity: 1;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb:hover {
    background: #DCE776;
}

a, input, select, textarea, button,
.header-with-hover>img,
.header-circle-img img,
.header-with-hover>button, .select-arrow {
    transition: all 0.8s cubic-bezier(.25,.75,.5,1.15);
    -o-transition: all 0.8s cubic-bezier(.25,.75,.5,1.15);
    -moz-transition: all 0.8s cubic-bezier(.25,.75,.5,1.15);
    -webkit-transition: all 0.8s cubic-bezier(.25,.75,.5,1.15);
}

.animate-box, .btn:before, .offcanvas {
    transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
}

.card-img {
    transition: all 1.2s ease-in-out;
    -o-transition: all 1.2s ease-in-out;
    -moz-transition: all 1.2s ease-in-out;
    -webkit-transition: all 1.2s ease-in-out;
}

/*--------------------------------------
*********** COLORS & BUTTONS ***********
--------------------------------------*/

a {
    color: #FF625B;
}

a:hover, a:focus {
    color: #FF625B;
}

.text-primary {
    color: #FF625B !important;
}

.text-olive {
    color: #DCE776
}

.text-light-gray {
    color: #c0c0c0;
}

.text-dark {
    color: #36363E !important;
}

.bg-light {
    background-color: #F1F6CE !important;
}

.bg-olive {
    background-color: #DCE776
}

.bg-primary {
    background-color: #FF625B !important;
}

/* --------------------- */

.btn {
    position: relative;
    border-radius: 25px;
    padding: 8px 15px;
    overflow: hidden;
    border: 0;
}

.btn-bigger {
    padding: 12px 20px;
}

.btn-content {
    display: block;
    position: relative;
    z-index: 10;
}

.btn:before {
    content: '';
    display: block;
    position: absolute;
    width: 150%;
    height: 200%;
    bottom: -50%;
    left: -25%;
    border-radius: 50%;
    background-color: #DCE776;
    transform: scale(-20%, 0);
    transform-origin: bottom center;
}

.btn:hover::before {
    transform: scale(1, 1);
}

.btn-icon {
    display: inline-block;
    vertical-align: middle;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    background-color: #DCE776;
    border-radius: 50%;
}

.btn-icon img {
    width: 13px;
    height: 14px;
} 

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn.active {
    background: #FF625B !important;
    box-shadow: 0 0 0px 1px #DCE776 inset;
    color: #fff;
}

.btn-primary.bg-transparent {
    background-color: #fff !important;
    color: #36363E;
}

.btn-primary.bg-olive {
    background-color: #DCE776 !important;
    color: #36363E;
}

.btn-primary.btn-no-border {
    box-shadow: none;
}

/*--------------------------------------
*********** ANIMATION ***********
--------------------------------------*/

.animate-box {
    position: relative;
}

.animated {
    animation-duration: 1.4s;
    -webkit-animation-duration: 1.4s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

/***/

@-webkit-keyframes fadeInLeft {
    0% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }

    100% {
        transform: none;
        -webkit-transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }

    100% {
        transform: none;
        -webkit-transform: none;
    }
}

/***/

@-webkit-keyframes fadeInRight {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
    }

    100% {
        transform: none;
        -webkit-transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
    }

    100% {
        transform: none;
        -webkit-transform: none;
    }
}

/*--------------------------------------
*********** LOADER ***********
--------------------------------------*/

.pre-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #FF625B;
}
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    position: absolute;
    width: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.loader::before, .loader::after {
    content: "";
    grid-area: 1/1;
    --c: no-repeat radial-gradient(farthest-side, #DCE776 92%, #0000);
    background:
        var(--c) 50% 0,
        var(--c) 50% 100%,
        var(--c) 100% 50%,
        var(--c) 0 50%;
    background-size: 20px 20px;
    animation: l12 1s infinite;
}

.loader::before {
    margin: 4px;
    filter: hue-rotate(45deg);
    background-size: 12px 12px;
    animation-timing-function: linear
}

@keyframes l12 {
    100% {
        transform: rotate(.5turn)
    }
}

/*--------------------------------------
*********** NAV ***********
--------------------------------------*/

.nav-link {
    font-family: 'Teko', sans-serif;
    font-size: 18px;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 2em;
    height: 2em;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(220, 231, 118, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.btn-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF625B url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(255, 255, 255, 1)' %3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z' /%3e%3c/svg%3e") center / 1em auto no-repeat;
    opacity: 1;
    filter: none !important;
}

.btn-close.bg-transparent {
    background: transparent url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(202, 202, 202, 1)' %3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z' /%3e%3c/svg%3e") center / 1em auto no-repeat;
    border: 2px solid #cacaca
}

.offcanvas {
    width: 100% !important;
    background-color: #DCE776;
}

/*--------------------------------------
*********** HEADER  ***********
--------------------------------------*/

.with-light {
    position: relative;
    overflow: hidden;
}

.with-light .container {
    position: relative;
    z-index: 5;
}

.with-light::before,
.with-light::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: #DCE776;
    border-radius: 50%;
    filter: blur(150px);
}

.with-light::before {
    left: -300px;
    bottom: -100px;
    opacity: 0.7;
}

.with-light::after {
    right: -300px;
    top: 30%;
    opacity: 0.4;
}

/*--------------------------------------
*********** IMAGE CARDS  ***********
--------------------------------------*/

.card-head , .card-holder {
    position: relative;
}

.card-head {
    z-index: 4;
}

.card-holder {
    z-index: 2;
}

.card-show {
    position: relative;
    margin: auto;
}

.card-show img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
}

.card-show, .card-show img {
    width: 210px;
    height: 262px;
}

.card-show img:nth-child(1) {
    z-index: 8;
    transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
}

.card-show img:nth-child(2) {
    z-index: 7;
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
}

.card-show img:nth-child(3) {
    z-index: 6;
    transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
}

.card-show img:nth-child(4) {
    z-index: 5;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
}

.card-show img:nth-child(5) {
    z-index: 4;
    transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
}

.card-show img:nth-child(6) {
    z-index: 3;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
}

.card-show img:nth-child(7) {
    z-index: 2;
    transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
}

.card-show img:nth-child(8) {
    z-index: 1;
}

.card-img.active, .card-img.stay-up {
    top: -600px;
} 

.card-img.stay-down {
    top: 1000px;
}

/*--------------------------------------
*********** WHY US  ***********
--------------------------------------*/

.header-with-hover > img {
    height: 80px;
    vertical-align: middle;
}

.header-circle-img {
    display: inline-block;
    height: 50px;
    vertical-align: text-top;
}

.header-circle-img img {
    height:50px;
}

.header-with-hover>img, .header-circle-img img {
    opacity: 0;
    width: 0;
}

.header-with-hover>button {
    position: relative;
    z-index: -1;
    opacity: 0;
    margin-left: -180px;
}

.header-with-hover:hover >img, .header-with-hover:hover .header-circle-img img,
.header-with-hover:hover >button {
    opacity: 1;
}

.header-with-hover:hover >img {
    width: 130px;
}

.header-with-hover:hover .header-circle-img img {
    width: 50px;
    margin: 0 7px;
}

.header-with-hover:hover>button {
    margin-left: 0;
    z-index: 3;
}

/*--------------------------------------
*********** DIFFRENCE  ***********
--------------------------------------*/

.circle-img-holder {
    position: relative;
    max-width: 295px;
    margin: auto;
}

.main-img {
    display: block;
    width: 295px;
    height: 295px;
    margin: auto;
}

.over-img, .holder-text {
    position: absolute;
}

.over-img {
    top: 50%;
    left: 50%;
    width: 30%;
    border-radius: 50%;
    box-shadow: 0 0 0 15px #fff, 0 20px 20px 0 rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.holder-text {
    width: 100%;
    top: -15px;
    left: 50%;
    font-size: 50px;
    transform: translateX(-50%) scale(1.2) rotate(-7deg);
    -webkit-transform: translateX(-50%) scale(1.2) rotate(-7deg);
}

@-webkit-keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.rotate-animation {
    animation: rotateAnimation 5s infinite linear;
    -webkit-animation: rotateAnimation 5s infinite linear;
}


/*--------------------------------------
*********** SERVICES  ***********
--------------------------------------*/

.service-img {
    border-radius: 35px;
}

/*--------------------------------------
*********** JOIN US  ***********
--------------------------------------*/

.waitlist-form .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: rgba(255,255,255,0.7);
    z-index: 1000;
}

.wait {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FF625B;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    animation: rotation 1s linear infinite;
    -webkit-animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.select2 {
    margin-bottom: 18px;
}

.select2-selection {
    border-radius: 8px !important;
}

.select2-selection__placeholder .img-flag {
    width: 0;
}

.img-flag {
    width: 20px;
}

.form-control:focus, .form-select:focus {
    border-color: #DCE776;
    box-shadow: 0 0 2px 1px rgba(220, 231, 118, 0.5);
}

textarea.form-control {
    resize: none;
    min-height: 150px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

.form-group input+span:before {
    content: '';
    background-color: transparent;
    border: 2px solid #DCE776;
    padding: 8px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.form-group input:checked+span:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 14px;
    border: solid #FF625B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-select {
    padding: .375rem 1.25rem .375rem .75rem;
    background-image: none;
}

.select-arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 15px;
    right: 20px;
    content: url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' %3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6' /%3e%3c/svg%3e");
}

.form-select:focus + .select-arrow {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.form-floating .select-arrow {
    right: 8px;
}

.border-gray {
    border-color: #cacaca;
}

.check-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.check-icon:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 17px;
    width: 12px;
    height: 24px;
    border: solid #FF625B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: 38px;
    min-height: 10px;
}

.form-floating>.form-select {
    padding-top: 0px;
    padding-bottom: 0;
}

.form-floating>label {
    font-size: 18px;
    color: #36363E !important;
}

.form-floating>label.up {
    top: -20px;
    font-size: 14px;
}

/*--------------------------------------
*********** YOUR ART  ***********
--------------------------------------*/



/*--------------------------------------
*********** FOR BUSINESSES ***********
--------------------------------------*/

.card-with-height {
    min-height: 175px;
}

/*--------------------------------------
*********** FOOTER ***********
--------------------------------------*/

/*--------------------------------------
*********** MEDIA ***********
--------------------------------------*/

@media (max-width: 530px) {

    .card-img {
        transition: all 1.8s ease-in-out;
        -o-transition: all 1.8s ease-in-out;
        -moz-transition: all 1.8s ease-in-out;
        -webkit-transition: all 1.8s ease-in-out;
    }

    .header-with-hover>img {
        height: 40px;
    }
    
    .header-circle-img {
        height: 33px;
    }
    
    .header-circle-img img {
        height: 33px;
    }
    
    .header-with-hover:hover>img {
        width: 70px;
    }
    
    .header-with-hover:hover .header-circle-img img {
        width: 33px;
    }

    button, .btn{ 
        font-size: 13px ;
    }

}

@media (max-width: 767px) {

    .subheader-font.fs-2 {
        font-size: 35px !important;
    }
}

@media (min-width: 430px) {
    body {
        font-size: 16px;
    }

    .fs-huge {
        font-size: 55px;
    }
    .fs-extra {
        font-size: 27px;
    }

    .circle-img-holder {
        max-width: 350px;
    }

    .main-img {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 768px) {

    .animate-box {
        opacity: 0;
    }

    .animated {
        opacity: 1;
    }

    .fadeInLeft {
        animation-name: fadeInLeft;
        -webkit-animation-name: fadeInLeft;
    }

    .fadeInRight {
        animation-name: fadeInRight;
        -webkit-animation-name: fadeInRight;
    }

    .fs-huge {
        font-size: 65px;
    }

    .fs-extra {
        font-size: 38px;
    }

    .card-show, .card-show img {
        width: 360px;
        height: 450px;
    }

    .card-head.first-head {
        position: absolute;
        left: 0;
        top: 15%;
    }

    .card-head.second-head {
        top: -50px;
    }

}

@media (min-width: 992px) {
    .fs-huge {
        font-size: 85px;
    }

    .fs-extra {
        font-size: 60px;
    }
    .fs-number {
        font-size: 80px;
    }
    .max-w-header{
        max-width: 250px;
    }

    .move-right  {
        position: relative;
        right: -100px
    }
    .move-left {
        position: relative;
        left: -30px
    }
    
    .header-with-hover>img {
        height: 100px;
    }
    
    .header-circle-img {
        height: 64px;
    }
    
    .header-circle-img img {
        height: 64px;
    }
    
    .header-with-hover:hover>img {
        width: 175px;
    }
    
    .header-with-hover:hover .header-circle-img img {
        width: 64px;
    }
}

@media (min-width: 1200px) {
    .nav-link {
        font-size: 13px;
        font-family: 'Noto Sans', sans-serif;
    }

    .nav-link, .nav-link:hover, .nav-link:focus {
        color: #fff;
    }
    
    .navbar-nav .nav-link.active {
        color: #DCE776 !important
    }

    .card-show img {
        left: -25%;
    }

    .card-head.first-head {
        position: relative;
        left: 0;
        top: 0;
    }
    
    .card-head.second-head {
        top: 0;
    }.waitlist-form {
        position: relative;
    }
    
    .waitlist-form::before,
    .waitlist-form::after {
        width: 127px;
        height: 128px;
        position: absolute;
    }
    
    .waitlist-form::before {
        content: url("../../../static/dist/images/left-icon.png");
        left: -130px;
        top: 200px;
    }
    
    .waitlist-form::after {
        content: url("../../../static/dist/images/right-icon.png");
        right: -120px;
        top: 160px;
    }
}

/* Additional style required */
.turl-mob-logo-link{
    text-decoration: none;
}