.not-found-section {
    padding: 40px;
}
.not-found-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: url(/templates/default/images/icons/notFound-background.svg) no-repeat center;
    background-size: contain;
}
.not-found-content img {
    width: 471px;
    height: 401px;
    object-fit: cover;
}
.not-found-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 0;
    color: #B8A05E;
}

@media (max-width:1280px) {
.not-found-section {
    padding: 30px;
}
.not-found-content {
    gap: 30px;
}
.not-found-content img {
    width: 450px;
    height: 380px
}
.not-found-content p {
    font-size: 40px;
}
}
@media (max-width:768px) {
.not-found-section {
    padding: 20px;
}
.not-found-content {
    gap: 20px;
}
.not-found-content p {
    font-size: 38px;
}
.not-found-content img {
    max-width: 350px;
    max-height: 280px;
    width: 100%;
    height: 100%;
}
}
@media (max-width: 480px) {
.not-found-section {
    padding: 10px;
}
.not-found-content p {
    font-size: 24px;
}
.not-found-content img {
    max-width: 270px;
    max-height: 240px;
}
}