.slider_post_container {
	width: 100%;
	height: fit-content;
	display: flex;
	align-items: flex-start;
	gap: 17px;
	overflow-x: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
	transition: all 0.5s;
	scroll-snap-type: x mandatory;

	.slide_item::-webkit-scrollbar {
		display: none;
	}
}

.slider_post_item {
	display: flex;
	width: 100%;
	/* min-width: 370px; */
	height: fit-content;
	flex-direction: column;
	flex: 0 0 calc(33.33% - 15px);
	box-sizing: border-box;
	scroll-snap-align: start;
	transform-origin: center center;
	flex-shrink: 0;
	position: relative;
	margin: 0;
	overflow: hidden;
	padding-top: 20px;

	@media screen and (max-width: 880px) {
		flex: 0 0 calc(50% - 15px);
	}

	@media screen and (max-width: 450px) {
		flex: 0 0 calc(100%);
	}

	.slider_card_img {
		height: 224px;
		/* width: 380px; */
		width: 100%;

		@media screen and (max-width: 480px) {
			width: 100%;
		}

		a {
			display: flex;
			height: 100%;
			width: 100%;
			border-radius: 15px;
			overflow: hidden;

			img {
				height: 224px;
				/* width: 380px; */
				width: 100%;
				object-fit: cover;
				float: left;
				overflow: hidden;
				transition: all 0.3s ease-in-out;
			}

			&:hover img {
				transform: scale(1.1);
			}
		}
	}

	.slider_card_content {
		display: flex;
		flex-direction: column;
		gap: 3.5px;
		padding: 10px 0;
		width: 100%;
		height: 100%;

		a {
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
			text-decoration: none;
			color: var(--primary-color);
			font-size: 17px;
			font-weight: 600;

			@media screen and (max-width: 480px) {
				font-size: 13.5px;
			}

			&:hover {
				color: var(--secondary-color);
			}
		}

		p:nth-child(1) {
			font-size: 14px;
			font-weight: 500;
			color: #198fc2;

			@media screen and (max-width: 480px) {
				font-size: 12.5px;
			}
		}

		p:nth-child(3) {
			font-size: 10px;
			font-weight: 400;
			color: #198fc2;
		}
	}
}

.slider_post_item_load {
	display: flex;
	width: 100%;
	min-width: 370px;
	height: 328px;
	flex-direction: column;
	flex: 0 0 calc(33.33% - 15px);
	box-sizing: border-box;
	scroll-snap-align: start;
	transform-origin: center center;
	flex-shrink: 0;
	position: relative;
	margin: 0;
	overflow: hidden;
	pointer-events: none;

	@media screen and (max-width: 880px) {
		flex: 0 0 calc(50% - 15px);
	}

	@media screen and (max-width: 450px) {
		flex: 0 0 calc(100%);
	}

	.slider_card_img {
		height: 224px;
		/* width: 380px; */
		width: 100%;
		background-color: #cecece;
		background-image: linear-gradient(90deg, #cecece, #f0f0f0, #cecece);
		background-size: 95px 100%;
		background-repeat: no-repeat;
		animation: image_animation 1.1s infinite ease-out;

		@media screen and (max-width: 480px) {
			width: 100%;
		}

		a {
			display: flex;
			height: 100%;
			width: 100%;
			border-radius: 15px;
			overflow: hidden;
			opacity: 0;

			img {
				height: 224px;
				/* width: 380px; */
				width: 100%;
				object-fit: cover;
				float: left;
				overflow: hidden;
			}
		}
	}

	.slider_card_content {
		display: flex;
		flex-direction: column;
		gap: 3.5px;
		padding: 10px 0;
		width: 100%;
		height: 100%;

		a {
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
			text-decoration: none;
			color: transparent;
			font-size: 17px;
			background-color: #6d6d6d;
			font-weight: 600;
			background-image: linear-gradient(90deg, #6d6d6d, #a1a1a1, #6d6d6d);
			background-size: 60px 100%;
			background-repeat: no-repeat;
			animation: psatu 0.7s infinite ease-out;
		}

		p:nth-child(1) {
			font-size: 14px;
			font-weight: 500;
			color: transparent;
			background-color: #6d6d6d;
			background-image: linear-gradient(90deg, #6d6d6d, #a1a1a1, #6d6d6d);
			background-size: 60px 100%;
			background-repeat: no-repeat;
			animation: psatu 0.7s infinite ease-out;
		}

		p:nth-child(3) {
			font-size: 10px;
			font-weight: 400;
			color: transparent;
			background-color: #6d6d6d;
			background-image: linear-gradient(90deg, #6d6d6d, #a1a1a1, #6d6d6d);
			background-size: 60px 100%;
			background-repeat: no-repeat;
			animation: psatu 0.7s infinite ease-out;
		}
	}
}

.galery_slider {
	display: flex;
	width: 100%;
	height: 40px;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.navigation_slider {
	display: flex;
	width: 100%;
	height: 40px;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.noevent {
	pointer-events: none;
}

.nav,
.navigation {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.6s ease;

	@media screen and (max-width: 450px) {
		height: 25px;
		width: 25px;
	}

	&.disabled {
		pointer-events: none;

		i {
			color: #b8eaff;
		}
	}

	i {
		color: var(--secondary-color);
		font-size: 30px;

		@media screen and (max-width: 450px) {
			font-size: 20px;
		}
	}

	&:hover {
		background-color: var(--secondary-color);

		i {
			color: #fff;
		}
	}
}

.prev {
	transform: rotate(180deg);
	/* transform: rotate(0deg); */
}

.dots_parent {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 0 10px;
}

.dots {
	height: 9px;
	width: 9px;
	border-radius: 50%;
	background-color: #fff;
	border: 2px solid var(--secondary-color);

	&.active {
		background-color: var(--secondary-color);
	}
}

.complate_galery {
	display: flex;
	justify-content: center;
	height: fit-content;
	width: 100%;
	flex-direction: column;
	padding-bottom: 20px;
}

.galery_container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	height: fit-content;
	width: 100%;
	gap: 20px;
	justify-content: center;

	@media screen and (max-width: 480px) {
		gap: 10px;
		padding-top: 20px;
	}

	.content_item {
		display: flex;
		position: relative;
		height: 314px;
		width: 246px;
		box-shadow: #b0e5ff 0px 3px 10px;
		border-radius: 15px;
		overflow: hidden;
		text-decoration: none;
		flex: 0 0 calc(25% - 15px);

		@media screen and (max-width: 768px) {
			height: 234px;
			width: 180px;
			flex: 0 0 calc(33.33% - 10px);
		}

		@media screen and (max-width: 450px) {
			width: 80%;
			height: 200px;
			flex: 0 0 calc(50% - 10px);
		}

		.content_image {
			height: 100%;
			width: 100%;
			position: absolute;
			z-index: -1;
			transition: all 0.5s ease-in-out;

			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				overflow: hidden;
				float: left;
			}
		}

		&:hover .content_image {
			transform: scale(1.1);
		}

		.content_text {
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 10px;
			padding-bottom: 50px;
			justify-content: flex-end;
			width: 100%;
			height: 100%;
			position: relative;
			color: #fff;

			@media screen and (max-width: 450px) {
				padding-bottom: 20px;
			}

			p:nth-child(1) {
				font-size: 20px;
				font-weight: 600;
				transition: all 0.5s ease;
				text-align: center;

				@media screen and (max-width: 768px) {
					font-size: 18px;
				}

				@media screen and (max-width: 450px) {
					font-size: 14px;
				}
			}

			p:nth-child(2) {
				font-size: 10px;
			}

			&:hover p:nth-child(1) {
				color: var(--headline-color);
			}

			&::after {
				content: "";
				position: absolute;
				bottom: 0;
				left: 0;
				height: 50%;
				width: 100%;
				background-image: linear-gradient(to top, #000000, #00557c00);
				transition: background-image 0.5s ease;
				z-index: -1;
			}

			&:hover::after {
				background-image: linear-gradient(to top, #003235, #00557c00);
			}
		}

		.content_last_text {
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 10px;
			justify-content: center;
			width: 100%;
			gap: 20px;
			height: 100%;
			position: relative;
			color: #fff;

			@media screen and (max-width: 450px) {
				padding-bottom: 20px;
			}

			p {
				font-size: 24px;
				font-weight: 600;
				transition: all 0.5s ease;
				text-align: center;
				color: var(--headline-color);

				@media screen and (max-width: 768px) {
					font-size: 18px;
				}
			}

			img {
				height: fit-content;
				width: 50%;
				float: left;

				@media screen and (max-width: 450px) {
					width: 80%;
				}
			}

			&::after {
				content: "";
				position: absolute;
				bottom: 0;
				left: 0;
				height: 100%;
				width: 100%;
				background-color: #003235d4;
				transition: background-image 0.5s ease;
				z-index: -1;
			}
		}
	}

	.content_item_load {
		display: flex;
		position: relative;
		height: 314px;
		width: 246px;
		border-radius: 15px;
		overflow: hidden;
		text-decoration: none;

		@media screen and (max-width: 768px) {
			height: 234px;
			width: 180px;
		}

		@media screen and (max-width: 450px) {
			width: 80%;
			height: 150px;
		}

		.content_image {
			height: 100%;
			width: 100%;
			position: absolute;
			z-index: -1;
			background-color: #cecece;
			background-image: linear-gradient(90deg, #cecece, #f0f0f0, #cecece);
			background-size: 95px 100%;
			background-repeat: no-repeat;
			animation: image_animation 1.1s infinite ease-out;

			img {
				display: none;
				width: 100%;
				height: 100%;
				object-fit: cover;
				overflow: hidden;
				float: left;
			}
		}

		.content_text {
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 10px;
			padding-bottom: 50px;
			justify-content: flex-end;
			width: 100%;
			height: 100%;
			position: relative;
			color: #fff;

			@media screen and (max-width: 450px) {
				padding-bottom: 20px;
			}

			p:nth-child(1) {
				display: flex;
				height: 30px;
				width: 50%;
				color: transparent;
				background-color: #6d6d6d;
				margin-bottom: 7px;
				background-image: linear-gradient(90deg, #6d6d6d, #a1a1a1, #6d6d6d);
				background-size: 60px 100%;
				background-repeat: no-repeat;
				animation: psatu 0.7s infinite ease-out;

				@media screen and (max-width: 768px) {
					font-size: 18px;
				}
			}

			p:nth-child(2) {
				display: flex;
				height: 15px;
				width: 30%;
				background-color: #6d6d6d;
				background-image: linear-gradient(90deg, #6d6d6d, #828282, #6d6d6d);
				background-size: 30px 100%;
				background-repeat: no-repeat;
				color: transparent;
				font-size: 10px;
				animation: pdua 0.7s infinite ease-out;
			}
		}
	}
}

@keyframes image_animation {
	0% {
		background-position: -90% 0;
	}

	100% {
		background-position: calc(90% + 100%) 0;
	}
}

@keyframes pdua {
	0% {
		background-position: -30% 0;
	}

	100% {
		background-position: calc(30% + 100%) 0;
	}
}

@keyframes psatu {
	0% {
		background-position: -80% 0;
	}

	100% {
		background-position: calc(80% + 100%) 0;
	}
}

.banner {
	height: 100%;
	width: 100%;
	position: relative;

	&::after {
		position: absolute;
		content: "";
		height: 100%;
		width: 100%;
		background-color: #00334b;
		opacity: 0.7;
		top: 0;
		z-index: 999;
		left: 0;
	}
}

.banner_bottom {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0 30px 0;
	position: relative;

	@media screen and (max-width: 480px) {
		gap: 0;
	}

	.bottom_cont {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		flex-direction: column;
		text-align: center;
		margin-bottom: 50px;

		p:nth-child(1) {
			font-size: 20px;
			padding-top: 30px;
			color: var(--primary-color);

			@media screen and (max-width: 450px) {
				font-size: 15px;
			}
		}

		.wa_link {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			font-size: 20px;
			color: var(--primary-color);
			text-decoration: none;
			position: relative;
			padding: 2px 30px;
			background-color: #fff;
			font-weight: 700;
			border-radius: 0 30px 30px 0;
			position: absolute;
			z-index: 1;
			margin-top: 136px;

			&:hover {
				color: #17bf33;
			}

			@media screen and (max-width: 450px) {
				font-size: 15px;
			}

			img {
				position: absolute;
				left: -25px;

				@media screen and (max-width: 450px) {
					height: 40px;
					width: 40px;
				}
			}
		}
	}

	.banner_image {
		position: absolute;
		bottom: 0px;
		padding: 0;
		height: 510px;
		right: 710px;
		min-width: 400px;

		@media screen and (max-width: 980px) {
			min-width: 40%;
			height: fit-content;
			left: 0;
			z-index: -9;
		}

		@media screen and (max-width: 630px) {
			min-width: 60%;
		}

		@media screen and (max-width: 450px) {
			min-width: 90%;
		}

		&.type2 {
			height: 550px;
			right: 580px;

			@media screen and (max-width: 980px) {
				height: fit-content !important;
				min-width: 25%;
			}

			@media screen and (max-width: 630px) {
				min-width: 45%;
			}

			@media screen and (max-width: 450px) {
				min-width: 63%;
			}

			img {
				height: 100%;
				width: fit-content;

				@media screen and (max-width: 980px) {
					height: 100%;
					width: 100%;
				}
			}
		}

		img {
			height: 100%;
			width: 100%;
			min-width: 200px;
			float: left;
		}
	}

	.banner_content {
		height: fit-content;
		width: fit-content;
		display: flex;
		flex-direction: column;
		gap: 30px;
		align-items: flex-end;

		@media screen and (max-width: 980px) {
			height: 100%;
			justify-content: flex-end;
			gap: 10px;
		}

		@media screen and (max-width: 630px) {
			height: 100%;
			justify-content: flex-end;
			gap: 10px;
		}

		.banner_title {
			height: 205px;
			width: 800px;
			background-color: #f878b8;
			font-size: 32px;
			color: #fff;
			display: flex;
			justify-content: center;
			flex-direction: column;
			padding: 0 10px 0 95px;
			border-radius: 0 20px 20px 0;

			@media screen and (max-width: 980px) {
				width: 600px;
				font-size: 12px;
				height: 170px;
				width: calc(100% + 100px);
				border-radius: 15px;
				padding: 10%;
			}

			@media screen and (max-width: 630px) {
				height: 100px;
			}

			&.content_type2 {
				font-size: 45px;
				font-weight: 600;

				@media screen and (max-width: 980px) {
					font-size: 20px;
				}
			}

			span {
				font-weight: 600;
				font-style: italic;
			}

			p:nth-child(3) {
				padding-top: 20px;
			}
		}

		.banner_subtitle {
			padding: 7px 90px;
			background-color: #fff;
			color: #ff5252;
			border-radius: 20px;
			font-size: 55px;
			font-weight: 700;

			@media screen and (max-width: 980px) {
				font-size: 14px;
				padding: 7px 20px;
			}
		}
	}
}

.special_pack {
	height: 330px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 20px;
	position: relative;

	@media screen and (max-width: 630px) {
		height: fit-content;
		align-items: center;
		justify-content: unset;
		gap: 20px;
		padding: 20px;
	}

	.sp_title {
		font-size: 62px;
		color: var(--primary-color);
		line-height: 60px;
		font-weight: 700;

		@media screen and (max-width: 980px) {
			font-size: 50px;
		}

		@media screen and (max-width: 768px) {
			font-size: 30px;
			line-height: 30px;
		}
	}

	p:nth-child(2) {
		color: var(--secondary-color);
	}

	p:nth-child(3) {
		font-size: 24px;
		font-weight: 500;

		@media screen and (max-width: 980px) {
			font-size: 18px;
		}

		@media screen and (max-width: 768px) {
			font-size: 15px;
		}
	}
}

.sp_image {
	height: fit-content;
	width: 35%;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 32px;
	border: 20px solid #fff;
	overflow: hidden;
	background-color: #fff;

	@media screen and (max-width: 768px) {
		height: 100%;
	}

	@media screen and (max-width: 630px) {
		width: 60%;
		height: fit-content;
		position: initial;
		min-width: 300px;
		border: 1px solid #fff;
	}

	img {
		height: 100%;
		width: 100%;
		float: left;
		object-fit: cover;
		border-radius: 20px;
	}
}

.padding {
	padding-top: 150px;

	@media screen and (max-width: 980px) {
		padding-top: 100px;
	}

	@media screen and (max-width: 768px) {
		padding-top: 30px;
	}
}

.bubble {
	height: 300px;
	width: 300px;
	border-radius: 50%;
	position: absolute;
	background-image: linear-gradient(to right, #cbedf800, #96ecff);
	opacity: 0.3;

	@media screen and (max-width: 630px) {
		display: none;
	}

	&:nth-child(2) {
		@media screen and (max-width: 980px) {
			display: none;
		}
	}

	&::after {
		content: "";
		height: 100px;
		width: 100px;
		position: absolute;
		border-radius: 50%;
		background-image: linear-gradient(to right, #cbedf800, #96ecff);
		opacity: 0.3;
		left: -30%;
		z-index: 9;
		animation: bubble 20s infinite;
	}

	&.ft {
		left: 0;
		transform: rotate(-90deg);
		animation: bubble 10s infinite;
	}

	&.sd {
		right: 0;
		transform: rotate(50deg);
		animation: bubble 30s infinite;

		&::after {
			display: none;
		}
	}

	&.th {
		right: 40%;
		bottom: 0px;
		transform: rotate(90deg);
		animation: bubble 20s infinite;
	}
}

@keyframes bubble {
	0% {
		scale: 0.5;
		bottom: 90px;
		transform: rotate(0deg);
	}

	50% {
		scale: 0.8;
		bottom: 0;
		transform: rotate(180deg);
	}

	100% {
		scale: 0.5;
		bottom: 90;
		transform: rotate(0deg);
	}
}

.wa_btn {
	height: fit-content;
	width: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 20px;

	.item {
		height: 50px;
		width: 100%;
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--primary-color);
		font-size: 20px;
		font-weight: 700;
		border-radius: 100px;
		padding: 15px;
		text-decoration: none;
		gap: 10px;
		transition: all 0.6s ease;

		&:hover {
			background-color: var(--accent-color);
		}

		@media screen and (max-width: 480px) {
			font-size: 15px;
			padding: 7px;
		}
	}

	@media screen and (max-width: 480px) {
		width: 250px;
	}
}

.tb_footer {
	height: 600px;
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;

	@media screen and (max-width: 630px) {
		flex-direction: column-reverse;
		align-items: center;
	}

	@media screen and (max-width: 480px) {
		height: 600px;
	}

	.tb_footer_item {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 20px;
	}

	.tb_footer_item:nth-child(2) {
		width: 56%;
		padding: 0 50px;
		position: relative;

		@media screen and (max-width: 630px) {
			width: 90%;
		}

		@media screen and (max-width: 480px) {
			padding: 0 10px;
			width: 100%;
		}

		.foot_item {
			z-index: 9;
		}

		.foot_item:nth-child(1) {
			p {
				font-size: 25px;
				color: var(--tertiery-color);
				font-weight: 600;

				@media screen and (max-width: 768px) {
					font-size: 19px;
				}

				@media screen and (max-width: 480px) {
					font-size: 14px;
				}
			}

			p:nth-last-child(1) {
				font-size: 30px;
				color: #d71e4b;

				@media screen and (max-width: 768px) {
					font-size: 20px;
				}

				@media screen and (max-width: 480px) {
					font-size: 15px;
				}
			}
		}

		.foot_item:nth-child(2) {
			p {
				font-size: 30px;
				color: var(--tertiery-color);
				font-weight: 600;

				@media screen and (max-width: 768px) {
					font-size: 20px;
				}

				@media screen and (max-width: 480px) {
					font-size: 15px;
				}
			}
		}

		._image {
			position: absolute;
			height: 100%;
			width: 100%;
			top: 0;
			left: 0;

			img:nth-child(1) {
				position: absolute;
				bottom: 100px;
				right: 50px;
				height: 30px;
				width: fit-content;
				object-fit: cover;
			}

			img:nth-child(2) {
				position: absolute;
				bottom: 130px;
				right: 0px;
				height: 50px;
				width: fit-content;
				object-fit: cover;
			}
		}
	}

	.tb_footer_item:nth-child(1) {
		width: 40%;
		position: relative;

		@media screen and (max-width: 630px) {
			width: 90%;
		}

		.image_front {
			height: 100%;
			width: 100%;
			display: flex;
			justify-content: center;
			z-index: 9;

			@media screen and (max-width: 630px) {
				max-width: 300px;
			}

			img {
				height: 100%;
				width: 80%;
				object-fit: contain;
				object-position: bottom;
				float: left;
			}
		}

		.image_back {
			position: absolute;
			height: 100%;
			width: 100%;

			@media screen and (max-width: 630px) {
				display: none;
			}

			img:nth-child(1) {
				height: 400px;
				width: fit-content;
				bottom: 150px;
				left: 100px;
				position: absolute;
			}

			img:nth-child(2) {
				height: 60px;
				width: fit-content;
				bottom: 100px;
				right: -30px;
				position: absolute;
			}

			img:nth-child(3) {
				height: 30px;
				width: fit-content;
				bottom: 250px;
				left: 60px;
				position: absolute;
			}
		}
	}
}

.share_btn {
	width: 60px;
	height: 250px;
	background-color: #a9e5ff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	padding: 30px 0;
	border-radius: 50px;

	@media screen and (max-width: 880px) {
		height: 60px;
		width: 250px;
		flex-direction: row;
		padding: 0 30px;
	}

	img {
		height: 32px;
		width: 32px;
		object-fit: contain;
		float: left;
	}
}

.complete_galery {
	width: 100%;
}

.searchform {
	display: flex;
	gap: 10px;
	height: fit-content;
	width: 100%;
	align-items: center;
	justify-content: center;

	@media screen and (max-width: 1200px) {
		flex-direction: column;
	}

	@media screen and (max-width: 480px) {
		align-items: center;
	}

	.input_container {
		width: 480px;
		height: 50px;
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50px;

		@media screen and (max-width: 1200px) {
			width: 100%;
		}

		@media screen and (max-width: 480px) {
			height: 35px;
		}

		input {
			width: 99%;
			font-size: 18px;
			font-weight: 500;
			border: none;
			padding-left: 20px;
			background-color: transparent;
			color: var(--primary-color);

			@media screen and (max-width: 630px) {
				&::placeholder {
					font-size: 14px;
				}
			}

			@media screen and (max-width: 480px) {
				padding-left: 0;
				font-size: 14px;
				text-align: center;
			}

			&:focus {
				outline: none;
			}

			&::placeholder {
				color: var(--secondary-color);
			}
		}
	}

	.search_button {
		height: 50px;
		width: fit-content;
		padding: 0 30px;
		background-color: var(--accent-color);
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50px;
		border: none;
		cursor: pointer;
		text-transform: uppercase;
		font-size: 15px;
		font-weight: 800;
		color: var(--primary-color);
		transition: all 0.6s ease;

		&:hover {
			background-color: var(--secondary-color);
			color: #fff;
		}

		@media screen and (max-width: 480px) {
			height: 35px;
			font-size: 13px;
		}
	}
}

.search_container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: fit-content;
	width: 100%;

	@media screen and (max-width: 1200px) {
		padding: 0 20%;
	}

	@media screen and (max-width: 480px) {
		padding: 0 20px;
	}
}

.b_cont {
	text-align: right;
	padding-top: 20px;

	@media screen and (max-width: 480px) {
		text-align: center;
		padding-top: 0;
	}
}

.botton {
	width: fit-content;
	background-color: var(--secondary-color);
	color: #fff;
	padding: 5px 30px;
	border-radius: 20px;
	font-weight: 500;
	text-decoration: none;
	margin: auto;
	position: relative;
	left: 0;
	right: 0;
	transition: all 0.6s ease;
	font-size: 15px;

	@media screen and (max-width: 768px) {
		font-size: 13px;
	}

	@media screen and (max-width: 450px) {
		font-size: 10px;
	}

	&:hover {
		background-color: var(--primary-color);
	}
}