@charset "utf-8";
/* Title: Nice Industries Party Time Screens
** Description: Styles for specific screens
** Author: Jessica Greenwalt
** Created: 11-14-2025
** Updated: 11-14-2025
************************************** */

/* = Home
** ----------------------- */

.home .top-bnr {
    position: relative;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    height: 960px;
}

.home .top-bnr .spce {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.home .top-bnr .spce .content {
    position: relative;
    top: -80px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

@media (min-width: 900px) {
    .home .top-bnr .spce .content {
        top: 0;
    }
}

.home .top-bnr .flsbox {
    z-index: 900;
    margin: 0 auto;
    left: 6px;
    max-width: 522px;
    padding-top: 0;
    padding-bottom: 18px;
}

@media (min-width: 900px) {
    .home .top-bnr .flsbox {
        left: -140px;
    }
}

.home .top-bnr .flsbox .btn-po {
    margin-top: 20px;
    margin-left: 6px;
}

/* Smart with Speech Bubble */

/* Speech Bubble wtih Smart */
.home .top-bnr .sbbls {
    margin: 0 auto;
    margin-top: 70px;
    position: relative;
    width: 288px;
}

@media (min-width: 900px) {
    .home .top-bnr .sbbls {
        right: -290px;
    }
}

.home .top-bnr .sbbl {
    z-index: 900;
    margin: 0 auto;
    left: 6px;
    max-width: 288px;
    padding: 10px 20px 20px 20px;
}

.sbbl .sbblad {
    bottom: -42px;
    left: 68px;
}

.home .top-bnr .sbbls .smart {
    bottom: -90px;
    left: 20px;
}

.home .top-bnr .sbbl p {
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 27px;
}

.home .top-bnr h1,
.home .top-bnr h2,
.home .top-bnr h2 strong,
.home .top-bnr h3,
.home .top-bnr p {
    text-align: left;
    color: #000;
}

.home .top-bnr h1 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 62px;
    line-height: 62px;
    font-family: 'Ultra', 'Roboto Slab', Georgia, Lato, Helvetica, Arial, sans-serif;
}

.home .top-bnr h1 .smlr {
    font-size: 33px;
    line-height: 46px;
}

@media (min-width: 480px) {
    .home .top-bnr h1 {
        font-size: 86px;
        line-height: 86px;
        margin-top: -20px;
    }
}

@media (min-width: 600px) {
    .home .top-bnr h1 {
        font-size: 106px;
        line-height: 106px;
        margin-top: -39px;
    }
}

.home .top-bnr h2 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    font-family: 'Roboto Slab', Georgia, Lato, Helvetica, Arial, sans-serif;
}

@media (min-width: 500px) {
    .home .top-bnr h2 {
        font-size: 24px;
        line-height: 29px;
    }
}



.home .top-bnr h3 {
    margin-top: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    font-family: 'Roboto Slab', Georgia, Lato, Helvetica, Arial, sans-serif;
}

@media (min-width: 600px) {
    .home .top-bnr h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

/* Photos */
.home .photos {
    position: absolute;
    z-index: 20;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1100px;
}

.plrd {
    display: inline-block;
    width: 240px;
    border: 4px solid #000;
    padding-top: 20px;
    background: #fff;
}
.home .top-bnr .plrd {
    position: absolute;
}

.home .top-bnr .plrd:nth-child(1) {
    z-index: 50;
    top: 100px;
    left: -14px;
    animation: dropIn1 1.2s ease-out forwards;
}

.home .top-bnr .plrd:nth-child(2) {
    z-index: 55;
    top: 9px;
    right: 20px;
    animation: dropIn2 1.5s ease-out forwards;
}

.home .top-bnr .plrd:nth-child(3) {
    z-index: 60;
    top: 541px;
    left: -87px;
    animation: dropIn3 1.8s ease-out forwards;
}

.home .top-bnr .plrd:nth-child(4) {
    z-index: 65;
    top: 392px;
    right: -75px;
    animation: dropIn4 1.8s ease-out forwards;
}

.home .top-bnr .plrd:nth-child(5) {
    z-index: 40;
    top: 599px;
    right: 56px;
    animation: dropIn6 1.8s ease-out forwards;
}

@keyframes dropIn1 {
    0% {
        transform: translateY(-200px) rotate(-10deg);
    }
    60% {
        transform: translateY(10px) rotate(-20deg);
    }
    100% {
        transform: translateY(0) rotate(-25deg);
    }
}

@keyframes dropIn2 {
    0% {
        transform: translateY(-300px) rotate(5deg);
    }
    60% {
        transform: translateY(10px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(20deg);
    }
}

@keyframes dropIn3 {
    0% {
        opacity: 0;
        transform: translateY(-400px) rotate(5deg);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(25deg);
    }
}

@keyframes dropIn4 {
    0% {
        opacity: 0;
        transform: translateY(-400px) rotate(10deg);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) rotate(-10deg);
    }
    100% {
        transform: translateY(0) rotate(-20deg);
    }
}

@keyframes dropIn5 {
    0% {
        opacity: 0;
        transform: translateY(-400px) rotate(10deg);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(-15deg);
    }
}

@keyframes dropIn6 {
    0% {
        opacity: 0;
        transform: translateY(-400px) rotate(10deg);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(4deg);
    }
}

.plrd img {
    width: 200px;
    height: 200px;
    border: 2px solid #000;
    background: #fff;
}

.plrd h4 {
    padding: 20px 0 25px 0;
    font-family: 'Bilbo', 'Roboto Slab', Helvetica, Arial, sans-serif;
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
}

/* What We Do Section */

.home .what-we-do {
    position: relative;
    z-index: 80;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.home .what-we-do .content {    
    position: relative;
    z-index: 90;
    margin: 0 auto;
    left: 18px;
    max-width: 440px;
}

.home .what-we-do .flshbox {
    z-index: 60;
}

.home .what-we-do .flshbox h2 {
    margin-bottom: 0;
    font-family: 'Roboto Slab', Georgia, Lato, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    /* font-size: 20px; */
}

.home .what-we-do .flsbox {
    width: 290px;
    padding: 26px 27px 27px 27px;
}

.home .what-we-do .flsbox h3 {
    text-align: left;
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
    /*
    font-size: 22px;
    line-height: 28px;*/
    font-family: 'Roboto Slab', Georgia, Lato, Helvetica, Arial, sans-serif;
}

.home .what-we-do .projects {
    position: relative;
    display: block;
    height: 1000px;
    width: 100%;
    align-items: center; 
    justify-content: center;
}

@media (min-width: 600px) {
    .home .what-we-do .projects {
        margin: 0 auto;
        width: 700px;
    }
}

.home .what-we-do .projects .project {
    position: absolute;
}

.home .what-we-do .projects .project img {
    width: 270px;
    height: 400px;
    display: inline-block;
    background: #fff;
    border: 4px solid #000;
    border-radius: 10px;
}

.home .what-we-do .projects .project .info-box {
    position: absolute;
    padding: 15px 20px 17px 20px;
    color: #fff;
    background: #000;
    width: 250px;
}

.home .what-we-do .projects .project:nth-child(1) {
    top: 0;
    left: 0;
}

.home .what-we-do .projects .project:nth-child(1) .info-box {
    top: 120px;
    left: 100px;
}

@media (min-width: 440px) {
    .home .what-we-do .projects .project:nth-child(1) .info-box {
        left: 190px;
    }
}

.home .what-we-do .projects .project:nth-child(1) img {
    transform: translateY(0) rotate(-10deg);
}

.home .what-we-do .projects .project:nth-child(2) {
    top: 281px;
    right: 0;
}

.home .what-we-do .projects .project:nth-child(2) .info-box {
    top: 143px;
    right: 100px;
}

@media (min-width: 440px) {
    .home .what-we-do .projects .project:nth-child(2) .info-box {
        right: 190px;
    }
}

.home .what-we-do .projects .project:nth-child(2) img {
    transform: translateY(0) rotate(10deg);
}

.home .what-we-do .projects .project:nth-child(3) {
    top: 581px;
    left: 0;
}

.home .what-we-do .projects .project:nth-child(3) .info-box {
    top: 145px;
    left: 100px;
}

@media (min-width: 440px) {
    .home .what-we-do .projects .project:nth-child(3) .info-box {
        left: 190px;
    }
}

.home .what-we-do .projects .project:nth-child(3) img {
    transform: translateY(0) rotate(-10deg);
}

