:root {
	--transparent-color: #ffffff00;
    --white-color: #ffffff;
	--white-color-15: #ffffff26;
	--white-color-25: #ffffff40;
	--white-color-50: #ffffff80;
	--white-color-75: #ffffffbf;
	
    --black-color: #000000;
	--black-color-15: #00000026;
	--black-color-25: #00000040;
	--black-color-50: #00000080;
	--black-color-75: #000000bf;

    --theme-color-01: #050505;
	--theme-color-01-25: #05050540;
	--theme-color-01-50: #05050580;
	--theme-color-01-75: #050505bf;
	--theme-color-01-90: #050505e6;
	
	--theme-color-02: #f2ce9a;
	--theme-color-02-25: #f2ce9a40;
	--theme-color-02-50: #f2ce9a80;
	--theme-color-02-75: #f2ce9abf;
	
	--theme-color-03: #c18756;
	--theme-color-03-25: #c1875640;
	--theme-color-03-50: #c1875680;
	--theme-color-03-75: #c18756bf;
	
	--theme-color-04: #282828;
	
	--theme-color-05: #101010;

	--red-color: #b41e1e;
	
	--mask-color-01: linear-gradient(270deg, var(--transparent-color) 25%, var(--theme-color-01) 100%);
    --mask-color-02: linear-gradient(90deg, var(--transparent-color) 25%, var(--theme-color-01) 100%);
	--mask-color-03: linear-gradient(0deg, var(--theme-color-01) 12%, var(--transparent-color) 24%);
	--mask-color-04: linear-gradient(var(--theme-color-01-25) 50%, var(--transparent-color));
	--mask-color-05: linear-gradient(180deg, var(--transparent-color) 50%, var(--theme-color-01-25) 100%);

	--font-awesome: "Font Awesome 5 Pro", sans-serif;
	--font-indulta: "Indulta SemiSerif", sans-serif;
	--font-nfl: "NFL Detroit Lions", sans-serif;
}

* {
    outline: 0 !important;
    box-shadow: none !important;
}

html {
    position: relative;
    height: 100%;
    min-height: 100%;
	overflow-y: scroll; 
    overflow-x: hidden;
}

body {
	font-family: var(--font-indulta);
    color: var(--white-color);
    background-color: var(--theme-color-01);
	font-size: 100%;
	font-weight: 400;
    margin: 0;
    padding: 0;
	width: 100%;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
	direction: ltr;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
	margin-bottom: 0;
	font-family: var(--font-nfl);
	letter-spacing: 1px;
}

p {
    margin-bottom: 0;
	line-height: 1.5rem;
}

.container-fluid {
    padding-left: 4vw;
    padding-right: 4vw;
}

@media (max-width: 576px){
	.container-fluid {
		padding-left: 6vw;
		padding-right: 6vw;
	}
}

::selection {
    background: var(--theme-color-03);
    color: var(--white-color);
}


@media (min-width: 992px){
	::-webkit-scrollbar {
		width: 2px;
		background-color: var(--transparent-color);

	}
	::-webkit-scrollbar-thumb {
		background-color: var(--theme-color-02-50);
	}
	::-webkit-scrollbar-track {
		background-color: var(--transparent-color);
	}
}


/****** Header ******/

header {
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
    width: 100%;
    z-index: 20;
	border: none;
	background-color: var(--transparent-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .navbar-brand {
	color: var(--white-color);
	font-size: 1.125rem;
	font-weight: 500;
	z-index: 19;
}

header .navbar-brand img {
	width: auto;
	height: 3.5rem;
}

header .nav-item .nav-link,
header .nav-item .nav-link:focus {
    color: var(--white-color);
	margin-right: .25rem;
	margin-left: .25rem;
	padding: .5rem 0 !important;
	font-size: 2rem;
	display: inline-block;
}

header .nav-item .nav-link:hover,
header .nav-item .nav-link.active {
	color: var(--theme-color-02);
}

header .nav-item .nav-link.show {
	color: var(--theme-color-02);
	display: inline-block;
}

header .dropdown-toggle::after {
    display: none;
}

header.headroom--not-top {
    position: fixed;
	background-color: var(--theme-color-01-90);
}

header.headroom {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, opacity;
}

header.headroom.headroom--pinned {
    -webkit-animation-name: headroom--pinned;
    animation-name: headroom--pinned;
}

header.headroom.headroom--unpinned {
    -webkit-animation-name: headroom--unpinned;
    animation-name: headroom--unpinned;
}

@-webkit-keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

header .navbar-toggler {
	display: block !important;
	cursor: pointer;
	position: fixed;
    z-index: 18;
    right: 4vw;
    top: 33px;
    width: 32px;
    height: 22px;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
	line-height: 0.5;
	text-align: center;
}

header .navbar-toggler > span {
	display: inline-block;
	position: relative;
	height: 2px;
	width: 32px;
	border-radius: 1px;
	background: var(--white-color);
	vertical-align: middle;
}

header .navbar-toggler > span::before,
header .navbar-toggler > span::after {
	display: inline-block;
	position: absolute;
	content: "";
	height: 2px;
	border-radius: 1px;
	background: var(--white-color);
	transition: all 200ms;
}

header .navbar-toggler > span::before {
	top: -8px;
	left: 3px;
	width: 26px;
}

header .navbar-toggler > span::after {
	top: 8px;
	left: 6px;
	width: 20px;
}

header .navbar-toggler:focus {
	outline: none;
}

header .navbar-toggler:hover > span::after,
header .navbar-toggler:hover > span::before {
	width: 32px;
	left: 0;
}

header.headroom--unpinned .navbar.active,
header.headroom--unpinned .inner-navbar {
    transform: translateY(100%);
}

header .navbar.active .navbar-collapse::before {
	visibility: visible;
	height: 100vh;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .navbar-collapse::before {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	width: 100vw;
	height: 0;
	background-color: var(--theme-color-01-90);
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	visibility: hidden;
	z-index: -1;
}

header .navbar.active .navbar-toggler > span {
	height: 0;
}

header .navbar.active .navbar-toggler > span::after,
header .navbar.active .navbar-toggler > span::before {
	top: 0px;
	left: 0;
	width: 34px;
}

header .navbar.active .navbar-toggler > span::after {
	transform: rotate(-45deg);
}

header .navbar.active .navbar-toggler > span::before {
	transform: rotate(45deg);
}

header .navbar-nav {
	padding: 5rem 0;
	overflow-x: hidden;
	overflow-y: auto;
    height: calc(100vh - 82px);
}

@media (max-width: 576px){
	header .navbar-toggler {
		top: 25px;
		right: 6vw;
	}
	header .nav-item .nav-link,
	header .nav-item .nav-link:focus {
		font-size: 1.25rem;
	}
}

header .navbar-collapse.inner-navbar {
	position: fixed;
	top: 74px;
	left: 4vw;
    height: 0;
    visibility: hidden;
    width: calc(100% - 8vw);
    z-index: 18;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .navbar-collapse.inner-navbar.show {
    height: auto;
    visibility: visible;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .navbar-collapse.inner-navbar::before {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	width: 100vw;
	height: 0;
	background-color: var(--theme-color-01-90);
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	visibility: hidden;
	z-index: -1;
}

header .navbar-collapse.inner-navbar.show::before {
	visibility: visible;
	height: 100vh;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .navbar-toggler-inner {
	display: block !important;
	cursor: pointer;
	position: absolute;
    z-index: 18;
    right: 4vw;
    top: 33px;
    width: 32px;
    height: 22px;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
	line-height: 0.5;
	text-align: center;
	background: var(--transparent-color);
}

header .navbar-toggler-inner > span {
	display: inline-block;
	position: relative;
	height: 2px;
	width: 32px;
	border-radius: 1px;
	background: var(--transparent-color);
	vertical-align: middle;
}

header .navbar-toggler-inner > span::before,
header .navbar-toggler-inner > span::after {
	display: inline-block;
	position: absolute;
	content: "";
	height: 2px;
	border-radius: 1px;
	background: var(--white-color);
	transition: all 200ms;
}

header .navbar-toggler-inner > span::before {
	top: -8px;
	left: 3px;
	width: 26px;
}

header .navbar-toggler-inner > span::after {
	top: 8px;
	left: 6px;
	width: 20px;
}

header .navbar-toggler-inner:focus {
	outline: none;
}

header .navbar-toggler-inner:hover > span::after,
header .navbar-toggler-inner:hover > span::before {
	width: 32px;
	left: 0;
}

header .inner-navbar .navbar-toggler-inner > span {
	height: 0;
}

header .inner-navbar .navbar-toggler-inner > span::after,
header .inner-navbar .navbar-toggler-inner > span::before {
	top: 0px;
	left: 0;
	width: 34px;
}

header .inner-navbar .navbar-toggler-inner > span::after {
	transform: rotate(-45deg);
}

header .inner-navbar .navbar-toggler-inner > span::before {
	transform: rotate(45deg);
}

header .inner-navbar .navbar-nav {
    padding: 8rem 0;
	height: 0;
	overflow-x: hidden;
    overflow-y: auto;
	visibility: hidden;
	text-align: center;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .inner-navbar.show .navbar-nav {
	height: calc(100vh - 82px);
	visibility: visible;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .inner-navbar li {
	margin: 1rem 0;
}

header .inner-navbar li span {
	font-size: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.5rem;
    text-transform: uppercase;
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

header .inner-navbar li a,
header .inner-navbar li a:focus {
	font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1.5rem;
    text-transform: uppercase;
	color: var(--white-color);
}

header .inner-navbar li a:hover,
header .inner-navbar li a.active {
	color: var(--theme-color-02);
}

@media (max-width: 576px){
	header .inner-navbar .navbar-nav {
		padding: 5rem 0 0 0;
	}
	header .inner-navbar li {
		margin: .75rem 0;
	}
	header .inner-navbar li a,
	header .inner-navbar li a:focus {
		font-size: .875rem;
		letter-spacing: 1px;
	}
}

@media (min-width: 992px) and (max-width: 1350px) {
	header .menu-cus {
		width: 750px !important;
	}
}

.hexagon-menu .hexagon-item {
	cursor: pointer;
	width: 200px;
	height: 173.20508px;
	float: left;
	margin-left: -29px;
	z-index: 0;
	position: relative;
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
}

.hexagon-menu .hexagon-item.hexagon-item-02 {
	cursor: default;
}

.hexagon-menu .hexagon-item:first-child {
	margin-left: 0;
}

.hexagon-menu .hexagon-item:hover {
	z-index: 1;
}

.hexagon-menu .hexagon-item:hover .hex-item:last-child {
	opacity: 1;
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	-ms-transform: scale(1.25);
	-o-transform: scale(1.25);
	transform: scale(1.25);
}

.hexagon-menu .hexagon-item:hover .hex-item:first-child {
	opacity: 1;
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}

.hexagon-menu .hexagon-item:hover .hex-item:first-child div:before,
.hexagon-menu .hexagon-item:hover .hex-item:first-child div:after{
	height: .25rem;
}

.hexagon-menu .hexagon-item:hover .hex-item div::before,
.hexagon-menu .hexagon-item:hover .hex-item div::after{
	background-color: var(--theme-color-02);
}

.hexagon-menu .hexagon-item:hover .hex-content svg {
	-webkit-transform: scale(0.97);
	-moz-transform: scale(0.97);
	-ms-transform: scale(0.97);
	-o-transform: scale(0.97);
	transform: scale(0.97);
}

.hexagon-menu .hexagon-item:nth-child(5),
.hexagon-menu .hexagon-item:nth-child(6),
.hexagon-menu .hexagon-item:nth-child(7) {
	-webkit-transform: rotate(30deg) translate(87px, -80px);
	-moz-transform: rotate(30deg) translate(87px, -80px);
	-ms-transform: rotate(30deg) translate(87px, -80px);
	-o-transform: rotate(30deg) translate(87px, -80px);
	transform: rotate(30deg) translate(87px, -80px);
}

.hexagon-menu-02 {
	padding-left: 86px;
    padding-top: 4rem;
}

.hexagon-menu .hex-item {
	position: absolute;
	top: 0;
	left: 50px;
	width: 100px;
	height: 173.20508px;
}

.hexagon-menu .hex-item:first-child {
	z-index: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hexagon-menu .hex-item:last-child {
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 1;
}

.hexagon-menu .hex-item div {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	width: 100px;
	height: 173.20508px;
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	-o-transform-origin: center center;
	transform-origin: center center;
}

.hexagon-menu .hex-item div::before,
.hexagon-menu .hex-item div::after {
	background-color: var(--theme-color-04);
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	-webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	-moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	-o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.hexagon-menu .hex-item div:before {
	top: 0;
}

.hexagon-menu .hex-item div:after {
	bottom: 0;
}

.hexagon-menu .hex-item div:nth-child(1) {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.hexagon-menu .hex-item div:nth-child(2) {
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	-o-transform: rotate(60deg);
	transform: rotate(60deg);
}

.hexagon-menu .hex-item div:nth-child(3) {
	-webkit-transform: rotate(120deg);
	-moz-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	transform: rotate(120deg);
}

.hexagon-menu .hex-content {
	color: #fff;
	display: block;
	height: 180px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	transform: rotate(-30deg);
	width: 156px;
}

.hexagon-menu .hex-content .hex-content-inner {
	left: 50%;
	margin: -3px 0 0 2px;
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.hexagon-menu .hex-content .icon {
	display: block;
	font-size: 2.25rem;
	line-height: 2rem;
	margin-bottom: .75rem;
}

.hexagon-menu .hex-content .title {
	display: block;
    font-size: .875rem;
    letter-spacing: 2px;
    line-height: 1.5rem;
    text-transform: uppercase;
}

.hexagon-menu .hex-content .title.title-02 {
    letter-spacing: 0;
	font-size: .75rem;
    line-height: 1.5rem;
    text-transform: none;
}

.hexagon-menu .hex-content svg {
	position: absolute;
	left: -7px;
	top: -13px;
	transform: scale(0.87);
	z-index: -1;
	fill: var(--transparent-color);
	-webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	-moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	-o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.hexagon-menu .hex-content i {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hexagon-menu .hex-content:hover {
	color: var(--white-color);
}

.hexagon-menu .hexagon-item:hover i {
	color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hexagon-menu .hexagon-item:hover .title {
	-webkit-animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	color: var(--theme-color-02);
}

.hexagon-menu .hexagon-item-02 .hex-content i,
.hexagon-menu .hexagon-item-02 .hex-content i:focus {
	color: var(--white-color);
	font-size: 2.25rem;
    margin: 0.5rem 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hexagon-menu .hexagon-item-02 .hex-content i:hover {
	color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@-webkit-keyframes focus-in-contract {
	0% {
	letter-spacing: 1em;
	-webkit-filter: blur(12px);
	filter: blur(12px);
	opacity: 0;
	}
	100% {
	-webkit-filter: blur(0px);
	filter: blur(0px);
	opacity: 1;
	}
}

@keyframes focus-in-contract {
	0% {
	letter-spacing: 1em;
	-webkit-filter: blur(12px);
	filter: blur(12px);
	opacity: 0;
	}
	100% {
	-webkit-filter: blur(0px);
	filter: blur(0px);
	opacity: 1;
	}
}

@media (max-width: 992px){
	.hexagon-menu-02 {
		padding-left: 0;
		padding-top: 5rem;
	}
	.hexagon-menu .hexagon-item {
		float: left;
		margin: 0 0 -26px 85px;
	}
	.hexagon-menu .hexagon-item:nth-child(1),
	.hexagon-menu .hexagon-item:nth-child(3) {
		margin-left: auto;
	}	

	.hexagon-menu .hexagon-item:nth-child(5),
	.hexagon-menu .hexagon-item:nth-child(7) {
		-webkit-transform: rotate(30deg) translate(-73px, 43px);
		-moz-transform: rotate(30deg) translate(-73px, 43px);
		-ms-transform: rotate(30deg) translate(-73px, 43px);
		-o-transform: rotate(30deg) translate(-73px, 43px);
		transform: rotate(30deg) translate(-73px, 43px);
	}
	
	.hexagon-menu .hexagon-item:nth-child(6) {
		-webkit-transform: rotate(30deg) translate(0, 0);
		-moz-transform: rotate(30deg) translate(0, 0);
		-ms-transform: rotate(30deg) translate(0, 0);
		-o-transform: rotate(30deg) translate(0, 0);
		transform: rotate(30deg) translate(0, 0);
	}

}


/****** Footer ******/

footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
	padding: 1rem 0;
	background-color: var(--theme-color-05);
	border-top: 1px solid var(--white-color-25);
	z-index: 15;
}

footer .footer-links {
	text-align: center;
}

footer .footer-links a,
footer .footer-links a:focus {
    color: var(--white-color-50);
	font-size: .875rem;
	position: relative;
	padding: 0;
	display: inline-block;
}

footer .footer-links a:hover,
footer .footer-links a.active {
    color: var(--white-color);
}

footer .footer-links a i {
    font-size: 1.25rem;
	position: relative;
    top: 3px;
}

footer p {
	color: var(--white-color-50);
	font-size: .87rem;
	text-align: start;
}

footer .social {
	position: relative;
	text-align: end;
}

@media (max-width: 992px) {
	footer p {
		font-size: .7rem;
		text-align: center;
	}
	footer .social {
		text-align: center;
		margin-top: 1rem;
	}	
}

footer .social a,
footer .social a:focus {
	display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--white-color-50);
    border-radius: 100%;
    text-align: center;
    margin-right: 0.5rem;
    line-height: 2rem;
    color: var(--white-color-50);
    background-color: var(--transparent-color);
    font-size: .875rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .social a:hover {
    color: var(--white-color);
	border: 1px solid var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .social a:last-child {
    margin-right: 0;
}

footer .back-to-top,
footer .back-to-top:focus {
    position: fixed;
    bottom: 1rem;
    right: .75rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background-color: var(--white-color-25);
    color: var(--theme-color-01);
    border: 1px solid var(--theme-color-01-25);
    border-radius: 2rem;
    text-align: center;
    font-size: 1.5rem;
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top::after,
footer .back-to-top::before {
    display: none;
}

footer .back-to-top i {
    font-size: 1.125rem;
    margin: 0;
    position: relative;
    top: -3px;
}

footer .back-to-top:hover {
    background-color: var(--white-color-50);
    color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top.back-block {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top i {
    font-size: 1.125rem;
    margin: 0;
    position: relative;
    top: -4px;
}

footer .back-to-top.back-block {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.fullpage-footer {
    position: fixed !important;
	left: 0 !important;
	bottom: 0 !important;
}

.fullpage-footer footer {
	padding: .75rem 0;
}

@media (max-width: 992px) {
	.fullpage-footer footer .footer-links-fullpage {
		display: none;
	}
	.fullpage-footer footer .social {
		margin-top: 0;
	}
}


/****** Pages ******/

main {
    position: relative;
    width: 100%;
}

.bg-theme-color-01 {
	background-color: var(--theme-color-01) !important;
}

.bg-theme-color-02 {
	background-color: var(--theme-color-02);
}

.text-theme-color-01 {
	color: var(--theme-color-01);
}

.text-theme-color-02 {
	color: var(--theme-color-02);
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-body {
	position: fixed;
	left: 0;
	right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    background: var(--theme-color-01-25);
	backdrop-filter: blur(0.125rem);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.overflow-body.show {
    opacity: 1;
    visibility: visible;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.section-01 {
    position: relative;
    padding: 7rem 0;
	overflow: hidden;
}

.section-02 {
    position: relative;
    padding: 3.5rem 0;
	overflow: hidden;
}

.font-size-2-1875 {
	font-size: 2.1875rem;	
}

.font-size-2-5 {
	font-size: 2.5rem;	
}

.font-size-3 {
	font-size: 3rem;
	font-weight: 600;
}

@media (max-width: 576px) {
	.section-01 {
		padding: 3.5rem 0;
	}
	.section-02 {
		padding: 1.75rem 0;
	}
	.font-size-2-1875 {
		font-size: 1.7rem;	
	}
	.font-size-2-5 {
		font-size: 1.75rem;	
	}
	.font-size-3 {
		font-size: 2rem;	
	}
}

.bg-theme-color-04 {
	background-color: var(--theme-color-04);
}

.bg-theme-color-05 {
	background-color: var(--theme-color-05);
}

.img-cus-bor {
	border-radius: .5rem;
}

.btn-cus-01,
.btn-cus-01:focus {
	position: relative;
	display: inline-block;
    padding: .75rem 1rem;
    text-align: center;
    background-color: var(--transparent-color);
	border: 1px solid var(--theme-color-01);
    color: var(--theme-color-01);
    border-radius: .5rem;
    font-size: 1rem;
    font-weight: 500;
	z-index: 2;
	white-space: nowrap;
	overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01::after {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + 2px);
	top: -1px;
	left: -100%;
	background-color: var(--theme-color-01);
	z-index: -1;
	opacity: 0;
	-webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.btn-cus-01::before {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + 2px);
	top: -1px;
	left: 100%;
	background-color: var(--theme-color-01);
	z-index: -2;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01:hover {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01:hover::after {
	left: 0;
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01:hover::before {
	left: 0;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	transition-delay: .3s;
}

.btn-cus-02,
.btn-cus-02:focus {
	position: relative;
	display: inline-block;
    padding: .75rem 2rem;
    text-align: center;
    background-color: var(--transparent-color);
	border: 1px solid var(--theme-color-02);
    color: var(--theme-color-02);
    border-radius: .5rem;
    font-size: 1rem;
    font-weight: 500;
	z-index: 2;
	white-space: nowrap;
	overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02::after {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + 2px);
	top: -1px;
	left: -100%;
	background-color: var(--theme-color-02);
	z-index: -1;
	opacity: 0;
	-webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.btn-cus-02::before {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + 2px);
	top: -1px;
	left: 100%;
	background-color: var(--theme-color-02);
	z-index: -2;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover {
	color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover::after {
	left: 0;
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover::before {
	left: 0;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	transition-delay: .3s;
}

.btn-cus-03,
.btn-cus-03:focus {
	position: relative;
	display: inline-block;
    padding: .75rem 2rem;
    text-align: center;
    background-color: var(--transparent-color);
	border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: .5rem;
    font-size: 1rem;
    font-weight: 500;
	z-index: 2;
	white-space: nowrap;
	overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03::after {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + 2px);
	top: -1px;
	left: -100%;
	background-color: var(--white-color);
	z-index: -1;
	opacity: 0;
	-webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.btn-cus-03::before {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + 2px);
	top: -1px;
	left: 100%;
	background-color: var(--white-color);
	z-index: -2;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03:hover {
	color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03:hover::after {
	left: 0;
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03:hover::before {
	left: 0;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	transition-delay: .3s;
}

.cus-link,
.cus-link:focus {
    position: relative;
    display: inline-block;
    color: currentColor;
	border: none;
	background: none;
}

.cus-link:hover {
    color: currentColor;
}

.cus-link::after,
.cus-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 100%;
    background-color: currentColor;
}

.cus-link::before {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.cus-link::after {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
}

.cus-link:hover::before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
}

.cus-link:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    transition: transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
}

.section-cus-01 {
    position: relative;
	padding: 8rem 0;
}

.section-cus-02 {
    position: relative;
	padding: 4rem 0;
}

.section-cus-03 {
    position: relative;
	padding: 4rem 0 2rem 0;
}

.section-cus-04 {
    position: relative;
	padding: 0 0 4rem 0;
}

.section-cus-05 {
    position: relative;
	padding: 0 0 8rem 0;
}

@media (max-width: 576px) {
	.section-cus-01 {
		padding: 4rem 0;	
	}
	.section-cus-02 {
		padding: 2rem 0;	
	}
	.section-cus-03 {
		padding: 2rem 0 1rem 0;	
	}
	.section-cus-04 {
		padding: 0 0 4rem 0;	
	}
	.section-cus-05 {
		padding: 0 0 4rem 0;	
	}
}

.home-page-01 {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
	align-items: center;
	display: flex;
	overflow: hidden;
}

.home-page-01.home-page-01-bg {
	background-image:url(../img/home/slide-show-bg-01.webp);
}

.home-page-01 .home-video-slide {
	position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    mix-blend-mode: multiply;
	opacity: 1;
}

.home-page-01 .home-video-slide.not-show {
	opacity: 0;
	-webkit-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
}

.home-page-01 .home-page-01-text {
	position: relative;
	width: 40vw;
}

.home-page-01 .home-page-01-text h1 {
	color: var(--theme-color-02);
	font-size: 6vw;
	margin-bottom: 1.5rem;
	letter-spacing: .25vw;
}

.home-page-01 .home-page-01-text p {
	font-size: 4vw;
    line-height: 5vw;
}

@media (max-width: 576px) {
	.home-page-01.home-page-01-bg {
		background-image:url(../img/home/slide-show-bg-01-mob.webp);
	}
	.home-page-01 .home-page-01-text {
		width: 100%;
	}
	.home-page-01 .home-page-01-text h1 {
		font-size: 14vw;
	}
	.home-page-01 .home-page-01-text p {
		font-size: 9vw;
    	line-height: 10vw;
	}
}

.sec-bg {
    position: relative;
}

.sec-bg::before {
	content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 20rem;
    position: absolute;
    left: -4vw;
    top: 50%;
    margin-top: -10rem;
    opacity: .05;
    z-index: -1;
}

.sec-bg .sec-bg-img {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    padding-top: 60%;
    width: 100%;
    margin-right: -25%;
    border-radius: .5rem;
    transform: scale(1, 1);
    overflow: hidden;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.box-01 {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: .5rem;
}

.box-01 h2 {
	color: var(--theme-color-03);
	margin-bottom: .75rem;
}

.box-01 h3 {
	font-family: var(--font-indulta);
	color: var(--theme-color-01);
	margin-bottom: 1.5rem;
}

.box-01 p {
	color: var(--theme-color-01);
}

@media (max-width: 576px) {
	.box-01 {
		padding: 1rem;
	}
}

.bg-noise {
	position: relative;
}

.bg-noise:before {
	content: '';
	position: absolute;
	top: -10rem;
	left: -10rem;
	width: calc(100% + 20rem);
	height: calc(100% + 20rem);
	z-index: -1;
	pointer-events: none;
	background-image: url(../img/pages/bg-noise.webp);
	background-position: 50% 50%;
	background-repeat: repeat;
	animation: BgNoise 1s steps(2) infinite;
}

@keyframes BgNoise {
	0% { transform: translate3d(0, 9rem, 0) }
	10% { transform: translate3d(-1rem, -4rem, 0) }
	20% { transform: translate3d(-8rem, 2rem, 0) }
	30% { transform: translate3d(9rem, -9rem, 0) }
	40% { transform: translate3d(-2rem, 7rem, 0) }
	50% { transform: translate3d(-9rem, -4rem, 0) }
	60% { transform: translate3d(2rem, 6rem, 0) }
	70% { transform: translate3d(7rem, -8rem, 0) }
	80% { transform: translate3d(-9rem, 1rem, 0) }
	90% { transform: translate3d(6rem, -5rem, 0) }
	to { transform: translate3d(-7rem, 0, 0) }
}

.section-01-title {
    color: var(--white-color-50);
	font-family: var(--font-nfl);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
	letter-spacing: 4px;
    position: relative;
    display: block;
	text-align: center;
}

.section-01-title span {
    color: var(--theme-color-02);
}

.section-01-title::after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2px;
    left: 50%;
    margin-left: -1rem;
    top: 4.5rem;
    background-color: var(--white-color-50);
}

p.p-cus-01 {
	color: var(--white-color-75);
}

.servicesswiper {
    padding-bottom: 4.5rem;
}

.servicesswiper .swiper-pagination-bullet {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--transparent-color);
	border: 1px solid var(--theme-color-02);
    opacity: 1;
}

.servicesswiper .swiper-pagination-bullet-active {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
    opacity: 1;
}

.service-det {
	position: relative;
}

.service-det .caption {
	background-color: var(--theme-color-03);
	padding: 3rem 2rem;
	position: relative;
	border-radius: .5rem;
	z-index: 1;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.service-det .caption::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 50%;
    height: 50%;
    position: absolute;
    right: -1.5rem;
    bottom: -1rem;
    opacity: .1;
}

.service-det .service-img-left {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 0;
	padding-top: 75%;
	width: 125%;
    margin-left: -25%;
	border-radius: .5rem;
	transform: scale(1,1);
	overflow: hidden;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.service-det .service-img-right {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 0;
	padding-top: 75%;
	width: 125%;
    margin-right: -25%;
	border-radius: .5rem;
	transform: scale(1,1);
	overflow: hidden;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.service-det .service-img-left:hover,
.service-det .service-img-right:hover {
	transform: scale(0.98,0.98);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.service-det h3 {
	font-size: 1.5rem;
	letter-spacing: 1px;
}

.service-det p {
	color: var(--white-color-75);
}

@media (max-width: 576px) {
	.service-det .caption {
		padding: 1.5rem;
		border-radius: 0 0 .5rem .5rem;
	}
	.service-det .service-img-left {
		width: 100%;
		margin-left: 0;
		padding-top: 60%;
		border-radius: .5rem .5rem 0 0;
	}
	.service-det .service-img-right {
		width: 100%;
		margin-right: 0;
		padding-top: 60%;
		border-radius: .5rem .5rem 0 0;
	}
}

.section-full {
	position: relative;
}

.section-full-01 {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
	position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
	filter: grayscale(25%);
}

.section-full-01::before {
	content: "";
	background-color: var(--theme-color-01-50);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.section-full-cont {
	padding: 7rem 0;
	color: var(--white-color);
}

@media (max-width: 992px) {
	.section-full-01 {
		background-attachment: scroll;
	}
	.section-full-cont {
		padding: 3.5rem 0;
	}
}

.tabs-cus-01 {
	color: var(--white-color);
}

.tabs-cus-01 .nav-pills .nav-link,
.tabs-cus-01 .nav-pills .nav-link:focus {
    background-color: var(--transparent-color);
	padding: .25rem 0;
    color: var(--theme-color-02);
	border: none;
	border-bottom: 1px solid var(--transparent-color);
	border-radius: 0;
	margin: 0 3rem 0 0;
	font-size: 1.125rem;
	font-weight: 500;
    text-decoration: none;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tabs-cus-01 .nav-pills .nav-link:hover {
    color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tabs-cus-01 .nav-pills .nav-link.active,
.tabs-cus-01 .nav-pills .show>.nav-link {
    color: var(--theme-color-02);
	border-bottom: 1px solid var(--theme-color-02);
    background-color: var(--transparent-color);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tabs-cus-01 .nav-pills .nav-item:last-child .nav-link {
    margin: 0;
	pointer-events: none;
}

@media (max-width: 576px) {
	.tabs-cus-01 .nav-pills .nav-link,
	.tabs-cus-01 .nav-pills .nav-link:focus {
		margin: 0 1.5rem 0 0;
	}
}

.tabs-cus-01 .fade {
    transition: opacity .3s linear;
}

.section-img-01 {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: .5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
    padding: 0;
    height: 25rem;
    border: none;
    filter: grayscale(50%);
}

.section-img-01::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 10rem;
    position: absolute;
    left: -2rem;
    bottom: -1rem;
    opacity: .075;
    z-index: -1;
}

@media (max-width: 576px) {
	.section-img-01 {
		height: 20rem;
	}
}

.footer-words {
	padding-bottom: 1rem;
	padding-top: 1rem;
	position: relative;
	background-color: var(--theme-color-01);
}

.footer-words .section-gradient-01 {
    background: var(--mask-color-01);
    width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.footer-words .section-gradient-02 {
    background: var(--mask-color-02);
    width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.footer-words .text-word-01 {
    width: 100%;
    color: var(--white-color);
	font-family: var(--font-nfl);
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 3rem;
	letter-spacing: 2px;
    position: relative;
    top: 0;
    white-space: nowrap;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.footer-words .scroll-lef-01 {
    display: inline-block;
    -webkit-animation: scrolling-left-01 45s infinite linear;
    animation: scrolling-left-01 45s infinite linear;
}

.footer-words .scroll-lef-02 {
    display: inline-block;
    -webkit-animation: scrolling-left-02 45s linear infinite;
    animation: scrolling-left-02 45s linear infinite;
}

.footer-words .scroll-lef-01 span,
.footer-words .scroll-lef-02 span {
    position: relative;
	padding-right: 96px;
	display: inline-block;
}

.footer-words .scroll-lef-01 span::after,
.footer-words .scroll-lef-02 span::after {
    content: "";
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right center;
	background-image:url(../img/logos/logo-footer.webp);
	position: absolute;
	width: 48px;
	height: 48px;
	top: 1px;
	right: 24px;
}

@media (max-width: 992px) {
    .footer-words .text-word-01 {
        font-size: 4rem;
        line-height: 3.5rem;
    }
    .footer-words .scroll-lef-01 {
        -webkit-animation: scrolling-left-01 45s infinite linear;
        animation: scrolling-left-01 45s infinite linear;
    }
    .footer-words .scroll-lef-02 {
        -webkit-animation: scrolling-left-02 45s linear infinite;
        animation: scrolling-left-02 45s linear infinite;
    }
	.footer-words .scroll-lef-01 span,
	.footer-words .scroll-lef-02 span {
		padding-right: 112px;
	}

	.footer-words .scroll-lef-01 span::after,
	.footer-words .scroll-lef-02 span::after {
		width: 56px;
		height: 56px;
		top: 2px;
		right: 28px;
	}
}

@media (max-width: 576px) {
    .footer-words .text-word-01 {
        font-size: 2.5rem;
        line-height: 2rem;
    }
    .footer-words .scroll-lef-01 {
        -webkit-animation: scrolling-left-01 30s infinite linear;
        animation: scrolling-left-01 30s infinite linear;
    }
    .footer-words .scroll-lef-02 {
        -webkit-animation: scrolling-left-02 30s linear infinite;
        animation: scrolling-left-02 30s linear infinite;
    }
	.footer-words .scroll-lef-01 span,
	.footer-words .scroll-lef-02 span {
		padding-right: 64px;
	}
	.footer-words .scroll-lef-01 span::after,
	.footer-words .scroll-lef-02 span::after {
		width: 32px;
		height: 32px;
		top: 1px;
		right: 16px;
	}
}

@keyframes scrolling-left-01 {
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scrolling-left-02 {
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.arkfullpage {
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
}

.arkfullpage .arkpage {
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
	position: absolute;
	width: 100vw;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
    align-items: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .5s cubic-bezier(.45,.44,.01,.99) !important;
	transition: all .5s cubic-bezier(.45,.44,.01,.99) !important;
}

@media (max-width: 576px) {
	.arkfullpage .arkpage {
		padding-top: 5.5rem;
	}	
}

.arkfullpage .arkpage::before {
	content: "";
    background-color: var(--theme-color-01-75);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	backdrop-filter: blur(0.025rem);
	filter: grayscale(25%);
}

.arkfullpage .section {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	animation: .5s linear;
}

.arkfullpage .section:nth-child(1) {
	z-index: 10;
}

.arkfullpage .section:nth-child(2) {
	z-index: 9;
}

.arkfullpage .section:nth-child(3) {
	z-index: 8;
}

.arkfullpage .section:nth-child(4) {
	z-index: 7;
}

.arkfullpage .section:nth-child(5) {
	z-index: 6;
}

.arkfullpage .section.active {
	z-index: 20;
}

.arkfullpage .section.active .arkpage {
	transform: translateY(-20%);
	transition: all .5s cubic-bezier(.45,.44,.01,.99) !important;
}

.arkfullpage .section.active .arkpage {
	margin-top: 0;
	transform:translateY(0);
	position: relative;
}

.arkfullpage .section.prev.down {
	animation-name: toup;
}

.arkfullpage .section.active.up {
	animation-name: fromup;
}

.arkfullpage .section.active.down {
	animation-name: fromdown;
	z-index: 12;
}
.arkfullpage .section.next.up {
	animation-name: todown;
	z-index: 12;
}

@keyframes fromdown {
  from {
  	transform:translateY(50%);
  }
  100% {
  	transform:translateY(0%);
  }
}

@keyframes toup {
  from {
		z-index: 20;
  	transform:translateY(0%);
  }
  100% {
		z-index: 20;
  	transform:translateY(-100%);
  }
}

@keyframes fromup {
  from {
		z-index: 20;
  	transform:translateY(-100%);
  }
  100% {
		z-index: 20;
  	transform:translateY(0%);
  }
}
@keyframes todown {
  from {
  	transform:translateY(0%);
  }
  100% {
  	transform:translateY(50%);
  }
}

.arkfullpage .arkpagebgdes {
	position: relative;
	z-index: 3;
}

.arkfullpage .arkpagebgdes::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 12rem;
    position: absolute;
    left: -6rem;
    top: -8rem;
    opacity: .075;
    z-index: -1;
}

.arkfullpage .arkpagebgdes.arkpagebgdes2::before {
    background-position: right bottom;
	left: auto;
	right: -2rem;
}

.arkfullpage .arkpagebgdes h2 {
	color: var(--white-color);
	margin-bottom: 1rem;
}

.arkfullpage .arkpagebgdes p {
	color: var(--white-color);
}

.arkfullpage .ark-cairo-img-video {
    position: relative;
    width: 100%;
	height: 100%;
    overflow: hidden;
	z-index: 3;
}

.arkfullpage .ark-cairo-img-video::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 7rem;
    position: absolute;
    left: 0;
    bottom: .5rem;
    opacity: .075;
    z-index: 5;
}

.arkfullpage .ark-cairo-img-video video {
    width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: .25rem solid var(--white-color);
	overflow: hidden;
}

.arkfullpage .ark-cairo-img-video img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid var(--white-color);
    overflow: hidden;
}

.arkfullpage .ark-cairo-img-video video.video-cus-01 {
	height: 40vh;
	background-color: var(--theme-color-01);
}

@media (max-width: 576px) {
	.arkfullpage .ark-cairo-img-video video {
		border: .125rem solid var(--white-color);
	}
	.arkfullpage .ark-cairo-img-video video.video-cus-01 {
		height: 30vh;
	}
	.arkfullpage .ark-cairo-img-video img {
		border: .125rem solid var(--white-color);
	}
	.arkfullpage .arkpage p {
		font-size: .875rem;
	}
	.arkfullpage .arkpagebgdes::before {
		background-position: right top;
		left: auto;
		right: -2rem;
		height: 9rem;
		top: -6rem;
	}
}

#fp-nav.right {
    right: 4%;
	z-index: 18;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    height: .25rem;
    width: .25rem;
    background-color: var(--transparent-color);
	border: 1px solid var(--theme-color-02);
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
}

.counter-number {
    display: inline-block;
    font-size: 7rem;
	color: var(--transparent-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white-color);
	line-height: normal;
}

@media (max-width: 992px) {
	.counter-number {
		font-size: 6rem;
	}	
}

.section-title-01 {
    color: var(--white-color);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    display: block;
	text-align: center;
}

.section-title-01 span {
    color: var(--theme-color-02);
}

.section-title-01::after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2px;
    left: 50%;
    margin-left: -1rem;
    top: 4.5rem;
    background-color: var(--theme-color-02);
}

.section-title-02 {
    color: var(--theme-color-01);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    display: block;
	text-align: center;
}

.section-title-02 span {
    color: var(--theme-color-02);
}

.section-title-02::after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2px;
    left: 50%;
    margin-left: -1rem;
    top: 4.5rem;
    background-color: var(--theme-color-02);
}

.page-title {
	background-color: var(--theme-color-01);
	position: relative;
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: 0;
    width: 100vw;
    height: 70vh;
	overflow: hidden;
}

.page-title::before {
    content: "";
    background-color: var(--theme-color-01-50);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	backdrop-filter: blur(0.025rem);
    z-index: 1;
}

.page-title::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 240px;
    height: 240px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: .5;
    margin-top: -120px;
    margin-left: -120px;
}

.page-title.page-title-cus-01 {
    height: 35vh;
}

.page-title.page-title-cus-01::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 180px;
    height: 180px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: .025;
    margin-top: -90px;
	margin-left: -90px;
}

.page-title .page-title-text {
	position: absolute;
	bottom: 10%;
	color: var(--white-color-75);
	font-size: 1rem;
	font-weight: 400;
	z-index: 2;
}

.page-title .page-title-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-title .page-title-bg::after {
    content: "";
    background: var(--mask-color-03);
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
	opacity: .25;
    z-index: -1;
}

.page-title .page-title-text a,
.page-title .page-title-text a:focus {
	color: var(--white-color-75);
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	margin-right: .25rem;
}

.page-title .page-title-text a:hover {
	color: var(--white-color);
}

.page-title .page-title-text a::after {
    content: "/";
	margin-left: .5rem;
	color: var(--white-color-75);
	font-size: .75rem;
	font-weight: 400;
}

.page-title .page-title-text a img {
	width: auto;
	height: 1.75rem;
	position: relative;
	opacity: .75;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.page-title .page-title-text a:hover img {
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.page-title .page-title-text span {
	margin-right: .25rem;
	font-size: 1rem;
	color: var(--white-color-75);
}

.page-title .page-title-text span::after {
    content: "/";
	margin-left: .5rem;
	color: var(--white-color-75);
	font-size: .75rem;
}

.page-title.contact-us-page-bg iframe {
	border: none;
	width: 100%;
	height: 100%;
	pointer-events: none;
    filter: grayscale(100%);
}

@media (max-width: 576px) {
	.page-title::after {
		width: 180px;
		height: 180px;
		margin-top: -90px;
		margin-left: -90px;
	}
}

.thanks-cus {
	text-align: center;
	position: relative;
}

.thanks-cus::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 180px;
    height: 180px;
    position: absolute;
    right: -2rem;
    bottom: -4rem;
    opacity: .015;
}

.thanks-cus p {
	margin-top: 2rem;
	font-size: 1.125rem;
}

.portfolio-section {
	padding: 0;
}

.portfolio-cus {
	position: relative;
    padding: 1.5rem 1.5rem 0 1.5rem;
    border: 1px solid var(--theme-color-03-50);
    border-radius: .5rem;
    margin-bottom: 1.5rem;
}

.portfolio-cus::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color-03);
    transform: scaleY(0);
	border-radius: .5rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.portfolio-cus:hover::before {
    opacity: 1;
    transform: scaleY(1);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus i {
	font-size: 3rem;
	color: var(--theme-color-01);
	margin-right: 1.5rem;
	position: relative;
    top: .5rem;
}

.portfolio-cus .portfolio-name-top {
    display: flex;
    z-index: 1;
    position: relative;
}

.portfolio-cus .portfolio-name {
	font-size: 1.5rem;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.portfolio-cus .portfolio-name a,
.portfolio-cus .portfolio-name a:focus,
.portfolio-cus .portfolio-name a:hover {
	color: currentColor;
	font-size: 1.5rem;
	font-weight: 500;
	-webkit-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

.portfolio-cus .portfolio-img {
    position: relative;
    margin: 0;
    overflow: hidden;
    transform: translateY(24px);
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 0%;
	padding: 0;
	padding-top: 56.25%;
	border: 1px solid var(--theme-color-03-50);
	background-color: var(--theme-color-01);
    border-radius: .5rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus .portfolio-img::before {
    content: "\f00e";
    font-family: var(--font-awesome);
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--white-color);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
	opacity: 0;
	z-index: 1;
	visibility: hidden;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.portfolio-cus .portfolio-img::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color-01-25);
    transform: scaleY(0);
	border-radius: .5rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.portfolio-cus:hover .portfolio-img::before {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.portfolio-cus:hover .portfolio-img::after {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus .portfolio-vid {
    position: relative;
    margin: 0;
    overflow: hidden;
    transform: translateY(24px);
	padding: 0;
	display: flex;
	border: 1px solid var(--theme-color-03-50);
	background-color: var(--theme-color-01);
    border-radius: .5rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus .portfolio-vid::before {
    content: "\f00e";
    font-family: var(--font-awesome);
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--white-color);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
	opacity: 0;
	z-index: 1;
	visibility: hidden;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.portfolio-cus .portfolio-vid::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color-01-25);
    transform: scaleY(0);
	border-radius: .5rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.portfolio-cus:hover .portfolio-vid::before {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.portfolio-cus:hover .portfolio-vid::after {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus:hover .portfolio-name {
    color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus p {
    color: var(--white-color);
	font-size: .875rem;
	margin-top: 1rem;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus:hover p {
    color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-cus .iframe-cus {
	width: 100%;
	max-width: 100%;
	border: none;
	pointer-events: none;
	border-radius: .5rem;
}

.partners-img .iframe-cus {
	width: 100%;
	height: 14rem;
	max-width: 100%;
	border: none;
	pointer-events: none;
	border-radius: .5rem .5rem 0 0;
	margin-bottom: -.5rem;
}

@media (max-width: 576px) {
	.portfolio-cus {
		padding: 1.5rem 1rem 0 1rem;
	}
}

.mfp-bg {
    background: var(--theme-color-01-90);
	backdrop-filter: blur(0.125rem);
    opacity: 1;
}

.contact-form {
    background-color: var(--theme-color-02);
    border-radius: 0.5rem;
	position: relative;
}

.contact-form .contact-form-det {
    padding: 2rem;
	position: relative;
	z-index: 1;
	color: var(--theme-color-01);
}

.contact-form .contact-form-det::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 60%;
    height: 18rem;
    position: absolute;
    right: -1rem;
    top: -2rem;
    opacity: .25;
	z-index: -1;
}

.page-desc {
    background-color: var(--white-color);
	color: var(--theme-color-01);
    border-radius: 0.5rem;
	position: relative;
}

.page-desc .page-desc-det {
    padding: 2rem;
	position: relative;
	z-index: 1;
}

@media (max-width: 576px) {
	.page-desc .page-desc-det {
		padding: 1rem;
	}
}

.page-desc .page-desc-det::before {
    content: "";
    background-image: url(../img/logos/logo-bg-02.webp);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 60%;
    height: 18rem;
    position: absolute;
    right: -1rem;
    bottom: -2rem;
    opacity: .25;
	z-index: -1;
}

.page-desc .page-desc-det .page-desc-cus {
	margin-bottom: 2rem;
}

.page-desc .page-desc-det .page-desc-cus:last-child {
	margin-bottom: 0;
}

.page-desc .page-desc-det .page-desc-cus img {
	border-radius: 0.5rem;
}

.page-desc-02 {
    background-color: var(--theme-color-02);
	color: var(--theme-color-01);
    border-radius: 0.5rem;
	position: relative;
}

.page-desc-02 .page-desc-det-02 {
    padding: 2rem;
	position: relative;
	z-index: 1;
}

.page-desc-02 .page-desc-det-02::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 60%;
    height: 18rem;
    position: absolute;
    right: -1rem;
    top: -2rem;
    opacity: .25;
	z-index: -1;
}

.team-cus-01 {
	position: relative;
	overflow: hidden;
	border-radius: .5rem;
}

.team-cus-01::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: var(--mask-color-05);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01:hover::after {
	opacity: 1;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01 .team-img {
	position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: .5rem;
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
	padding: 0;
	padding-top: 90%;
	transform: scale(1);
	filter: grayscale(50%);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01 .team-img::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-color-01-15);
}

.team-cus-01:hover .team-img {
	transform: scale(1.02);
	filter: grayscale(0%);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01 .team-text {
	position: absolute;
    bottom: -2.75rem;
    left: 1.5rem;
	padding-bottom: 1.5rem;
    width: calc(100% - 3rem);
    color: var(--white-color);
	z-index: 1;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01:hover .team-text {
    bottom: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01 .team-text .team-text-title {
	font-size: .875rem;
	margin-top: .5rem
}

.team-cus-01 .team-text .team-text-name {
	font-size: 1.75rem;
	font-weight: 600;
}

.team-cus-01 .line {
    text-align: center;
    height: 1px;
    width: 4rem;
	margin: 1rem 0;
    background-color: var(--white-color-75);
    transition-property: all;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team-cus-01:hover .line {
    width: 100%;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.partners-cus-01 {
	position: relative;
	background-color: var(--theme-color-02);
	color: var(--theme-color-01);
	border-radius: .5rem;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.partners-cus-01 .partners-img {
	background-color: var(--white-color);
	border-radius: .5rem .5rem 0 0;
	overflow: hidden;
	text-align: center;
}

.partners-cus-01 .partners-title {
	background-color: var(--white-color);
	color: var(--theme-color-01);
	text-align: center;
	font-size: 1.5rem;
	padding: 2rem 0;
}

.partners-cus-01 .partners-des {
	padding: 2rem 1.5rem;
	text-align: left;
	align-items: center;
	position: relative;
	z-index: 1;
}


.partners-cus-01 .partners-des::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 50%;
    height: 50%;
    position: absolute;
    left: -1rem;
    bottom: -2rem;
    opacity: .25;
    z-index: -1;
}

.office-det {
	position: relative;
}

.office-det .caption {
	background-color: var(--theme-color-02);
	color: var(--theme-color-01);
	padding: 2rem;
	position: relative;
	border-radius: .5rem;
	z-index: 1;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.office-det .caption::before {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 50%;
    height: 50%;
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    opacity: .25;
}

.office-det .office-img-left {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 0;
	padding-top: 80%;
	width: 125%;
    margin-left: -25%;
	border-radius: .5rem;
	transform: scale(1,1);
	overflow: hidden;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.office-det .office-img-right {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 0;
	padding-top: 80%;
	width: 125%;
    margin-right: -25%;
	border-radius: .5rem;
	transform: scale(1,1);
	overflow: hidden;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.office-det .office-img-left:hover,
.office-det .office-img-right:hover {
	transform: scale(0.98,0.98);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.office-det h3 {
	color: var(--theme-color-01);
	font-weight: 600;
}

.office-det p {
	font-size: .875rem;
	line-height: 1.25rem;
}

.office-det .caption-det {
	text-align: end;
	position: relative;
	border-top: 1px solid var(--theme-color-01-25);
	margin-top: .75rem;
	padding-top: .75rem;
}

@media (max-width: 576px) {
	.office-det .caption-det {
		text-align: center;
	}
	.office-det .caption {
		padding: 1.5rem;
		border-radius: 0 0 .5rem .5rem;
	}
	.office-det .office-img-left {
		width: 100%;
		margin-left: 0;
		padding-top: 60%;
		border-radius: .5rem .5rem 0 0;
	}
	.office-det .office-img-right {
		width: 100%;
		margin-right: 0;
		padding-top: 60%;
		border-radius: .5rem .5rem 0 0;
	}
}

.reviews-cus-01 {
	position: relative;
	background-color: var(--white-color);
	color: var(--theme-color-01);
	border-radius: .5rem;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.reviews-cus-01 .reviews-img {
	background-color: var(--white-color);
	border-radius: .5rem .5rem 0 0;
	overflow: hidden;
	text-align: center;
}

.reviews-cus-01 .iframe-cus {
    width: 100%;
    height: 14rem;
    max-width: 100%;
    border: none;
    border-radius: .5rem .5rem 0 0;
    margin-bottom: -.5rem;
}

.reviews-cus-01 .reviews-title {
	background-color: var(--white-color);
	color: var(--theme-color-01);
	text-align: center;
	font-size: 1.5rem;
	padding: 2rem 0;
}

.reviews-cus-01 .reviews-des {
	padding: 2rem 1.5rem;
	text-align: left;
	align-items: center;
	position: relative;
	z-index: 1;
}


.reviews-cus-01 .reviews-des::before {
    content: "";
    background-image: url(../img/logos/logo-bg-02.webp);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 50%;
    height: 50%;
    position: absolute;
    left: -1rem;
    bottom: -2rem;
    opacity: .25;
    z-index: -1;
}


/****** Validate & Sweet Alert ******/

.form-outline {
    position: relative;
}

.form-outline .form-label {
    margin-bottom: .25rem;
	font-weight: 500;
}

.form-outline .form-control:-ms-input-placeholder {
	color: var(--black-color-50) !important;
	font-size: 1rem;
	opacity: 1 !important;
}

.form-outline .form-control::-ms-input-placeholder {
	color: var(--black-color-50) !important;
	font-size: 1rem;
	opacity: 1 !important;
}

.form-outline .form-control::placeholder {
	color: var(--black-color-50) !important;
	font-size: 1rem;
	opacity: 1 !important;
}

.form-outline .form-control {
    padding: .75rem;
    font-size: 1rem;
    line-height: 1.5;
    height: 3rem;
    color: var(--white-color);
    background-color: var(--theme-color-01);
    background-clip: padding-box;
    border: 1px solid var(--theme-color-01-25);
    border-radius: .5rem;
    position: relative;
}

.form-outline .form-control[type=search] {
    padding: .5rem !important;
    height: 2.5rem !important;
	background-color: var(--white-color);
    color: var(--black-color);
}

.form-outline .textarea-01 {
    resize: none;
	height: 16rem !important;
}

.form-outline .invalid-feedback, .error {
    width: auto;
    position: absolute;
    bottom: -1rem;
    right: 0;
    z-index: 2;
    color: var(--red-color);
    font-size: .75rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

footer .form-outline .invalid-feedback, .error {
    width: auto;
    position: absolute;
    bottom: -1rem;
    right: 0;
    z-index: 2;
    color: var(--white-color-75);
    font-size: .75rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-outline.is-invalid .form-control {
    border: 1px solid var(--red-color) !important;
	border-right: none; 
}
