.block_ai_offer_container {
    min-height: 600px;
    max-width: 100%;
    margin-bottom: 60px !important;
}

.block_ai_offer_text, 
.block_ai_offer_image {
    display: flex;
    flex-direction: column;
    flex-basis: 360px;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

.block_ai_offer_image {
    background-image: url('/files/pages/72/php_code/bg.webp');
    mask-image: url('/lib/svg/mask/mask_3.svg');
    mask-size: cover;
    mask-position: top right;
    mask-repeat: no-repeat;
}

.block_ai_offer_text_wrap {
    width: 100%;
    max-width: 700px;
    padding: 0px 20px;
}

.ai_offer_title {
    color: #ff9900;
    font-size: 3vw;
    font-weight: 700;
    line-height: 3.1vw;
}

.ai_offer_description {
    padding: 0px 0px 20px 0px;
    font-size: 32px;
    font-size: 1.8vw;
    font-weight: 600;
}

.ai_offer_utp_wrap {
    margin-bottom: 20px;
}

.ai_offer_utp {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 20px;
}

.ai_offer_utp_svg {
    width: 40px;
    height: 40px;
    fill: #ff9200;
}

.ai_offer_work_text {
    padding: 20px;
    border-left: 5px solid #ff9900;
    background: #efefef;
}

#block_ai_offer_image_container {
    width: 100%;
    max-width: 300px;
    padding: 30px 40px;
    background-color: rgb(244 187 77);
    border-radius: 40px;
    border: solid 1px #a66e00;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.61);
}

#block_ai_offer_image_container .dan_input {
    width: 100%;
    max-width: 400px;
    margin: 2px 0;
    border: solid 1px #a66e00;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.block_ai_offer_image_title {
    font-size: 24px;
    color: #5e3e00;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding-bottom: 10px;
}

#block_ai_offer_image_container .dan_button_green {
    width: 100%;
    background-color: #00ac59;
    margin-top: 10px;
    letter-spacing: 2px;
}

#block_ai_offer_image_container .dan_button_green:hover {
    border: 1px solid #56c55b;
    background: #4fd655;
}


/* --- Структура --- */
#ai_offer_site_concept {
    width: 100%;
    flex-basis: 100%;
    background-color: #e7e7e7;
}

.ai_offer_site_concept_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.ai_offer_site_concept_wrap {
    padding: 0px 40px;
}

.ai_offer_site_concept_title_1 {
	font-size: 32px;
	font-weight: 600;
    flex-basis: 300px;
    flex-grow: 1;
    margin: 0px;
}

.ai_offer_site_concept_title_2 {
    margin-top: 40px;
	font-size: 28px;
	font-weight: 500;
}

.ai_offer_site_concept_left {
	flex-basis: 70%;
	padding: 20px 40px;
	box-sizing: border-box;
	border: solid 1px #cccccc;
}

.ai_offer_site_concept_image {
	display:block;
}

.ai_offer_site_concept_right {
    position: relative;
	flex-basis: 30%;
	padding: 20px 40px;
	box-sizing: border-box;
	border: solid 1px #cccccc;
}

.ai_offer_site_concept input {
	position: absolute;
	top: 18px;
	left: 8px;
}

#ai_offer_site_concept_button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 300px;
    cursor: pointer;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    width: 100%;
    padding: 20px 40px;
    letter-spacing: 2px;
    border: 1px solid #43A047;
    border-radius: 10px;
    background: #43A047;
    transition: 0.3s;
}

#ai_offer_site_concept_button:hover {
    border: 1px solid #56c55b;
    background: #4fd655;
}


/* --- Progress bar --- */
..ai_offer_progress_wrap {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background: #d7d7d7;
}

.ai_offer_progress_progressbar {
    width: 0;
    height: 20px;
    border-radius: 10px;
    background: #43A047;
}

.ai_offer_progress_35 {
	animation: ai_offer_progress_animation 35s linear forwards;
}

@keyframes ai_offer_progress_animation {
    0% { width: 0%; }
    100% { width: 100%; }
}