@font-face
{
    font-family: "font-one";
    src: url('../fonts/beluga.otf');
}
@font-face
{
    font-family: "font-two";
    src: url('../fonts/dan.otf');
}
@font-face
{
    font-family: "font-three";
    src: url('../fonts/headline.otf');
}
@font-face
{
    font-family: "font-four";
    src: url('../fonts/capri-pro-light.otf');
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: "font-one";
}

:root
{
    --theme-color:#5546FF;
    --text-color:#B3EB16;
}
::-webkit-scrollbar
{
    width: 12px;
}
::-webkit-scrollbar-thumb
{
    background-color: var(--text-color);
    border-radius: 8px;
}
::selection
{
    background: var(--text-color);
    color: black;
}
html
{
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
body
{
    /* background-color:var(--text-color); */
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    background-color: black;
}
header 
{
    display: flex;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding:20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    z-index: 100;
}
header .logo h3
{
    font-weight: 100;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 30px;
}
header a
{
    padding:8px 20px;
    background: var(--text-color);
    color: var(--theme-color);
    border-radius: 35px;
    font-size: 14px;
    display: inline-flex;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
header a::before
{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    color: var(--text-color);
    transition: 0.3s ease;
    border-radius: 35px;
    z-index: -1;
    
}

header a:hover
{
    color:white;
    
}
header a:hover::before
{
    width: 100%;
    animation:AnchorAnim 5s linear infinite;
}
@keyframes AnchorAnim
{
    0%
    {
        width: 20%;
        background-color: black;
        left: -40px;
    }
    50%
    {
        width: 100%;
        background-color:var(--theme-color);
    }
    100%
    {
        width: 0%;
        left:100%;
    }
}
.main-container
{
    width: 100%;
    height: 100vh;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top:0;
    left: 0;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1500px;
    /* animation: containerAnim ease-in-out both;
    animation-timeline: view(block);
    animation-range: cover 55% cover 100%; */
    transform-origin: top;
}
/* @keyframes containerAnim
{
    from
    {
        transform: scale(1) rotate(0deg);
    }
    to
    {
        transform: scale(0.5) rotate(180deg);
    }
} */
.main-container .center-text h1
{
    color: rgb(255, 255, 255);
    font-family: "font-two";
    font-size: 20vw;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 100;
    /* background:url('../images/gif-10.gif');
    background-clip:text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 10px 10px 0 white,
                 5px 5px 10px rgba(0,0,0,0.5); */
    text-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    transform: scaleY(2) scaleX(1.3);
    pointer-events: none;
}   

.emoji-container
{
    width: 100%;
    height: 100vh;
    /* background-color: red; */
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-container .emoji
{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background:var(--theme-color);
    box-shadow: inset -5px -5px 40px rgba(255, 255, 255, 0.412), inset 5px 5px 40px rgba(255, 255, 255, 0.492);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: all cubic-bezier(0.19, 1,0.22,1)0.85s;
}
.emoji-container .emoji .emoji-face
{
    transition: all cubic-bezier(0.19, 1,0.22,1)0.85s;
    pointer-events: none;
}
.emoji-container .emoji-eyes
{
    display: flex;
    justify-content: center;
    column-gap: 40px;
    padding-top: 80px;
}
.emoji-container .emoji-eyes img
{
    width: 80px;
    animation: eyeanim 5s linear infinite;
    pointer-events: none;
}
@keyframes eyeanim {
    0%
    {
        transform: rotate(0);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
.mouth-wrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}
.mouth-wrapper .mouth
{
    width: 50px;
    height: 60px;
    border-radius: 35px;
    background-color: black;
    transition: all cubic-bezier(0.19, 1,0.22,1)0.85s;
    animation: mouthanim 2s linear infinite;
}
@keyframes mouthanim {
    0%
    {
        height: 60px;
    }
    50%, 60%, 70%
    {
        height: 100px;
    }
    100%
    {
        height: 60px;
    }
}
.images-popups-container
{
    width: 100%;
    height: 100vh;
    position: fixed;
    top:0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;

}
.images-popups-container .image-box
{
    perspective: 2000px;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    scale: 0.4;
}
.images-popups-container .image-box .images
{
    width: 100px;
    height: 80px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(1000px) scale(0);
    animation: imageAnim 5s var(--animDelay) linear infinite;
    /* pointer-events: none; */
    border: 5px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.652);
}
@keyframes imageAnim 
{
    0%
    {
        transform: translateZ(800px) scale(0);
    }
    100%
    {
        transform: translateZ(2000px) scale(1.2);
        width: 200px;
        height: 120px;
    }
}
.images-popups-container .image-box .images.active
{
    
}
.images-popups-container .image-box .images.img-1
{
    top:25%;
    left: 50%;
    background: url('../images/img-1.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-2
{
    top:68%;
    right: 60%;
    background: url('../images/img-2.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-3
{
    top:45%;
    right: 20%;
    background: url('../images/img.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-4
{
    top:30%;
    right: 65%;
    background: url('../images/img-4.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-5
{
    top:50%;
    right: 70%;
    background: url('../images/hover-1.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-6
{
    top:25%;
    left: 58%;
    background: url('../images/hover-2.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-7
{
    top:75%;
    left: 65%;
    background: url('../images/hover-3.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-8
{
    top:49%;
    right: 55%;
    background: url('../images/hover-4.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-9
{
    top:10%;
    right: 30%;
    background: url('../images/hover-5.jpg');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-10
{
    top:43%;
    left: 62%;
    background: url('../images/hover-19.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-11
{
    top:36%;
    left: 32%;
    background: url('../images/hover-20.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-12
{
    top:35%;
    left: 12%;
    background: url('../images/hover-17.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-13
{
    top:22%;
    left: 30%;
    background: url('../images/hover-18.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-14
{
    top:24%;
    right: 30%;
    background: url('../images/hover-10.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-15
{
    top:45%;
    left: 35%;
    background: url('../images/hover-11.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-16
{
    top:62%;
    left: 60%;
    background: url('../images/hover-12.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-17
{
    top:30%;
    right:26%;
    background: url('../images/hover-19.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-18
{
    top:45%;
    left: 62%;
    background: url('../images/hover-14.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-19
{
    top:68%;
    right: 32%;
    background: url('../images/hover-15.avif');
    background-size: cover;
    background-position: center;
}
.images-popups-container .image-box .images.img-20
{
    top:15%;
    left: 60%;
    background: url('../images/hover-16.avif');
    background-size: cover;
    background-position: center;
}

/* css code for who we are section starts */
.who-we-are
{
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background-color: black;
    /* background: url('../images/aesthetic.jpg');
    background-size: cover;
    background-position: center; */
    color: rgb(0, 0, 0);
    padding: 20px;
}
.who-we-are .curve-img
{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 30%;
    z-index: -1;
    object-fit: contain;
}
.who-we-are h1
{
    color: var(--text-color);
    text-align: center;
    font-size: 50px;
    transform: translateY(50px);
    padding-top: 50px;
    width: 55%;
}

.who-we-are-cols
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: 85%;
    margin: auto;
    height: fit-content;
    padding-top: 100px;
} 
.who-we-are-cols .abouts
{
    flex-basis: 35%;
    padding: 20px;
    background-color: var(--text-color);
    text-align: center;
    line-height: 1.4;
    height: fit-content;
    border-radius: 15px;
    transform-style: preserve-3d;
    perspective: 1000px;
    /* animation: textanim linear both;
    animation-timeline: view(block);
    animation-range: cover 0% cover 45%;
    height: 0; */
}
.who-we-are-cols .abouts.special-blob
{
    position: relative;
    z-index: 1;
    transform: translateZ(50px);
}

.who-we-are-cols .abouts.special-blob::before
{
    content: "UI/UX DESIGNER";
    position: absolute;
    bottom:-130px;
    left: -150px;
    background-color: var(--theme-color);
    border-radius: 50px;
    width: 100%;
    height: 100px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vw;
    color: var(--text-color);
    font-family: "font-two";
    letter-spacing: 4px;
    font-weight: 100;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.652);
    /* animation: blobanim linear both;
    animation-timeline: view(block);
    animation-range: cover 0% cover 10%; */
}
@keyframes blobanim
{
    from
    {
        opacity: 0;
        left: -100px;
    }
    to
    {
        opacity: 1;
        left: -150px;
    }
}
.who-we-are-cols .abouts.special-blob::after
{
    content: "";
    position: absolute;
    bottom:-130px;
    left: -150px;
    background-color:#E683F1;
    border-radius: 50px;
    width: 100px;
    height: 100%;
    z-index: -1;   

}

.who-we-are-cols .abouts.special-blob-two
{
    position: relative;
    z-index: 1;
}
.who-we-are-cols .abouts.special-blob-two::before
{
    content: "PHP DEVELOPER";
    position: absolute;
    top:-130px;
    right: -150px;
    background-color: var(--theme-color);
    border-radius: 50px;
    width: 100%;
    height: 100px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vw;
    color: var(--text-color);
    font-family: "font-two";
    letter-spacing: 4px;
    font-weight: 100;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.652);
    /* animation: blobanim2 linear both;
    animation-timeline: view(block);
    animation-range: cover 50% cover 80%; */
}
@keyframes blobanim2
{
    from
    {
        opacity: 0;
        right: -100px;
    }
    to
    {
        opacity: 1;
        right: -150px;
    }
}
.who-we-are-cols .abouts.special-blob-two::after
{
    content: "";
    position: absolute;
    top:-130px;
    right: -150px;
    background-color:#E683F1;
    border-radius: 50px;
    width: 100px;
    height: 100%;
    z-index: -1;
}
@keyframes textanim
{
    from
    {
        height: 0;
        overflow: hidden;
        transform: translateY(-70px);
    }
    to
    {
        height: 500px;
        overflow: visible;
        transform: translateY(0px);
    }
}
.who-we-are-cols .abouts .profile-img
{
    width: 160px;
    margin: auto;
    position: relative;
    border-radius: 50%;
    display: flex;
    margin-bottom: 20px;
    height: 160px;
    transition: 0.4s ease;
}
.who-we-are-cols .abouts:hover .profile-img
{
    transform: translateY(30px) translateZ(50px);
}
.who-we-are-cols .abouts .profile-img::before
{
    content: "";
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-126%, -50%) !important;
    width: 105%;
    height: 105%;
    background:linear-gradient(#15fd34,#077999, #BD9FFF);
    border-radius: inherit;
    animation: borderanim 2s linear infinite !important;
}
@keyframes borderanim {
    0%
    {
        transform: translate(-126%, -50%) rotate(0deg) !important;
    }
    100%
    {
        transform: translate(-126%, -50%) rotate(360deg) !important;
    }
}
.who-we-are-cols .abouts img
{
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-130%, -50%);
    border: 8px solid black;
}
.who-we-are-cols .abouts .profile-img .my-socials
{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-20.6%, -50%);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 35px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: black;
}

.who-we-are-cols .abouts .profile-img .my-socials a
{
    padding:5px 10px;
    margin: 0 2px;
    font-size: 25px;
    display: inline-flex;
    background: var(--text-color);
    color: black;
    border-radius: 35px;
    
}
.who-we-are-cols .abouts .profile-img .my-socials a:nth-child(1)
{
    background-color: #48C857;
    color: white;
}
.who-we-are-cols .abouts .profile-img .my-socials a:nth-child(2)
{
    background-color:#1877F2;
    color: white;
}
.who-we-are-cols .abouts .profile-img .my-socials a:nth-child(3)
{
    background:linear-gradient(45deg, #EB9A53, #C0317F, #5A54BF);
    color: white;
}
.who-we-are-cols .abouts .profile-img .my-socials a:nth-child(4)
{
    background-color:#1877F2;
    color: white;
}
.who-we-are-cols .abouts .profile-img .my-socials a:nth-child(5)
{
    background-color:#EE0100;
    color: white;
}
.who-we-are-cols .abouts .profile-img .my-socials a:hover
{
    background: var(--theme-color) !important;
    color: white !important;
}
.who-we-are-cols .abouts .profile-img .my-socials a i
{
    filter: drop-shadow(4px 4px 2px rgba(0,0,0,0.4));
}
.who-we-are-cols .abouts h2
{
    font-size: 20px;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    text-align: right;
   
}

.who-we-are-cols .abouts h3
{
    font-size: 14px;
    letter-spacing: 1.2px;
    text-align: right;

}
.who-we-are-cols .abouts small
{
    font-family: monospace;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0px;
    display:block;
    margin: 10px 0;
}
.who-we-are-cols .abouts .skills
{
    transform: translateY(-15px) translateZ(50px);
}
.who-we-are-cols .abouts .skills i
{
    margin-top: 10px;
    font-size: 30px;
    filter: drop-shadow(4px 4px 2px rgba(0,0,0,0.3));
}

/* css code for who we are section ends */


.image-trail img
{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    z-index: 100;
    pointer-events: none;
    border:3px solid var(--theme-color);
    transition: all cubic-bezier(0.19, 1 ,0.22, 1) 0.8s;
}
.image-trail img:nth-child(2n+1)
{
    border:3px solid var(--text-color)
}
@media screen and (max-width:1250px)
{
    .image-trail
    {
        display: none;
    }
}
/* our real time works css code starts */
.our-real-time-works
{
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 15;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}
.our-real-time-works::before
{
    content: "";
    position: absolute;
    top:-100px;
    left: 0;
    width: 100%;
    height: 400px;
    pointer-events: none;
    background: url('../images/curve.png');
    background-size: cover;
    background-position: top;
}
.our-real-time-works .flower-img
{
    position: absolute;
    left: 0;
    left: 0;
    width:100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    transform-origin: bottom;
    pointer-events: none;
}
.our-real-time-works .our-real-time-works-cols
{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
    width: 100%;
    height: 100%;
    padding:50px;
}
.our-real-time-works .our-real-time-works-left
{
    flex-basis: 25%;
    height: fit-content;
    line-height: 1.5;
}
.our-real-time-works .our-real-time-works-left span
{
    font-size: 4vw;
    padding: 0 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    color: white;
    text-shadow: 4px 4px 5px rgba(0,0,0,0.3);
    position: relative;
    white-space: nowrap;
    transition: all cubic-bezier(0.19,1,0.22,1)0.8s;
}
.our-real-time-works .our-real-time-works-left p
{
    font-size: 25px;
    margin-top: 20px;
    font-family: "font-three";
    
}
.our-real-time-works .our-real-time-works-right
{
    flex-basis: 60%;
    height: fit-content;
    overflow-x: hidden;
    padding: 50px 0;
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data
{
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 50px;
    transform: translateX(100%);
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a
{
    background-color: #BBC5F8;
    background: url('../images/creative-1.jpg');
    background-size: cover;
    background-position: center;
    display: inline-flex;
    align-items: center;
    padding:40px;
    border-radius: 15px;
    color:var(--text-color);
    font-size: 3.5vw;
    height: 300px;
    text-transform: capitalize;
    position: relative;
    /* border: 4px solid black; */
    text-align: right;
    font-family: "font-three";
    line-height: 1.1;
    transition: 0.4s ease;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.482);
}

.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a .works-icon
{
    position: absolute;
    top:-25px;
    right:-25px;
    width: 80px;
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a .works-icon-bottom
{
    position: absolute;
    bottom:-25px;
    right:-25px;
    width: 80px;
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a:nth-child(2)
{
    background-color: #BD9FFF;
    background: url('../images/creative-4.jpg');
    background-size: cover;
    background-position: center;
    /* color: var(--text-color); */
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a:nth-child(3)
{
    background: url('../images/portrait.png');
    background-size: cover;
    background-position: center;
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a:nth-child(4)
{
    background: url('../images/creative-3.jpg');
    background-size: cover;
    background-position: center;
}
.our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a:nth-child(5)
{
    background: url('../images/creative-5.avif');
    background-size: cover;
    background-position: center;
}
@media screen and (max-width:1200px)
{
    .our-real-time-works .our-real-time-works-cols
    {
        padding: 10px;
    }
    .our-real-time-works .our-real-time-works-left
    {
        flex-basis: 15%;
    }
    .our-real-time-works .our-real-time-works-right
    {
        flex-basis: 70%;
        /* background-color: red; */
    }
    .our-real-time-works .our-real-time-works-left span
    {
        padding: 5px 10px !important;;
    }
    .our-real-time-works-left p
    {
        font-size: 15px !important;
    }
    
}
@media screen and (max-width:970px)
{
    .our-real-time-works 
    {
        padding: 20px 20px 80px 20px;
    }
    .our-real-time-works .our-real-time-works-left span
    {
        white-space: wrap;
        font-size: 50px;
    }
    .our-real-time-works .our-real-time-works-left p
    {
        color: white;
        font-weight: 100;
    }
    .our-real-time-works .our-real-time-works-cols
    {
        flex-wrap: wrap;
        height: 0;
        margin-bottom: 250px;
    }
    .our-real-time-works .our-real-time-works-left
    {
        flex-basis: 100%;
    }
    .our-real-time-works .our-real-time-works-right
    {
        flex-basis: 100%;
        height: fit-content;
        overflow-x: none;
        padding: 50px 0;
    }
    .our-real-time-works .our-real-time-works-right .our-real-time-works-right-data
    {
        display: flex;
        align-items: center;
        justify-content: left;
        column-gap: 40px;
        transform: translateX(100%);
    }
}
@media screen and (max-width:600px)
{
    .our-real-time-works .our-real-time-works-left span
    {
        font-size: 30px;
    }
    .our-real-time-works .our-real-time-works-right .our-real-time-works-right-data
    {
        column-gap: 20px;
    }
    .our-real-time-works .our-real-time-works-right .our-real-time-works-right-data a
    {
        font-size: 5vw;
        padding: 20px;
    }
}
/* our real time works css code ends */
.some-aesthetics
{
    width: 100%;
    height: 100%;
    padding: 20px 0 150px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.some-aesthetics-text h1
{
    font-weight: 100;
    font-size: 120px;
    font-family: "font-three";
    /* -webkit-text-stroke: 1px var(--theme-color); */
    color:var(--text-color);
    /* color: transparent; */
    letter-spacing: 5px;
    line-height: 1.1;
    white-space: nowrap;
    display: inline-flex;
    margin-top: 20px;
    transform: translateX(100px);
    /* text-shadow: 2px 2px 0px rgba(0,0,0,0.2); */
    background:url('../images/textbg.jpg');
    background-size: contain;
    background-position: center;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: repeat;
    position: relative;
    z-index: 1;
}

.some-aesthetics-text .some-aesthetics-center
{
    width: 100%;
    height: 600px;
    /* overflow: hidden; */
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color:#b1aaff68;
    background:linear-gradient(to right,rgba(0, 0, 100, 0),rgba(0, 0, 100, 0)), url('../images/bg.jpg');
    background-size: contain;
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
}
.some-aesthetics-text .some-aesthetics-center img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.some-aesthetics-text .some-aesthetics-center i
{
    font-size: 100px;
    z-index: 5;
    position: absolute;
    /* top:50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: 200px;
    height: 200px;
    background-color: #ECB500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.482);
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.313);
    transition: all cubic-bezier(0.19,1,0.22,1)1s;
}

.circle-text
{
    position: relative;
    width: 250px;
    height: 250px;
    /* background-color: #07799913; */
    z-index: 4;
    border-radius: 50%;
    animation: circleanim 20s linear infinite;
    transition: all cubic-bezier(0.19,1,0.22,1)1.2s;
    /* display: flex; */
}

.circle-text span
{
    position: absolute;
    inset:-15px;
    transform: rotate(calc(var(--t) * (360deg/45)));
    display: inline-block;
    text-align: center;
    font-family: "font-four";
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    /* text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.252); */

}
.scroll-cool
{
    position: absolute;
    bottom:-100px;
    left: 50px;
    width:320px;
    height: 320px;
    border-radius: 50%;
    background:#e3ff9d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-cool .scroll-cool-insides 
{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    height: 135px;
    overflow: hidden;
    flex-direction: column;
}
.scroll-cool .scroll-cool-insides img
{
    width: 150px;
    /* transform: translateY(50px); */
    animation:imgAnim 2s ease infinite;
    margin-bottom: 15px;
}
@keyframes imgAnim
{
    from
    {
        transform: translateY(0);
    }
    to
    {
        transform: translateY(110%);
    }
}

.some-aesthetics .threeD-slides
{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #bd9fff4b; */
    background-color: black;
    /* background: url('https://img.freepik.com/free-photo/black-background-with-wavy-texture_125540-5339.jpg?t=st=1718956599~exp=1718960199~hmac=44ad2d8fd5bf703264dcdbbb68b72d6043dd7464f8415fdb77bedfe199ea3fa3&w=1380'); */
    background-size: cover;
    background-position: center;
    z-index: 10;
    overflow: hidden;
    transition: all cubic-bezier(0.19,1,0.22,1) 1s;
    clip-path: circle(0% at 50% 50%);
}
.some-aesthetics .threeD-slides.active
{
    clip-path: circle(100% at 50% 50%);

}
.some-aesthetics .threeD-slides-data
{
    width: 100%;
    height: 100%;
    position: relative;
    
}
.some-aesthetics .threeD-slides-data .center-img
{
    position: absolute;
    top:40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    width: 100%;
    mix-blend-mode: difference;
    /* background-color: red; */
    text-align: center;
    line-height: 1.2;
    /* z-index: -1; */
}
.some-aesthetics .threeD-slides-data .center-img h1
{
    font-size: 5vw;
    font-family: "font-three";
    letter-spacing: 2px;
    /* -webkit-text-stroke: 1px black; */
    /* color: transparent; */
    color: rgb(197, 56, 56);
    font-weight: 100;
}
.some-aesthetics .threeD-slides-data .center-img small
{
    display: block;
    color: white;
    width: 50%;
    margin: auto;
    font-family: "font-three";
    /* background-color: red; */
}
.some-aesthetics .threeD-slides-data .center-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.some-aesthetics .threeD-slides-data .threeD-slides-images-container
{
    position: absolute;
    width: 200px;
    height: 250px;
    top:15%;
    left:50%;
    transform-style: preserve-3d;
    transform: translateX(-50%) perspective(1000px);
    animation: rotateAnim 20s linear infinite;
}
@keyframes rotateAnim 
{
    0%
    {
        transform: translateX(-50%) perspective(1000px) rotateX(-20deg) rotateY(0);
    }
    100%
    {
        transform: translateX(-50%) perspective(1000px) rotateX(-20deg) rotateY(-360deg);
    }
}
.some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images
{
    position: absolute;
    /* inset: 0 0 0 0; */
    transform:rotateY(calc( (var(--positionSlide) - 1) * (360deg / 10))) translateZ(450px); /*move and element to the z direction to look more 3d*/
    
}
.some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images h2
{
    color: white;
    float: right;
    transform: translateY(-120px);
    padding-right: 20px;
    font-family: "font-three";
    font-size: 4vw;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.482);
}

.some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images img
{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 35px;
}
.threeD-slides .leafIMG
{
    position: absolute;
    top:-150px;
    left: -250px;
    width:500px;
    transform: rotate(150deg) scale(1);
}

.threeD-slides .leafIMG-3
{
    position: absolute;
    bottom:-100px;
    right: -180px;
    width:500px;
}
.threeD-slides .leafIMG-4
{
    position: absolute;
    bottom:-100px;
    left: -180px;
    width:500px;
}
.threeD-slides .cut-button
{
    position: absolute;
    top:80px;
    right: 30px;
    z-index: 20;
}
.threeD-slides .cut-button img
{
    width: 70px;
    cursor: pointer;
}
@media screen and (max-width:1580px)
{
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images
    {
        transform:rotateY(calc( (var(--positionSlide) - 1) * (360deg / 10))) translateZ(350px) scale(0.85); /*move and element to the z direction to look more 3d*/
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images h2
    {
        color: white;
        float: right;
        transform: translateY(-120px);
        padding-right: 20px;
        font-family: "font-three";
        font-size: 6vw;
        text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.482);
    }
}
@media screen and (max-width:1170px)
{
    .some-aesthetics .threeD-slides
    {
       height: 100vh;
    }
    .threeD-slides .cut-button img
    {
        width: 40px;
    }
    .threeD-slides .leafIMG
    {
        transform: rotate(150deg) scale(0.7);
    }
    .threeD-slides .leafIMG-3
    {
        scale: 0.6;
    }
    .threeD-slides .leafIMG-4
    {
        scale: 0.6;
    } 
    .some-aesthetics .threeD-slides
    {
        clip-path: circle(0% at 50% 30%);
    
    }
}
@media screen and (max-width:1000px)
{
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images
    {
        transform:rotateY(calc( (var(--positionSlide) - 1) * (360deg / 10))) translateZ(280px) scale(0.7); /*move and element to the z direction to look more 3d*/
    }
    .some-aesthetics .center-img small
    {
        font-size: 12px;
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images h2
    {
        font-size: 9vw;
    }
}
@media screen and (max-width:800px)
{
    .some-aesthetics .threeD-slides-data .center-img h1
    {
        padding-bottom: 10px;
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container
    {
        padding-top: 140px;
        /* background-color: red; */
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images
    {
        transform:rotateY(calc( (var(--positionSlide) - 1) * (360deg / 10))) translateZ(200px) scale(0.5); /*move and element to the z direction to look more 3d*/
    }
    .some-aesthetics .center-img small
    {
        font-size: 10px;
    }
    .threeD-slides .leafIMG
    {
        transform: rotate(100deg) scale(0.5);
        left: -300px;
    }

    .threeD-slides .leafIMG-3
    {
        scale: 0.4;
        right: -250px;
    }
    .threeD-slides .leafIMG-4
    {
        scale: 0.4;
        left: -240px;
    } 

}
@media screen and (max-width:500px)
{
    .some-aesthetics .threeD-slides
    {
        padding-top: 100px;
        padding-bottom: 500px;
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container
    {
        height: 10vh;
        padding-top: 100px;
        padding-bottom: 200px;
    }
    @keyframes rotateAnim 
    {
        0%
        {
            transform: translateX(-50%) perspective(1000px) rotateX(-30deg) rotateY(0);
        }
        100%
        {
            transform: translateX(-50%) perspective(1000px) rotateX(-30deg) rotateY(-360deg);
        }
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images
    {
        transform:rotateY(calc( (var(--positionSlide) - 1) * (360deg / 10))) translateZ(110px) scale(0.3); /*move and element to the z direction to look more 3d*/
    }
    .some-aesthetics .threeD-slides-data .threeD-slides-images-container .threeD-slides-images h2
    {
        font-size: 18vw;
    }
    .some-aesthetics .threeD-slides-data .center-img h1
    {
        padding-bottom: 10px;
        font-size: 27px;
        white-space: wrap;
        width: 300px;
        margin: 150px auto 5px auto;
    }
    .some-aesthetics .threeD-slides-data .center-img small
    {
        display: block;
        color: white;
        width: 70%;
        margin: auto;
        font-family: "font-three";
        font-size: 8px;
        /* background-color: red; */
    }
    .threeD-slides .leafIMG
    {
        transform: rotate(100deg) scale(0.4);
        /* display: none; */
    }

    .threeD-slides .leafIMG-3
    {
        scale: 0.3;
        /* display: none; */
    }
    .threeD-slides .leafIMG-4
    {
        scale: 0.3;
        left: -250px;
        display: none;
    } 
}




@media screen and (max-width:1580px)
{
    .scroll-cool
    {
        scale: 0.75;
        left: -40px;
    }
}
@media screen and (max-width:1170px)
{
    .some-aesthetics-text h1
    {
        font-size: 100px;
    }
    .scroll-cool
    {
        scale: 0.55;
        left: -40px;
    }
    .circle-text
    {
        scale: 0.75;
    }
    .some-aesthetics-text .some-aesthetics-center i
    {
        scale: 0.75; 
    }
    
}
@media screen and (max-width:450px)
{
    .circle-text
    {
        scale: 0.45;
    }
    .some-aesthetics-text .some-aesthetics-center
    {
        height: fit-content;
    }
    .some-aesthetics-text .some-aesthetics-center i
    {
        scale: 0.4; 
    }
    .scroll-cool
    {
        scale: 0.3;
    }
    .some-aesthetics-text h1
    {
        font-size: 50px;
    }
    .scroll-cool
    {
        bottom:-150px;
        left: -100px;
    }
}
/* awesome hovers section css code starts */
.hovers-section
{
    width: 100%;
    padding: 20px 20px 200px 20px;
    /* height: 100vh; */
    /* background-color: #E3FF9D; */
    background-color:white;
    position: relative;
    z-index: 20;
    overflow:hidden;
}
.hovers-section .hovers-section-contents
{
    width: 100%;
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles
{
    width: 100%;
    border-bottom: 3px solid black;
    padding: 50px 100px;
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 120px;
    position: relative;
    z-index: 5;
    transform-origin: bottom;
}

.hovers-section .hovers-section-contents .hovers-section-contents-tiles::before
{
    content: "";
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    background-color: #E3FF9D;
    transition: 0.3s ease;
    
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover::before
{
    height: 100%;
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles h3
{
    font-size: 60px;
    font-family: "font-four";
    opacity: 0.8;
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles .hover-data
{
    height: 60px;
    /* line-height: 1.1; */
    overflow: hidden;
}
.hovers-section-contents .hover-cards
{
    position: absolute;
    top:50px;
    right:10%;
    /* transform: translateY(-40%) rotate(-15deg); */
    scale: 0.8;
    width: 400px;
    height:fit-content;
    background-color: #E9E2CC;
    background-size: cover;
    background-position: center;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all cubic-bezier(0.19,1,0.22,1)1s;
    transform-origin: bottom;
}
.hovers-section-contents .hover-cards:nth-child(2)
{
    background-color: #FBBEBB !important;
    color: white !important;
}
.hovers-section-contents .hover-cards h2
{
    font-size: 40px;
    transform: translateY(-50px) scaleY(1.3);
    width: 50%;
    text-transform: uppercase;
    color: #3940CB;
    height: 300px;
    /* padding-bottom: 150px; */
    /* letter-spacing: 2px; */
    font-weight: 100;
    transition: all cubic-bezier(0.19,1,0.22,1)1.5s;
}
.hovers-section-contents .hover-cards h1
{
    position: absolute;
    bottom:-50px;
    right: 20px;
    font-size: 2vw;
    color: #3940CB;
    transition: all cubic-bezier(0.19,1,0.22,1)2s;
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-cards
{
    top:-20px;
    opacity: 1;
    visibility: visible;
    /* top: 50%; */
    scale: 1;
}
.hovers-section .hovers-section-contents .hover-data .h3Effect
{
    transition: 0.4s ease;
    width: 120px;
}
.hovers-section .hovers-section-contents .hover-data .h3Text
{
    transition: 0.8s ease;
    padding-left: 30px;
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Text
{
    transform: translateX(-20px) translateY(-60px);
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Effect
{
    transform: translateX(50px) translateY(-60px);
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-cards h1
{
    font-size: 6vw;
    bottom:0px;
}
.hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-cards h2
{
    font-size: 40px;
    transform: translateY(0) scaleY(1);
}
@media screen and (max-width:1580px)
{
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles
    {
        column-gap: 20px;
    }
    .hovers-section-contents .hover-cards
    {
        scale: 0.8 !important;
    }
}
@media screen and (max-width:1400px)
{
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles
    {
        padding: 50px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles h3
    {
        font-size: 50px;
        font-family: "font-four";
        opacity: 0.8;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles .hover-data
    {
        height: 50px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Text
    {
        transform: translateX(-20px) translateY(-50px);
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Effect
    {
        transform: translateX(50px) translateY(-50px);
    }
}
@media screen and (max-width:1300px)
{
    .hovers-section-contents .hover-cards
    {
        scale: 0.7 !important;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles h3
    {
        font-size: 40px;
        font-family: "font-four";
        opacity: 0.8;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles .hover-data
    {
        height: 40px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Text
    {
        transform: translateX(-20px) translateY(-40px);
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Effect
    {
        transform: translateX(10px) translateY(-40px);
    }
    .hovers-section .hovers-section-contents .hover-data .h3Effect
    {
        transition: 0.4s ease;
        width: 60px;
    }
}
@media screen and (max-width:1000px)
{
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles .hover-data
    {
        height: 30px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Text
    {
        transform: translateX(-20px) translateY(-30px);
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Effect
    {
        transform: translateX(5px) translateY(-30px);
    }
    .hovers-section .hovers-section-contents .hover-data .h3Effect
    {
        transition: 0.4s ease;
        width: 40px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles h3
    {
        font-size: 30px;
        font-family: "font-four";
        opacity: 0.8;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles
    {
        padding: 30px 10px;
    }
    .hovers-section-contents .hover-cards
    {
        scale: 0.6 !important;
    }
}
@media screen and (max-width:650px)
{
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles h3
    {
        font-size: 27px;
        font-family: "font-four";
        opacity: 0.8;
        white-space: nowrap;
    }
    .hovers-section-contents .hover-cards
    {
        scale: 0.6 !important;
        display: none;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Text
    {
        transform: translateX(-20px) translateY(-28px);
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Effect
    {
        transform: translateX(4px) translateY(-28px);
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles .hover-data
    {
        height: 25px;
    }
    .hovers-section .hovers-section-contents .hover-data .h3Effect
    {
        transition: 0.4s ease;
        width: 37px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles
    {
        column-gap: 0;
    }
}
@media screen and (max-width:470px)
{
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles h3
    {
        font-size: 20px;
        opacity: 1;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles
    {
        padding: 20px 0px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles .hover-data
    {
        height: 20px;
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Text
    {
        transform: translateX(-10px) translateY(-20px);
    }
    .hovers-section .hovers-section-contents .hovers-section-contents-tiles:hover .hover-data .h3Effect
    {
        transform: translateX(4px) translateY(-20px);
    }
    .hovers-section .hovers-section-contents .hover-data .h3Effect
    {
        transition: 0.4s ease;
        width: 30px;
    }
    .hovers-section .hovers-section-contents .hover-data .h3Text
    {
        transition: 0.8s ease;
        padding-left: 20px;
    }
}
/* awesome hovers section css code ends */

/* bottoms section css code starts */
.bottoms
{
    padding: 20px;
    width: 100%;
    height: 450px;
    background-color: #CCD6EF;
    z-index: 10;
    position: relative;
    overflow: hidden;
    /* background: url('../images/aesthetic.jpg'); */
    background-size: cover;
    background-position: center;
}
.bottoms .ashkrrish
{
    display: flex;
    position: absolute;
    bottom:-20px;
    left: 50%;
    transform: translateX(-50%) perspective(1000px);
    justify-content: center;
    transform-style: preserve-3d;
}
.bottoms .ashkrrish span
{
    position: relative;
    z-index: 10;
    font-size: 20vw;
    font-family: "font-two";
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #2A3245;
    z-index: 1;
    -webkit-text-stroke: 3px rgb(3, 168, 171);
    color: transparent;
    background: url('../images/textbg.jpg');
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-position:bottom;
    transition: 0.3s ease;
    
}
.bottoms .ashkrrish span:hover
{
    color: transparent;
    transform: translateZ(100px);
    background: url('../images/hover-8.jpg');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px rgb(3, 168, 171);

}
.bottoms .ashkrrish span:hover + * 
{
    transform: translateZ(70px) rotate(40deg);
}
.bottoms .ashkrrish span:hover + *  + * 
{
    transform: translateZ(50px) rotate(20deg);
}
.bottoms .ashkrrish span:has(+ *:hover) 
{
    transform: translateZ(70px) rotate(-40deg);
}
.bottoms .ashkrrish span:has(+ *:hover )
{
    transform: translateZ(50px) rotate(-20deg);
}
.bottoms .ashkrrish span:nth-child(2)
{
    /* background: url('https://media0.giphy.com/media/3oKIPiQlhna3B3yL4c/giphy.webp?cid=ecf05e47cykyru6gik8fcbunz8gseg18owizvpoz769bu8zn&ep=v1_gifs_related&rid=giphy.webp&ct=g'); */
    /* color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}
.bottoms .ashkrrish span:nth-child(3)
{
    /* background: url('https://media0.giphy.com/media/TlDdgIsop5FNm/200.webp?cid=ecf05e47b90it6xlp98t1lvsaynvibfm8qiosuvz5ie3dmpd&ep=v1_gifs_search&rid=200.webp&ct=g'); */
    /* color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(4)
{
    /* background: url('https://media2.giphy.com/media/YqTzLj0Vzct9K/giphy.webp?cid=ecf05e472c90blchllxrh6m7gn2xmseqpeg910zcvrzq4v0d&ep=v1_gifs_search&rid=giphy.webp&ct=g'); */
    /* color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(5)
{
    /* background: url('https://media1.giphy.com/media/8Lc5xmvzRhlLy/100.webp?cid=790b7611x5hu7618tvxxczhj78h2pnhp8ltfa0o61zoo4irh&ep=v1_gifs_search&rid=100.webp&ct=g');
    color: transparent; */
    /* background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(6)
{
    /* background: url('https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExcjFkOG1oOXljbXhsbjBpbnRmbHNqcjkwc2ViN2o0dW4wamI1MWV5ayZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/zoPWU7WfAON1K/giphy.gif'); */
    /* color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(7)
{
    /* background: url('https://media0.giphy.com/media/l378oRMuApI3a35Cg/giphy.webp?cid=ecf05e47mba48h0zvasyze6i0tkuwxws7i1khutdw81w43fc&ep=v1_gifs_search&rid=giphy.webp&ct=g'); */
    /* color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(8)
{
    /* background: url('https://media2.giphy.com/media/3o6ZsVFmM1QYlsrZbq/200w.webp?cid=ecf05e475y9khp7oz39vd5vydrm9mbufob0kpjp342lwxxop&ep=v1_gifs_related&rid=200w.webp&ct=g');
    color: transparent; */
    /* background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(9)
{
    /* background: url('https://media3.giphy.com/media/3ohze2SrEKW2nAEJzO/200w.webp?cid=ecf05e475y9khp7oz39vd5vydrm9mbufob0kpjp342lwxxop&ep=v1_gifs_related&rid=200w.webp&ct=g');
    color: transparent; */
    /* background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .ashkrrish span:nth-child(10)
{
    /* background: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExcXB5dHdqemd4ZnFsMDl6bXphdzgyYnV6a2FjeDVjb3FwcWc4eWlmeiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/SAHZ8m5evsPTJexj1T/giphy.gif'); */
    /* color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
   
}
.bottoms .creative-wheel
{
    background-color: #F4673D;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position:relative;
    animation: wheelanim 15s linear infinite;
}
@keyframes wheelanim
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
.bottoms .creative-wheel::before
{
    content: "A.K";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "font-two";
    font-size: 50px;
    font-weight: 100;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.313);
    animation: wheelanim2 15s linear infinite;
    color: #2A3245;
}
@keyframes wheelanim2
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(-360deg);
    }
}
.bottoms .creative-wheel span
{
    position: absolute;
    inset: 18px;
    transform: rotate(calc(var(--creative) * (360deg/28)));
    display: inline-block;
    text-align: center;
    font-family: "font-four";
    font-weight: bold;
    color: #2A3245;
    -webkit-text-stroke: 1px #2A3245;
    /* background-color: red; */
}
@media screen and (max-width:1580px)
{
    .bottoms .ashkrrish span
    {
        font-size: 25vw;
    }
}
@media screen and (max-width:1000px)
{
    .bottoms
    {
        height: 400px;
    }
}
@media screen and (max-width:750px)
{
    .bottoms
    {
        height: 350px;
    }
    .bottoms .ashkrrish span
    {
        letter-spacing: 4px;
     -webkit-text-stroke: 0px rgba(3, 168, 171, 0);

    }
    
}
@media screen and (max-width:450px)
{
    .bottoms
    {
        height: 280px;
    }
    .bottoms .creative-wheel
    {
        scale: 0.85;
    }
    .bottoms .ashkrrish
    {
        display: flex;
        position: absolute;
        bottom:0px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
}
/* bottoms section css code ends */
.scrollTopBtn
{
    position: fixed;
    bottom:50px;
    right: 50px;
    z-index: 100;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    border:2px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.652), inset 5px 5px 5px rgba(0, 0, 0, 0.313);
    cursor: pointer;
}
.scrollTopBtn h2
{
    font-size: 16px;
    width: 80%;
    color: var(--text-color);
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.652);
}
.scrollTopBtn:hover
{
    background-color: var(--theme-color);
}

/* Responsiveness */
@media screen and (max-width:1300px)
{
    .emoji-container .emoji
    {
        scale: 0.8;
    }
}
@media screen and (max-width:1050px)
{
    .emoji-container .emoji
    {
        scale: 0.65;
    }
}
@media screen and (max-width:700px)
{
    .logo h3
    {
      font-size: 20px !important;
    }
    .emoji-container .emoji
    {
        scale: 0.5;
    }
}
@media screen and (max-width:460px)
{
    .logo h3
    {
      font-size: 15px !important;
    }
    .emoji-container .emoji
    {
        scale: 0.25;
    }
    header 
    {
        padding: 20px 15px !important;
    }
    header a
    {
        font-size: 10px !important;
        padding: 6px 15px !important;
    }
    .center-text h1
    {
        font-size: 18.5vw !important;
        /* background-color: red; */
    }
}

@media screen and (max-width:1600px)
{
    .images-popups-container .image-box .images
    {
       scale: 0.75;
    }
}
@media screen and (max-width:1400px)
{
    .images-popups-container .image-box .images
    {
       scale: 0.6;
    }
    .images-popups-container
    {
        scale: 0.7;
    }
    .images-popups-container .image-box .images.img-15
    {
        top:45%;
        left: 15%;
        background: url('../images/hover-11.avif');
        background-size: cover;
        background-position: center;
    }
    .images-popups-container .image-box .images.img-11
    {
        top:70% !important;
    }
    .images-popups-container .image-box .images.img-15
    {
        top:30% !important;
    }
}
@media screen and (max-width:700px)
{
    .images-popups-container .image-box .images
    {
        scale: 0.45;
    }
    .images-popups-container .image-box .images.img-3
    {
        top:20% !important;
    }
}

@media screen and (max-width:1700px)
{
    .who-we-are
    {
        height: 100%;
        overflow-x: hidden;
        padding: 20px 20px 120px 20px;
    }
    .who-we-are-cols
    {
        scale: 0.8;
        width: 1500px;
        gap:50px;
        /* background-color: red; */
    }
    .who-we-are-cols .abouts
    {
        flex-basis: 38%;
    }
}

@media screen and (max-width:1520px)
{
    .who-we-are-cols
    {
        scale: 0.8;
        width: 100%;
    }
    .who-we-are-cols .abouts
    {
        flex-basis: 42%;
    }
}
@media screen and (max-width:1170px)
{

    .who-we-are-cols
    {
        scale: 0.8;
        width: 100%;
        gap:35px;
    }
    .who-we-are-cols .abouts 
    {
        flex-basis: 45%;
    }
    .who-we-are .abouts .profile-img
    {
        scale: 0.9;
    }
    .who-we-are-cols .abouts.special-blob::before, .who-we-are-cols .abouts.special-blob::after
    {
        left: -130px !important;
    }
    .who-we-are-cols .abouts.special-blob-two::before, .who-we-are-cols .abouts.special-blob-two::after
    {
        right: -130px !important;
    }
}

@media screen and (max-width:1000px)
{
    .who-we-are
    {
        height: 100% !important;
    }
    .who-we-are-cols
    {
        flex-wrap: wrap;
        row-gap: 300px;
        scale: 0.9;
        padding-top: 50px;
    }
    .who-we-are-cols .abouts 
    {
        flex-basis: 100%;
    }
    .who-we-are .abouts .profile-img
    {
        scale: 1;
    }
    .who-we-are-cols .abouts.special-blob::before, .who-we-are-cols .abouts.special-blob::after,  .who-we-are-cols .abouts.special-blob-two::before, .who-we-are-cols .abouts.special-blob-two::after
    {
        font-size: 60px;
    }
    .who-we-are-cols .abouts.special-blob::before, .who-we-are-cols .abouts.special-blob::after
    {
        left: -120px !important;
    }
    .who-we-are-cols .abouts.special-blob-two::before, .who-we-are-cols .abouts.special-blob-two::after
    {
        right: -120px !important;
    }
    .who-we-are h1
    {
        width: 100%;
    }
}
@media screen and (max-width:580px)
{
    .who-we-are h1
    {
      font-size: 40px;
    }
    .who-we-are-cols .abouts.special-blob::before
    {
        left: -100px !important;
        padding-left: 50px;
    }
    .who-we-are-cols .abouts.special-blob-two::before
    {
        right: -100px !important;
        padding-right: 50px;
    }
    .who-we-are .abouts .profile-img
    {
        scale: 0.85;
    }
    .scrollTopBtn
    {
        scale: 0.75;
        right: 10px;
    }
}
@media screen and (max-width:450px)
{
    .who-we-are-cols
    {
        padding-top: 20px;
    }
    .who-we-are h1
    {
      padding-top: 0px;
      font-size: 30px;
    }
    .who-we-are-cols .abouts.special-blob::before, .who-we-are-cols .abouts.special-blob::after,  .who-we-are-cols .abouts.special-blob-two::before, .who-we-are-cols .abouts.special-blob-two::after
    {
        font-size: 45px;
        height: 70px;
    }
    .who-we-are .abouts .profile-img
    {
        scale: 0.7;
    }
    .who-we-are .abouts .profile-img
    {
        margin-top: 60px;
        height: fit-content;
        margin-bottom: 50px;
    }
    .who-we-are .abouts small
    {
        font-size: 13px;
    }
    .who-we-are .abouts .skills
    {
        scale: 0.9;
    }
}
@media screen and (max-width:380px)
{
    .who-we-are .abouts .skills
    {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 5px;
        scale: 0.85;
    }
    .who-we-are .abouts .profile-img
    {
        scale: 0.65;
        margin-bottom: 60px;
    }
}

/* css code for canvas physics starts*/
.canvas-container
{
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    z-index: 20;
    position: relative;
    padding: 20px 20px 150px 20px;
    overflow: hidden;

}
.canvas-container .canvas-container-insides 
{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
    user-select: none;
}
.canvas-container .canvas-container-insides .animate-tags
{
    /* transition: 0.4s ease; */
}
.canvas-container .canvas-container-insides h1
{
    font-size: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
    text-transform: uppercase;
    white-space: nowrap;
    
}
.canvas-container .canvas-container-insides h1 img
{
    width: 350px;
    height: 130px;
    background-color: greenyellow;
    object-fit: cover;
    transform: translateY(-10px);
}
.canvas-container .canvas-container-insides h3
{
    font-size: 60px;
    font-weight: 100;
    position:relative;
    z-index: 1;
}
.canvas-container .canvas-container-insides h3::before
{
    content: "";
    position: absolute;
    bottom:-30px;
    left: -30%;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg) rotateX(180deg) scale(3);
    background: url('../images/arrow.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /* border:4px solid red; */
    z-index: -1;
}
.canvas-container .canvas-container-insides h2
{
    font-size: 100px;
    font-weight: 100;
}
.canvas-container .canvas-container-insides img
{
    width:500px;
    height: 400px;
    margin-top: 20px;
    object-fit: cover;
    z-index: -2;
    position: relative;
    border-radius: 35px;
    /* scale: 1.2; */
}
.canvas-container .canvas-container-insides:nth-child(2)
{
    margin-bottom: 40px;
}
.canvas-container .canvas-container-insides p
{
    font-family: "font-four";
    font-weight: bold;
    line-height: 1.3;
    font-size: 14px;
}
.canvas-container #canvasPills
{
    width: 100%;
    height: 100%;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(188, 143, 143, 0.29); */
    z-index: 1;
    display: block;
    opacity: 0;
}

@media screen and (max-width:1200px)
{
    .canvas-container .canvas-container-insides h1 img
    {
        width: 200px;
        height: 90px;
        background-color: greenyellow;
        object-fit: cover;
        transform: translateY(-10px);
    }
    .canvas-container #canvasPills
    {
        display: none;
    }
    .canvas-container .canvas-container-insides h2
    {
        font-size: 60px;
    }
    .canvas-container .canvas-container-insides h3::before
    {
        transform: rotate(-90deg) rotateX(180deg) scale(2);
    }
}
@media screen and (max-width:990px)
{
    .canvas-container .canvas-container-insides
    {
        column-gap: 20px;
    }
    .canvas-container .canvas-container-insides h3
    {
        font-size: 35px;
    }
    .canvas-container .canvas-container-insides h2
    {
        font-size: 50px;
    }
}
@media screen and (max-width:780px)
{
    .canvas-container .canvas-container-insides h3
    {
        font-size: 30px;
    }
    .canvas-container .canvas-container-insides h2
    {
        font-size: 40px;
    }
    .canvas-container .canvas-container-insides h1 img
    {
        width: 180px;
    }
    .canvas-container .canvas-container-insides h1
    {
        font-size: 8vw;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 20px;
        text-transform: uppercase;
        white-space: nowrap;
        
    }
}
@media screen and (max-width:690px)
{
    .canvas-container
    {
        height: 100%;
    }
    .canvas-container .canvas-container-insides
    {
        flex-wrap: wrap;
        row-gap: 50px;
    }
    .canvas-container .canvas-container-insides h3::before
    {
        content: "";
        position: absolute;
        bottom:-20px;
        left: -40%;
    }
    .canvas-container .canvas-container-insides h1 img
    {
        width: 280px;
        height: 100px;
    }
    .canvas-container .canvas-container-insides h1
    {
        font-size: 10vw;
        flex-wrap: wrap;
        row-gap: 20px;
    }
}
/* css code for canvas physics ends*/

/* some popups section css code starts */
.some-popups
{
    width: 100%;
    /* height: 100vh; */
    position: relative;
    z-index: 20;
    background-color: white;
    text-align: center;
    /* padding: 10px 0; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content:left;
    pointer-events: none;
    transform-style: preserve-3d;
}
.some-popups .some-popups-texts
{   
    width: 200%;
    height: 100vh;
    /* padding: 20px 0; */
    flex-wrap: nowrap; 
}
.some-popups .some-popups-texts h1:nth-child(2n+1)
{
    transform: rotateY(180deg);
}
.some-popups .some-popups-texts h1
{
    font-size: 15vw;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: "font-three";
    line-height: 0.8;
}
.some-popups .awesome-popups
{
    width: 350px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: absolute;
    bottom:270px;
    left: 50%;
    transform: translateX(-50%) scale(1.15) perspective(1000px);
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.286); */
    pointer-events: none;
}
.some-popups .awesome-popups img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1000px)
{
    .some-popups .awesome-popups
    {
         transform: translateX(-50%) scale(0.85) perspective(1000px);
    }
}
@media screen and (max-width: 450px)
{
    .some-popups .awesome-popups
    {
         transform: translateX(-50%) scale(0.75) perspective(1000px);
    }
}
@media screen and (max-width: 380px)
{
    .some-popups .awesome-popups
    {
         transform: translateX(-50%) scale(0.6) perspective(1000px);
    }
}
/* some popups section css code ends */

/* copyright Section code starts */
.copyright
{
    width: 100%;
    padding: 20px;
    background: white;
    color: black;
    text-align: center;
    position: relative;
    z-index: 20;
}
.copyright p
{
    color: var(--primary-main-color-blue);
    font-size: 14px;
    font-family: "font-three";
    font-weight: 100;
}
.copyright a
{
    color: var(--theme-color);
    font-weight: bold;
    font-size: 14px;
    font-family: "font-three";

}
/* copyright Section code ends */


.preloader
{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--text-color);
    z-index: 1000;
}   
.loading-counter-bottom
{
    position: relative;
    width: 100%;
    height: 100%;
}
.loading-counter-bottom .loading-counter
{
    position: absolute;
    bottom: 100px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0px;
    scale: 1.4;
}
.loading-counter-bottom .loading-counter .nums
{
    width: 35px;
    height: 30px;
    /* background-color: red; */
    display: flex;
    text-align: center;
    flex-direction: column;
    
    overflow: hidden;
    
}
.loading-counter-bottom .loading-counter .nums span
{
    font-size: 30px;
    font-family: "font-three";
    transform: translateY(0px);
    line-height: 1;
    display: block;
    /* transition: 1s ease; */
}
.preloader .preoloader-tiles
{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* column-gap: 10px; */
}
.preloader .preoloader-tiles .preoloader-tiles-texts
{
    /* background-color: red; */
    width:fit-content;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.preloader .preoloader-tiles .preoloader-tiles-texts h1
{
    font-size: 20vw;
    font-family: "font-two";
    /* transform: scaleY(1.4) scaleX(1.2); */
    transform: scale(0.3);
    color: rgb(0, 0, 0);
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.313);
}
@media screen and (max-width: 1185px)
{
    .preloader .preoloader-tiles .preoloader-tiles-texts h1
    {
        font-size: 180px;
    }
}
@media screen and (max-width: 930px)
{
    .preloader .preoloader-tiles .preoloader-tiles-texts h1
    {
        font-size: 150px;
    }
    .preloader .preoloader-tiles .preoloader-tiles-texts
    {
        padding: 10px;
    }
}

@media screen and (max-width: 700px)
{
    .preloader .preoloader-tiles .preoloader-tiles-texts h1
    {
        font-size: 100px;
    }
    .preloader .preoloader-tiles .preoloader-tiles-texts
    {
        padding: 5px;
    }
}
@media screen and (max-width: 450px)
{
    .preloader .preoloader-tiles .preoloader-tiles-texts h1
    {
        font-size: 80px;
    }
    .preloader .preoloader-tiles .preoloader-tiles-texts
    {
        padding: 5px;
    }
}
@media screen and (max-width: 380px)
{
    .preloader .preoloader-tiles .preoloader-tiles-texts h1
    {
        font-size: 75px;
    }
    .preloader .preoloader-tiles .preoloader-tiles-texts
    {
        padding: 3px;
    }
}