
/* default code setting start*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    font-size: 62.5%;
    overflow-x: hidden;
}

:root{
    --highlight: #FFBA09;
    --para: #979797;
    --dark: #10091D;
    --light: #fff;
    --background: linear-gradient(to right top, #27154a, #241445, #21133f, #1f113a, #1c1035, #22133d, #291746, #301a4e, #442367, #5b2b80, #73329a, #8e39b3); 
    --other_backgrounds: linear-gradient(to right top, #614aa4, #533e8c, #453275, #37275e, #2a1c49, #2a1c49, #2a1c49, #2a1c49, #37275e, #453275, #533e8c, #614aa4);
}

.preloader{
    position: fixed;
	height: 100%;
	width: 100vw;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #27154a;
	position: fixed;
	z-index: 999999999;
	transition: opacity 0.75s, visibility 0.75s;
}

 .preloader::after{
	content: '';
	width: 6rem;
	height: 6rem;
	border: 0.5rem solid rgb(128, 103, 240, 1);
	border-top-color: #aca8a800;
	border-radius: 50%;
	animation: load 0.75s ease infinite;
}

@keyframes load {
	from{
		transform: rotate(0turn);
	}
	to{
		transform: rotate(1turn);
	}
}

h1,
h2,
h3,
h4{
    font-family: 'Josefin Sans', sans-serif;
    color: var(--light);
}

p{
    color: var(--para);
    line-height: 1.6;
    font-size: 1.7rem;
}

a{
    text-decoration: none;
    color: var(--light);
}

/* default code setting ends*/

.hero_section{
    position:relative;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.hero_section:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    height: 95%;
    width:100%;
    background-image: var(--background);
    border-radius:0 0 50% 50%/0 0 100% 100%;
    transform:scaleX(2);
}



/* header starts here */

.sticky{
	position: fixed;
	background-color: #27154ae8;
	transition: all 0.3s;
	padding: 0 4rem;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 5rem;
    width: 100vw;
    position: absolute;
    z-index: 9999;
}

.logo img{
    width: 7rem;
}

nav{
    z-index: 99;
}

nav a{
    font-size: 1.8rem;
	font-weight: 800;
    padding: 0 1rem;
    margin: 0 1rem;
    position: relative;
}

nav a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 0.2rem;
    bottom: -0.4rem;
    background: var(--highlight);
    left: 0;
    transition: ease 0.5s;
}


nav a:hover::after{
    width: 100%;
}

.btn{
    display: inline-flex;
    padding: 1rem 2.5rem;
    border: 0.2rem solid #fff;
    letter-spacing: 0.1rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.btn span{
    z-index: 1;
}

.btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-image: linear-gradient(to right, #F09819 0%, #EDDE5D  51%, #F09819  100%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before{
    width: 30rem;
    height: 30rem;
}

.mobile_navs_icon{
    display: none;
    background: transparent;
    cursor: pointer;
    border: none;
}

.mobile_nav_icon[name="close-outline"] {
    display: none;
}

/* header end here */


/* page1 starts here */

.main{
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.upper_part{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 16rem;
}

.upper_part img{
    width: 20rem;
    animation: move1 2s linear infinite;
}

@keyframes move1{
    0%{
        transform: translatey(5px);
    }

    50%{
        transform: translatey(-5px);
    }

   100%{
        transform: translatey(5px);
    }

}

.bottom_part{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 16rem;
}

.bottom_part img{
    width: 20rem;
    animation: move2 2s linear infinite;
}

@keyframes move2{
    0%{
        transform: translatey(-5px);
    }

    50%{
        transform: translatey(5px);
    }

   100%{
        transform: translatey(-5px);
    }

}

.middle_part{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* .middle_part .content{
    margin-bottom: 5rem;
} */


.content h4{
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 600;
}

.hilight{
    color: var(--highlight);
}

.content h1{
    font-size: 6rem;
    text-transform: uppercase;
    padding: 2.5rem 0 1.6rem 0;
}

.content p{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--para);
    padding: 0 0 3rem 0;
}

.hilight2{
    color: var(--light);
}

.content a{
    text-decoration: none;
    font-size: 1.8rem;
    padding: 0.8rem 1.8rem;
    background: var(--highlight);
    border-radius: 5rem;
    font-weight: 800;
}

.bottom_img{
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.bottom_img img{
    width: 15rem;
  
}


/* page1 ends here */

/* about us section starts here */

.about_us{
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    background-image: var(--other_backgrounds);
    background-repeat: no-repeat;
}

.heading{
    text-align: center;
    margin: 4rem 0 2rem 0;
}

.heading h2{
    font-size: 5rem;
    font-weight: 600;
}

.heading img{
	width: 10rem;
	display: block;
	margin: 0 auto;
}

.main_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5rem 15rem;
}

.left img{
    width: 40rem;
}

.right h2{
    font-size: 5rem;
    line-height: 6rem;
}

.start{
    text-transform: uppercase;
    color: var(--highlight);
}

.right p{
    width: 45rem;
    padding: 1.5rem 0 0 0;
}

.icons{
    margin: 2rem 0 3rem 0;
}

.icons i{
    font-size: 1.5rem;
    color: #fff;
    background: rgb(128, 103, 240, 1);
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mid{
    padding: 0 1rem;
}

.button a{
    text-decoration: none;
    font-size: 1.6rem;
    padding: 0.8rem 1.5rem;
    background:  var(--highlight);
    border-radius: 0.8rem;
    font-weight: 800;
}

/* about us section ends here */


/* service section starts here */



.services{
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    background-image: var(--other_backgrounds);
    background-repeat: no-repeat;
}

.cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5rem 20rem 0 20rem;
}

.card{
    width: 250px;
    height: 330px;
    padding: 2rem 1rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 3rem;
    transition: 0.5s ease-in-out;
    box-shadow: 0px 0.7rem 1rem rgba(0, 0, 0, 0.5);
}

.card:hover{
    transform: translateY(-2rem);
}

.card:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    /* background: linear-gradient(to bottom, rgba(0, 176, 155, 0.5), rgba(150, 201, 61, 1)); */
    background: rgb(140,58,144);
    background: linear-gradient(0deg, rgba(140, 58, 144, 0.726) 8%, rgba(253, 187, 45, 0.726) 89%);
    z-index: 2;
    transition: 0.5s all;
    opacity: 0;
}

.card:hover:before{
    opacity: 1;
}

.card img{
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card .info{
    position: relative;
    z-index: 3;
    color: var(--light);
    opacity: 0;
    transform: translateY(-30px);
}

.info h2{
    font-size: 2rem;
}

.info p{
    color: var(--light);
    font-size: 1.5rem;
    margin: 0.8rem 0 2rem 0;
}

.card:hover .info{
    opacity: 1;
}

.hire{
    text-align: center;
    margin: 5rem;
    animation: move1 1.5s linear infinite;
}

.hire a{
    color: #fff;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 600;
    background: var(--highlight);
    padding: 1rem 3.5rem;
    border-radius: 5rem;
    transition: 0.5s ease-in-out;
}

.hire a:hover{
    border: 0.2rem solid #ffff;
    background: transparent;
}



/* service section ends here */


/* why us section starts here */


.why_us{
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    background-image: var(--other_backgrounds);
    background-repeat: no-repeat;
}

.all_cards{
    margin: 5rem 10rem;
}

.coloumn1{
    margin-bottom: 5rem;
}

.coloumn1, .coloumn2{
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff18;
    box-shadow: 0 0.7rem 1rem rgba(0, 0, 0, 0.5);
    padding: 4rem 6rem;
    margin: 0 4rem;
    border-radius: 2rem;
}

.why_box .image img{
    width: 10rem;
}

.why_box .text{
    margin-left: 4rem;
}

.why_box .text h2{
    font-size: 2rem;
    padding: 0 0 1rem 0;
}

.why_box .text p{
    font-size: 1.5rem;
}


/* why us section ends here */

/* meet the team section starts here */

.artists{
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    background-image: var(--other_backgrounds);
    background-repeat: no-repeat;
}

.team_coloumn1, .team_coloumn2{
    display: flex;
    justify-content: space-between;
    margin: 0 20rem;
}

.team_coloumn1{
    margin-bottom: 3rem;
}

.artist{
    text-align: center;
}

.all_artist{
    padding: 2rem 0 5rem 0;
}

.artist img{
    width: 18rem;
    animation: motion 6s ease-in-out infinite;
    border-radius: 75% 25% 45% 55% / 37% 25% 75% 63%;
    border: 0.8rem solid #FFD337;
    /* border: 0.8rem solid rgb(241, 241, 75); */
    margin: 0 0 2rem 0;
}

@keyframes motion{

0%{
    border-radius: 75% 25% 45% 55% / 37% 25% 75% 63%;
}

25%{
    border-radius: 75% 14% 45% 37% / 24% 25% 56% 63%;			}

50%{
    border-radius: 46% 50% 68% 32% / 66% 68% 32% 34%;
}

100%{
    border-radius: 75% 25% 45% 55% / 37% 25% 75% 63%;
}

}


/* meet the team section ends here */



/* footer section starts here */

.footer{
    height: auto;
    width: 100vw;
    background: var(--other_backgrounds);
    color: var(--light);
}

.footer_heading{
    padding: 5rem 0 6rem 0;
}

.footer_heading img{
    width: 10rem;
	display: block;
	margin: 0 auto;
    animation: move2 2s linear infinite;
}

.up{
    padding: 3rem 0 4rem 0;
    text-align: center;
    /* border: 0.02rem solid #fff; */
    background: rgba(255, 255, 255, 0.034);
    box-shadow: 1rem 0.7rem 1rem rgba(0, 0, 0, 0.5);
}

.up img{
    width: 9rem;
}

.up h2{
    color: var(--light);
    padding: 1rem 0 5rem 0;
    font-size: 3rem;
}

.up a{
    color: var(--light);
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 600;
    background: var(--highlight);
    padding: 1.3rem 3.3rem;
    border-radius: 5rem;
    transition: 0.5s ease-in-out;
}

.up a:hover{
    border: 0.02rem solid #fff;
    background: transparent;
}

 .down{
    text-align: center;
    padding: 4rem 0;
}

.down h2{
    font-size: 4rem;
}

.down p{
    font-size: 1.5rem;
    text-transform: capitalize;
    line-height: 1.9rem;
    display: block;
    margin: 1rem auto;
    color: var(--para);
}

.down i{
    /* text-align: center; */
    font-size: 2.5rem;
    color: var(--para);
    transition: 0.5s ease;
    padding: 0 1rem;
}

.down i:hover{
    color: var(--light);
}

.copyright{
    height: auto;
    width: 100vw;
    background-color: #331c5f;
    padding: 1rem 0;
    text-align: center;
}

.copyright p{
    color: var(--para);
    font-size: 1.5rem;
}


/* footer section ends here */






/* media queries */

@media (max-width: 1188px) {

    .upper_part{
        margin: 0 12rem;
        margin-top: 5rem;
    }

    .bottom_part{
        margin: 0 12rem;
        margin-top: 5rem;
    }
    
    .right h2{
        font-size: 3.5rem;
        line-height: 5rem;
    }

    .right p{
        width: 30rem;
    }

    .left img{
        width: 35rem;
    }

    .cards{
        margin: 5rem 10rem 0 10rem;
    }


    .all_cards{
        margin: 5rem 2rem;
    }

    .team_coloumn1, .team_coloumn2{
        margin: 0 12rem;
    }

    .team_coloumn1{
        margin-bottom: 3rem;
    }
    

}


@media (max-width: 991px) {

    /* nav responsive */

    .mobile_navs_icon{
        display: block;
        z-index: 99999;
    }

    .mobile_nav_icon{
        width: 5rem;
        height: 5rem;
        color: var(--light);
    }

    nav{
        width: 50vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #27154a;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: all 0.2s linear;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav_part{
        display: none;
    }

    nav{
        flex-direction: column;
        align-items: center;
    }

    nav a{
        font-size: 2.5rem;
        margin: 3rem;
    }

    .active nav{
        transform: translateX(100%);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .active .mobile_navs_icon .mobile_nav_icon[name="menu-outline"]{
        display: none;
    }

    .active .mobile_navs_icon .mobile_nav_icon[name="close-outline"]{
        display: block;
    }

    /* nav responsive */

    .bottom_part, .upper_part{
        margin: 5rem 6rem;
    }

    .about_us{
        height: auto;
    }

    .main_about{
        flex-direction: column;
        align-items: center;
    }

    .left, .right{
        padding: 4rem;
    }

    .right{
        text-align: center;
    }

    .services{
        height: auto;
    }

    .cards{
        flex-direction: column;
        align-items: center;
    }

    .card{
        margin: 2rem;
    }

    .why_us{
        height: auto;
    }

    .coloumn1, .coloumn2{
        flex-direction: column;
        align-items: center;
        margin: 0 15rem;
    }

    .coloumn1{
        margin-bottom: 0rem;
    }

    .why_box{
        flex-direction: column;
        align-items: center;
        margin: 2rem;
    }

    .why_box .text{
        text-align: center;
        padding: 2rem 0;
        margin: 0;
    }

    .artists{
        height: auto;
    }

    .team_coloumn1, .team_coloumn2{
        flex-direction: column;
        align-items: center;
    }

    .team_coloumn1{
        margin-bottom: 0;
    }

    .artist{
        margin: 1.5rem 0;
    }

    .artist img{
        width: 20rem;
    }

    .artist h2{
        font-size: 2rem;
    }

    .artist p{
        font-size: 1.5rem;
        padding: 0.4rem;
    }

}

@media (max-width: 732px){
    .middle_part{
        padding: 0 2rem;
    }
}

@media (max-width: 608px){

    .bottom_part img, .upper_part img{
        width: 15rem;
    }

    .coloumn1, .coloumn2{
        margin: 0 2rem;
    }

    .up h2{
        color: var(--light);
        padding: 1rem 3rem 5rem 3rem;
        font-size: 3rem;
    }

}

@media (max-width: 425px){

    .bottom_part, .upper_part{
        margin: 5rem 2rem;
    }

    .content h1{
        font-size: 5rem;
    }

    .left img{
        width: 30rem;
    }

    /* .coloumn1, .coloumn2{
        margin: 0 2rem;
    } */

}


/* media queries */

