
body{
    margin: 0px !important;
}
/* first section starts */

.first-section{
    position: relative;
    background: rgb(201,228,246);
    background:linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.2), rgba(255,255,255,0.3), rgba(255,255,255,0.4), #ffffff),linear-gradient(252deg, rgba(201,228,246,1) 0%, rgba(244,232,252,1) 100%);
}
.carousel{
    width: 100%;
    padding: 100px 0px 40px 0;
    text-align: center;
}
.carousel-inner{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner > .item{
    position: relative;
    display: none;
    animation: 0.5s ease-in-out;
}
.carousel-inner > .active,
.carousel-inner > .next{
    display: block; 
}
.carousel-inner > .next{
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .to-left{
    animation-name: left;
}
.carousel-inner > .from-right{
    animation-name: right;
}
.carousel-inner > .to-right{
    animation-name: right;
    animation-direction: reverse;
}
.carousel-inner > .from-left{
    animation-name: left;
    animation-direction: reverse;
}
.quote{
    padding-top: 70px;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    mix-blend-mode: normal;
    color: #001744;
} 
.carousel-indicators{
    position: absolute;
    left: 50%;
    padding-left: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%);
}
.carousel-indicators li{
    display: inline-block;
    width: 7px;
    height: 7px;
    cursor: pointer;
    background-color:#7f7e7e;
    border-radius: 10px;
}
.carousel-indicators li.active{
    background-color: #074FA4;
}
@keyframes left {
    from {
        left: 0;
    }
    to {
        left: -100%;
    }
}
@keyframes right {
    from {
        left: 100%;
    }
    to {
        left: 0;
    }
}

.list-features ul{
    display: flex;
    justify-content:center;
    list-style-type:disc;
    gap: 20px;
    flex-wrap: wrap;
    padding-left: 0px;
}
.list-features ul li{
    list-style-type: disc;
}
.list-features ul li:nth-child(1)::before{
    content: "" !important;
}
.list-features ul li{
    display: inline;
}
.list-features ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #074FA4;
}
.list-features ul li a{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #074FA4;
    text-decoration: none;

} 
@media screen and (max-width: 440px) {
    .quote{
        font-size: 20px;
        line-height: 30px;
    }
    .list-features ul li a{
        font-size: 18px !important;
        line-height: 25px !important;
    }
    .list-features ul li::before {
        display: none;
    }
}

/* first section ends */

/* second section starts */

.second-section{
    position: relative;
    background: linear-gradient(180.11deg, rgba(255, 255, 255, 0) 0.09%, #FFFFFF 53.67%);
}
.awards-clients{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media screen and (max-width: 1199px) {
    .awards-clients{
        grid-template-columns: 1fr;
    }
}
.client-section{
    background: #FFFFFF;
    box-shadow: 0 2px 2px rgb(0 0 0 / 2%), 0 10px 40px rgb(22 48 72 / 10%);
    border-radius: 20px;
}
.awards-section{
    background: #BCE8FF;
    border-radius: 20px;
}
.second-section-heading{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #0C0D21;
}
.chevron-right {
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-radius: 1px;
    content: '';
    display: inline-block;
    height: 7px;
    width: 7px;
    color: #074FA4;
    margin-right: 5px;
    margin-top: 2px;
    position: relative;
    transform: rotate(225deg) !important;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
}
.chevron-left {
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-radius: 1px;
    content: '';
    display: inline-block;
    height: 7px;
    width: 7px;
    color: #074FA4;
    margin-right: 5px;
    margin-top: 2px;
    position: relative;
    transform: rotate(42deg) !important;
    -webkit-transform: rotate(42deg);
    -moz-transform: rotate(42deg);
    -ms-transform: rotate(42deg);
    -o-transform: rotate(42deg);
}
.know-more{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #074FA4;
    text-decoration: none;
}
.clients{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 38px;
    flex-wrap: wrap;
}
.appiness-clients{
    object-fit: contain;
    max-height: 200px;
} 
@media screen and (max-width: 440px) {
    .second-section-heading{
        font-size: 18px !important;
        line-height: 25px !important;
    }
}

/* Second Section Infinite Scroll */

.infinitie-carousel {
    position: relative;
    width: 100%;
    height: 54%;
}
.infinitie-carousel-content {
    position: relative;
    overflow: hidden;
    transition: width .4s;
    height: 100%;
}  
.infinitie-slide {
    height: 100%;
    position: absolute;
    z-index: 1;
    transition: left .4s cubic-bezier(.47,.13,.15,.89);
}
.infinitie-slide-content{
    background: #FFFFFF;
    opacity: 0.7;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 95%;
    height: 170px;
}
.nav-carousel {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    z-index: 2;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    outline: none;
    color: white;
    -webkit-user-select: none;
}
.nav-left {
    left: -25px;
}  
.nav-right {
    right: -10px;
} 
.infinitie-carousel-arrow-icon-left {
    margin-left: 5px;
    margin-top: 2px;
} 
.infinitie-carousel-arrow-icon-right {
    margin-left: 7px;
    margin-top: 2px;
}
.nominee-title{
    font-size: 14px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.02;
}
.nominee-description{
    font-size: 13px;
    color: #000;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.02;
}
.infinite-carousel-indicators{
    position: absolute;
    left: 50%;
    padding-left: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%);
}
.infinite-carousel-indicators li{
    display: inline-block;
    width: 7px;
    height: 7px;
    cursor: pointer;
    background-color:#7f7e7e;
    border-radius: 10px;
}
.infinite-carousel-indicators li.active{
    background-color: #074FA4;
}
.appiness-nominees{
    object-fit: contain;
    max-height: 200px;
} 
@media screen and (max-width: 1199px) {
    .awards-section{
        height: 380px;
    }
}

/* second section ends */

/* third section starts */

/* .third-section{
    background-color: #FAFAFA;
} */
.we-are .bg-img{
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.we-are{
    filter: blur(0px);
    height: 100%;
}
.we-are-text{
    font-size: 24px;
}
.we-are-number{
    font-size: 62px;
}
.we-are .bg-filter{
    background: rgba(86, 0, 5, 0.8);
    border-radius: 20px;
    height: 100%;
}
.appiness-about{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.appiness-about .nominees{
    position: absolute;
    top: 20px;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9999;
}
.nominee-text{
    font-size: 24px;
    margin-top: 5px;
}
.nominee-address{
    font-size: 33px;
    margin-top: 5px;
    line-height: 45px;
}
.play-action {
    position: relative;
    height: 54px;
}
.play-action .circle {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #fff;
    margin: auto;
    transform: scale(1, 1);
}
.play-action .circle.pulse {
    animation-timing-function: ease;
    animation: pulse 2s infinite;
    background-color: rgba(86, 0, 5, 0.4);
}
.play-action svg {
    fill: #DD5B3C;
    stroke: #DD5B3C;
    stroke-linejoin: round;
    stroke-width: 5;
    transition: all 0.3s;
}
.play-action svg:hover {
    cursor: pointer;
    fill: #DD5B3C;
    stroke: #DD5B3C;
    transform: scale(1.2, 1.2);
}
@keyframes pulse {
    0% {
      transform: scale(1, 1);
    }
    25% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1.2);
    }
    100% {
      transform: scale(1, 1);
    }
}
.appiness-address .bg-img{
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    object-fit: cover;
    height: 100%;
}
.appiness-address{
    filter: blur(0px);
    height: 100%;
}
.appiness-address .bg-filter{
    background: linear-gradient(122.67deg,#547ac6 24.19%,#5a00ca 58.65%);
    border-radius: 20px;
    height: 100%;
}
.appiness-address .appiness-camera{
    animation-timing-function: ease;
    animation: pulse 2s infinite;
    background-color: transparent;
}

/* media carousel */

@media screen and (max-width: 500px) {
    .appiness-about{
        display: grid;
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 393px) and (max-width: 500px) {
    .appiness-about .nominees{
        top: 50px;
    }
}

@media screen and (min-width: 501px) and (max-width: 1199px) {
    .appiness-about{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (min-width: 601px) and (max-width: 1199px) {
    .appiness-about .nominees{
        top: 93px;
    }
}

@media screen and (max-width: 300px) {
    .we-are-number{
        font-size: 50px;
    }
    .nominee-address{
        font-size: 28px;
    }
}

.media-slide-container{
    display: none;
    background: rgba(0,0,0,0.8);
    border-radius: 20px;
}

.media-active-slide {
    -webkit-animation: fadeInRight 1s;
    animation: fadeInRight 1s;
    display: block !important;
}

.media-slide img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    opacity: 0.4;
}

.media-slide img:before{
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background: #000;
    background: linear-gradient(359deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.6054796918767507) 0,rgba(0,0,0,0) 100%);
    z-index: 1;
}

.media-content{
    position: absolute;
    top: 40%;
    left: 4px;
    right: 6px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.media-content span{
    line-height: 22px;
    padding: 0px 13px 0px 13px;
}

.media-btn {
    position: absolute;
    top: 40%;
    border: none;
    background: #524B4B;
    color: rgb(243, 243, 243);
    z-index: 1000;
    font-weight: 900;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.media-prev {
    width: 4%;
    left: -6px;
    padding: 10px 0 10px 5px;
}
.media-btn i{
    color: #fff !important;
    font-weight: 600;
}
.media-next {
    width: 4%;
    right: -6px;
    padding: 10px 3px 10px 1px;
}
.media-btn:hover {
    background: rgba(32, 26, 26, 0.527);
}

.blog-slide-container{
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.8);
    border-radius: 20px;
}

.blog-active-slide {
    -webkit-animation: fadeInRight 1s;
    animation: fadeInRight 1s;
    display: block !important;
    height: 100%;
}

.blog-slide{
    height: 100%;
}

.blog-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
}
.animate-left {
    -webkit-animation-name: fadeInLeft !important;
    -moz-animation-name: fadeInLeft !important;
    -o-animation-name: fadeInLeft !important;
    animation-name: fadeInLeft !important;
}

.animate-right {
    -webkit-animation-name: fadeInRight !important;
    -moz-animation-name: fadeInRight !important;
    -o-animation-name: fadeInRight !important;
    animation-name: fadeInRight !important;
}

/* animate left */
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-3px);
        -moz-transform: translatex(-3px);
        -o-transform: translatex(-3px);
        transform: translatex(-3px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@-moz-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-3px);
        -moz-transform: translatex(-3px);
        -o-transform: translatex(-3px);
        transform: translatex(-3px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-3px);
        -moz-transform: translatex(-3px);
        -o-transform: translatex(-3px);
        transform: translatex(-3px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

/* animate right */
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translatex(3px);
        -moz-transform: translatex(3px);
        -o-transform: translatex(3px);
        transform: translatex(3px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@-moz-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translatex(3px);
        -moz-transform: translatex(3px);
        -o-transform: translatex(3px);
        transform: translatex(3px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translatex(3px);
        -moz-transform: translatex(3px);
        -o-transform: translatex(3px);
        transform: translatex(3px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(3px, 0, 0);
        transform: translate3d(3px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(3px, 0, 0);
        transform: translate3d(3px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* third section ends */

/*Card Section*/
.project-grid-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-around;
    gap: 20px;
    margin: auto;
}
.project-1{
    height: 300px;
    padding:40px;
    background:#312e88;
    border-radius:20px;
    box-shadow: 0 2px 2px rgb(0 0 0 / 2%), 0 10px 40px rgb(22 48 72 / 10%);
    display:flex;
    flex-direction:column;
    align-items:center;
}
.project-1-desc{
    font-family: sans-serif;
    letter-spacing: .3px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align:center;
    margin:0px;
}
.project-desc{
    font-family: sans-serif;
    letter-spacing: .3px;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin:0px;
    padding-left:40px;
    padding-right:40px;
    text-align:left;
    height: 100px;
    overflow-y: auto;
}
.play-thaarmaar{
    font-family: sans-serif;
    letter-spacing: .3px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 19px;
    line-height: 27px;
    color: #fecb22;
    text-align: center;
    margin:8px;
}
.thaarmaar-btn{
    background: #f3c53f;
    border-radius: 24.0429px;
    font-weight: 700;
    font-size: 18.9429px;
    line-height: 26px;
    color: #312e88;
    padding:10px 20px;
    border:none;
}
.card{
    height: 380px;
    cursor: pointer;
    border-radius:20px;
    box-shadow: 0 2px 2px rgb(0 0 0 / 2%), 0 10px 40px rgb(22 48 72 / 10%);
    transform-style: preserve-3d;
    transition: ease-in-out 600ms;  
}
.card.is-flipped {
    transform: rotateY(180deg);
}
.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    backface-visibility: hidden;
}
.card-face-front {
    background: #fff;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    text-align: center;
}
.card-face-back {
    border-radius: 20px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
}
.project-title{
    color: #000;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 0;
    line-height: 18px;
    text-align: left;
    padding-left: 40px;
}
.rotate-icon{
    margin:20px;
}
.project-icon-container{
    margin-top: 10px;
    height:94px;
    display: flex;
    align-items: center;
    justify-content:center;
}
.project-icon{
    max-width: 100%;
    max-height: 94px;
    object-fit: contain;
}
.location{
    color: #7e7e7e;
    text-align: right;
    font-size:1rem;
    padding-left:40px;
    padding-right:40px;
    font-weight:500;
}
.back-grid-sec-1{
    height: 305px;
    background: #1c98e7;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 30px;
    overflow-y: scroll;
}
.back-grid-sec-2{
    height:35px;
    background: linear-gradient(161.44deg,#1c8acf 10.73%,#1ba0f3 96.73%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px 25px;
    display: flex;
    justify-content: end;
}
.back-project-title{
    color: #fff;
    font-size: 25px;
    font-weight: 100;
    line-height: 22px;
}
.back-project-p-2{
    font-size: 18px;
    color: #fff;
    font-weight: 100;
    line-height: 22px;
    padding-top: 8px;
}
.back-project-p-3{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 13px;
    padding-bottom: 10px;
}
.back-project-dec-list{
    padding-left:10px;
}
.back-project-dec-list li{
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 15px;
    margin-bottom: 5px;
    list-style:none;
}
.website-link{
    padding: 8px 11px;
    color: #fff;
    font-size: 12px;
    background-color: #009ee0;
    border-radius: 3px;
    font-weight: 500;
    line-height: 12px;
    display: inline-block;
    border: none;
}
@media screen and (max-width: 767px){
    .project-grid-container{
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .project-grid-container{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .project-grid-container{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .project-grid-container{
        grid-template-columns: 1fr 1fr 1fr;
    }
}