.search {
	background-color: #fff;
	box-shadow: var(--shadow)!important;
	border-radius: 20px;
	min-height: 300px;
}
.search-title {
	font-weight: 700;
	font-size: 68px;
	text-align: center;
	background: linear-gradient(90deg, #FF8D35, #FF1B3F);
    -webkit-background-clip: text;
    color: transparent;
}
.search .form-control {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}
.search .input-group {
	width: 50%;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
}
.search .input-group > .btn {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0 20px;
    background: linear-gradient(90deg, #FF8D35, #FF1B3F);
    border: 1px solid #FF8D35;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    transition: all 0.5s ease;
	font-weight: 700;
}
.search .input-group > .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, #FF1B3F, #FF8D35);
    z-index: -1;
    transition: left 0.5s ease;
}
.search .input-group > .btn:hover {
    color: white;
}
.search .input-group > .btn:hover::before {
    left: 0;
}
.search>span {
	margin-top: 20px;
	display: block;
	text-align: center;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}
.data-list {
	margin-top: 25px;
	border-radius: 20px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}
.data-list>img {
	border-radius: 20px;
	box-shadow: var(--shadow)!important;
}
.data-list .data-text {
	background-color: #FF7C44;
    margin-left: -185px;
    border-radius: 25px;
    padding: 25px 50px;
	color: #fff;
	box-shadow: var(--shadow)!important;
}
.data-list .data-text>h2 {
	font-size: 48px;
	font-weight: 700;
}
.data-list .data-text>span {
	text-align: justify;
	font-weight: 600;
}
.area-code {
	margin-bottom: 25px;
	background-color: #fff;
	box-shadow: var(--shadow)!important;
	padding: 50px 25px;
	border-radius: 20px;
}
.area-code>h2 {
	font-size: 48px;
	text-align: center;
	font-weight: 800;
	background: linear-gradient(90deg, #FF8D35, #FF1B3F);
    -webkit-background-clip: text;
    color: transparent;
}
.area-code>span {
	text-align: center;
	width: 80%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.code-list {
	margin-top: 25px;
    line-height: 1;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    gap: 5px;
}
.code-list>a {
	border: 1px solid #ddd;
    padding: 11px 15px;
    border-radius: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF8D35, #FF1B3F);
    -webkit-background-clip: text;
    color: transparent;
    transition: all .5s ease;
    min-width: 84px;
    font-size: 16px;
}
.code-list>a:hover {
	background: linear-gradient(90deg, #FF8D35, #FF1B3F);
    color: #fff;
}
.blog {
	margin-top: 25px;
	margin-bottom: 25px;
}
.blog>h2 {
	margin-top: 50px;
	margin-bottom: 0;
	font-size: 48px;
	text-align: center;
	font-weight: 800;
	background: linear-gradient(90deg, #FF8D35, #FF1B3F);
    -webkit-background-clip: text;
    color: transparent;
}
.blog>span {
	margin-top: 10px;
	margin-bottom: 25px;
	display: block;
	text-align: center;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}
.blog img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.blog .card {
	border-radius: 10px;position: relative;
    overflow: hidden;
	height: 100%;
}
.blog .card:hover {
	box-shadow: var(--shadow)!important;
}
.blog .card:hover img {
    opacity: 0.7;
    transform: scale(1.05);
}
.blog .image-container {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.blog .image-container img {
    height: 100%;
    width: auto;
    object-fit: cover;
}
@media (max-width: 768px) {
	.data-list {
		flex-direction: column;
	}
	.data-list>img {
		width: 100%;
	}
	.data-list .data-text {
		margin-left: 0;
		margin-top: -75px;
		padding: 25px;
	}
	.search {
		padding: 25px!important;
	}
	.search-title {
		font-size: 52px;
	}
	.blog>span,
	.area-code>span,
	.search>span {
		width: 100%;
		text-align: justify!important;
	}
	.search .input-group {
		width: 100%;
	}
	.area-code>h2 {
		font-size: 36px;
	}
	.blog>h2 {
		font-size: 42px;
	}
	.col-sm-6 {
		width: 50%;
	}
}