#comp_9c8bfc336f12b34112eccc8c0d65d185 {
    display: contents;
}

.projects__title {
    padding-left: 90px;
    font-size: 70px;
    line-height: 70px;
    color: #000;
}

@media screen and (max-width: 1024px) {
    .projects__title {
        padding-left: 0;
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 740px) {
    .projects__title {
        font-size: 21px;
        line-height: 21px;
    }
}

.projects__grid {
    margin-top: 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

@media screen and (max-width: 1440px) {
    .projects__grid {
        margin-top: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .projects__grid {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 740px) {
    .projects__grid {
        display: block;
    }
}

.projects__item {
    position: relative;
    overflow: hidden;
}

.projects__item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform 5s ease;
    transition: -webkit-transform 5s ease;
    transition: transform 5s ease;
    transition: transform 5s ease, -webkit-transform 5s ease;
}

@media screen and (max-width: 1024px) {
    .projects__item img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.projects__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

@media (any-hover: hover) {
    .projects__link:hover .projects__item-wrapper img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .projects__link:hover .glass__block {
        opacity: 1;
    }
}

.projects__item-wrapper {
    width: 100%;
    height: 100%;
}

.projects__glass {
    inset: 0;
}

.projects .glass {
    position: absolute;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

@media screen and (max-width: 1024px) {
    .projects .glass {
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);
        pointer-events: none;
    }
}

@media (any-hover: hover) {
    .projects .glass:hover {
        opacity: 1;
    }
}

.projects .glass__block {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 35px;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
    .projects .glass__block {
        opacity: 1;
    }
}

@media screen and (max-width: 740px) {
    .projects .glass__block {
        margin: 0 20px;
    }
}

.projects .glass__title {
    position: relative;
    margin-top: 35px;
    font-weight: 700;
    font-size: 37px;
    line-height: 35px;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 1440px) {
    .projects .glass__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 1024px) {
    .projects .glass__title {
        font-size: 22px;
        line-height: 22px;
    }
}

@media screen and (max-width: 740px) {
    .projects .glass__title {
        margin-top: 20px;
        font-size: 18px;
        line-height: 18px;
    }
}

.projects .glass__title span {
    text-transform: uppercase;
}

.projects .glass__bullet {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 3px 25px;
    border-radius: 48px;
    border: 1px solid #fff;
    background: rgba(219, 219, 219, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    width: fit-content;
}

@media screen and (max-width: 1440px) {
    .projects .glass__bullet {
        font-size: 16px;
        line-height: 26px;
    }
}

.projects .glass__bullet svg {
    fill: #fff;
}



.successful-sending {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -101%;
    height: 110%;
    width: 610px;
    background: #fff;
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    z-index: 1000;
}

.successful-sending.active {
    right: 0;
}

@media screen and (max-width: 1024px) {
    .successful-sending {
        width: 100%;
    }
}

.successful-sending__position {
    display: contents;
}

.successful-sending__wrapper {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 13px;
    width: 470px;
    min-height: 723px;
}

@media screen and (max-width: 1440px) {
    .successful-sending__wrapper {
        gap: 10px;
        min-height: 525px;
    }
}

@media screen and (max-width: 1024px) {
    .successful-sending__wrapper {
        min-height: 557px;
    }
}

@media screen and (max-width: 740px) {
    .successful-sending__wrapper {
        width: 90%;
        min-height: 466px;
    }
}

.successful-sending__title {
    position: relative;
    margin-bottom: 13px;
    padding-left: 40px;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #232020;
}

@media screen and (max-width: 1440px) {
    .successful-sending__title {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 32px;
    }
}

@media screen and (max-width: 1024px) {
    .successful-sending__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 740px) {
    .successful-sending__title {
        font-size: 21px;
        line-height: 23px;
    }
}

.successful-sending__title span {
    position: absolute;
    top: 0;
    left: 0;
}

.successful-sending__subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

@media screen and (max-width: 740px) {
    .successful-sending__subtitle {
        font-size: 15px;
        line-height: 17px;
    }
}

.successful-sending__memoji {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
}

@media screen and (max-width: 1440px) {
    .successful-sending__memoji {
        padding: 0;
    }
}

.successful-sending__memoji img {
    width: 256px;
    height: 256px;
}

@media screen and (max-width: 740px) {
    .successful-sending__memoji img {
        width: 225px;
        height: 225px;
    }
}

.successful-sending__contacts {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px;
}

@media screen and (max-width: 1440px) {
    .successful-sending__contacts {
        margin-top: 25px;
    }
}

.successful-sending__contacts div:first-child {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.successful-sending__contacts div:first-child a:first-child {
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.successful-sending__contacts div:last-child a:first-child {
    margin-right: 20px;
}

.successful-sending__contacts svg {
    width: 22px;
    height: 22px;
}

@media screen and (max-width: 740px) {
    .successful-sending__contacts svg {
        width: 15px;
        height: 15px;
    }
}

.successful-sending__email, .successful-sending__tel {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
}

@media screen and (max-width: 740px) {
    .successful-sending__email, .successful-sending__tel {
        font-size: 16px;
        line-height: 16px;
    }
}

.successful-sending__address {
    width: 200px;
    margin-top: 23px;
    font-size: 16px;
    line-height: 20px;
}

@media screen and (max-width: 1440px) {
    .successful-sending__address {
        margin-top: 20px;
    }
}

@media screen and (max-width: 740px) {
    .successful-sending__address {
        font-size: 13px;
        line-height: 15px;
    }
}

.successful-sending__cross {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@media screen and (max-width: 740px) {
    .successful-sending__cross {
        top: -15px;
        right: -10px;
        width: 12px;
        height: 12px;
    }
}

.successful-sending__cross svg {
    width: 100%;
    height: 100%;
}


.appear__form{
    transition: right 0.5s ease;
}