.titleCont {
    width: 100%;
    height: calc(100vh);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 72px;

}

.title{
margin-top: clamp(200px, 50vw, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.title img{
    width: clamp(220px, 50vw, 800px);
}

.slogan {
    font-size: 32px;
}

.progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    opacity: 0;
    min-width: 6px;
    min-height: 6px;
    border-radius: 100px;
    background-color: var(--bordercolor);
    transition: opacity 0.5s ease-in-out;
}

.tempFooter {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    padding: 12px 24px;

}

.contact {

    display: flex;
    gap: 32px;
}

@media(max-width:450px) {
 .contact{
    flex-direction: column;
    align-items: center;
    gap: 16px;
 }
}