body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    min-width: 360px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.navbar-main {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
}

.navbar-logo img{
    margin-right: 16px;
}

.nav-links {
    display: flex;
    font-size: 16px;
    gap: calc(100vw / 100 * 3.5);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer{
    padding: calc(100vw / 100 * 5) calc(100vw / 100 * 4);
    background-color: #F3F3F3;
}
.footer-main{
    width: 100%
}
.footer-con{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: calc(100vw / 100 * 5);
}
.footer-con-it{
    flex: 1;
    min-width: 180px;
}
.footer-con-title{
    font-size: 18px;
    color: #1D1D1D;
    margin-bottom: clamp(8px, 100vw / 100 * 2, 16px);
}
.footer-con-ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-con-li{
    font-size:  14px;
    color: #646464;
    margin-bottom: clamp(4px, 100vw / 100 * 2, 16px);
}
.footer-contacts{
    padding: calc(100vw / 100 * 2) 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 42px;
}
.footer-contacts img{
    height: 24px;
}
.footer-copyright{
    color: #646464;
    font-weight: 400;
    font-size:  clamp(12px, 100vw / 100 * 2, 16px);
    padding-top: 12px;
}
.footer-copyright a{
    color: #646464;
    text-decoration: none;
    padding-left: 4px;
}
@media (max-width: 768px) {
    .navbar-main{
        width: 100%;
    }
    .navbar-logo{
        display: none;
    }
    .footer-con-it{
        flex: 1 1 100%;
    }

}
