.notification {
	width: 100%;
	position: relative;

}
.notification-container {
	padding: 10px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
    	background-color: #003366;
}
.notification__img {
	width: 100%;
	max-width: 300px;
}

.notification-subcontainer {
	width: 100%;
	position: relative;
	
}
.notification-subcontainer {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.main__subtitle {
	font-size: 14px;
	padding: 5px 6px;
	background-color: #d20f26;
	color: #fff;
	margin: 10px 0 17px;
	border-radius: 7px;
	font-weight: 500;
}

 .notification-cont {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            background-color: white;
            border: 4px solid darkred;
            text-align: center;
            font-weight: 800;
            padding: 0.25rem 0.75rem;
            border-radius: 0.35rem;

        }

        .notification-text--main {
            color: #0A236B;
            text-transform: uppercase;
            font-size: 2.5rem;
            line-height: 100%;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .notification-text--main span {
            color: darkred;
            text-transform: uppercase;
            font-size: 2.5rem;
            line-height: 100%;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .notification-text--submain {
            color: #121851;
            line-height: 100%;
            font-size: 1.5rem;
            font-style: italic;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

        }

        @media screen and (max-width: 500px) {
            .notification-text--main {
                font-size: 2rem;
            }

            .notification-text--main span {
                font-size: 2rem;
            }

            .notification-text--submain {
                font-size: 1.2rem;
            }
        }

        @media screen and (max-width: 340px) {
            .notification-text--main {
                font-size: 2rem;
            }

            .notification-text--main span {
                font-size: 1.6rem;
            }

            .notification-text--submain {
                font-size: 1.1rem;
            }
        }

        #mvt-container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .buy-button1 {
            cursor: pointer;
        }

        @media screen and (max-width: 400px) {
            .notification-text--main {
                font-size: 1.7rem;
            }
        }

        @media screen and (max-width: 380px) {
            .notification-text--main {
                font-size: 1.7rem;
            }
        }


.order {
	width: 100%;
	position: relative;
	background-color: #fff;
}
.order__subname {
	background-color: rgb(0, 40, 80);
	color: #fff;
	font-size: 25px;
	text-align: center;
	font-weight: 700;
	padding: 14px 0;
	border-top: 1px dashed white;
}
.order .container {
	display: flex;
	flex-direction: column;
}
.order__title {
	width: 100%;
	max-width: 380px;
	color: #000;
	margin: 30px auto 20px;
	font-size: 22px;
	font-weight: 700;
}
.order__list {
	display: flex;
	flex-direction: column;
	list-style-type: disc;
	margin: 0 auto;
	gap: 5px;
}
.order__list_item {
	list-style-type: disc;
}
.order__form {
	display: flex;
	flex-direction: column;
	margin: 40px 0 0;
}
.order__images {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.order__prod {
	width: 100%;
	max-width: 250px;
}
.order__images span {
	font-size: 44px;
}
.order__book {
	width: 100%;
	max-width: 200px;
}
.order__block {
	width: 100%;
	max-width: 525px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 20px;
}
.order__payments {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.order__payments span {
	font-size: 18px;
	font-weight: 300;
	padding-left: 4px;
}
.order__payments span strong {
	font-size: 19px;
	font-weight: 700;
}
.order__payments img {
	width: 100%;
	max-width: 200px;
}
.order__offer {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #6f0505;
	border-radius: 6px;
	color: #fff;
	padding-bottom: 10px;
	width: 100%;
	max-width: 360px;
}
.order__offer_title {
	font-size: 18px;
	font-weight: 500;
	padding: 10px 24px;
	background-color: #910f0b;
	border-top-right-radius: 6px;
	border-top-left-radius: 6px;
}
.order__offer_price {
	padding-top: 8px;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 5px;
}
.order__offer_oldprice {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 5px;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.order__btn {
	width: 100%;
	max-width: 525px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #910f0b;
	padding: 12px 30px;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	margin-bottom: 20px;
	transition: 0.2s all ease-in-out;
	animation: pulse 1.8s ease-in-out infinite;
}
.order__btn:hover {
	text-decoration: underline;
	background-color: #ac1812;
}
.order__conditions {
	width: 100%;
	max-width: 475px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0 auto;
	margin-bottom: 10px;
}
.order__conditions_item span {
	font-size: 18px;
}


.motivation {
	width: 100%;
	background-color: #f2eded;
}
.motivation .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 25px 0;
}
.motivation__title {
	max-width: 450px;
	font-size: 32px;
	font-weight: 900;
	margin: 0 auto;
	margin-bottom: 12px;
	line-height: 1;
}
.motivation__descr {
	max-width: 370px;
	font-size: 22px;
	font-weight: 500;
	margin: 0 auto;
	margin-bottom: 25px;
}
.motivation__btn {
	width: auto;
	max-width: 470px;
	background-color: #a6221d;
	border-radius: 10px;
	font-size: 25px;
	font-weight: 700;
	padding: 12px 30px;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 10px;
	transition: 0.13s all ease-in-out;
	animation: pulse 1.8s ease-in-out infinite;
	border: none;
}
.motivation__btn:hover {
	background-color: #be2924;
	text-decoration: underline;
}


.footer {
	width: 100%;
	position: relative;
	background-color: #036;
}
.footer__wrap {
	display: flex;
	gap: 60px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 25px 0 40px;
}
.footer__left,
.footer__right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer__title,
.footer__name {
	color: #fff;
	text-decoration: none;
}
.footer__title {
	font-size: 20px;
	font-weight: 600;
}
.footer__name {
	font-size: 17px;
	color: rgb(223, 223, 223);
}
.footer__name:hover {
	text-decoration: underline;
}
.order__list {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    margin: 0 auto;
    gap: 5px;
}
.order__list_item {
    list-style-type: disc;
}
@media (max-width: 560px) {
	.main__title {
		font-size: 28px;
		line-height: 34px;
	}
	.main__descr {
		font-size: 19px;
		padding: 0 8px;
	}
	.content__title {
		font-size: 19px;
		padding: 0 19px;
	}
	.content__subtitle {
		font-size: 16px;
		line-height: 22px;
	}
	.order__prod {
		width: 100%;
		max-width: 200px;
	}
	.order__book {
		width: 100%;
		max-width: 170px;
	}
	.order__payments span strong {
		font-size: 17px;
		font-weight: 700;
	}
	.order__payments span {
		font-size: 17px;
		font-weight: 300;
		padding-left: 1px;
	}
	.order__payments img {
		width: 100%;
		max-width: 170px;
	}
	.order__offer_title {
		font-size: 14px;
		font-weight: 500;
		padding: 8px 24px;
	}
	.order__offer_price {
		padding-top: 5px;
		font-size: 17px;
		font-weight: 700;
		margin-bottom: 4px;
	}
	.order__offer_oldprice {
		font-size: 15px;
		font-weight: 500;
		margin-bottom: 4px;
	}
	.order__offer_available {
		font-size: 14px;
	}
	.order__btn {
		font-size: 23px;
	}
	.testimonials__info_descr span {
		font-size: 15px;
	}
	.motivation .container {
		padding: 25px 5%;
	}
	.motivation__title {
		font-size: 27px;
	}
	.motivation__btn {
		font-size: 20px;
	}
	.topic .container {
		padding: 15px 5% 25px;
	}
}
@media (max-width: 431px) {
	.main {
		margin-bottom: 25px;
	}
	.main .container {
		padding: 0 8px;
	}
	.main__title {
		font-size: 24px;
		line-height: 27px;
	}
	.main__descr {
		font-size: 17px;
		padding: 0 8px;
	}
	.content__title {
		font-size: 17px;
		padding: 0 9px;
	}
	.content__title img {
		width: 16px;
		height: 16px;
	}
	.content__subtitle {
		font-size: 15px;
		line-height: 19px;
	}
	.results__title {
		font-size: 29px;
	}
	.results__subtitle {
		font-size: 18px;
		color: #e0e0e0;
		font-weight: 100;
		text-align: center;
		margin: 9px 0;
	}
	.results__table_item {
		padding-left: 5%;
	}
	.results__table_item strong {
		font-size: 14px;
	}
	.results__table_item span strong {
		font-weight: bolder;
		font-size: 17px;
		color: rgb(56, 56, 56);
	}
	.not-bold strong {
		font-size: 13px;
	}
	.results__table_item span {
		font-weight: normal;
		font-size: 16px;
		color: rgb(56, 56, 56);
	}
	.results__table_item-2 {
		font-size: 17px;
	}
	.order .container {
		padding: 0 10px;
	}
	.order__list {
		padding-left: 20px;
	}
	.order__payments span strong {
		font-size: 16px;
		font-weight: 700;
	}
	.order__subname {
		font-size: 21px;
	}
	.order__title {
		font-size: 19px;
	}
	.order__prod {
		max-width: 220px;
	}
	.order__book {
		width: 100%;
		max-width: 200px;
	}
	.order__payments img {
		max-width: 150px;
	}
	.order__offer_title {
		font-size: 13px;
		font-weight: 500;
		padding: 8px 10px;
	}
	.order__offer_available {
		font-size: 12px;
	}
	.order__btn {
		font-size: 20px;
	}
	.order__conditions_item span {
		font-size: 15px;
	}
	.testimonials__block_item {
		gap: 8px;
	}
	.testimonials__img {
		width: 60px;
		height: 70px;
	}
	.testimonials__info_name {
		font-size: 14px;
		gap: 8px;
	}
	.testimonials__date {
		font-size: 14px;
	}
	.testimonials__info_descr span {
		font-size: 14px;
	}
	.motivation__title {
		font-size: 23px;
	}
	.motivation__descr {
		font-size: 18px;
	}
	.ask__subtitle {
		font-size: 15px;
	}
	.ask__item_name {
		font-size: 16px;
	}
	.ask__descr {
		font-size: 14px;
	}

}
    
	.topic {
		padding: 15px 0 30px;
	}
	.topic__block {
		gap: 7px;
	}
	.topic__item {
		padding: 3px 10px;
		font-weight: 700;
		font-size: 13px;
	}
	.footer__wrap {
		gap: 30px;
	}
	.footer__left,
	.footer__right {
		gap: 7px;
	}
	.footer__title {
		font-size: 18px;
	}
	.footer__name {
		font-size: 15px;
	}
        .order__list {
        padding-left: 20px;
}

.pay-imgs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.pay-imgs img {
	max-width: 60px;
}
