@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Poppins;
    overflow-x: hidden;
}
.top {
    padding: 0 0 80px 0;
    background-color: #101010;
    margin-bottom: 50px;
}
.top nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 175px;
    font-family: Inter;
}
.top nav .logo{
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 5px;
}
.top nav .logo img {
    width: 30px;
}
.top nav .logo p {
    font-size: 25px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
}
.top nav .links {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-right: 0px;
}
.top nav .links a{
    color: white;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.top nav .links li {
    list-style: none;
    color: white;
    font-size: 13.5px;
    cursor: pointer;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.top nav .links li img {
    width: 12px;
    filter: invert(1);
    transition: 400ms;
}
.top nav .links li:hover img {
    transform: rotate(-180deg);
}

.top nav .contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top nav .contact-btn a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.top nav .contact-btn .btn {
    height: 40px;
    width: 110px;
    background-color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.top nav .contact-btn .btn p img {
    width: 12px;
    background-color: transparent;
    transition: 400ms;
}
.top nav .contact-btn .btn p {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 400ms ease-in-out;
}
.top nav .contact-btn .btn p i {
    width: 15px;
    height: 12px;
    overflow: hidden;
}
.top nav .contact-btn .btn p i span {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    transition: 300ms;
    transform: translateX(-15px);
}
.top nav .contact-btn .btn .top {
    height: 70px !important;
    width: 150px !important;
    position: absolute;
    background-color: #4c4c4c;
    left: -100px;
    top: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.top nav .contact-btn .btn .bottom {
    height: 150px;
    width: 150px;
    position: absolute;
    background-color: #4c4c4c;
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.top nav .contact-btn .btn:hover>span {
    scale: 1.3;
} 
.top nav .contact-btn .btn:hover p {
    color: white;
} 
.top nav .contact-btn .btn:hover img {
    filter: invert(1);
} 
.top nav .contact-btn .btn:hover p i span {
    transform: translateX(0px);
}
.top nav .links .drop-btn {
    position: relative;
}
.top nav  .extra-nav {
    position: absolute;
    z-index: 10;
    background-color: white;
    padding: 10px 10px 10px 10px;
    transform: translateY(100px);
    margin-left: 78px;
    opacity: 0;
    transition: 400ms;
}
.top nav  .extra-nav a {
    color: black;
    padding: 5px;
    width: 100px;
    transition: 300ms;
}
.top nav .extra-nav a:hover {
    background-color: #f0f0f0;
}
.top nav .drop-btn:hover .extra-nav {
    opacity: 1;
    transform: translateY(60px);
}
.menu {
    z-index: 100;
    display: none; 
}
.menu .menu-btn {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
} 
.menu .menu-btn img {
    width: 25px;
}
.menu-links {
    position: absolute;
    width: 100%;
    background-color: #0C0504;
    left: 0;
    top: 75px;
    padding: 30px 20px 30px 20px;   
    z-index: 99;
    border-top: 1px solid white;
    transform: translateY(100px);
    opacity: 0;
    /* display: none; */
    transition: 400ms;
    font-family: Inter;
}
.menu-links a {
    padding: 15px 0px;
    font-size: 16px !important;
    display: block;
    color: white;
    text-decoration: none;
    font-family: Inter;
    font-size: 15px;
}
.menu-links.active {
    opacity: 1;
    transform: translateY(0px);
}
.menu-links .btn {
    height: 40px;
    width: 105px;
    background-color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.menu-links .btn p img {
    width: 12px;
    background-color: transparent;
    transition: 400ms;
}
.menu-links .btn p {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 400ms ease-in-out;
}
.menu-links .btn p i {
    width: 15px;
    height: 12px;
    overflow: hidden;
}
.menu-links .btn p i span {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    transition: 300ms;
    transform: translateX(-15px);
}
.menu-links .btn .top {
    height: 70px !important;
    width: 150px !important;
    position: absolute;
    background-color: #4c4c4c;
    left: -100px;
    top: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.menu-links .btn .bottom {
    height: 150px;
    width: 150px;
    position: absolute;
    background-color: #4c4c4c;
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.menu-links .btn:hover>span {
    scale: 1.3;
} 
.menu-links .btn:hover p {
    color: white;
} 
.menu-links .btn:hover img {
    filter: invert(1);
} 
.menu-links .btn:hover p i span {
    transform: translateX(0px);
}

.hero {
    margin: 0px 180px;
    display: flex;
    justify-content: center;
}
.hero .header {
    display: flex;
    margin-top: 70px;
    justify-content: space-between;
    width: 100%;
}
.hero .header h1 {
    font-size: 120px;
    text-align: center;
    color: white;
    font-family: Poppins;
    font-weight: 500;
    letter-spacing: -10px;
    margin-top: -20px;
    /* margin: 0 180px; */
    line-height: 110px;
    width: 700px;
}
.hero .header p {
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    font-family: Poppins;
    font-weight: 700;
    line-height: 16px;
    margin-top: 320px;
}
.hero .header p span {
    color: #9E9E9E;
}
/* .projects .filter-scroll {
    width: 100%;
    overflow-x: scroll;
} */
.projects .filters {
    display: flex;
    gap: 8px;
    font-family: Inter;
    font-size: 20px;
    color: #878787;
    margin-left: 180px;
    letter-spacing: -1px;
    margin-bottom: 30px;
    margin-top: 120px;
}
.projects .filters a {
    text-decoration: none;
    color: #878787;
}

.projects .project-grid {
    display: flex;
    /* place-items: center; */
    justify-content: center;
    margin: 20px 160px 120px 160px;
    flex-wrap: wrap;
    gap: 30px;
}
.project-grid .card {
    margin-bottom: 20px;
}
.project-grid .card .image {
    width: 600px;
    height: 455px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    transition: 300ms;
    display: flex;
    justify-content: center;
}
.project-grid .card .image>img {
    width: 850px;
    margin-left: -100px;
    margin-top: -20px;
    transition: 500ms;
}
.project-grid .card .image .cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.project-grid .card h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1.5px;
}
.project-grid .card>p {
    color: #4c4c4c;
    font-family: Inter;
    letter-spacing: -0.4px;
    font-size: 14px;
    font-weight: 500;
    width: 580px;
    line-height: 22px;
}
.project-grid .card .image {
    background-color: #101010;
}
.project-grid .image .btn {
    height: 40px;
    width: 130px;
    background-color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    transition: 300ms;
}
.project-grid .image .btn p img {
    width: 12px;
    background-color: transparent;
    transition: 400ms;
}
.project-grid .image .btn p {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: black;
    font-weight: 600;
    transition: 400ms ease-in-out;
    justify-content: center;
}
.project-grid .image .btn p i {
    width: 15px;
    height: 12px;
    overflow: hidden;
}
.project-grid .image .btn p i span {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    transition: 300ms;
    transform: translateX(-15px);
}
.project-grid .image .btn .top {
    height: 70px !important;
    width: 150px !important;
    position: absolute;
    background-color: black;
    left: -90px;
    top: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.project-grid .image .btn .bottom {
    height: 150px;
    width: 180px;
    position: absolute;
    background-color: black;
    bottom: -100px;
    right: -110px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.project-grid .image .btn:hover>span {
    scale: 1.4;
} 
.project-grid .image .btn:hover p {
    color: whitesmoke;
} 
.project-grid .image .btn:hover img {
    filter: invert(1);
} 
.project-grid .image .btn:hover p i span {
    transform: translateX(0px);
}
.project-grid .image:hover .btn {
    opacity: 1;
}
.project-grid .card:hover .image>img {
    scale: 1.2;
    opacity: 0.8;
}


.error {
    text-align: center;
    margin: 0px 0px 200px 0px;
    font-family: Inter;
}
.error h2 {
    font-size: 300px;
    font-weight: 600;
    letter-spacing: -20px;
}
.error h3 {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -1px;
    color: rgba(0, 0, 0, 0.821);
}
.error>p {
    color: #4c4c4c;
    font-size: 18px;
    line-height: 27px;
    margin-top: 20px;
}

.error .btn {
    height: 40px;
    width: 150px;
    background-color: black;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
}
.error .btn p img {
    width: 12px;
    background-color: transparent;
    transition: 400ms;
    filter: invert(1);
}
.error .btn p {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 400ms ease-in-out;
    color: white;
}
.error .btn p i {
    width: 15px;
    height: 12px;
    overflow: hidden;
}
.error .btn p i span {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    transition: 300ms;
    transform: translateX(-15px);
}
.error .btn .top {
    height: 70px !important;
    width: 150px !important;
    position: absolute;
    background-color: #4c4c4c;
    left: -100px;
    top: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.error .btn .bottom {
    height: 150px;
    width: 150px;
    position: absolute;
    background-color: #4c4c4c;
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    scale: 0;
    z-index: 1;
    transition: 400ms ease-in-out;
}
.error .btn:hover>span {
    scale: 1.6;
} 
.error .btn:hover p {
    color: white;
} 
.error .btn:hover img {
    filter: invert(1);
} 
.error .btn:hover p i span {
    transform: translateX(0px);
}
footer {
    padding: 100px 180px 30px 180px;
    background-color: rgb(12, 5, 4);
    height: 112vh;
}
footer .header{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 100px;
    position: relative;
}
footer .header h2 {
    font-size: 200px;
    letter-spacing: -22px;
    line-height: 170px;
    font-weight: 500;
    color: white;
}
footer .header a {
    position: absolute;
    right: 0px;
}
footer .header .btn {
    height: 300px;
    width: 300px;
    background-color: #313131;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50%;
}
footer .header .btn p i span img {
    width: 10px;
    background-color: transparent;
    transition: 600ms;
    filter: invert(1);
}
footer .header .btn p {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    transition: 400ms ease-in-out;
    justify-content: center;
}
footer .header .btn p i {
    width: 16px;
    height: 12px;
    overflow: hidden;
}
footer .header .btn p i span {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    transition: 300ms;
    transform: translateX(-16px);
}
footer .header .btn .top {
    height: 300px;
    width: 300px;
    position: absolute;
    background-color: white;
    top: -225px;
    left: -150px;
    border-radius: 20%;
    scale: 0;
    z-index: 1;
    transition: 600ms ease-in-out;
}
footer .header .btn .bottom {
    height: 300px;
    width: 300px;
    position: absolute;
    background-color: white;
    bottom: -150px;
    right: -150px;
    border-radius: 20%;
    scale: 0;
    z-index: 1;
    transition: 600ms ease-in-out;
    border: none !important;
}
footer .header .btn:hover>span {
    scale: 1.8;
} 
footer .header .btn:hover p {
    color: black;
} 
footer .header .btn:hover img {
    filter: invert(0);
} 
footer .header .btn:hover p i span {
    transform: translateX(2px);
}

footer .mid {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
footer .left .logo {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 20px;
}
footer .left .logo img {
    width: 30px;
}
footer .left .logo p {
    color: white;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -1px;
    font-family: Inter;
}
footer .left>p {
    color: #9E9E9E;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.4px;
    font-family: Inter;
    width: 350px;
    line-height: 22px;
}
footer .left .socials {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}
footer .left .socials img {
    height: 18px;
    filter: invert(1);
    opacity: 0.7;
    transition: 400ms;
    cursor: pointer;
}
footer .left .socials img:hover {
    scale: 1.2;
    opacity: 1;
}
footer .right {
    display: flex;
    gap: 130px;
}
footer .right ul{
    list-style: none;
}
footer .right ul li {
    color: white;
    padding: 10px 0;
    font-family: Inter;
    font-weight: 600;
    color: #f1f1f1;
    cursor: pointer;
}
footer .right ul li:hover {
    text-decoration: underline;
    text-decoration-color: #f1f1f1;
}
footer .bottom {
    display: flex;
    margin-top: 120px;
    padding-top: 25px;
    border-top: 1px solid #313131;
    justify-content: space-between;
}
footer .bottom p {
    color: #f1f1f1;
    font-family: Inter;
    font-weight: 500;
    letter-spacing: -0.6px;
}