@font-face {
    font-family: font-id-1;
    src: url(./Accets/Fonts/NeueHaasDisplay-Roman.ttf);
}
@font-face {
    font-family: font-id-2;
    src: url(./Accets/Fonts/NeueHaasDisplayMediu.ttf);
}
@font-face {
    font-family: font-id-3;
    src: url(Accets/Fonts/NeueHaasDisplayLight.ttf);
}
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: font-id-1;
}
html , body {
    width: 100%;
    height: 100%;
}
main{
    z-index: 10;
    position: relative;
}
#page-1 {
    width: 100%;
    padding: 0 3vw;
    min-height: 100vh;
    position: relative;
    background-color: #EFEAE3;
}
nav {
    width: 100%;
    height: 100px;
    padding: 4.5vw 0vw;
    display: flex;
    z-index: 100;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
.nav-part2 {
    gap: .5vw;
    display: flex;
    align-items: center;
}
.nav-part2 h4 {
    color: #000000d8;
    position: relative;
    font-size: 17px;
    font-weight: 400;
    padding: 11px 25px;
    border: 1px solid #a49d9d86;
    border-radius: 50px;
    overflow: hidden;
}
nav h4::after{
    content: "";
    position : absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000;
    transition: all ease .5s;
}
nav h4:hover::after {
    bottom: 0;
    border-radius: 0;
}
.nav-part2 h4 a {
    z-index: 10;
    color: #000000bb;
    position: relative;
    text-decoration: none;
}
.nav-part2 h4:hover a { 
    color: #FFF;
}
#center{
    width: 100%;
    height: 75vh;
    display: flex;
    margin-top: 4vh;
    padding-bottom: 2.5vw;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: solid 1px #a49d9d86;
}
#center>#left > h4{
    width: 25vw;
    font-size: 1.8vw;
    line-height: 1.7vw;
    margin-bottom: 2vh;
    font-family: font-id-2;
}
#center h1{
    font-size: 10.5vw;
    line-height: 9vw;
    text-align: right;
    font-family: font-id-2;
}
.hero-video{
    width: 100%;
    margin-top: 8vh;
    border-radius: 20px;
    position: relative;
}
.hero-animation-container{
    right: 0vw;
    width: 45vw;
    height: 36vw;
    position: absolute;
}
@keyframes hero_1_Animation {
    from{
        transform: translate(0%,10%) ;
    }to{
        transform: translate(0%,-25%) rotateX(20deg) ;
    }
}
@keyframes hero_2_Animation {
    from{
        transform: translate(0%,10%) ; 
    }to{
        transform: translate(20%,-30%) ;
    }
}
@keyframes hero_3_Animation {
    from{
        transform: translate(10%,20%) ;
    }
   to{        
        transform: translate(-30%,-20%) rotateY(40deg) ;
    }
}
.hero-1{
    height: 100%;
    width: 100%;
    border-top-left-radius: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%; 
    position: absolute;
    filter: blur(20px);
    animation-name:  hero_1_Animation ;
    animation-delay: 5s;
    animation-duration: 5s; 
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    background: radial-gradient(#FE3C0D ,#FE5216);
}
.hero-2{
    height: 80%;
    width: 80%;
    filter: blur(20px);
    border-radius: 50%;
    position: absolute;
    animation-name:  hero_2_Animation ;
    animation-delay: 0s;
    animation-duration: 5s; 
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    background:radial-gradient(#FE350C, #FE5216); 
}
.hero-3{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(25px);
    position: absolute;
    animation-name:  hero_3_Animation ;
    animation-delay: 8s;
    animation-duration: 5s; 
    animation-direction: alternate;
    animation-iteration-count: infinite;
    background:radial-gradient(#FE350C , orangered);
}
#page-2{
    width: 100%;
    min-height: 100vh;
    margin-top: -1vh;
    position: relative;
    overflow-x: hidden;
    background-color: #EFEAE3;
}
@keyframes marquee-animation {
    to{
        transform: translate(-100%);
    }
}
.home-marquee-wrapper{
    white-space: nowrap;
    padding-top: 17vh;
}
.home-marquee{
    display: inline-block;
    animation:  marquee-animation 20s linear infinite;
}
.marquee-wrapper{
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}
.marquee-text{
    display: inline-block;
}
.marquee-text > h1{
    font-size: 9vw;
    font-family: font-id-2;
}
.marquee-logo{
    width: 4vw;
    height: 4vw;
    margin: 0 1vw;
    border-radius: 50%;
    display: inline-block;
    background-color: orangered;
}
.container{
    width: 100%;
    height: 100vh;
    margin-top: 30vh;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 70% 30%;
}
.who_heading> h1 {
    margin: 0 5vw;
    font-size: 4.5vw;
    line-height: 4vw;
    font-family:font-id-2;   
}
.who_p{
    margin: 15vh 2vw 0vh 5vw;
}
.who_photo > img {
    width: 85%;
    height: 70%;
    border-radius: 10px;
}
.who-p_weapper > p{
    width: 80%;
    margin-top: 5vh;
}
@keyframes merge-animation {
    0% {
        transform: translate3d(-20%, -5.712%, 0px) scale3d(1, 1, 1) rotateZ(0deg) skew(0deg, 0deg);
    }
    100% {
        transform: translate3d(-13.698%, -20%, 0px) scale3d(1, 1, 1) rotateZ(68.31deg) skew(8.072deg, 0deg);
        filter: blur(30px);
    }
}
.solid-circle,
.blur-circle {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 35vw;
    height: 35vw;
    filter: blur(10px);
    z-index: 1;
    border-radius: 50%;
    animation: merge-animation 2s ease-in-out infinite alternate;
}
.solid-circle {
    background: linear-gradient(to right top, orangered, #FE330A,#fecd0ae5);
}
.blur-circle {
    background: linear-gradient(to right top, orangered, #FE330A, rgb(251, 125, 15));
}
#page-3{
    width: 100%;
    height: 150vh;
    position: relative;
    background-color: #EFEAE3;
    margin-top: -1vh;
}
.featured_header{
    gap: 1vw;
    display: flex;
    padding: 1vw 2vw;
    align-items: center;
}
.featured_header > h2 {
    font-size: 1vw;
    font-family: font-id-3;
    text-transform: uppercase;
    color:rgba(11, 5, 0, 0.744);
}
.red-dot{
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    background-color: orangered;
}
.featured_wrapper{
    margin-top: 6vh;
}
.list-element{
    width: 100%;
    height: 17vh;
    display: flex;
    overflow: hidden;
    padding: 0vw 2vw;
    position: relative;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.234);
}
.list-element h1{
    z-index: 10;
    font-size: 3.5vw;
    position: relative;
    font-family: font-id-2;
}
.featured_info{
    z-index: 10;
    font-size: 1vw;
    margin-top: 1vh;
    text-align: right;
}
.ft-cat_wrappee {
    color:rgba(0, 0, 0, 0.4);
}
.f_i_wrapper{
    color: #000;
    text-decoration: none;
}
.overlay_visual{
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #FF9831;
    transition: all ease .2s;
}
.list-element:hover .overlay_visual{
    top: 0%;
}
.hero-fixed_featured_container{
    top: 19%;
    left: 50%;
    width: 24vw;
    z-index: 100;
    height: 30vw;
    display: none;
    position: fixed;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #FE330A;
}
.button{
    margin: 4vw 2vw;
    overflow: hidden;
    position: absolute;
    padding: 0.75vw 1.5vw;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.329);
}
.button::before{
    content: "";
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position : absolute;
    background-color: #000;
    transition: all ease .5s;
}
.button:hover::before {
    bottom: 0%;
    border-radius: 0;
}
.button:hover a ,.button:hover i{ 
    color: #FFF;
}
.button i{
    position: relative;
}
.button > a {
    z-index: 10;
    color: #000;
    font-size: 1.2vw; 
    margin-right: 20px; 
    text-decoration: none;
    position: relative; 
}
#page-n{
   width: 100%;
   height: 110vh;
   background-color: #EFEAE3;
   position: relative;
   padding: 2vw;
   margin-top: -1vh;
}
.service_container{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
}
.service_info_wrapper{
    position: relative;
}
.service_info_menu{
    position: absolute;
    top: 12%;
    left:20%;
}
.service_info_menu > h1 {
    color :#ffffff46;
    padding: 0.5vw 2vw;
    font-size: 4.5vw;
    font-family: font-id-2;
    border-left:3px solid #ffffff46;
}
.service_info_p{
    position: absolute;
    left: 22%;
    top: 55%; 
    border-radius: 20px;
}
.service_info_p > p{
    width: 70%;
    padding: 1vw;
    color: white;
}
.service_image_wrapper{   
    overflow: hidden; 
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background: url("Accets/Images/Design.webp");
}
.service_image_wrapper img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
#page-4{
    width: 100%;
    height: 90vh;
    margin-top: -1vh;
    padding: 10vw 2vw;
    background-color: #EFEAE3;
    position: relative;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    padding: 2vw;
    width: 30%;
    font-size: 18px;
    border-left: 1px solid #0000005b;
}
.slide_container{
    position: relative;
}
.p_container{
    margin-top: 4vh;
    width: 90%;
}
.log_container > img{
    width: 40%;
}
#page-5{
    width: 100%;
    height: 120vh;
}
#footer{
    position: fixed;
    z-index: 9;
    height: 110vh;
    width: 100%;
    bottom: 0;
    background-color: black;
    color: #EFEAE3;
    display: flex;
    padding: 1vw 3vw;
    justify-content: flex-end;
    flex-direction: column; 
}
#footer > h1 {
    font-size: 23vw;
}
.footer-up{
    width: 100%;
    height: 30vh;
    padding: 3vw;
    position: relative;
    z-index: 20;
}
.footer_menu_wrap a{
    color: #EFEAE3;
    text-decoration: none;
    font-size: 2.5vw;
    font-family: font-id-2;
}
.newsletter_wrap{
    top: 30%;
    right: -15%;
    color: #000;    
    font-size: 1.5vw;
    position: absolute;
}
.newsletter_wrap > p {
    width: 60%;
    color: white;
}
.newsletter_wrap > form{
    margin-top: 2vw;
}
.newsletter_wrap > form > input ,.newsletter_wrap > form > button {
    border: none;
    color: white;
    font-size: 1.5vw;
    background-color: transparent;
    border-bottom: 1px solid white;
}
.footer_menu_wrap{
    display: flex;
    flex-direction: column;
}
.footer-bottom{
    position: absolute;
    border-top: 1px solid #EFEAE3;
}
.footer-bottom{
    width: 90%;
    display: flex;
    padding-top: 2vh; 
    justify-content: space-between;
}
.footer-bottom  a{
    text-decoration: none;
    color: #EFEAE3;
}
@keyframes shape_1_animation {
    from{
        transform: translate(-10% ,20%) skewY(-30deg) skewX(-20deg) rotate(20deg);
    }to{
        transform: translate(10% ,-10%) skewY(-10deg) skewX(-10deg) ;
        filter: blur(50px);
    }
}
@keyframes shape_2_animation {
    from{
        transform: translate(0% ,-15%) skewY(0deg)  rotateX(-20deg);
        filter: blur(50px);
    }to{
        transform: translate(0% ,-10%) skewY(-10deg) skewX(-50deg) rotateX(50deg);
        filter: blur(70px);
    }
}
@keyframes shape_3_animation {
    from{
        transform: translate(0% ,10%) skewY(25deg) skewX(40deg);
        filter: blur(50px);
    }to{
        transform: translate(10% ,30%) rotate(45deg);
        filter: blur(70px);
    }
}
.shape-1  {
    position: absolute;
    top: -5%;
    left: -10%;
    width: 50vw;
    height: 27vw;
    filter: blur(35px);
    transform: rotate(-25deg);
    background: linear-gradient(to left bottom, orangered, #FE330A ,#fecd0ae5);
    animation: shape_1_animation 5s linear alternate infinite;
}
.shape-2 {
    position: absolute;
    top: -5%;
    left: 20%;
    width: 65vw;
    height: 25vw;
    filter: blur(20px);
    animation: shape_2_animation 5s linear alternate infinite;
    background: linear-gradient(to bottom, orangered, #FE330A ,#da7c09e5);
}
.shape-3 {
    position: absolute;
    top: -10%;
    right: -20%;
    width: 55vw;
    height: 27vw;
    filter: blur(35px);
    transform: rotate(25deg);
    animation: shape_3_animation 5s linear alternate infinite;
    background: linear-gradient(to right bottom, orangered, #FE330A ,#fecd0ae5);
}
/* Making responcive */
/* This CSS only Work On Mobile Screen */
/*_____________________________________________________________________________________________________________________________________________*/
nav > h3 {
    display: none;
}
.mobile_Screen_Shutter{
    top: -120%;
    height: 100vh;
    width: 100vw;
    z-index: 99 ;
    position: fixed;
    background-color: #00000070;
    transition: all ease .5s;
}
.shutter{
    height: 50%;
    width: 100%;
    padding-top: 14vh;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: #EFEAE3;
}
.shutter h1{
    color: #000;
    font-size: 13vw;
    margin-top: 2vw;
    margin-right: 7vw;
    text-align: end;
}
.shutter a {
    text-decoration: none;
}
.wrapper_mobile{
    display: none;
}

/*_____________________________________________________________________________________________________________________________________________*/
/* Making responcive */
@media (max-width:600px) {
    #page-1 {
        padding: 0 0vw;
    }
    nav {
        padding: 9vw 5vw;
        background-color: #EFEAE3;
    }
    nav img{
        height: 9vh;
        margin-left: 2vw;
        transition: all ease .5s;
    }
    .nav-part2 {
        display: none;
    }
    nav > h3 {
        display: block;
        font-size: 5vw;
        font-weight: 200;
        padding: 3vw 5vw;
        padding-left: 10vw;
        border-radius: 50px;
        color: #000000a8;
        border: 1px solid #a49d9d86;
    }    
    #center{
        z-index: 9;
        height: 62vh;
        padding: 8vw 5vw;
        padding-bottom: 10vw;
        position: relative;
        flex-direction: column-reverse;
    }
    #center>#left > h4{
        width: 90%;
        font-size: 5.5vw;
        line-height: 6vw;
        margin-bottom: 2vh;
    }
    #center h1{
        font-size: 16vw;
        line-height: 15vw;
    }
    .hero-video{
        width: 92%;
        height: 70vh;
        margin-left: 4%;
        position: relative;
        border-radius: 15px;
        object-fit: cover;
        object-position: center;
    }
    .hero-animation-container{
        width: 85vw;
        height: 66vw;
        position: absolute;
    }
    .home-marquee-wrapper{
        padding-top: 7vh;
    }
    .marquee-text > h1{
        font-size: 15vw;
    }
    .marquee-logo{
        width: 12vw;
        height: 12vw;
        margin: 1vh 5vw;
    }
    .container{
        display: flex;
        flex-direction: column;
        margin-top: 9vh;
    }
    .who_heading> h1 {
        margin: 2vw 5vw;
        font-size: 8vw;
        line-height: 8vw;
    }
    .who_p{
        margin: 5vh 2vw 0vh 5vw;
    }
    .who_photo > img {
        width: 65vw;
        border-radius: 20px;
    }
    .who-p_weapper > p{
        width: 65vw;
    }
    .solid-circle,
    .blur-circle {
        position: absolute;
        top: 40%;
        left: 60%;
        width: 65vw;
        height: 65vw;
        filter: blur(30px);
    }
    /* page-3 */
    #page-3{
        width: 100%;
        height: fit-content;
        position: relative;
        background-color: #EFEAE3;
        margin-top: -1vh;
    }
    .featured_header{
        gap: 2vw;
    }
    .featured_header > h2 {
        font-size: 4vw;
    }
    .red-dot{
        width: 3vw;
        height: 3vw;
    }
    .featured_wrapper{
        display: none;
    }
    .wrapper_mobile{
        margin-top: 10vh;
        height: fit-content;
        display: block;
    }
    .elements_mobile{
        width: 100%;
        height: 92vh;
    }
    .figure_m{
        margin-left: 4%;
        border-radius: 20px;
        width: 92%;
        overflow: hidden;
    }
    .figure_m video , .figure_m img{
        width: 100%;
        height: 70vh;
        object-fit: cover;
        overflow: hidden;
    }
    .m_content {
        gap: 3vw;
        padding: 4vw;
        display: flex;
        flex-direction: column;
    }
    .m_content h1 {
        font-size: 10vw;
    }
    .m_content h3{
        margin-top: -1vh;
        margin-left: 1vw;
        font-size: 4vw;
        text-transform: uppercase;
    }
    .m_content h6{
       margin-top: -1vh;
       margin-left: 1vw;
        font-size: 4vw;
        color: #0000005b;
    }
    .button{
        display: none;
    }
    /* #page-n */
     .service_container{
         grid-template-rows: 50% 50%;
         background: black
    }
     .service_info_wrapper{
         width: 100vw;
         height: 50%;
     }
     .service_info_menu > h1 {
         color: rgba(245, 245, 245, 0.274);
         font-size: 10vw;
     }
     .service_info_p{
         left: 5%;
         top: 110%; 
         width: 90%;
     }
     .service_info_p > p{
         color: white;
         width: 100%;
         padding: 0vw;
         font-size: 4vw;
     }
     .service_image_wrapper{   
        position: relative;
        right: 68%;
        top: 100%;
        width: 170%;
        overflow: hidden; 
        border-radius: 20px;
        background-size: cover;
        background-position: center;
        background-image: url("Accets/Images/Design.webp");
    }
    /* page-4 */
    #page-4{
        height: 60vh;
        padding: 5vw -10vw;
        background-color: #EFEAE3;
    }
    .swiper {
        width: 100%;
        height: 80%;
    }
    .swiper-slide {
        width: 60%;
        font-size: 13px;
    }
    .slide_container{
        margin-top: 2vw;
        padding-left: 5vw;
    }
    .p_container{
        width: 100%;
    }
    .log_container > img{
        width: 80%;
    }
    #page-5{
        width: 100%;
        height: 120vh;
    }
    #footer{
        height: 80vh;
        bottom: 0;
    }
    #footer > h1 {
        font-size: 23vw;
        margin-bottom: 15vw;
        margin-top: 10vw;
    }
    .footer-up{
        height: 40vh;
    }
    .footer_menu_wrap a{
        font-size: 9vw;
    }
    .newsletter_wrap{
        top: 0%;
        right: 0%;
        position: relative;
    }
    .newsletter_wrap > p {
        margin-top: 10vw;
        width: 100%;
        font-size: 5vw;
    }
    .newsletter_wrap > form{
        margin-top: 5vw;
    }
    .newsletter_wrap > form > input ,.newsletter_wrap > form > button {
        font-size: 6vw;
    }
    .footer-bottom{
        margin-bottom: 5vw;
    }
    .footer-bottom  a{
        font-size: 3vw;
    }
    .shape-1  {
        top: -15%;
        left: -15%;
        width: 90vw;
        height: 57vw;
        filter: blur(15px);
    }
    .shape-2 {
        top: -5%;
        left: 20%;
        width: 105vw;
        height: 95vw;
   }
    .shape-3 {
        top: -20%;
        right: -20%;
        width: 55vw;
        height: 97vw;
        filter: blur(5px);
    }
}