/*------------ Basic Styles ------------*/
:root {
	scroll-behavior: smooth;
}
*, ::after, ::before {
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	color: #000;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}
.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
	width: 100%;
	max-width: 1440px;
	padding-right: var(--bs-gutter-x,.75rem);
	padding-left: var(--bs-gutter-x,.75rem);
	margin-right: auto;
	margin-left: auto;
}
.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) * -.5);
	margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
}
img, svg {
	vertical-align: middle;
}
.img-fluid {
	max-width: 100%;
	height: auto;
}
a ,
.label a:hover h5,
.mobile-nav li.menuitem a:hover,
.mobile-nav li .sub-menu a:hover {
	color: #9E2064;
	text-decoration: none;
}
a:focus, a:hover,
.label a h5,
.mobile-nav li.menuitem a,
.mobile-nav li .sub-menu a {
	color: #000;
	text-decoration: none;
}
h1 {
	font-weight: 700;
}
h2,
h3,
h5,
h6 {
	line-height: 1.5rem;
}
h2,
h3,
h4 {
	font-weight: 600;
}
h2,
h5,
h6 {
	text-transform: uppercase;	
}
h2 {
	font-size:  1.125rem;
}
h4 {
	font-size:  1.5rem;
	line-height: 1.75rem;
}
h5 {
	font-size: 1rem;	
}
h6 {
	font-size: 0.875rem;	
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}
.text-start {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-end {
	text-align: right !important;
}
section h3 {
	font-size: 2.5rem;
	line-height: 3.125rem;	
}
.lh-1 {
	line-height: 1 !important;
}
.lead {
	font-size: 1.125rem;
	line-height: 1.625rem;
}
ul,ol {	
	padding: 0;
	margin: 0;
}
ul {
	list-style: none;
}
.d-none {
	display: none !important;
}
.d-block {
	display: block !important;
}
.d-grid {
	display: grid !important;
}
.d-flex {
	display: flex !important;
}
.align-items-center {
	align-items: center !important;
}
.justify-content-around {
	justify-content: space-around !important;
}
.justify-content-between {
	justify-content: space-between !important;
}
.col {
  flex: 1 0 0%;
}
.col-4,
.col-8 {
	flex: 0 0 auto;
}
.col-4 {	
    width: 33.33333333%;
}
.col-8 {
    width: 66.66666666%;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/*---- Button ----*/
button {
	border-radius: 0;
}
button, 
input, 
optgroup, 
select, 
textarea {
	margin: 0;
    margin-right: 0px;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button, 
select {
	text-transform: none;
}
.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
[type="button"]:not(:disabled), 
[type="reset"]:not(:disabled), 
[type="submit"]:not(:disabled), 
button:not(:disabled) {
	cursor: pointer;
}
.btn-style {
	border-radius: 26px;
	-webkit-border-radius: 26px;
	-moz-border-radius: 26px;
	border: 3px solid #9E2064;
	padding: 0.75rem 1.688rem;
	font: normal normal 600 1.125rem/1.5rem Inter;
}
.outline-btn {
	color: #9E2064;	
}
.purple-btn {		
	color: #fff;
	background: #9E2064;
}
.white-btn {
	color: #fff;
	border-color: #fff;
}
.btn:focus, 
.btn:hover {
	background: #231F20;
	border-color: #231F20;
	color: #fff;
}
.white-btn:focus, 
.white-btn:hover {
	background: #9E2064;
	border-color: #9E2064;
}

main section {
	margin: 4.313rem 0;
}

.gap-25 {
	margin-right: 2.5rem;
}


/*------------ Header ------------*/
header {
	padding: 1.313rem 0;
	height: 5.625rem;
}
header,
.expand-menu {
	background: #fff;
	box-shadow: 0 3px 6px #00000021;
	-webkit-box-shadow: 0 3px 6px #00000021;
	-moz-box-shadow: 0 3px 6px #00000021;
}
.header-container,
.brand-logo,
.header-logo,
.patent-btn {
	display: flex;
}
.header-container,
.brand-logo {
	justify-content: space-between;
	align-items: center;
}
.header-logo img {
	max-width: 175px;
	height: auto;
}
.patent-btn {
	width: 125px;
	height: 25px;
	margin-left: 1.25rem;	
}
.patent-btn .btn-style {
	font-size: 0.75rem;
	line-height: 1.25rem;
	padding: 5px 13px;
	border: none;
}

/*------ Nav ------*/

.nav-links {
    display: flex;
    list-style: none;
}
.nav-link {
    padding: 0 1.25rem;	
	font-size: 1rem;
	line-height: 1.5rem;
	cursor: pointer;
}
.nav-link a, 
.footer .nav a {
	color: #000;
}
.nav-link:focus, .nav-link:hover,
.nav-link a:focus, .nav-link a:hover,
.mobile-nav li:focus, .mobile-nav li:hover,
.footer .nav a:focus, .footer .nav a:hover {
	color: #9E2064;
	text-decoration: none;
}
.arrow {
	border: solid black;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 4px;
	margin-left: 8px;
	margin-bottom: 3px;
}
.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.nav-link:focus .arrow, .nav-link:hover .arrow,
.expand-menu:focus .arrow, .expand-menu:hover .arrow,
.mobile-nav li:focus .arrow, .mobile-nav li:hover .arrow {
	border-color: #9E2064;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);	
	margin-bottom: -3px;
}
.nav-btns {
	text-align: right;
}
.expand-menu {
	position: absolute;
	top: 4.5rem;
	left: 50%;
	width: 98%;
	height: 90%;
	transform-origin: 0%;
	transform: translateX(-50%) rotate3d(1, 0, 0, -15deg);  
	perspective: 100px;
	transition: width 250ms ease, height 250ms ease, opacity 150ms ease,
	transform 200ms ease-in;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	background: #fff;	
	box-shadow: 0 5px 4px 0 #00000021;
	-webkit-box-shadow: 0 5px 4px 0 #00000021;
	-moz-box-shadow: 0 5px 4px 0 #00000021;
}
.menu-container {
	width: auto;
	height: auto;
	background-color: white;
}
.menu-container > * {
	position: absolute;
	top: 0;
	left: 44%;
	padding: 2rem 2rem 1.5rem;
	overflow: hidden;
	transform: translateX(-35%);
	transition: transform 250ms linear, opacity 250ms ease;
	opacity: 0;
}
#product-platform,
#industry,
#company {
	display: grid;
	grid-template-columns: repeat(3, 380px);
	max-width: 99%;
	margin-left: 7%;
}
.sub-menu-items {
	list-style: none;
	padding: 0 5%;
}
.sub-menu-item + .sub-menu-item {
	margin-top: 1.5rem;
}
.sec-menu .sub-menu-item + .sub-menu-item {
	margin-top: 2.5rem;
}
.sub-menu-item {
    display: flex;
	align-items: start;
	cursor: pointer;
	margin-top: 2rem;
}
.label-container {
	margin-left: 0.75rem;
}
.label h5 {
	margin: 0 0 0.625rem 0;
	text-transform: none;
}
.label-desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	transform: translateY(-3px);
	transition: color 100ms ease;
}
.active {
	z-index: 1;
	opacity: 1;
	transform: translatex(-50%);
}
.prev {
	transform: translateX(-65%);
}
.expand {
	opacity: 1;
	pointer-events: all;
	transform: translateX(-50%) rotateX(0);
}
.hover {
	color: #9E2064;
}
.new--expand {
	transition: opacity 150ms ease, transform 150ms ease-in;
}
.first {
	transition: none;
}
.more-info {
	width: 100%;
	/*background: #F5EDFF7D;*/
	grid-column: span 3;
	padding: 1.125rem 2rem;
	margin-top: 1.875rem;
}
header .outline-btn {
	margin-right: .8rem;
}
.navbar-toggler {
    display: block;
    cursor: pointer;
    transition: all 0.4s ease;	
}
.navbar-toggler svg {
	width: 55px;
	height: auto;
	transition: .5s ease;
	position: absolute;
	top: 1.65rem;
	right: 6%;
}
.navbar-toggler svg:hover path {
    stroke: #000;
}
.navbar-toggler #ic-close {
	display: none;
}
.mobile-nav	{
	display: none;
}
.showMenu {
	transform: translateY(0);
}

/*------ Hero Header ------*/

.hero {
	margin-top: 5.625rem;	
}
.hero-left {
	width: 45%;
}
.hero h2 {
	font-size: 3.125rem;
	line-height: 3.75rem;
	text-transform: none;
	margin-bottom: 2.5rem;	
}
.hero p {
	font-size: 1.5rem;
	line-height: 1.875rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
}
.hero .outline-btn {
	margin-right: 2.5rem;
}

/*------------ Footer ------------*/
footer {
	margin-top: 3.5rem;
}
.footer-logo {
	max-width: 5.938rem;
	height: auto;
	margin-bottom: 0.6rem;
	margin-left: auto;
	margin-right: auto;
}
.nav {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.footer .nav a {
	display: block;
	font-size: 1.125rem;
	line-height: 1.625rem;
	padding: 1.25rem;
}
.footer .nav,
.footer .social_nav {
	justify-content: center;
}
.footer .social_nav svg:hover path {
  fill: black;
}
.footer p {
	margin: 1.25rem 0 3.5rem;
}
.scroll-top {
	position: fixed;
	display: none;
	right: 2%;
	bottom: 3.5rem;
	z-index: 995;
}
.scroll-top svg {
	width: 40px;
	height: 40px;
}
.scroll-top svg:hover #Ellipse_13 {
  fill: black;
  stroke: black;
}
.scroll-top svg:hover path {
  stroke: white;
}


/*------------ Responsive ------------*/

/* Container */
@media (min-width: 576px) {
	.container, 
	.container-sm {
		max-width: 540px;
	}
	.mx-sm-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.patent-sm	{
        display: none;
    }
}
@media (min-width: 768px) {
	.container, 
	.container-md,
	.container-sm {
		max-width: 720px;
	}
	.justify-content-md-start {
		justify-content: flex-start !important;
	}
}
@media (min-width: 992px) {	
	.container, 
	.container-lg, 
	.container-md, 
	.container-sm {
		max-width: 960px;
	}
	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.flex-lg-row-reverse {
		flex-direction: row-reverse !important;
	}	
}
@media (min-width: 1200px) {
	.container, 
	.container-lg, 
	.container-md, 
	.container-sm, 
	.container-xl {
		max-width: 1140px;
	}
	.navbar-toggler	{
        display: none;
    }
}
@media (min-width: 1368px) {
	.container, 
	.container-lg, 
	.container-md, 
	.container-sm, 
	.container-xl {
		max-width: 1320px;
	}
}
@media (min-width: 1500px) {
	.container, 
	.container-lg, 
	.container-md, 
	.container-sm, 
	.container-xl {
		max-width: 1440px;
	}
}

/* max-width: 1367px */
@media (max-width: 1367px) {
	.nav-link {
		font-size: .85rem;
	}
	.arrow {
		margin-left: 7px;
	}
}
/* max-width: 1200px */
@media (max-width: 1200px) {
	header {
		height: auto;
	}
	.navbar-toggler {	
		margin-left: 1.875rem;
	}	
	.navbar,
	.nav-btns,
	.mobile-nav li .sub-menu {
		display: none;
	}
	.mobile-nav {
		margin-top: 2rem;
	}	
	.mobile-nav li.menuitem {
		padding: 1rem 0;
		font-size: 1.25rem;
		cursor: pointer;
		transition: .5s ease;
		clear: both;
	}
	.mobile-nav li:hover .sub-menu {
		display: block;
	}
	.mobile-nav li .sub-menu {
		margin: 1rem 0;
	}
	.mobile-nav li .sub-menu li {
		display: inline-flex;
		width: 33%;
		padding: 0.25rem 0;
		float: left;
		line-height:2rem;		
	}
	.mobile-nav li .sub-menu a {
		font-weight: 600;
		padding: 0.25rem 0;
		font-size: 1rem;
	}
	.mobile-nav li .sub-menu li:last-child {
		margin-bottom: 1.5rem;
	}
	.product-platform li:before,
	.industry li:before,
	.company li:before {
		content: "";
		background-size: 2rem !important;
		padding-right: 3.5rem;
	}
	.product-platform li:first-child:before {
		background: url("../images/nav-icons/LO-icon.svg") no-repeat center left;
	}
	.product-platform li:nth-child(2):before {
		background: url("../images/nav-icons/EO-icon.svg") no-repeat center left;
	}
	.product-platform li:nth-child(3):before {
		background: url("../images/nav-icons/MC-icon.svg") no-repeat center left;
	}
	.product-platform li:last-child:before {
		background: url("../images/nav-icons/PC-icon.svg") no-repeat center left;
	}
	.industry li:first-child:before {
		background: url("../images/nav-icons/real-estate-icon.svg") no-repeat center left;
	}
	.industry li:nth-child(2):before {
		background: url("../images/nav-icons/cons-icon.svg") no-repeat center left;
	}
	.industry li:last-child:before {
		background: url("../images/nav-icons/architecture-icon.svg") no-repeat center left;
	}
	.company li:first-child:before {
		background: url("../images/nav-icons/avatar-icon.svg") no-repeat center left;
	}
	.company li:nth-child(2):before {
		background: url("../images/nav-icons/faq-icon.svg") no-repeat center left;
	}
	.company li:last-child:before {
		background: url("../images/nav-icons/contact-icon.svg") no-repeat center left;
	}
	.hero-left h2 {
		font-size: 2.5rem;
		line-height: 2.75rem;
	}	
}
/* max-width: 1024px */
@media (max-width: 1024px) {	
	#product-platform,
	#industry,
	#company {
		grid-template-columns: repeat(2, 300px);
		row-gap: 2rem;
		height: 660px;
	}	
	.hero-left {
		width: 48%;
	    padding-right: 2rem;
	}
	section h3 {
		font-size: 2.25rem;
		line-height: 3rem;
	}		
}
/* max-width: 992px */
@media (max-width: 992px) {
	.hero-left h2 {
		font-size: 1.75rem;
		line-height: 2.25rem;
		margin-bottom: 7%;
	}
	.hero-left p {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
	.footer-row {
		display: flex;
		justify-content: space-evenly;
	}
	.footer .nav, .footer .social_nav {
		display: grid;
		padding-right: 0;
	}	
	.footer-logo {
		margin-right: 15%;
		margin-left: 0;
	}
	.footer-logo,
	.footer .nav {		
		margin-bottom: 2rem;
	}
	.footer ul {
		width: 40%;
		float: left;
	}
	.footer .nav a {
		font-size: 1.1rem;
		line-height: 1.5rem;
		padding: .8rem 1.25rem;
	}
	.footer .social_nav {
		width: auto;		
	}	
}
/* max-width: 768px */
@media (max-width: 768px) {	
	.hero-left {
		width: 55%;
	}
	.header-container {
		display: grid;
	}
	.nav-btns {
		margin-top: 3rem;
		text-align: left;
	}
	.hero {
		margin-top: 5.5rem;
	}
}
/* max-width: 600px */
@media (max-width: 600px) {		
	.navbar-toggler svg {
		right: 3%;
	}
	.mobile-nav li .sub-menu li {
		width: 50%;	
	}	
	.hero-left {
		width: 65%;		
		padding-right: 1rem;
	}
	.hero-left h2 {
		font-size: 1.5rem;
		line-height: 1.75rem;
	}
	.hero-left p {
		font-size: 1rem;
		line-height: 1.25rem;
		font-weight: 400;
		margin-bottom: 2rem; 
	}	
}
/* max-width: 560px */
@media (max-width: 560px) {	
	.mx-sm-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.footer .social_nav {
		width: 100%;
	}
	.footer .nav a {
		font-size: 1rem;
		line-height: 1.5rem;
		padding: 1rem 1.5rem;
	}
	.patent-full,
	.scroll-top {
		display: none !important;
	}
}
/* max-width: 480px */
@media (max-width: 480px) {	
	.patent-sm,
	.footer .nav {
		display: block;
	}
	.navbar-toggler svg {
		margin-right: 0;
		width: 45px;
	}	
	.nav-btns {
		margin-left: 0;
		margin-top: 3rem;
		text-align: left;
	}
	.mobile-nav li .sub-menu li,
	.icon-list .sub-menu-items {
		width: 100%;
		padding: 0.5rem 0;
	}
	.hero-left {
		width: 70%;
	}
	.hero-left .btn-style {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
		line-height: 1.5rem;
	}	
	.lead {
		font-size: 1rem;
		line-height: 1.5rem;
	}	
	section h3 {
		font-size: 1.8rem;
		line-height: 2.25rem;
	}
	h4 {
	  font-size: 1.25rem;
	  line-height: 1.5rem;
	  margin-bottom: 1rem;
	}
	.footer-logo {
		margin-left: auto;
		margin-right: auto;
	}	 
	.footer ul {
		width: 100%;
	}
	.footer .social_nav {
		display: flex;
	}
}
/* max-width: 450px */
@media (max-width: 450px) {
	
}
/* max-width: 375px */
@media (max-width: 375px) {
	.hero-left {
		width: 85%;
	}
}

