:root {
    --pink: #FE6CAB;
    --purple: #AB68DD;
    --darkPurple: #7366FF;
    --indigo: #29255C;
}

[data-rclazy-addclass]{
    opacity: 0;
}

.animate__zoomIn{
    opacity: 1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
label,
input,
li,
ul,
ol,
div {
    font-family: 'Comfortaa', cursive;
}

body {
    margin: 0;
    padding: 0;
}


::selection {
    background: #ac2d49;
    /* WebKit/Blink Browsers */
    color: #fff;
}

::-moz-selection {
    background: #ac2d49;
    /* Gecko Browsers */
    color: #fff;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: rgba(172, 45, 73, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(172, 45, 73, 0.6);
    outline: none !important;
}

div:focus {
    outline: none !important;
}

h1 {
    font-family: 'Bevan', cursive;
    font-size: 55px;
    font-weight: 400;
    line-height: 65px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

h2 {
    font-family: 'Bevan', cursive;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    color: var(--indigo);
}

h3{
    font-family: 'Bevan', cursive;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    color: var(--indigo);
}

a {
    transition: all 0.25s;
}

a:hover,
a:focus {
    text-decoration: none;
}

.bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

#wrapper {
    min-height: calc(100vh - 100px);
}

.mc{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* BUTTONS */

.btn {
    color: #fff;
    border: none;
    border-radius: 25px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.btn-primary {
    background: var(--purple);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--indigo) !important;
    color: #fff;
}

/* NAVBAR */

.navbar{
    transition: all 0.25s;
}

.nav-link {
    color: var(--indigo);
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
    color: var(--pink);
}

.nav-link.btn-primary {
    color: #fff;
}

.navbar-nav .dropdown-menu{
    border-radius: 0;
    border: none;
}

/* FOOTER */

footer{
    background: var(--indigo);
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    padding: 80px 0;
}

footer h2{
    color: #fff;
    margin: 30px 0;
}

footer p{
    color: #fff;
}

footer .footerMenu{
    padding-top: 80px;
}

footer .footerMenu p{
    margin-bottom: 5px;
}

footer .footerMenu p:before{
    content: '•';
    color: var(--pink);
    margin-right: 7px;
}

footer .footerMenu ul{
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
}

footer a {
    color: #fff;
}

footer a:hover,
footer a:focus,
footer a:active{
    color: var(--pink);
}

.form-control{
    border: 1px solid var(--purple);
    border-radius: 8px;
    background: transparent;
}

.form-control:focus{
    background: transparent;
}

.form-control::placeholder{
    color: #fff;
    opacity: 1;
}
  
.form-control:-ms-input-placeholder{
    color: #fff;
}
  
.form-control::-ms-input-placeholder{
    color: #fff;
}

footer .content ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .content ul li{
    color: #fff;
}

footer .content ul li:before{
    content: '•';
    color: var(--pink);
    margin-right: 7px;
}

footer .form-control{
    color: #fff !important;
    opacity: 1;
}

/* PAGE HEADERS */

#pageHeader{
    overflow: hidden !important;
}

#pageHeader.subpageHeader .rightBgItem{
    right: 40px;
}

#pageHeader,
#pageHeader .col-12{
    height: 915px;
}

#pageHeader h1{
    margin: 20px 0;
    color: var(--indigo);
}

#pageHeader p{
    color: var(--darkPurple);
    margin: 0;
}

#pageHeader p span{
    color: var(--purple);
}

.leftBgTriangle{
   position: absolute;
   left: 0;
   top: 50%;
   margin-top: -300px;
}

.rightBgTriangle{
    position: absolute;
    right: 0;
}

.leftBgItem{
    position: absolute;
    top: 30%;
}

.rightBgItem{
    position: absolute;
    bottom: 20%;
    right: -100px;
    z-index:-1
}

/* PURPLE SECTIONS */

.indigoSection{
    background: var(--indigo);
    border-radius: 40px 40px 0 0;
    padding: 75px 0;
}

.indigoSection .btn-primary:hover,
.indigoSection .btn-primary:focus{
    background: var(--pink) !important;
}

.indigoSection h2{
    color: #fff;
}

.indigoSection p{
    color: var(--purple);
    margin: 0;
}

.indigoSection .indigoTopRight{
    position: absolute;
    right: 0;
    height: 180px;
    right: -180px;
    top: -165px;
}

.indigoSection .indigoBottomLeft{
    position: absolute;
    left: 0;
    height: 180px;
    left: -180px;
    bottom: -165px;
}


.tableSection .content{
    border-radius: 40px !important;
    background: var(--indigo);
    padding: 40px;
}

.tableSection .content p{
    color: #fff;
}

.tableSection .content th{
    color: var(--purple);
    border: none;
}

.tableSection .content tr{
    border-top: none;
    border-bottom: 1px solid var(--purple);
}

.tableSection .content td{
    color: #fff;
    border: none;
}
/* STATIC SECTION */

.staticSection{
    padding: 100px 0;
}

.staticSection p{
    color: var(--darkPurple);
}

.staticSection .purpleBg{
    height: 380px;
    width: 100%;
    border-radius: 40px;
    background: rgba(115, 102, 255, 0.1);
    margin: 250px 0 50px;
}

.staticSection .purpleBg img.display{
    left: 50%;
    margin-left: -450px;
    bottom: 0;
}

.staticSection.fullServicesItem p{
    color: var(--indigo);
}

.staticSection .purpleBg img.topLeftImg{
    left: 0 !important;
    top: -50px !important;
}

.staticSection .purpleBg img.bottomRightImg{
    right: 0 !important;
    bottom: -50px !important;
}

/* PROPERTI LIST */

.propertiItem{
    padding-left: 75px;
    position: relative;
    padding-top: 15px;
    border-right: 1px solid var(--purple);
}

.propertiItem p{
    text-transform: uppercase;
    color: var(--pink);
    font-size: 13px;
}

.propertiItem:nth-child(2) p{
    color: var(--purple);
}

.propertiItem:nth-child(3) p{
    color: var(--darkPurple);
}

.propertiItem:nth-child(2),
.propertiItem:nth-child(3){
    padding-left: 115px;
}

.propertiItem:nth-child(3){
    border-right: none;
}

.propertiItem img{
    position: absolute;
    left: 0;
    top: 0;
}
.propertiItem:nth-child(2) img,
.propertiItem:nth-child(3) img{
    left: 40px;
}

/* POWDER SECTIONS */


.powderSection .inner{
    background: rgba(254, 108, 171, 0.1);
    border-radius: 40px;
}

.powderSection .homepagePowder{
    height: 550px;
}

.powderSection.partnerProgramPowder .inner{
    padding: 80px 40px !important;
}

/* MINTÁK */

.powderSection img.position-absolute{
    z-index: 99;
}

.powderSection .minta1{
    left: -75px;
    top: -35px;
    --animate-duration: 800ms;
    animation-delay: .1s;
}

.powderSection .minta2{
    left: 30px;
    top: 150px;
    --animate-duration: 800ms !important;
    animation-delay: 1.2s !important;
}

.powderSection .minta3{
    left: 110px;
    top: 60px;
    --animate-duration: 1s;
    animation-delay: 0.5s !important;
}

.powderSection .minta4{
    left: 200px;
    top: 20px;
    --animate-duration: 800ms;
    animation-delay: 1.2s !important;
}

.powderSection .minta5{
    left: 320px;
    top: 50px;
    --animate-duration: 800ms;
    animation-delay: 1.2s;
}

.powderSection .minta6{
    left: 480px;
    top: 30px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta7{
    left: 580px;
    top: 70px;
    --animate-duration: 800ms;
    animation-delay: 0.4s;
}

.powderSection .minta8{
    right: 370px;
    top: -30px;
    --animate-duration: 800ms;
    animation-delay: 0.3s;
}

.powderSection .minta9{
    right: 220px;
    top: 30px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta10{
    left: 150px;
    top: calc(50% - 50px);
    --animate-duration: 200ms;
    animation-delay: 0.1s;
}

.powderSection .minta11{
    right: 280px;
    top: 120px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta12{
    right: 30px;
    top: -15px;
    --animate-duration: 800ms;
    animation-delay: 0.2s;
}

.powderSection .minta13{
    left: 15px;
    bottom: 225px;
    --animate-duration: 1000ms;
    animation-delay: 1s;
}

.powderSection .minta14{
    left: 346px;
    bottom: 80px;
    --animate-duration: 800ms;
    animation-delay: 0.5s;
}

.powderSection .minta15{
    left: -15px;
    bottom: 75px;
    --animate-duration: 400ms;
    animation-delay: 0.5s;
}

.powderSection .minta16{
    left: 150px;
    bottom: 130px;
    --animate-duration: 100ms;
    animation-delay: 0.7s;
}

.powderSection .minta17{
    left: 90px;
    bottom: -20px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta18{
    left: 264px;
    bottom: 30px;
    --animate-duration: 800ms;
    animation-delay: 0.2s;
}

.powderSection .minta19{
    display: none;
}

.powderSection .minta20{
    left: 449px;
    bottom: 30px;
    --animate-duration: 1100ms;
    animation-delay: .4s;
}

.powderSection .minta21{
    left: 553px;
    bottom: 80px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta22{
    right: 366px;
    bottom: 32px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta23{
    right: 217px;
    bottom: 25px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta24{
    right: 160px;
    bottom: 90px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta25{
    right: 85px;
    bottom: 15px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta26{
    right: -55px;
    bottom: 80px;
    --animate-duration: 800ms;
    animation-delay: 1.2s;
}

.powderSection .minta27{
    right: 152px;
    bottom: 245px;
    --animate-duration: 800ms;
    animation-delay: 0.9s;
}

.powderSection .minta28{
    right: 43px;
    bottom: 285px;
    --animate-duration: 800ms;
    animation-delay: 1.5s;
}

.fullServicesPowder img.topLeftImg{
    left: 0 !important;
    top: -50px !important;
}

.fullServicesPowder img.bottomRightImg{
    right: 0 !important;
    bottom: -50px !important;
}

/* HOW IT WORKS */

.howItWorks .item .inner{
    border-radius: 40px;
    border: 1px solid var(--purple);
    padding: 30px;
}

.howItWorks .item .inner img{
    height: 102px;
}

.howItWorks .item .inner h2{
    margin: 13px 0;
}

.howItWorks .item .inner p{
    color: #fff;
    margin: 0;
}

.howItWorks.whatAbout .item .inner p{
    color: var(--purple);
}

.powderSection .designItem{
    max-width: 6.66%;
    display: inline-block;
}

.powderSection .designItem img{
    max-width: 100%;
}

/* COLOR BOXES */

.colorBoxes{
    padding: 100px 0;
}

.colorBoxes p,
.partners p,
.outlineBox p{
    color: var(--darkPurple);
}

.colorBoxes .inner{
    background: rgba(254, 108, 171, 0.1);
    border-radius: 40px;
    padding: 75px 35px 35px 35px;
    position: relative;
    height: 100%;
}

.colorBoxes .col-12:nth-child(even) .inner{
    background: rgba(115, 102, 255, 0.1);
}

.colorBoxes .inner p{
    color: var(--indigo);
}

.colorBoxes .inner img{
    position: absolute;
    height: 100px;
    top: 0;
    margin-top: -50px;
    left: 50%;
    margin-left: -50px;
}

.aboutColorBoxes{
    padding: 0;
    margin-top: -200px;
}

.colorBoxes .listBoxes ul li{
    list-style: none;
}

.colorBoxes .listBoxes ul li:before{
    content: '•';
    color: var(--pink);
    margin-right: 15px;
    margin-left: -15px;
}

/* PARTNERS */

.partners{
    padding-bottom: 100px;
}

/* OUTLINE BOX */

.outlineBox{
    padding-bottom: 250px;
}

.outlineBox .container{
    background: rgba(171, 104, 221, 0.1);
    border-radius: 40px;
    padding: 70px;
}

.outlineBox .leftBgItem{
    left: -50px;
    top: 50px;
    max-width: 130px;
}

.outlineBox .rightBgItem{
    top: -20px;
    right: -30px;
    max-width: 130px;
}

.outlineBox .item{
    padding-left: 80px;
}

.outlineBox .item img{
    left: 10px;
    top: 40px;
}

/* FEEDBACK */

.gallery{
    padding-bottom: 80px !important;
}

.gallery .item img{
    height: 326px;
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
    overflow: hidden;
}

/*  EMPLOYEES */

.employes .inner{
    background: rgba(171, 104, 221, 0.1);
    border-radius: 40px;
    padding: 50px;
}

.employes .inner img{
    border-radius: 40px;
    height: 310px;
    width: 100%;
    object-fit: cover;
}

/* KAPCSOLAT */

.contact .formSide .inner{
    background: rgba(254, 108, 171, 0.1);
    padding: 30px;
    border-radius: 40px;
}

.contact .formSide .form-control::placeholder{
    color: var(--indigo);
    opacity: 1;
}
    
.contact .formSide .form-control:-ms-input-placeholder{
    color: var(--indigo);
}
    
.contact .formSide .form-control::-ms-input-placeholder{
    color: var(--indigo);
}

/* STATIC PAGES */

.staticContent p,
.staticContent li,
.staticContent ol{
    color: var(--indigo);
}

.staticContent a{
    font-weight: bold;
    color: var(--darkPurple);
}

/* VIDEO */

.embed-responsive{
    max-width: 670px;
    left: 50%;
    margin-left: -336px;
    position: absolute;
    top: -198px;
}

@media (max-width: 767px) {
    .navbar {
        display: none;
    }

    #wrapper{
        margin-top: 60px;
    }

    h1{
        font-size: 34px;
        line-height: 45px;
        word-break: normal;
    }

    h2{
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    #pageHeader{
        padding: 40px 0;
        text-align: center;
    }

    #pageHeader, #pageHeader .col-12{
        height: auto;
    }

    #pageHeader .img-fluid{
        max-width: 50%;
    }

    .subpageHeader .ml{
        display: block;
    }

    .rightBgTriangle{
        display: none;
    }

    .leftBgItem{
        right: 0;
        left: auto;
        top: 80px;
        max-width: 100px;
    }
    
    .rightBgItem{
        display: none;
    }

    .indigoSection{
        text-align: center;
    }

    .indigoSection .btn-primary{
        margin-top: 30px;
    }

    .indigoSection .indigoTopRight{
        display: none;
    }

    .staticSection{
        text-align: center;
    }

    .propertiItem{
        padding: 0 !important;
    }

    .propertiItem img{
        position: relative;
        margin: 0 !important;
        left: 0 !important;
    }

    .hpStatAutomat{
        display: none;
    }

    .powderSection .container{
        overflow: hidden;
    }

    .powderSection .homepagePowder .content{
        position: relative;
        z-index: 99;
    }

    .howItWorks .item .inner{
        margin-bottom: 30px;
    }

    .outlineBox{
        padding-bottom: 50px;
    }


    .outlineBox img.bigImage{
        display: none;
    }

    footer{
        text-align: center;
    }

    .subpageHeader{
        margin-bottom: 40px;
        text-align: center;
    }

    .subpageHeader .mc{
        display: block;
        width: 80%;
    }
    
    .gallery .item img{
        margin-bottom: 30px;
    }

    .staticSection .purpleBg img.display{
        max-width: 100%;
        left: 0;
        margin-left: 0;
        margin-top: -50px;
    }

    .contact{
        text-align: center;
    }

    img.display{
        width: 380px;
        left: 50%;
        margin-left: -190px;
    }

    .embed-responsive{
        max-width: 286px;
        left: 50%;
        margin-left: -150px;
        position: absolute;
        top: 134px;
    }

}

@media (min-width: 768px) and (max-width: 992px) {}

@media (min-width: 993px) and (max-width: 1200px) {}

@media (min-width: 1201px) and (max-width: 1366px) {}

@media (min-width: 1367px) {}