/* ==============================
	COLOR PALETTE
================================ */
:root {
	--color-orange: #FF401A;
	--color-lightblue: #A7D0D9;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-darkgray: #1C1D1B;
	--border-radius: 11px;
	--gradient-background: linear-gradient(153.3deg, #E7EFFD 11.72%, #FAFCFF 37.71%, #FAFCFF 62.45%, #E7EFFD 88.31%);
}

/* ==============================
   BUTTON BASE STYLE
================================ */
.small-btn {
	display: block;
	height: 33px;
	line-height: 33px;
	font-size: 14px;
	border-radius: 8px;
	border: none;
	padding: 0 14px;
	font-weight: 600;
	text-decoration: none;
}

.lg-btn {
	height: 46px;
	font-size: 18px;
	border-radius: 11px;
	border: none;
	padding: 0 18px;
	font-weight: 600;
}

/* ==============================
   BUTTON VARIANTS
================================ */

/* 1. Primary Orange Button */
.button-primary {
	background-color: var(--color-orange);
	color: var(--color-white);
}

.button-primary:hover {
	opacity: 0.85;
	text-decoration: none;
	color: var(--color-white);
}

/* 2. Dark Gray Button */
.button-dark {
	background-color: var(--color-darkgray);
	color: var(--color-white);
}

.button-dark:hover {
	opacity: 0.85;
}

/* 3. Dark Button with Right Arrow Icon */
.button-arrow {
	position: relative;
	padding-right: 50px;
	/* space for arrow */
}

.button-arrow::after {
	content: "";
	background-image: url("/assets/oryxlandingpage/images/icons/arrow-right.svg");
	background-size: 24px;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.button-arrow:hover {
	opacity: 0.85;
}

/* 4. Outline Button */
.button-outline {
	background-color: transparent;
	border: 2px solid var(--color-darkgray);
	color: var(--color-darkgray);
}

.button-outline:hover {
	background-color: var(--color-darkgray);
	color: var(--color-white);
}

/* ==============================
	Commen Style
================================ */

body {
	font-family: "Montserrat", sans-serif;
	position: relative;
}

.gap-16 {
	gap: 16px !important;
}

p {
	margin: 0;
}

p.title {
	font-weight: 600;
	font-size: 40px;
	line-height: 136%;
	letter-spacing: 0;
	color: #000000E0;
	text-align: center;
}

p.description {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	text-align: center;
	color: #000000CC;
	width: 45%;
	margin: auto;
}

.mb-16px {
	margin-bottom: 16px !important;
}

select {
	padding: 12px 40px 12px 18px;
	background-color: #F7F7F7;
	border: 1px solid #00000033;
	border-radius: 8px;
	color: #000000CC;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('/assets/oryxlandingpage/images/icons/select-arrow.svg');
	background-repeat: no-repeat;
	background-position: right 18px top 50%;
	background-size: 12px 6px;
	width: 100%;
	cursor: pointer;
}

select:focus-visible {
	outline: #FF4D0014 auto 1px;
}

/* For IE (thanks to @SaiManoj) */
select::-ms-expand {
	display: none;
}

span.primary-text {
	color: var(--color-orange);
}

span.arrow {
	background-image: url("/assets/oryxlandingpage/images/icons/arrow-right.svg");
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-left: 10px;
}

/* ==============================
	LANDING PAGE
================================ */
.custom-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	background: #ffffff40;
	border: 1px solid var(--color-white);
	position: sticky;
	top: 0;
	z-index: 2;
	margin-top: 24px;
	border-radius: 12px;
	max-height: 58px;
}

.custom-navbar .logo {
	width: 116px;
	height: 38px;
	min-height: 39px;
	max-height: 38px;
}

.custom-navbar .logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.custom-navbar .hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: 0;
	border-radius: 5px;
	cursor: pointer;
}

.hamburger span {
	width: 20px;
	height: 2px;
	background: #000000ab;
	border-radius: 5px;
}

.custom-navbar ul {
	list-style: none;
	display: flex;
	gap: 30px;
	padding: 0;
	margin: 0;
}


.custom-navbar ul li a {
	text-decoration: none;
	color: #3A3A3A;
	font-weight: 600;
	font-size: 15px;
}

.custom-navbar .custom-dropdown button {
	border: none;
	background: none;
	color: #3A3A3A;
	font-weight: 600;
	font-size: 15px;
}

#navLinks a.small-btn {
	display: none;
	color: #FFFFFF !important;
}

.custom-navbar ul li a.dropdown-item {
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 5px;
}


.custom-navbar .dropdown-item.active,
.custom-navbar .dropdown-item:active {
	color: var(--color-orange);
	background: none;
}

.custom-navbar ul li a.dropdown-item:hover {
	background: none;
	color: var(--color-orange) !important;
}

.custom-dropdown .dropdown-menu {
	padding: 10px;
}

.custom-navbar ul li .nav-link:hover,
.custom-navbar ul li .nav-link.active {
	color: var(--color-orange);
}

.custom-navbar ul li.contact-btn {
	display: none;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero-section-wrapper {
	width: 100%;
	background-image: url("/assets/oryxlandingpage/images/hero-bg-lg.jpg");
	background-repeat: no-repeat;
	background-size: 145%;
	background-position: 0;
	position: relative;
	top: -82px;
	left: 0;
	right: auto;
	padding-top: 160px;
	padding-bottom: 132px;
	margin-bottom: -82px;
}

.hero-section-wrapper::before {
	content: "";
	background-image: url("/assets/oryxlandingpage/images/white-gradient-bg.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero-section-details {
	width: 50%;
	z-index: 1;
}



.hero-title {
	font-weight: 600;
	font-size: 64px;
	color: var(--color-darkgray);
	line-height: 120%;
	letter-spacing: 0;
}

.hero-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: var(--color-black);
	margin: 24px 0 40px 0;
}

.canvas-wrapper {
	width: 558px !important;
	height: 493px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

:host {
	width: 100% !important;
	height: 100% !important;
}

.industry-leaders-section {
	padding: 140px 0;
	text-align: center;
}

.industry-leaders-section .title {
	font-weight: 500;
	font-size: 22px;
	color: var(--color-black);
	margin-bottom: 40px;
	letter-spacing: 0;
}

.leader-logos-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.leader-logos-wrapper .leader-logo-img-wrapper {
	height: 30px;
}

.leader-logos-wrapper .leader-logo-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.industry-solutions {
	margin-bottom: 140px;
}

.industry-tabs-wrapper {
	margin-top: 40px;
}

.industry-tabs-wrapper .nav-link {
	text-align: left;
	margin-bottom: 40px;
	border-radius: 0;
	opacity: 40%;
	padding: 0;
	position: relative;
	background-color: transparent !important;
}

.industry-tabs-wrapper .nav-link.active {
	opacity: 100%;
}

.industry-tabs-wrapper .nav-link::after {
	content: "";
	display: block;
	width: 90%;
	height: 1px;
	background-color: #0000004D;
	position: absolute;
	left: 0;
	bottom: 0;
}

.industry-tabs-wrapper .nav-link.active::after {
	background-color: #FF401A;
}

.industry-tabs-wrapper .nav-link .tab-titel {
	font-size: 22px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0;
	margin-bottom: 16px;
	color: #000000;
}

.industry-tabs-wrapper .nav-link .tab-description,
.industry-tabs-wrapper .tab-content-description {
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: 0;
	padding-bottom: 40px;
	color: #000000CC;
}

.industry-tabs-wrapper .nav-item:last-child .nav-link {
	margin-bottom: 0;
}

.industry-tabs-wrapper .tab-content {
	margin-left: 120px;
}

.industry-tabs-wrapper .tab-content .tab-pane .tab-content-image-wrapper {
	width: 100%;
	height: auto;
	background-image: url("/assets/oryxlandingpage/images/tabs-bg.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 28px;
	padding: 32px;
}

.industry-tabs-wrapper .tab-content-description {
	display: none;
}

.industry-tabs-wrapper .tab-content .tab-pane .tab-content-image {
	width: 100%;
	height: auto;
	position: relative;
}

.industry-tabs-wrapper .tab-content .tab-pane .tab-content-image img {
	width: 100%;
	height: auto;
	object-fit: fill;
	border-radius: 16px;
}

.mini-card {
	width: 243px;
	height: 127px;
	border-radius: 12px;
	box-shadow: 0px 1px 14px 1px #0000000F;
	background: #FFFFFF;
	border: 0.5px solid #0000000F;
	padding: 12px 18px;
	background-image: url("/assets/oryxlandingpage/images/min-card-bg.svg");
	position: absolute;
	background-repeat: no-repeat;
	background-position: 140px -1px;
	left: -77px;
	bottom: -62px;
}

.mini-card.right {
	left: auto !important;
	right: -77px;
}

.mini-card p.card-title {
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
}

.mini-card p.totals {
	font-weight: 600;
	font-size: 22px;
	line-height: 160%;
	letter-spacing: 0;
	color: #3094A4;
	padding-bottom: 7px;
	padding-right: 12px;
	border-bottom: 1px solid #0000000F;
	margin-bottom: 16px;
	display: inline-block;

}

.mini-card .returns span.return-arrow {
	background-image: url("/assets/oryxlandingpage/images/icons/arrow-return-left.svg");
	display: inline-block;
	width: 13px;
	height: 13px;
	margin: 0 8px 3px 0;
}

.mini-card .returns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.mini-card .returns p {
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	opacity: 40%;
	margin-right: 14px;
}

.mini-card .returns .raise-persentage {
	border-radius: 4px;
	padding: 3px 20px 3px 6px;
	font-weight: 500;
	font-size: 8px;
	line-height: 150%;
	letter-spacing: 0;
	color: #3094A4;
	background-color: #96D5DF36;
	position: relative;
}

.mini-card .returns .raise-persentage::after {
	content: url("/assets/oryxlandingpage/images/icons/arrow-up-right.svg");
	width: 12px;
	height: 12px;
	position: absolute;
	right: 8px;
}

.client-review-section {
	background: linear-gradient(153.3deg, #E7EFFD 11.72%, #FAFCFF 37.71%, #FAFCFF 62.45%, #E7EFFD 88.31%);
	padding: 54px 0;
}

.review-card {
	background: #fff;
	padding: 20px 22px;
	border: 1px solid #0000000A;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.review-card .stars {
	margin-bottom: 20px;
}

.review-card .stars .star-icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url("/assets/oryxlandingpage/images/icons/star.svg");
	background-position: center;
	background-repeat: no-repeat;
	padding: 2px 3px 4px 3px;
}

.review-card p.review-text {
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	color: #00000099;
	margin-bottom: 40px;
}

.client-info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 23px;
}

.client-info .avatar-wrapper {
	width: 52px;
	height: 52px;
	/* border-radius: 50%; */
}

.client-info .avatar-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.client-info p.client-name {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
}

.client-info p.client-company {
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	color: #00000099;
}

.clients-review-carousel .owl-stage {
	padding-left: 0px !important;
}

.action-section {
	padding-top: 140px;
	padding-bottom: 140px;
}

.action-section p.description {
	width: 40%;
	margin: auto;
	margin-bottom: 28px;
}

.partnership-section {
	margin-bottom: 80px;
}

.partnership-section-bg {
	background: linear-gradient(153.3deg, #E7EFFD 11.72%, #FAFCFF 37.71%, #FAFCFF 62.45%, #E7EFFD 88.31%);
	border-radius: 16px;
	padding: 72px 122px 69px 80px;
}

.partnership-section-bg .partnership-detalis p:first-child {
	font-weight: 600;
	font-size: 32px;
	line-height: 150%;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.partnership-section-bg .partnership-detalis span.frappe-logo {
	width: 140px;
	height: 40px;
	background-image: url("/assets/oryxlandingpage/images/frappe.svg");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 25px;
}

.partnership-section-bg .partnership-detalis .partnership-btn {
	color: #FF401A;
	font-weight: 500;
	font-size: 22px;
	line-height: 160%;
	letter-spacing: 0;
	padding-left: 16px;
	padding-right: 36px;
	position: relative;
	border-left: 1.5px solid #FF401A;
	border-radius: 0;
	height: 40px;
	max-height: 40px;
}

.partnership-section-bg .partnership-detalis .partnership-btn::after {
	content: "";
	width: 24px;
	height: 24px;
	background-image: url("/assets/oryxlandingpage/images/icons/orange-arrow-right.svg");
	background-size: 24px;
	display: inline-block;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
}

.partnership-section-bg .partnership-detalis p:last-child {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	margin-top: 24px;
	width: 60%;
}

.partnership-section-bg .partnership-img-wrapper {
	width: 369px;
	height: 259px;
}

.partnership-section-bg .partnership-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer .site-map {
	padding-bottom: 100px;
	border-bottom: 1px solid #0000001C;
}

footer .ul-wrapper {
	margin-right: 90px;
}

footer .ul-wrapper p {
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0;
	margin-bottom: 24px;
}

footer .ul-wrapper ul {
	padding-left: 0;
	list-style: none;
}

footer .ul-wrapper ul li {
	margin-bottom: 16px;

}

footer .ul-wrapper ul li a {
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0;
	color: #000000CC;
	text-decoration: none;
}

.site-map .subscribe p:first-child {
	margin-bottom: 24px;
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0;
	color: #000000CC;
}

.site-map .subscribe form {
	position: relative;
	margin-bottom: 24px;
}

.site-map .subscribe form input {
	width: 100%;
	height: 46px;
	border-radius: 8px;
	border: 1px solid #00000066;
	padding-right: 84px;
	padding-left: 20px;
}

.site-map .subscribe form input::placeholder {
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0;
	color: #00000066;
}

.site-map .subscribe form button {
	width: 64px;
	height: 46px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 8px;
	border: none;
}

.site-map .subscribe p:last-child {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 0;
	color: #00000099;
}

footer p.copyright {
	padding: 28px 0 47px 0;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #00000099;
}

/* ==============================
	ABOUT PAGE
================================ */
.about-page .hero-title {
	font-size: 48px;
	line-height: 136%;
	letter-spacing: 0;
	color: #000000E0;
	padding-top: 42px;
}

.about-page {
	padding-top: 107px;
	padding-bottom: 70px;
}

.about-page .canvas-wrapper {
	width: 397px !important;
	height: 410px !important;
}

.about-page .canvas {
	width: 40%;
}

section.company-mission {
	padding-top: 116px;
}

.company-mission p.description {
	margin-bottom: 40px;
}

.company-mission-cards {
	gap: 20px;
}

.company-mission-cards .company-mission-card {
	padding: 40px 58px 74px 40px;
	background: linear-gradient(153.3deg, #E7EFFD 11.72%, #FAFCFF 37.71%, #FAFCFF 62.45%, #E7EFFD 88.31%);
	border: 1px solid #00000005;
	border-radius: 28px;
	width: 50%;
	min-height: 560px;
}

.company-mission-card p.card-title {
	font-weight: 500;
	font-size: 22px;
	line-height: 160%;
	letter-spacing: 0;
	color: var(--color-black);
	margin-bottom: 16px;
}

.company-mission-card p.card-title span {
	color: var(--color-orange);
}

.company-mission-card p.card-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	margin-bottom: 37px;
}

.company-mission-card .card-img-wrapper {
	width: 253px;
	height: 227px;
	margin: auto;
	text-align: center;
}

.company-mission-card .card-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.company-value-timeline ul {
	padding-left: 0;
	list-style: none;
	margin-top: 90px;
	position: relative;
}

.company-value-timeline ul li {
	width: 100%;
	padding-bottom: 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
}


.company-value-timeline ul li.right {
	justify-content: flex-end;

}

.company-value-timeline ul li div {
	width: 43%;
}

.company-value-timeline ul li::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--color-orange);
	position: absolute;
	left: 50%;
	top: 45%;
	transform: translate(-48%, -50%);
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transition: visibility 0s, opacity 0.5s linear;
}

.company-value-timeline ul li::after {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #0000004D;
	position: absolute;
	left: 50%;
	transform: translateY(-50%);
}

.company-value-timeline ul li:first-child::after {
	display: none;
}

.company-value-timeline ul li.before-active::before {
	opacity: 1;
	visibility: visible;
}

.company-value-timeline ul li.active::after {
	background-color: var(--color-orange);
}

.company-value-timeline ul li p:first-child {
	font-weight: 500;
	font-size: 22px;
	line-height: 160%;
	letter-spacing: 0;
	color: #1C1D1B;
	margin-bottom: 16px;
}

.company-value-timeline ul li p:last-child {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	padding-bottom: 40px;
	border-bottom: 1px solid #1C1D1B
}

.company-value-timeline ul li p {
	opacity: 40%;
}

.company-value-timeline ul li.active p {
	border-color: var(--color-orange);
	opacity: 100%;
	transition: opacity 0.4s ease;
}

.company-value-timeline ul li.active p span {
	color: var(--color-orange);
}

.company-value-timeline .timeline-item:first-child p {
	border-color: var(--color-orange) !important;
	opacity: 100% !important;
}

.company-value-timeline .timeline-item:first-child p span {
	color: var(--color-orange) !important;
}

.page-title-section .title-wrapper {
	background: linear-gradient(153.3deg, #E7EFFD 11.72%, #FAFCFF 37.71%, #FAFCFF 62.45%, #E7EFFD 88.31%);
	border-radius: 16px;
	padding: 75px 0 85px 0;
	margin-top: 68px;
	margin-bottom: 100px;
}

.page-title-section .title-wrapper p {
	font-weight: 600;
	font-size: 48px;
	line-height: 136%;
	letter-spacing: 0;
	text-align: center;
	color: #000000;
}

.title-wrapper p span {
	color: var(--color-orange);
}

/* .industries-section .industries-section .industry-card .industry-card-img  */

.industries-section .industries-section {
	margin-top: 40px;
}

.industries-section .industries-section .industry-card {
	padding: 12px;
	background-color: #FFF;
	border: 1px solid #0000001F;
	border-radius: 16px;
	margin-bottom: 20px;
	display: inline-block;
	text-decoration: none;
}

.industries-section .industry-card .industry-card-img {
	height: 180px;
	margin-bottom: 12px;
}

.industry-card .industry-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.industries-section .industry-card p.industry-card-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 160%;
	letter-spacing: 0;
	color: #1C1D1B;
	margin-bottom: 4px;
}

.industries-section .industry-card p.industry-card-desc {
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	margin-bottom: 6px;
	color: #000000CC;
}

.calculator-section {
	padding-top: 120px;
}

.calculator-section .calc-cards {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-top: 40px;
}

.calculator-section .calc-card {
	width: 50%;
	background-color: #FFFFFF;
	border: 1px solid #00000033;
	border-radius: 16px;
	padding: 24px;
}

.calc-form-input {
	margin-bottom: 24px;
}

.calc-form-input label {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 12px;
}

.form-select:focus,
.input:focus {
	border-color: #00000033;
	outline: 0;
	box-shadow: 0 0 0 .25rem #FF401A25;
}

.calc-form-input .options {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.calc-form-input .options div {
	width: 38%;
}

.calc-form-input .options div:first-child {
	width: 30%;
}

.calc-form-input .options div:last-child {
	width: 32%;
}

.calc-form-input input[type=radio] {
	display: none;
}

.calc-form-input .option-label {
	height: 50px;
	width: 100%;
	padding: 12px 0;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid #00000033;
	border-radius: 8px;
	background-color: #F7F7F7;
}

.calc-form-input input[type="radio"]:checked+.option-label {
	border-color: var(--color-orange);
	background: #FF4D0014;
	color: #FF401A;
}

.calc-form-input .option-label:hover {
	background: #FF4D0014;
}

.calc-form-input input.cal-input {
	padding: 12px 18px;
	background-color: #F7F7F7;
	border: 1px solid #00000033;
	border-radius: 8px;
	color: #000000CC;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	width: 100%;
}

.calc-card .calc-btn {
	height: 52px;
	padding: 15px 0;
	width: 100%;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0;
	background-color: var(--color-darkgray);
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.calc-card .calc-btn:disabled {
	cursor: not-allowed;
	opacity: 0.85;
}

/* Company Size Slider  */
.slider-container label {
	margin-bottom: 16px;
}

.label-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.label-wrapper #sliderValue {
	width: 58px;
	height: 36px;
	border-radius: 8px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	background-color: #FCFCFC;
	border: 1px solid #00000033;
	text-align: center;
}

.slider-container input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 5px;
	background: linear-gradient(to right, #FF401A 0%, #FF401A 30%, #00000036 30%, #00000036 100%);
	outline: none;
	transition: background 0.3s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-orange);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}

.slider-scale {
	display: flex;
	justify-content: space-between;
	height: 19px;
	margin-top: 16px;
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	color: #00000066;
}

.calc-card .nav-tabs {
	flex-wrap: nowrap;
	gap: 18px;
	justify-content: space-between;
	border: none;
}

.calc-card .nav-tabs li.nav-item {
	height: 67px;
	min-width: 160px;
	padding: 0px 30px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background-color: #FF4D0014;
	display: flex;
	text-align: center;
	justify-content: center;
}

.calc-card .nav-tabs li.nav-item.active {
	border-top: 2px solid #FF401A;
}

.calc-card .nav-tabs li.nav-item button {
	font-weight: 500;
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 0;
	text-align: center;
	width: 80%;
	color: #000000;
	text-align: center;
	white-space: normal !important;
	word-wrap: break-word;
	margin: auto;
	background: none !important;
	border: none !important;
}

.gauge-container {
	width: 100%;
	background: linear-gradient(180deg, rgba(255, 77, 0, 0.08) 0%, rgba(255, 77, 0, 0) 100%);
	padding: 15px 10px;
	position: relative;
	top: -1px;
}

.gauge-container svg {
	width: 100%;
}

.gauge-border {
	fill: none;
	stroke: var(--color-orange);
	stroke-width: 0.3;
}

.gauge-bg {
	fill: none;
	stroke: #FF4D001A;
	stroke-width: 5;
}

.gauge-fill {
	fill: none;
	stroke: var(--color-orange);
	stroke-width: 5;
	stroke-linecap: round;
	transition: stroke-dashoffset 1s ease;
}

.gauge-value {
	text-align: center;
	position: relative;
	margin-top: -170px;
}

.gauge-value span {
	width: 40px;
	height: 40px;
	padding: 8px;
	background-color: #FF4D0033;
	border-radius: 12px;
	background-image: url("/assets/oryxlandingpage/images/icons/tick-double.svg");
	background-size: 24px 24px;
	background-position: center center;
	background-repeat: no-repeat;
	margin-bottom: 16px;
}

.gauge-value h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 136%;
	letter-spacing: 0;
	text-align: center;
	margin-bottom: 19px;
	color: #FF401A;
}

.gauge-value p {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
}

.book-free-div-wrapper {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid #00000033;
}

.book-free-div-wrapper p:first-child {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 12px;
}

.book-free-div-wrapper p.text {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	margin-bottom: 24px;
	text-align: justify;
}

.book-free-div-wrapper .calc-btn {
	background-color: var(--color-orange);
	border: none;
}

section.industry-details {
	padding-top: 78px;

}

.industry-details .details-side .details-div p:first-child {
	font-weight: 500;
	font-size: 22px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 12px;
}

.industry-details .details-side .details-div p:last-child {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
}

.industry-details .img-wrapper-side {
	width: 299px;
	min-width: 299px;
	height: 303px;
	min-height: 303px;
}

.industry-details .img-wrapper-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

section.solution-details {
	padding-top: 70px;
}

.solution-details .title-section {
	margin-bottom: 100px;
}

.solution-details .img-wrapper-side {
	width: 407px;
	min-width: 407px;
	height: 206px;
	min-height: 206px;
}

.solution-details .img-wrapper-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.solution-details p.row-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 60px;
	padding-right: 45px;
}

.get-in-touch-form-wrapper {
	background-image: url("/assets/oryxlandingpage/images/get-in-touch-bg.jpg");
	background-position: left;
	background-size: auto;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 16px;
	margin-top: 40px;
	position: relative;
}

.get-in-touch-form-wrapper div,
.get-in-touch-form-wrapper form {
	width: 50%;
	z-index: 1;
}

.get-in-touch-form-wrapper div {
	padding-left: 40px;
	padding-right: 55px;
}

.get-in-touch-form-wrapper::after {
	content: "";
	background-image: url("/assets/oryxlandingpage/images/white gradient blur.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.get-in-touch-form-wrapper div p:first-child {
	font-weight: 600;
	font-size: 32px;
	line-height: 150%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 18px;
	width: 70%;
}

.get-in-touch-form-wrapper div p.text {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	margin-bottom: 40px;
	padding-right: 50px;
}

.get-in-touch-form-wrapper div ul {
	list-style: none;
	padding-left: 0;
}

.get-in-touch-form-wrapper div ul li {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
}

.get-in-touch-form-wrapper div ul li a {
	font-size: 16px;
	text-decoration: none;
	color: #000000CC;

}

.get-in-touch-form-wrapper div ul li:last-child {
	margin-bottom: 0;
}

.get-in-touch-form-wrapper div ul span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.get-in-touch-form-wrapper div ul span.mail {
	background-image: url("/assets/oryxlandingpage/images/icons/mail.svg");
}

.get-in-touch-form-wrapper div ul span.phone-call {
	background-image: url("/assets/oryxlandingpage/images/icons/phone-call.svg");
}

.get-in-touch-form-wrapper div ul span.map-pin {
	background-image: url("/assets/oryxlandingpage/images/icons/map-pin.svg");
}

.custom-form {
	background-color: #FFFFFF;
	border: 1px solid #00000033;
	border-radius: 16px;
	padding: 24px;
}

.custom-form label {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 12px;
}

.custom-form .form-group {
	margin-bottom: 24px;
	width: 100%;
	padding: 0;
}

.custom-form .form-btn {
	height: 52px;
	border-radius: 11px;
	width: 100%;
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-form input,
.custom-form textarea {
	background-color: #F7F7F7;
	border: 1px solid #00000033;
	height: 50px;
	color: #00000099;
	padding: 0 18px;
	width: 100%;
	border-radius: 8px;
}

.custom-form textarea {
	padding-top: 12px;
	padding-bottom: 12px;
	min-height: 140px;
}

.survey-section {
	padding-top: 140px;
}

.surver-form-wrapper {
	margin-top: 40px;
	padding-left: 180px;
	padding-right: 180px;
}

.success-story-carousel .carousel-item {
	background-color: #FFFFFF;
	border-radius: 12px;
	border: 1px solid #0000000A;
	padding: 40px;
	box-shadow: 0px 0px 14px 0px #0000000D;
}

/* .success-story-carousel .carousel-item-left {
	width: 40%;
}

.success-story-carousel .carousel-item-right {
	width: 60%;
} */

.success-story-carousel .carousel-item-left .carousel-img-wrapper {
	width: 100%;
	min-width: 380px;
	height: 255px;
	margin-bottom: 28px;
}

.success-story-carousel .carousel-item-left .carousel-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	border-radius: 16px;
}

.success-story-carousel .carousel-item-left p,
.success-story-carousel .carousel-item-right p.p-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	text-align: left;
	color: #000000CC;
	margin-bottom: 12px;
}

.success-story-carousel .carousel-item-left p span {
	font-weight: 400;
}

.success-story-carousel .carousel-item-right p.p-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	margin-bottom: 24px;
}

.success-story-carousel .carousel-item-right .rate {
	margin-top: 8px;
}

.success-story-carousel .carousel-item-right .rate p {
	font-weight: 700;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #1C1D1B;
}

.success-story-carousel .carousel-item-right .rate p:first-child {
	font-weight: 600;
	font-size: 32px;
	line-height: 150%;
	letter-spacing: 0;
	color: var(--color-orange);
}

section.success-story-carousel {
	margin-bottom: 140px;
}

.success-story-carousel .carousel-inner {
	border-radius: 12px;
	width: 85%;
	margin: auto;
}

.success-story-carousel .carousel-control-next,
.success-story-carousel .carousel-control-prev {
	opacity: 1;
	background-color: #000000;
	width: 78px;

}

.success-story-carousel .carousel-wrapper {
	margin-top: 40px;
}

.success-story-carousel .carousel-control-prev {
	border-top-left-radius: 12px;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 12px;
}

.success-story-carousel .carousel-control-next {
	border-top-left-radius: 2px;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 2px;
}

.success-story-carousel .carousel-control-prev-icon {
	background-image: url("/assets/oryxlandingpage/images/icons/next.svg");
	background-size: 6px 12px;
}

.success-story-carousel .carousel-control-next-icon {
	background-image: url("/assets/oryxlandingpage/images/icons/prev.svg");
	background-size: 6px 12px;
}

.industries-section p.title,
.industries-section p.description {
	text-align: left;
	margin-left: 0;
}

.industry-accordion {
	margin-top: 40px;
}

.industry-accordion .industry-accordion-item {
	border: none !important;
	background: none;
	box-shadow: none;
	padding: 28px 0;
	border-bottom: 1px solid #00000033 !important;
	position: relative;
	border-radius: 0 !important;
	cursor: pointer;
}

.industry-accordion .industry-accordion-item:first-child {
	border-top: 1px solid #00000033 !important;
}


.industry-accordion .industry-accordion-item::after {
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("/assets/oryxlandingpage/images/icons/arrow-right-black.svg");
	background-size: contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	transition: left 0.5s ease;
}

.industry-accordion .industry-accordion-item.show::after {
	width: 60px;
	height: 60px;
	background-image: url("/assets/oryxlandingpage/images/icons/arrow-right-bg.svg");
	right: 20px;
	top: 80%;
}

.industry-accordion .industry-accordion-item .left-side {
	width: 40%;
	padding-left: 5px;
}

.industry-accordion .industry-accordion-item .right-side {
	width: 41%;
	display: none;
}

.industry-accordion .item-title {
	font-weight: 500;
	font-size: 28px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000E0;
}

.industry-accordion .item-title span.no {
	color: #000000E0;
	font-weight: 600;
	padding-right: 24px;
}

.industry-accordion .item-details {
	padding-left: 55px;
	padding-top: 16px;
	display: none;
}

.industry-accordion-item .industry-img-wrapper img {
	border-radius: 6px;
	width: 100%;
}

.industry-accordion-item .left-side .accordion-bold-text {
	font-weight: 500;
	font-size: 22px;
	line-height: 160%;
	letter-spacing: 0;
	margin-bottom: 12px;
	color: #000000;
}

.industry-accordion-item .left-side .accordion-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
	margin-bottom: 24px;
}

.industry-accordion-item .left-side .accordion-btn {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.industry-accordion-item .left-side .accordion-btn:hover {
	color: #FFFFFF;
}

.industry-accordion-item:first-child .left-side .item-details,
.industry-accordion-item:first-child .right-side {
	display: inline-block;
}

.blog-posts-list .blog-posts-list-wrapper {
	margin-top: 60px;
}

.blog-posts-list .blog-post-card {
	margin-bottom: 40px;
	padding-bottom: 60px;
	position: relative;
}

.blog-posts-list .blog-post-card .card-img-wrapper {
	width: 100%;
	height: 160px;
	margin-bottom: 16px;
}

.blog-posts-list .blog-post-card .card-img-wrapper img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.blog-posts-list .blog-post-card .card-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
	margin-bottom: 16px;
}

.blog-posts-list .blog-post-card .card-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	text-align: justify;
	color: #000000CC;
	margin-bottom: 16px;
}

.blog-posts-list .blog-post-card a.card-btn {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.blog-posts-list .blog-post-card a.card-btn:hover {
	color: #FFFFFF;
}

.plog-post-details {
	padding-top: 80px;
}

.plog-post-details .post-title {
	font-weight: 600;
	font-size: 40px;
	line-height: 136%;
	letter-spacing: 0;
	color: #1C1D1B;
	text-align: center;
	width: 75%;
	margin: auto;
}

.plog-post-details .infos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-top: 16px;
	margin-bottom: 28px;
}

.plog-post-details .infos .blogger-info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.plog-post-details .blogger-info .blogger-img-wrapper {
	width: 28px;
	height: 28px;
}

.plog-post-details .blogger-info .blogger-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.plog-post-details .blogger-name {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000;
}

.plog-post-details .infos span.dot {
	width: 24px;
	height: 26px;
	text-align: center;
	font-weight: 700;
	line-height: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.plog-post-details .infos p.post-date,
.plog-post-details .infos p.post-read-time {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0;
	color: #000000CC;
}

.plog-post-details .plog-post-cover-wrapper {
	width: 100%;
	height: 360px;
	margin-bottom: 60px;
}

.plog-post-details .plog-post-cover-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.plog-post-details .post-content {
	padding: 0 80px;
}