@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Unbounded", serif;
}

.loader-wrepper{
    background: #FFF;
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-logo{
    width: 100px;
    position: absolute;
    left: -50px;
    top: -55px

}
.iconLoaderProgress {
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: rotateLoader;
}
.iconLoaderProgress svg {
    stroke-width: 16px;
    fill: none;
    transform-origin: center;
    z-index: 999;
}
.iconLoaderProgressFirst circle,.iconLoaderProgressSecond circle,.iconLoaderProgressFirst,.iconLoaderProgressSecond {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.iconLoaderProgressFirst circle,.iconLoaderProgressSecond circle {
    animation-duration: 3s;
    border-radius: 15px;
}
.iconLoaderProgressFirst,.iconLoaderProgressSecond {
    position: absolute;
    animation-duration: 6s;
}
.iconLoaderProgressFirst circle {
    animation-name: circleFirst;
    stroke-dasharray: 628, 628;
    stroke-dashoffset: 0;
    stroke: #0F85C7;
    stroke-linecap: round;
}
.iconLoaderProgressSecond {
    transform: rotate(-14deg);
}
.iconLoaderProgressSecond circle {
    animation-name: circleSecond;
    stroke-dasharray: 628, 628;
    stroke-dashoffset: 0;
    stroke: #b4b4b4;
    stroke-linecap: round;
}
@keyframes circleFirst {
    from,to {
        stroke-dashoffset: 50;
    }50% {
        stroke-dashoffset: 625;
    }
}
@keyframes circleSecond {
    from,to {
        stroke-dashoffset: -625;
    }50% {
        stroke-dashoffset: -50;
    }
}
@keyframes rotateLoader {
    from {
        transform: rotate(0deg);
    }to {
        transform: rotate(360deg);
    }
}

a.whatsapp-icon img {
    width: 50px;
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    animation: popupAnimation 3s infinite;
}
@keyframes popupAnimation {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1);
    }50% {
      transform: translate(-50%, -70%) scale(1.1);
    }
}
@media only screen and (max-width: 767px){
    a.whatsapp-icon img{
        right: 0;
    }
}

/* NAVIGATION-----------------START----------------HERE--------------- */

nav {
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

nav .nav-content{
    background: #000000de;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    min-height: 105vh;
    border-radius: 20px;
    z-index: 3;
    padding: 20px 40px;
    display: none;
}

nav a.nav-active-link {
    color: #CBCBCB;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

nav a.nav-active-link:hover{
    color: #0F85C7;
}

nav .nav-active-item.active .nav-active-link{
    color: #0F85C7;
}

nav li.nav-active-item {
    margin: 5px 0;
}

nav h5{
    color: #CBCBCB;
    font-weight: 600;
    width: 60%;
}

nav h6{
    color: #CBCBCB;
    font-weight: 600;
}

nav p{
    color: #777777;
    font-size: 14px;
    font-weight: 400;
}

.button {
    color: #FFF;
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 400;
    border: none;
    z-index: 1;
}
   
.button::before, .button::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background: #FFFFFF;
    transition: 1s ease;
}
   
.button::before {
    top: -1em;
    left: -1em;
}
   
.button::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}
   
.button:hover::before, .button:hover::after {
    height: 410px;
    width: 410px;
}
   
.button:hover {
    color: #000;
}
   
.button:active {
    filter: brightness(.8);
}

@media only screen and (max-width: 992px){
    nav .nav-content {
        padding: 20px;
        width: 95%;
    }
}
@media only screen and (max-width: 767px){
    nav .nav-btn{
        display: none;
    }
    nav .nav-brand{
        display: none;
    }
    nav #m-logo{
        display: block !important;
    }
    nav h5{
        width: 100% !important;
        font-size: 14px;
    }
    nav p {
        font-size: 11px !important;
    }
    nav .nav-content {
        padding: 20px 10px;
        width: 100%;
        height: 100% !important;
        position: fixed;
        top: 0;
        border-radius: 0;
        overflow-y: scroll;
    }
    nav .d-block.ps-4 {
        padding-left: 10px !important;
    }
    nav .nav-info {
        margin-bottom: 20px;
    }
    nav a.nav-active-link {
        font-size: 20px;
    }
}
   
/* NAVIGATION-----------------ENDS----------------HERE--------------- */

/* BANNER-----------------START----------------HERE--------------- */

.banner{
    background-image: url(https://portfolio.mediaproductionart.com/port-imgs/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    min-height: 115vh;
    display: flex;
    align-items: start;
}

.banner h6{
    font-size: 14px;
    font-weight: 300;
}

.banner h1{
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 3px;
}

.banner p{
    font-weight: 300;
    line-height: 1.2;
    width: 90%;
    font-size: 14px;
}

.banner .ban-gif{
    width: 350px;
}

.banner h4{
    font-size: 14px;
    font-weight: 400;
}

.banner .icn{
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    padding: 0 6px;
    transition: all 0.3s ease-in-out;
}

.banner .icn:hover{
    color: #000;
}

.banner .banner-info{
    position: absolute;
    right: -80px;
    top: 55%;
    transform: translateY(-50%);
    transform: rotate(-90deg);
}
@media only screen and (max-width: 1200px){
    .banner .banner-info {
        right: -100px;
    }
}
@media only screen and (max-width: 992px){
    .banner h1 {
        font-size: 40px;
        letter-spacing: 2px;
    }
    .banner p {
        width: 100% !important;
    }
    .banner .ban-gif {
        width: 100%;
        margin-top: 50px;
    }
    .banner .banner-info {
        right: -120px;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-content {
        margin: 0 !important;
        text-align: center;
    }
    .banner h1 {
        font-size: 30px;
        letter-spacing: 0;
    }
    .banner p {
        font-size: 12px;
    }
    .banner .ban-gif {
        margin-top: 0;
    }
    .banner .banner-info {
        display: none !important;
    }
}

/* BANNER-----------------ENDS----------------HERE--------------- */

/* DESIGN-----------------START----------------HERE--------------- */

.design{
    position: relative;
    top: -200px;
    margin-bottom: -200px;
}

.design .design-content{
    background-image: url(https://portfolio.mediaproductionart.com/port-imgs/design-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease-in-out;
    filter: grayscale(1);
    cursor: pointer;
    margin: 15px 0;
}

.design .design-content::before{
    content: "";
    background: linear-gradient(360deg, rgba(15,133,199,0.4066001400560224) 0%, rgba(255,255,255,0) 40%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.design .design-content:hover{
    filter: grayscale(0);
}

.design .design-content:hover::before{
    opacity: 1;
    visibility: visible;
}

.design .design-info{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.design .design-content:hover .design-info{
    opacity: 1;
    visibility: visible;
}

.design h5{
    font-weight: 400;
    line-height: 1;
}

.design span{
    font-size: 13px;
    font-weight: 300;
}

.design-bg{
    background: #E4E4E4;
    width: 100%;
    height: 120vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}

@media only screen and (max-width: 1200px){
    .design {
        top: -100px;
        margin-bottom: -100px;
    }
}
@media only screen and (max-width: 992px){
    .design .design-content{
        height: 300px;
        padding: 20px;
    }
    .design-bg{
        height: 100vh;
    }
}
@media only screen and (max-width: 767px){
    .design {
        position: static;
        padding: 100px 0 0 0;
        margin-bottom: 0;
    }
    .design .design-content{
        height: 250px;
    }
}

/* DESIGN-----------------ENDS----------------HERE--------------- */

/* AWARD-----------------START----------------HERE--------------- */

.award{
    padding: 100px 0 50px 0; 
}

.award h6{
    font-size: 14px;
}

.award h1{
    font-size: 35px;
    font-weight: 400;
}

.award p{
    color: #0E0E0E;
    width: 85%;
    font-size: 14px;
    font-weight: 400;
}

.award .avr-gif{
    width: 180px;
    margin: 0 0 0 auto;
    display: block;
}

@media only screen and (max-width: 1200px){
    .award p {
        width: 100%;
    }
}
@media only screen and (max-width: 992px){
    .award h1 {
        font-size: 27px;
    }
    .award p {
        font-size: 12px;
        margin: 0 !important;
    }    
    .award .avr-gif {
        width: 150px;
    }
}
@media only screen and (max-width: 767px){
    .award .award-content {
        text-align: center;
        margin: 10px 0;
    }
    .award h1 {
        font-size: 24px;
    }
}

/* AWARD-----------------ENDS----------------HERE--------------- */

/* CATE-----------------START----------------HERE--------------- */

.cate .cate-content{
    overflow: hidden;
    position: relative;
}

.cate .img{
    background-image: url(../images/cate-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 500px;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.cate .img:hover{
    transform: scale(1.1);
}

.cate .img::before{
    content: "";
    background: #0000009a;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cate .cate-info{
    position: absolute;
    top: 0;
    left: 50px;
    display: grid;
    align-content: space-between;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cate h5{
    font-size: 16px;
    font-weight: 400;
}
.cate h4{
    line-height: 1.1;
    font-size: 20px;
    font-weight: 400;
}

.cate p{
    font-size: 14px;
    font-weight: 400;
    width: 75%;
}

@media only screen and (max-width: 1200px){
    .cate .cate-info{
        left: 30px;
    }
    .cate p{
        width: 82%;
    }
}
@media only screen and (max-width: 992px){
    .cate .cate-info{
        left: 0px;
        padding: 0 10px;
    }
    .cate p{
        width: 100%;
        font-size: 12px;
    }
}

/* CATE-----------------ENDS----------------HERE--------------- */

/* CLIENT-----------------START----------------HERE--------------- */

.client{
    background: #0F85C7;
    width: 100%;
    padding: 50px 0;
    border-radius: 0 0 50px 50px;
}

.client h6{
    font-size: 14px;
    font-weight: 400;
}

.client h1{
    font-size: 38px;
    font-weight: 400;
    width: 90%;
    letter-spacing: 2px;
}

.client p{
    font-size: 14px;
}

.client img{
    margin: 5px 0;
}

.client .swiper-wrapper{
    transition-timing-function: linear !important;
}

@media only screen and (max-width: 1200px){
    .client h1{
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .client h1{
        font-size: 30px;
    }
    .client p {
        font-size: 12px;
    }
}
@media only screen and (max-width: 767px){
    .client h1{
        font-size: 23px;
        width: 100%;
    }
    .client p {
        font-size: 12px;
    }
    .client .client-content{
        text-align: center;
    }
}

/* CLIENT-----------------ENDS----------------HERE--------------- *

/* PROJECT-----------------START----------------HERE--------------- */

.project h6{
    font-size: 14px;
    font-weight: 400;
}

.project h1{
    font-size: 35px;
}

.project p{
    font-size: 15px;
}

.project .controls{
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.project li.buttons{
    color: #000;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    padding: 4px 0;
}

.project li.buttons::before{
    content: "";
    background: #0F85C7;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.project li.buttons.active::before{
    content: "";
    background: #0F85C7;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

.project li.buttons:hover::before{
    transform: scale(1);
}

.project li a.butttons{
    color: #000;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
}

.project li a.butttons::before{
    content: "";
    background: #0F85C7;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.project li a.butttons:hover::before{
    transform: scale(1);
}

.project .icns{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.project .icn{
    width: 60px;
    aspect-ratio: 1/1;
    background: #00000056;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff88;
}

.project .icns img{
    width: 35px;
}

.project .overflow-hidden{
    border-radius: 15px;
}

.project .pro-content:hover .icns{
    opacity: 1;
    visibility: visible;
}

.project .pro-content{
    margin: 25px 0;
    transition: all 0.5s ease-in-out;  
}

.project .pro-content:hover{
    transform: scale(1.1);
}

.project .overflow-hidden::before{
    content: "";
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.project .overflow-hidden:hover::before{
    opacity: 1;
    visibility: visible;
}

.project .view-btn {
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000056;
    border: 1px solid #ffffff88;
    border-radius: 100px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.project .pro-content:hover .view-btn{
    opacity: 1;
    visibility: visible;
}

.project .pro-btn{
    color: #000;
    text-decoration: none;
    text-align: center;
    display: block;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.project .pro-btn:hover{
    color: #0F85C7;
}

.project #pro-height{
    max-height: 51rem;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 1450px){
    .project #pro-height{
        max-height: 60rem;
    }
}
@media only screen and (max-width: 1400px){
    .project #pro-height{
        max-height: 51rem;
    }
}
@media only screen and (max-width: 1200px){
    .project #pro-height{
        max-height: 43rem;
    }
}
@media only screen and (max-width: 992px){
    .project h1{
        font-size: 27px;
    }
    .project .controls {
        margin-left: 0px !important;
    }
    .project li.buttons {
        margin: 0 10px;
    }
    .project .icn {
        width: 36px;
    }
    .project .icns img {
        width: 25px;
    }
    .project .view-btn {
        width: 35px;
    }
    .project .view-btn img {
        width: 35px;
    }
    .project #pro-height{
        max-height: 50rem;
    }
}
@media only screen and (max-width: 767px){
    .project #pro-height{
        max-height: 57em;
    }
    .project .pro-title{
        flex-direction: column;
        text-align: center;
    }
    .project .controls{
        margin-top: 15px !important;
    }
}
@media only screen and (max-width: 380px){
    .project #pro-height{
        max-height: 52em;
    }
}
@media only screen and (max-width: 325px){
    .project #pro-height{
        max-height: 45em;
    }
}

/* PROJECT-----------------ENDS----------------HERE--------------- */

/* TESTIMONIAL-----------------START----------------HERE--------------- */

.testimonial{
    background-image: url(https://portfolio.mediaproductionart.com/port-imgs/testimonial-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 60px 0;
}

.testimonial img{
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 100px;
}

.testimonial .test-content {
    width: 500px;
    background: #0f85c7a3;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial h5{
    color: #55BBF7;
    font-size: 16px;
}

.testimonial p{
    font-weight: 300;
    font-size: 14px;
    width: 90%;
}

.testimonial span{
    color: #55BBF7;
    font-size: 12px;
}

.test-arrow {
    position: absolute;
    right: 50px;
    bottom: 60px;
    width: 120px;
}

.swiper-button-next,.swiper-button-prev {
    color: #FFF;
}

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 40px;
}

@media only screen and (max-width: 767px){
    .testimonial .test-content {
        width: 100%;
        padding: 40px 10px;
    }
    .testimonial p {
        width: 100%;
    }
    .test-arrow {
        width: 100px;
        right: 0px;
    }
}

/* TESTIMONIAL-----------------ENDS----------------HERE--------------- */

/* CONTACT-----------------START----------------HERE--------------- */

.contact{
    background: #0F85C7;
    padding: 60px 0;
    border-radius: 0 0 50px 50px;
}

.contact label{
    color: #FFF;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact #name{
    width: 100%;
    height: 50px;
    font-size: 14px;
    padding: 0 10px;
    background: #92BBD2;
    border: none;
    color: #FFF;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact #name:focus{
    outline: none;
}

.contact #name::placeholder{
    color: #FFF;
}

@media only screen and (max-width: 1200px){
    .contact p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .contact .contact-content {
        padding: 0 !important;
    }
    .contact p {
        font-size: 11px;
    }
    .contact label {
        font-size: 12px;
    }
    .contact #name {
        font-size: 10px;
    }
}
@media only screen and (max-width: 767px){
    .contact .contact-info {
        text-align: center;
        margin: 20px !important;
    }
    .contact .button{
        margin: 0 auto !important;
    }
    .contact h6{
        text-align: center;
    }
    .contact p {
        font-size: 14px;
    }
}

/* CONTACT-----------------ENDS----------------HERE--------------- */

/* FOOTER-----------------START----------------HERE--------------- */

.footer p{
    color: #838181;
    font-size: 12px;
}

.footer h5{
    font-size: 17px;
}

.footer li a{
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer li a:hover{
    color: #0F85C7;
}

.footer .icn{
    color: #000;
    font-size: 30px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.footer .icn:hover{
    color: #0F85C7;
}

@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 767px){
    .footer p {
        text-align: left !important;
        padding: 0 !important;
    }
    .footer .main {
        margin: 0 !important;
    }
}

/* FOOTER-----------------ENDS----------------HERE--------------- */