/* COMMON STYLE */
html.js {
	margin: 0 !important;
}

h1,
.h1 {
	font-size: 3.125rem;
	font-weight: 700;
}

h2,
.h2 {
	font-size: 2rem;
	font-weight: 700;
}

h3,
.h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

h4,
.h4 {
	font-size: 1.125rem;
	font-weight: 700;
}

h5,
.h5 {
	font-size: 1rem;
	font-weight: 700;
}

h6,
.h6 {
	font-size: 0.875rem;
	font-weight: 500;
}

a {
	text-decoration: none;
	color: var(--bodyText);
}

p:has(+p) {
	margin-bottom: 1rem;
}

strong,
b {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0.75rem;
	padding-left: 0.75rem;
	--content-width: 100%;
}

.btn a {
	padding: 1rem;
	font-size: 1rem;
	line-height: 1.25rem;
	color: var(--white);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-weight: 550;
	transition: all 0.3s linear;
	gap: 14px;
	border-radius: 0.5rem;
	border: 1px solid transparent;
}

.btn a .icon {
	display: flex;
}

/* @keyframes spin {
	0% {
		--angle: -00deg;
	}
	100% {
		--angle: 360deg;
	}
} */
/* @property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
} */
/* background-image: linear-gradient(var(--angle), #FFA000 0%, #FF6000 100%); */
/* animation: spin 3s linear infinite; */
.btn.btn-1 a {
	/* background-color: var(--white); */
	border-color: var(--orange);
	color: var(--white);
}

.btn.btn-1 a:hover {
	background-color: var(--orange);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.btn.btn-2 a {
	border: 1px solid var(--orange);
	color: var(--bodyText);
}

.btn.btn-2 a:hover {
	color: var(--white);
	background-color: var(--orange);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.btn.btn-2 a:hover [stroke] {
	stroke: var(--white);
}

.btn.btn-2 a [stroke] {
	transition: all 0.3s linear;
}

.btn.btn-3 a {
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}

.btn.btn-3 a:hover {
	background-color: var(--white);
	color: var(--orange);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.btn.btn-3 a:hover [stroke] {
	stroke: var(--orange);
}

.btn.btn-3 a [stroke] {
	transition: all 0.3s linear;
}

/* SECTION TITLE */
.section-title-button {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.section-title {
	max-width: 1060px;
	margin-bottom: 60px;
}

.section-title h2,
.section-title .h2 {
	line-height: 3.5rem;
	font-weight: 700;
	padding-bottom: 20px;
	position: relative;
}

.section-title .sub-title {
	margin-top: 30px;
}

h1 span,
.h1 span {
	font-weight: 700;
}

h1 span,
.h1 span,
h2 span,
.h2 span,
.h3 span,
h3 span,
.h4 span,
h4 span {
	/* color: var(--orange); */
	background-image: var(--orangeGradient);
	color: transparent;
	background-clip: text;
}

.section-title h2::before,
.section-title .h2::before {
	position: absolute;
	content: '';
	width: 46px;
	height: 4px;
	background-color: var(--orange);
	bottom: 0;
	left: 0;
}

.section-title .desc {
	margin-top: 20px;
	font-size: 1rem;
	line-height: 1.75rem;
}

/* SECTION TITLE */

/* PORTFOLIO WRAPPER LIST AND CARD */
.portfolio-wrapper {
	max-width: 1208px;
	display: flex;
	flex-direction: column;
	gap: 45px;
}

.portfolio-card {
	display: grid;
	grid-template-columns: 43.5% 1fr;
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: all 0.2s;
	overflow: hidden;
	position: relative;
}

.portfolio-card:hover {
	box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

.portfolio-card .left-part {
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--border);
	background-color: #FFF6F0;
}

.portfolio-card .left-part img {
	width: 100%;
	max-width: 420px;
	transition: all 0.2s;
}

.portfolio-card:hover .left-part img {
	transform: scale(1.1);
}

.portfolio-card .right-part {
	background: linear-gradient(180deg, #FFFFFF 0%, #EDF0F3 100%);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.portfolio-card .right-part .logo img {
	max-width: 156px;
}

.portfolio-card .right-part .title h3 {
	font-weight: 700;
	line-height: 1.3;
	color: var(--bodyText);
	margin-bottom: 12px;
}

.portfolio-card .right-part .title p {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	color: var(--bodyText);
}

.portfolio-card .right-part .tech-stack h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: var(--bodyText);
	margin-bottom: 16px;
}

.portfolio-card .right-part .tech-stack .tech-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.portfolio-card .right-part .tech-stack .tech-wrapper .tech-label {
	border: 1px solid var(--border);
	background-color: var(--white);
	padding: 10px 16px;
}

.portfolio-card .right-part .tech-stack .tech-wrapper .tech-label p {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	color: var(--bodyText);
}

.portfolio-card .right-part .btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+1) .left-part {
	background-color: #FFF6F0;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+2) .left-part {
	background-color: #F5F0FC;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+3) .left-part {
	background-color: #F2F3F8;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+4) .left-part {
	background-color: #E9E9FF;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+5) .left-part {
	background-color: #F1F6FB;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+6) .left-part {
	background-color: #edf9f2;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+7) .left-part {
	background-color: #fffaee;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+8) .left-part {
	background-color: #e5ecee;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+9) .left-part {
	background-color: #f0fbff;
}

.portfolio-wrapper .portfolio-card:nth-child(10n+10) .left-part {
	background-color: #f8f0ff;
}

/* PORTFOLIO WRAPPER LIST AND CARD */

/* BREADCRUMBS */
.breadcrumb-main {
	font-size: 16px;
	padding: 10px 0;
	border-top: 3px solid var(--border);
}

.breadcrumb-main .breadcrumb ul {
	display: flex;
}

.breadcrumb-main .breadcrumb ul li a {
	color: var(--orange);
}

.breadcrumb-main .breadcrumb ul li.active a {
	color: var(--bodyText);
	font-size: 0.875rem;
}

.breadcrumb-main .breadcrumb ul li:first-child:before {
	display: none;
}

.breadcrumb-main .breadcrumb ul li:before {
	content: "/";
	margin: 0px 8px;
}

/* BREADCRUMBS */

/* BLOG CARD LIST */
.blog-wraper-main {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.esb-card-blog {
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--white);
	position: relative;
	transition: 0.3s;
}

.esb-card-blog:hover {
	box-shadow: -7px 9px 46.8px 0px #FF600026;
}

.esb-card-blog .esb-card-blog-img {
	height: 160px;
}

.esb-card-blog .esb-card-blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-position: center center;
}

.esb-card-blog-detail {
	padding: 20px 30px 30px;
	display: flex;
	flex-direction: column;
	height: calc(100% - 160px);
}

.esb-card-blog-detail .esb-blog__chip {
	font-weight: 600;
	font-size: 1rem;
	text-decoration: underline;
	text-decoration-color: var(--orange);
	margin-bottom: 1rem;
}

.esb-card-blog .esb-blog-title {
	font-weight: 700;
	line-height: var(--lh-28);
	margin-bottom: 38px;
}

.esb-blog-author-img {
	width: 50px;
	height: 50px;
	border: 1.26px solid #dadada;
	border-radius: 100%;
	overflow: hidden;
}

.esb-blog-author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
}

.esb-blog-author {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 20px;
	margin-top: auto;
}

.esb-blog-author .esb-blog-author-name {
	font-size: 1.125rem;
	line-height: 1.5rem;
	margin-bottom: 2px;
}

.esb-blog-author .esb-blog-author-post {
	font-size: 1rem;
	line-height: 1.5rem;
}

.esb-card-blog-bottom .esb-blog-date {
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.esb-card-blog-bottom .esb-blog-date img {
	width: 20px;
}

.esb-blog-read a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.125rem;
	font-weight: 600;
}

.esb-blog-read a:after {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	content: "";
}

.esb-card-date-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.blog-list-section {
	padding: 60px 0px 120px;
}

/* BLOG CARD LIST */


/* CERTIFICATE CARD */
.certificate-card {
	background: var(--lightGradientAlt);
	padding: 42px 42px 70px 42px;
	border-radius: 12px;
	border: 1px solid var(--border);
	transition: all 0.2s;
}

.certificate-card:hover {
	box-shadow: 0px 2px 30px 0px #00000026;
	background: var(--white);
}

.certificate-card .img-wrap {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.certificate-card .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.certificate-card h3 {
	margin-bottom: 20px;
}

.certificate-card .desc,
.certificate-card .desc p {
	line-height: var(--lh-28);
	max-width: 93%;
}

/* CERTIFICATE CARD */


/* BANNER CERTIFICATE SLIDES */
@keyframes certSlideIn {
	from {
		transform: translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes certSlideOut {
	from {
		transform: translateY(0);
		opacity: 1;
	}

	to {
		transform: translateY(-100%);
		opacity: 0;
	}
}

.banner-certificate-wrapper {
	position: relative;
	display: block;
	overflow: hidden;
	height: 120px;
}

.banner-certificate-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateY(100%);
}

.banner-certificate-item.cert-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	animation: certSlideIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.banner-certificate-item.cert-leaving {
	opacity: 1;
	animation: certSlideOut 0.45s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}

.banner-certificate-item .inner {
	display: flex;
	align-items: center;
	gap: 16px;
}

.banner-certificate-item .img-part {
	height: 104px;
}

.banner-certificate-item .img-part img {
	width: auto;
	height: 100%;
	display: block;
}

.banner-certificate-item .content-part .title {
	font-size: 24px;
	font-weight: 600;
	color: var(--white);
}

.banner-certificate-item .content-part .desc {
	color: var(--white);
	font-size: 18px;
}

/* BANNER CERTIFICATE SLIDES */

/* CLUTCH RATING BAR */
.clutch-rating-wrap {
	display: flex;
	width: fit-content;
	box-shadow: 3px 0 14px 3px rgba(0, 0, 0, .0509803922);
	border-radius: 12px;
	transition: all .3s ease;
	background-color: var(--white);
	padding: 28px;
	gap: 20px 50px;
	align-items: center;
}

.clutch-rating-company {
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
	flex-wrap: wrap;
}

.clutch-rating-external {
	height: 50px;
	overflow: hidden;
	width: 215px;
}

.clutch-rating-company ul {
	display: flex;
	align-items: center;
}

.clutch-rating-company li {
	width: 36px;
	height: 36px;
	box-shadow: 0 0 0 1px var(--border);
	background-color: var(--white);
	border-radius: 4px;
	box-shadow: 4.15px 0 18.52px 4.15px rgba(0, 0, 0, .1019607843);
}

.clutch-rating-company li img {
	width: 100%;
	height: 100%;
}

.clutch-rating-company li+li {
	margin-left: -8px;
}

.clutch-rating-company-text {
	font-size: 19px;
	font-weight: 500;
}

.clutch-rating-company::before {
	position: absolute;
	content: '';
	width: 2px;
	height: 50%;
	right: -25px;
	background-color: var(--dark);
	top: 0;
	bottom: 0;
	margin: auto 0;
	opacity: 0.2;
	min-height: 25px;
}

/* CLUTCH RATING BAR */

/* RANK CARD */
.rank-card {
	border-radius: 12px;
	border: 1px solid #0000001A;
	background: var(--white);
	transition: all 0.3s;
}

.rank-card:hover {
	border-color: var(--orange);
}

.rank-card>a {
	padding: 42px 42px 70px 42px;
	display: block;
}

.rank-card .rank-name {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.rank-card .img-div {
	margin-bottom: 24px;
	max-width: 131px;
}

.rank-card h3 {
	margin-bottom: 20px;
}

.rank-card .desc,
.rank-card .desc p {
	line-height: var(--lh-28);
}

/* RANK CARD */

/* GENERAL CTA */
.general-cta {
	margin-top: 60px;
}

.general-cta .inner {
	display: flex;
	align-items: center;
	position: relative;
	/* background: linear-gradient(92.1deg, #ffe8c2 0%, #ffffff 100%); */
	background-color: var(--dark);
	border-radius: 2.5rem;
	overflow: hidden;
}

.general-cta .inner::after {
	background-image: url(https://i.ibb.co/xqtYBh3y/team-decore-img.png);
	width: 470px;
	aspect-ratio: 1;
	z-index: 1;
	position: absolute;
	content: '';
	background-repeat: no-repeat;
	left: 0;
	top: 0;
	background-size: 100%;
	background-position: center;
	transform: rotate(35deg);
}

.general-cta .inner::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: 100% 100%;
	background-position: 0px 0px;
	background-image: radial-gradient(62% 155% at 124% 50%, #0A181C00 0%, #0A181C 100%);
}

.general-cta .inner {
	position: relative;
}

.general-cta .content {
	max-width: 87%;
}

.general-cta .content h3,
.general-cta .content .h3 {
	color: var(--white);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.25;
	margin-bottom: 1rem;
}

.general-cta .content .desc {
	color: var(--white);
	line-height: var(--lh-28);
}

.general-cta .content .btn {
	margin-top: 32px;
}

.general-cta .left-block {
	padding: 60px;
	flex: 1;
	position: relative;
	z-index: 2;
}

.general-cta .right-block {
	height: 100%;
	width: 37%;
}

.general-cta .right-block img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}



/* GENERAL CTA */

/* COMMON */
section {
	padding: 120px 0;
}

.link-text a {
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.link-text a:hover .icon {
	margin-left: 5px;
	transition: 0.3s ease;
}

.link-text a .icon {
	transition: 0.3s ease;
}

[accordion-content] {
	height: 0;
	overflow: hidden;
	transition: height .3s ease;
}

.custom_ul {
	list-style: none;
}

.custom_ul li {
	position: relative;
	color: var(--bodyText);
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
	gap: 0 10px;
	line-height: var(--lh-28);
	padding-left: 26px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzMyODBfMjM2NTEpIj4KPHBhdGggZD0iTTcuOTk5NjcgMTQuNjY1NEMxMS42ODE2IDE0LjY2NTQgMTQuNjY2MyAxMS42ODA2IDE0LjY2NjMgNy45OTg3QzE0LjY2NjMgNC4zMTY4IDExLjY4MTYgMS4zMzIwMyA3Ljk5OTY3IDEuMzMyMDNDNC4zMTc3OCAxLjMzMjAzIDEuMzMzMDEgNC4zMTY4IDEuMzMzMDEgNy45OTg3QzEuMzMzMDEgMTEuNjgwNiA0LjMxNzc4IDE0LjY2NTQgNy45OTk2NyAxNC42NjU0WiIgc3Ryb2tlPSIjRkY2MDAwIiBzdHJva2Utd2lkdGg9IjEuMzMzMzMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNiA4LjAwMTNMNy4zMzMzMyA5LjMzNDY0TDEwIDYuNjY3OTciIHN0cm9rZT0iI0ZGNjAwMCIgc3Ryb2tlLXdpZHRoPSIxLjMzMzMzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zMjgwXzIzNjUxIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 18px;
}

.perk-joining-card {
	padding: 57px 42px;
	background: var(--lightGradientAlt);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: all 0.3s;
}

.perk-joining-card:hover {
	border-color: var(--orange);
	box-shadow: 0px 2px 30px 0px #00000026;
}

.perk-joining-card .perk-joining-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-bottom: 24px;
	border: 1px solid var(--orange);
	transition: all 0.3s;
	background-color: transparent;
}

.perk-joining-card .perk-joining-card-icon img {
	max-width: 32px;
}

.perk-joining-card:hover .perk-joining-card-icon {
	background-color: var(--orange);
}

.perk-joining-card:hover .perk-joining-card-icon img {
	filter: brightness(0) invert(1);
}

.perk-joining-card .perk-joining-card-icon img {
	transition: all 0.3s;
	width: 52px;
	aspect-ratio: 1;
	object-fit: contain;
}

.perk-joining-card .perk-joining-card-title {
	margin-bottom: 15px;
	max-width: 95%;
	line-height: var(--lh-28);
}

.perk-joining-card-desc {
	line-height: var(--lh-28);
}


/* COMMON */
/* SECTION TITLE */
@media screen and (min-width: 25.75rem) {
	.container {
		width: 100%;
		padding: 0 2rem;
	}
}

@media screen and (min-width: 48rem) {
	.container {
		width: 100%;
		padding: 0 3rem;
	}
}

@media screen and (min-width: 80rem) {
	.container {
		width: 100%;
		margin: 0 auto;
		padding: 0 7rem;
	}
}

@media screen and (min-width: 85.375rem) {
	.container {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 1.25rem;
		--content-width: 1280px;
	}
}

@media screen and (min-width: 95rem) {
	.container {
		max-width: 1480px;
		margin: 0 auto;
		padding: 0 1.25rem;
		--content-width: 1480px;
	}
}

@media screen and (min-width: 135rem) {
	.container {
		max-width: 1920px;
		padding-right: 0;
		padding-left: 0;
		--content-width: 1920px;
	}

	.btn a {
		font-size: 1.25rem;
		padding: 1.25rem;
	}

	.section-title {
		max-width: 1240px;
		/* max-width: 1300px; */
	}

	.section-title h2,
	.section-title .h2 {
		font-size: 2.75rem;
	}

	.section-title .desc {
		font-size: 1.375rem;
		line-height: 2.25rem;
		margin-top: 30px;
	}

	h1,
	.h1 {
		font-size: 3.3rem;
		font-weight: 700;
	}

	h2,
	.h2 {
		font-size: 2.3rem;
		font-weight: 700;
	}

	h3,
	.h3 {
		font-size: 1.8rem;
		font-weight: 700;
	}

	h4,
	.h4 {
		font-size: 1.425rem;
		font-weight: 700;
	}

	h5,
	.h5 {
		font-size: 1.3rem;
		font-weight: 700;
	}

	h6,
	.h6 {
		font-size: 1.275rem;
		font-weight: 500;
	}

	.custom_ul li {
		padding-left: 30px;
		background-position: left 9px;
		background-size: 20px;
	}
}

@media (max-width: 1920px) {

	h1,
	.h1 {
		font-size: 2.625rem;
	}
}

@media (max-width: 1440px) {

	h1,
	.h1 {
		font-size: 2.5rem;
		line-height: 1.15;
	}

	.btn a {
		padding: 0.7rem 1rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 1280px) {

	.section-title h2,
	.section-title .h2 {
		font-size: 2.2rem;
	}

	.portfolio-card .left-part img {
		max-width: 350px;
	}

	.perk-joining-card {
		padding: 35px 30px;
	}
}

@media (max-width: 1024px) {

	h1,
	.h1 {
		font-size: 2rem;
	}

	h2,
	.h2 {
		font-size: 1.8rem;
	}

	h3,
	.h3 {
		font-size: 1.425rem;
	}

	h4,
	.h4 {
		font-size: 1.3rem;
		font-weight: 700;
	}

	h5,
	.h5 {
		font-size: 1.275rem;
		font-weight: 500;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h2,
	.section-title .h2 {
		font-size: 1.8rem;
		line-height: 1.25;
	}

	.portfolio-card {
		grid-template-columns: repeat(1, 1fr);
	}

	.portfolio-card .left-part {
		min-height: 350px;
		border-right: 0;
	}
}

@media (max-width: 991px) {
	section {
		padding: 50px 0;
	}

	.clutch-rating-wrap {
		flex-wrap: wrap;
	}

	.clutch-rating-company::before {
		display: none;
	}

	.certificate-card {
		padding: 30px 30px 50px 30px;
	}

	.certificate-card .img-wrap {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.certificate-card .desc,
	.certificate-card .desc p {
		max-width: 98%;
	}
}

@media (max-width: 767px) {

	h1,
	.h1 {
		font-size: 1.9rem;
	}

	h2,
	.h2 {
		font-size: 1.7rem;
	}

	h3,
	.h3 {
		font-size: 1.3rem;
	}

	h4,
	.h4 {
		font-size: 1.2rem;
		font-weight: 700;
	}

	h5,
	.h5 {
		font-size: 1.1rem;
		font-weight: 500;
	}

	h6,
	.h6 {
		font-size: 1rem;
		font-weight: 500;
	}

	.btn a {
		padding: 0.8rem;
	}

	.section-title h2,
	.section-title .h2 {
		line-height: 2.4rem;
		font-size: 1.7rem;
	}

	.banner-certificate-wrapper {
		height: 90px;
	}

	.banner-certificate-item .content-part .title {
		font-size: 21px;
		margin-bottom: 2px;
	}

	.banner-certificate-item .content-part .desc {
		font-size: 16px;
	}

	.banner-certificate-item .img-part {
		height: 75px;
	}

	.portfolio-card .right-part .tech-stack .tech-wrapper .tech-label {
		padding: 6px 12px;
	}

	.portfolio-card .right-part {
		gap: 20px;
	}

	.portfolio-card .right-part {
		background: linear-gradient(180deg, #FFFFFF 0%, #EDF0F3 100%);
		padding: 32px 20px;
	}
}

@media (max-width: 575px) {
	.portfolio-card .left-part {
		min-height: 250px;
	}

	.portfolio-card .left-part img {
		max-width: 280px;
	}
}