@font-face 
{
    font-family: 'Tungsten-Bold';
    src: url("../font/Tungsten-Bold.ttf") format("truetype"); 
    font-weight: bold;
    font-style: normal;
}


/* head part */
html
{
    background-color: rgb(31, 43, 55);
}

.topleft
{
    background-color: #111;
    display: flex;
    position: fixed;
    align-items: center;
    height: 75px;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 10;
}

img.logo
{
    margin: 0;
    max-width: 75%;
    max-height: 75%;
    margin-left: 15px;
    margin-right: 5px;
}

h1.kronos {
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    margin: 0;
    margin-left: 10px;
}

.nav_cont
{
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.nav1
{
    position: relative;
    top: 0px;
    margin-bottom: auto;
    list-style: none;
}

.nav2
{
    margin-left: auto;
    padding-right: 2vw;
}

li
{
    display: inline-block;
    margin-right: 20px;
    border-radius: 15px;
}

.navlink
{
    text-decoration: none;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 13px;
    padding: 7px 13px;
}

.navdown
{
    text-decoration: none;
    color: #111;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 10px;
    background-color: rgb(219, 61, 61);
    border-radius: 7px;
    letter-spacing: 3px;
}

.lidown2
{ 
    display: none;
}

.navdown:hover
{
    transition: 0.3s;
    color: rgb(176, 50, 50);
}

.navlink:hover
{
    transition: 0.3s;
    color: rgb(254, 98, 98);
    background-color: rgb(66, 65, 65);
    border-radius: 7px;
}


/* top body part */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.team
{
    background-color: rgb(240, 240, 240);
    display: flex;
    padding-bottom: 40px;
    margin: 0% 13% 0% 13%;
    flex-direction: column;
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.center h1
{
    padding-top: 70px;
    color: #000000;
    font-size: 3.5rem;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.team-content {
    width: 80%;
    max-width: 1350px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.row1 
{
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 120%;
}

.row2
{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.team-content img
{
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}


.box
{
    width: 170px;
    padding: 16px;
    background: #1b1229;
    border-radius: 15px;
    transition: all 0.38s ease;
}

.cont
{
    transition: opacity 0.3s ease;
}

.texth
{
    position: absolute;
    top: 45%;
    left: 50%;
    color: white;
    font-size: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 1rem;
    width: 20%;
    line-height: 1.1rem;
    max-height: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

.box:hover .cont{
    opacity: 0;
}

.box:hover .texth {
    opacity: 1;
    width: 90%;
    font-size: 0.9rem;
    transform: translate(-50%, -50%);
    display: block;
}

.box h3
{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.box h5
{
    font-size: 11px;
    font-weight: 600;
    color: #b7b4bb;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.icons i
{
    display: inline-block;
    color: #fff;
    font-size: 28px;
    margin: 0 8px;
    transition: all 0.38s ease;
}

.icons i:hover
{
    transform: scale(1.2);
}

.box:hover
{
    transform: translateY(-10px);
    cursor: pointer;
}

.smalltext
{
    background-color: rgb(240, 240, 240);
    display: flex;
    padding-bottom: 40px;
    padding-top: 40px;
    margin: 0% 13% 0% 13%;
    flex-direction: column;
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.smalltext p
{
    padding-left: 60px;
    padding-right: 60px;
    max-width: 65%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    text-align: center;
    line-height: 1.6rem;
}

.copyright 
{
    flex-grow: 1;
}

.ytb1
{
    position: relative;
    top: 15px;
    height: 25px;
    width: 25px;
    background: rgba(128, 128, 128, .2);
    border-radius: 12px;
    padding: 13px;
}

.insta1
{
    position: relative;
    top: 15px;
    height: 25px;
    width: 25px;
    background: rgba(128, 128, 128, .2);
    border-radius: 12px;
    padding: 13px;
}

.git1
{
    position: relative;
    top: 15px;
    height: 25px;
    width: 25px;
    background: rgba(128, 128, 128, .2);
    border-radius: 12px;
    padding: 13px;
}

.alogoL
{
    position: relative;
    left: -20px;
}

.alogoL2
{
    position: relative;
}

.alogoL3
{
    position: relative;
    left: 20px;
}

.copyright
{
    background-color: #111;
    padding-bottom: 0%;
    margin: 0% 13% -8px 13%;
}

.logocopy
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.Pcopy
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20%;
    padding-right: 20%;
}

.copyP
{
    text-align: center;
    font-size: 13px;
    color: #7e7e7e;
}

.open-menu , .close-menu
{
    position: absolute;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.close-menu
{
    top: 20px;
    right: 20px;
}

#check 
{
    display: none;
}





@media (max-width: 1150px)
{
    .row1, .row2
    {
        gap: 2rem;
    }

    .box
    {
        width: 150px;
    }

    .team-content img
    {
        height: 140px;
    }
}





@media (max-width: 950px) 
{
    .team, .smalltext, .copyright
    {
        margin: 0;
    }

    h1.we, h1.we2
    {
        margin-left: 30px;
        padding-top: 20px;
        font-size: 7vw;
    }

    .p1, .p2
    {
        font-size: 2vw;
        margin-left: 30px;
    }

    .ul2
    {
        margin-left: 30px;
    }

    .li2 a, .li3 a
    {
        font-size: 1.5vw;
    }

    .navdown2, .navdown3
    {
        padding: 1.3vw 1.4vw;
    }

    .Pcopy
    {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 8vw;
        padding-bottom: 6vw;
        padding-left: 20%;
        padding-right: 20%;
    }

    .ytb1
    {
        position: relative;
        top: 15px;
        height: 2.5vw;
        width: 2.5vw;
        background: rgba(128, 128, 128, .2);
        border-radius: 12px;
        padding: 13px;
    }

    .insta1
    {
        position: relative;
        top: 15px;
        height: 2.5vw;
        width: 2.5vw;
        background: rgba(128, 128, 128, .2);
        border-radius: 12px;
        padding: 13px;
    }

    .git1
    {
        position: relative;
        top: 15px;
        height: 2.5vw;
        width: 2.5vw;
        background: rgba(128, 128, 128, .2);
        border-radius: 12px;
        padding: 13px;
    }

    .alogoL
    {
        position: relative;
        left: -2.5vw;
    }

    .alogoL2
    {
        position: relative;
    }

    .alogoL3
    {
        position: relative;
        left: 2.5vw;
    }

    .copyP
    {
        text-align: center;
        font-size: 1.8vw;
        color: #7e7e7e;
    }
}





@media (max-width: 830px) {
    .open-menu 
    {
        display: block;
    }

    .nav1 , .nav2
    {
        display: none;
    }

    .nav_cont .nav1
    {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 50%;
        background-color: #111;
        z-index: 100;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.25s ease, opacity 0.25s ease;
        display: flex;
    }

    #check:checked ~ .nav_cont .nav1
    {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav1 .menu ul
    {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    
    .nav1 .menu ul li
    {
        margin: 0;
    }

    .nav1 .menu ul li a
    {
        font-size: 1rem;
        text-decoration: none;
    }

    .lidown2
    {
        display: flex;
    }
    
    .navdown
    {
        padding: 10px 60px;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 19.5px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }
}





@media (max-width: 505px)
{

    .nav_cont .nav1
    {
        width: 100%;
    }

}





@media (max-width: 530px)
{
    .smalltext p
    {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 75%;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 14px;
        text-align: center;
        line-height: 1.4rem;
    }

    .center h1
    {
        font-size: 2.5rem;
    }

    
    .row2
    {
        flex-direction: column;
        align-items: center;
    }
}





@media (max-width: 505px)
{
    .copyP
    {
        font-size: 10px;
    }

    .ytb1, .insta1, .git1
    {
        height: 20px;
        width: 20px;     
    }

    .alogoL
    {
        left: -15px;
    }

    .alogoL3
    {
        left: 15px;
    }

    h1.we2, h1.we
    {
        font-size: 10vw;
    }

    .p1, .p2
    {
        font-size: 3vw;
        max-width: 75%;
    }

    .smalltext p
    {
        font-size: 17px;
        width: 80%;
    }
}