@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

a:hover {
    color: #388e3c !important;
}

body {
    background: #171717;
    padding: 20px;
    animation: fadeInAnimation ease 2s;
}

nav {
    display: flex;
    gap: 20px;
}

nav .logo {
    height: 64px;
    width: 64px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .logo i {
    font-size: 26px;
    color: #388e3c;
}

nav .links {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 66px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 48px;
}

nav .links a {
    font-size: 20px;
}

nav .links a.active {
    font-weight: bold;
    color: #388e3c;
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 42px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 14px;
    margin-top: 20px;
}

.about .left h3 {
    color: #bdbdbd;
    font-size: 24px;
    font-weight: 400;
}

.about .left .info {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about .left .info h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 500;
}

.about .left .info p {
    font-size: 20px;
    color: #bdbdbd;
}

.about .left .info .buttons {
    display: flex;
    gap: 14px;
}

.about .left .info .buttons button {
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about .left .info .buttons button.hire {
    color: #fff;
    background: #388e3c;
    border: 1px solid #171717;
}

.about .left .info .buttons button.hire:hover {
    background: #4caf50;
}

.about .left .info .buttons button.email {
    color: #bdbdbd;
    border: 1px solid #27272a;
    background: #171717;
}

.about .left .info .buttons button.email:hover {
    background: #000;
}

.about .right a.online {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #171717;
    border: 1px solid #27272a;
    padding: 4px 15px;
    border-radius: 14px;
    font-size: 13px;
}

.about .right a.online i {
    color: #4caf50;
    font-size: 9px;

}

.about .right img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #2c2c2c;
    object-fit: cover;
    margin-top: 70px;
}

.works {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.works .left {
    flex: 1;
    background: #18181b;
    padding: 60px 40px;
    border-radius: 14px;
    border: 1px solid #27272a;
}

.works .left h3 {
    color: #bdbdbd;
    font-weight: 500px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.works .left h3 i {
    font-size: 8px;
}

.works .left .work-list {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 36px;
}

.works .left .work-list .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.works .left .work-list .items .work-info h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 500px;
}

.works .left .work-list .items .work-info h5.active {
    color: #388e3c;
}

.works .left .work-list .items .work-info p {
    margin-top: 12px;
    color: #bdbdbd;
    font-size: 20px;
}

.works .left .work-list .items>p {
    font-size: 20px;
    color: #bdbdbd;
}

.works .right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 40% auto;
    gap: 20px;
}

.works .right .items:first-child {
    grid-column: span 2;
}

.works .right .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: justify;
}

.works .right .items:hover a {
    color: #388e3c;
}

.works .right .items a {
    font-size: 24px;
    font-weight: 500;
}

.works .right .items>p {
    color: #bdbdbd;
    font-size: 17px;
    line-height: 26px;
}

.works .right .items:not(:first-child) {
    gap: 14px;
}

.works .right .items:not(:first-child) a {
    font: 18px;
}

.works .right .items:not(:first-child) p {
    font: 1px;
}

.footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #18181b;
    border: 1px solid #27272a;
    padding: 45px;
    border-radius: 14px;
}

.footer>a {
    font-size: 24px;
    font-weight: 500;
}

.footer .socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer .socials a {
    font-size: 20px;
    font-weight: 500;
    color: #bdbdbd;

}

.footer a.online {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #171717;
    border: 1px solid #27272a;
    padding: 4px 15px;
    border-radius: 14px;
    font-size: 13px;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width:1220px) {
    .about {
        padding: 60px 30px;
    }

    .works {
        flex-direction: column;
    }

    .works .left,
    .works .right .items,
    .footer {
        padding: 40px 30px;
    }

    .works .right {
        grid-template-rows: auto auto;
    }
}

@media screen and (max-width:992px) {
    nav .links {
        padding: 0 40px;
    }

    footer a {
        font-size: 10px;
    }

    footer .socials a {
        font-size: 8px;
    }
}

@media screen and (max-width:768px) {
    nav .links a {
        font-size: 16px;
    }

    .about {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 30;
    }

    .about .left .info {
        margin-top: 30px;
    }

    .about .right img {
        margin-top: 20px;
    }

    .footer a.online {
        display: none;
    }
}

@media screen and (max-width:576px) {

    nav .links a {
        font-size: 14px;
    }

    nav .logo{
        display: none;
    }

    .about .left .info h2 {
        font-size: 30px;
    }

    .about .left {
        text-align: center;
    }

    .about .left .info p,
    .works .left .work-list .items .work-info p,
    .works .left .work-list .items p> {
        font-size: 16px;
    }

    .about .left .info .buttons {
        justify-content: center;
    }

    .about .left .info .buttons button {
        font-size: 14px;
    }

    .works .left .work-list {
        margin-top: 40px;
    }

    .works .left .work-list .items>p {
        text-align: right;
    }

    .works .left .work-list .items .work-info h5,
    .works .right .items a {
        font-size: 20px;
    }

    .works .right .items>p,
    .works .right .items:not(:first-child) a {
        font-size: 14px;
    }

    .works .right .items:not(:first-child) p {
        font-size: 13px;
    }

    .footer>a {
        font-size: 18px;
    }

    .footer .socials a {
        font-size: 10px;
    }

    .works .right .items p {
        text-align: start;
    }
}