/* общее */
.cont {
    background-color: var(--color-background-primary);
    height: 900px;
    width: 100vw;
}

.cont-inside {
    width: 1920px;
    height: 100%;

    margin: 0 auto;
}


/* Блок Категорий */
.categories {
    padding: 200px 20px 100px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.categories-title-block {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.categories-title-t {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;
}

.categories-title-link {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 168px;
    height: 48px;

    border: 0.8px solid var(--color-foreground-primary);
    border-radius: 24px;

    font-size: 16px;
    line-height: 100%;
    color: var(--color-foreground-primary);
    font-weight: 500;
}

.categoties-items {
    display: flex;
    gap: 20px;
}

.categories-items-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categories-items-item-img {
    width: 455px;
    height: 456px;

    position: relative;
}

.categories-items-item-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.categories-items-item-img:hover  .categories-items-item-hover {
    opacity: 1;
}

.categories-items-item-title {
    font-size: 24px;
    line-height: 100%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;
}

.categories-items-item-hover {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 166px;
    height: 166px;
    border-radius: 50%;
    background-color: var(--color-foreground-primary);

    font-size: 24px;
    line-height: 100%;
    color: var(--color-white);
    font-weight: 500;

    position: absolute;
    top: calc(50% - 166px / 2);
    left: calc(50% - 166px / 2);

    opacity: 0;

    transition: opacity 0.2s ease-in-out;
}

/* Блок Процесса заказа */
.process {
    padding: 100px 20px;

    display: flex;
    align-items: center;
    gap: 207px;
}

.process-img {
    width: 700px;
    height: 100%;
}

.process-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.process-info {
    display: flex;
    flex-direction: column;
    gap: 60px;

    width: 740px;
}

.process-info-title {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;    
}

.process-info-stages {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-info-stages-stage {
    display: flex;
    gap: 31px;
}

.process-info-stages-stage-num {
    font-size: 40px;
    line-height: 100%;
    color: var(--color-foreground-primary);
    font-weight: 500;
}

.process-info-stages-stage-t {
    font-size: 16px;
    line-height: 100%;
    color: var(--color-foreground-opacity);
}

/* Блок Преимуществ */
.advantages {
    padding: 236.5px 20px;

    display: flex;
    flex-direction: column;
    gap: 100px;
}

.advantages-title {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;
    text-align: center;
}

.advantages-points {
    display: flex;
    gap: 100px;

    justify-content: center;
    align-items: center;
}

.advantages-points-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    width: 420px;
}

.advantages-points-point-icon {
    width: 52px;
    height: 52px;
}

.advantages-points-point-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantages-points-point-title {
    font-size: 24px;
    line-height: 100%;
    color: var(--color-foreground-primary);
    font-weight: 500;
}

.advantages-points-point-t {
    font-size: 18px;
    line-height: 100%;
    color: var(--color-foreground-primary);

    text-align: center;
}

.advantages-points-sep {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.advantages-points-sep-line {
    height: 151px;
    width: 1px;
    background-color: var(--color-foreground-primary);
}

.advantages-points-sep-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-foreground-primary);
}

/* Блок О производстве */
.about {
    padding: 100px 20px;

    display: flex;
    justify-content: end;
    align-items: center;
    gap: 180px;
}

.about-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 59.5px;

    width: 580px;
}

.about-info-icon {
    width: 41px;
    height: 41px;
}

.about-info-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.about-info-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-info-text-title {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;
    text-align: center;
}

.about-info-text-t {
    font-size: 20px;
    line-height: 100%;
    color: var(--color-foreground-primary);

    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 17px;
}

.about-img {
    width: 940px;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Блок Материалов */
.gallery-material {
    padding: 100px 20px 100px 120px;

    display: flex;
    flex-direction: column;
    gap: 100px;
}

.gallery-material-title-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-material-title-main {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;  
}

.gallery-material-title-t {
    display: flex;
    gap: 30px;

    font-size: 24px;
    line-height: 110%;
    color: var(--color-foreground-primary);

    text-transform: lowercase;
}

.gallery-material-title-t-1 {
    width: 695px;
}

.gallery-material-title-t-2 {
    width: 645px;
}

.material-items {
    display: flex;
    gap: 50px;
}

.material-items-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 296px;
    height: 411px;
}

.material-items-item-img {
    width: 150px;
    height: 150px;

    border-radius: 50%;
}

.material-items-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 50%;
}

.material-items-item-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.material-items-item-info-title {
    font-size: 20px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;  
}

.material-items-item-info-t {
    font-size: 20px;
    line-height: 100%;
    color: var(--color-foreground-primary);

    text-transform: lowercase;  
    width: 91%;
}

.material-link {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 168px;
    height: 48px;

    border: 0.8px solid var(--color-foreground-primary);
    border-radius: 24px;

    font-size: 16px;
    line-height: 100%;
    color: var(--color-foreground-primary);
    font-weight: 500;
}

/* Блок Помощи */
.help {
    padding: 194px 120px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}

.help-title {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;

    text-transform: lowercase;

    width: 70%;
}

.help-main-block {
    display: flex;
    justify-content: space-between;
}

.help-main-block-form {
    width: 363px;
}

.help-main-block-img {
    width: 265px;
    height: 253px;

    align-self: end;
}

.help-main-block-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}