@charset "utf-8";

/*
/*	Copyright (c) 2021 Marketify
/*	Author: Marketify
/*	This file is made for CURRENT TEMPLATE

01)	RYKER BASE
02) RYKER TOPBAR
03) RYKER MOBILE MENU
04) RYKER HERO
05) RYKER ABOUT
06) RYKER SERVICES
07) RYKER PORTFOLIO
08) RYKER VIDEO
09) RYKER TESTIMONIALS
10) RYKER NEWS
11) RYKER CONTACT
12) RYKER COPYRIGHT
13) RYKER MAGIC CURSOR
14) RYKER MEDIA QUERIES (FOR SMALL DEVIVES)


/*---------------------------------------------------*/
/*	01) RYKER BASE
/*---------------------------------------------------*/



.test {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #080808;
}

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}

body {
	font-family: "Mulish";
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.5px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #767676;
	overflow-x: hidden;
	width: 100%;
}

body::-webkit-scrollbar {
	width: 11px;
}

body {
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}

body:-webkit-scrollbar-track {
	background: #fff;
}

body::-webkit-scrollbar-thumb {
	background-color: #999;
	border-radius: 6px;
	border: 3px solid #fff;
}

svg {
	fill: currentcolor;
	width: 15px;
	height: 15px;
}

img.svg {
	width: 15px;
	height: 15px;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #767676;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #767676;
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #767676;
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #767676;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #767676;
}

::placeholder {
	/* Most modern browsers support this now. */
	color: #767676;
}

.container {
	max-width: 1250px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	padding: 0px 40px;
	position: relative;
	clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.4;
	font-family: "Poppins";
	color: #000;
}

h1 {
	font-size: 45px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

.ryker_tm_all_wrap {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.ryker_tm_all_wrap,
.ryker_tm_all_wrap * {
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
}

#preloader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	display: flex;
}

#preloader:before,
#preloader:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
	background-color: #000;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

#preloader:after {
	left: auto;
	right: 0;
}

#preloader .loader_line {
	margin: auto;
	width: 1px;
	height: 250px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;
	transition: all 0.8s ease 0s;
}

.loader_line:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #fff;
	-webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
	-o-animation: lineheight 1000ms ease-in-out 0s forwards;
	animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #999;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-animation: lineround 1200ms linear 0s infinite;
	-o-animation: lineround 1200ms linear 0s infinite;
	animation: lineround 1200ms linear 0s infinite;
	animation-delay: 2000ms;
}

@keyframes lineheight {
	0% {
		height: 0%;
	}

	100% {
		height: 100%;
	}
}

@keyframes lineround {
	0% {
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(200%);
		-ms-transform: translateY(200%);
		-o-transform: translateY(200%);
		transform: translateY(200%);
	}
}

/*hiding all*/
.preloaded .loader_line:after {
	opacity: 0;
}

.preloaded .loader_line {
	opacity: 0;
	height: 100% !important;
}

.preloaded:before,
.preloaded:after {
	-webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
	-o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
	animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
	0% {
		width: 50%;
	}

	100% {
		width: 0%;
	}
}

.ryker_tm_section {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

/*---------------------------------------------------*/
/*	02) RYKER TOPBAR
/*---------------------------------------------------*/

.ryker_tm_topbar {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
}

.ryker_tm_topbar.animate {
	background-color: rgba(255, 255, 255, 1.00);
}

.ryker_tm_topbar .topbar_inner {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px 20px 50px;
}

.ryker_tm_topbar .logo img {
	max-width: 90px;
	max-height: 40px;
}

.ryker_tm_topbar .menu {
	display: flex;
	align-items: center;
}

.ryker_tm_topbar .list {
	padding-right: 40px;
}

.ryker_tm_topbar .list ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_topbar .list ul li {
	margin: 0px 20px 0px 0px;
	display: inline-block;
	list-style-type: none;
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: 10px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_topbar .list ul li:last-child {
	margin-right: 0px;
}

.ryker_tm_topbar .list ul li.opened {
	opacity: 1;
	visibility: visible;
	left: 0px;
}

.ryker_tm_topbar .list ul li a {
	text-decoration: none;
	color: white;
	font-family: "Poppins";

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.animate .topbar_inner .list ul li a {
	color: #000;
}


.ryker_tm_topbar .list ul li a:hover {
	color: #d1701f;
}

.ryker_tm_topbar .list ul li.current a {
	color: #d1701f;
}

.ryker_tm_topbar .trigger {
	line-height: 1;
}

.trigger .hamburger-inner,
.trigger .hamburger-inner:after,
.trigger .hamburger-inner:before {
	height: 2px;
	width: 30px;
}

.trigger .hamburger {
	padding: 0px;
}



/*---------------------------------------------------*/
/*	03) RYKER MOBILE MENU
/*---------------------------------------------------*/

.ryker_tm_mobile_menu {
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}

.ryker_tm_mobile_menu .mobile_menu_inner {
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 15px 30px 15px 40px;
}

.ryker_tm_mobile_menu .mobile_in {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ryker_tm_mobile_menu .mobile_in .logo img {
	max-width: 80px;
	max-height: 70px;
}

.ryker_tm_mobile_menu .trigger {
	line-height: 0;
}

.ryker_tm_mobile_menu .dropdown {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	display: none;
}

.ryker_tm_mobile_menu .dropdown .dropdown_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 40px;
}

.ryker_tm_mobile_menu .dropdown .dropdown_inner ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_mobile_menu .dropdown .dropdown_inner ul li {
	margin: 0px;
	float: left;
	width: 100%;
}

.ryker_tm_mobile_menu .dropdown .dropdown_inner ul li a {
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 0px 0px;
	font-family: "Poppins";
	font-weight: 500;
}

/*---------------------------------------------------*/
/*	04) RYKER HERO
/*---------------------------------------------------*/

.ryker_tm_hero {
	width: 100%;
	height: 100vh;
	float: left;
	position: relative;
	background-color: #18171700;
}

.ryker_tm_hero .container {
	height: 100vh;
}

.ryker_tm_hero .content {
	width: 100%;
	height: 100%;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ryker_tm_hero .texts {
	padding-right: 50px;
}

.ryker_tm_hero .job {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.ryker_tm_hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.ryker_tm_hero .texts h1 {
	color: #F5F5F5;
	position: relative;
	z-index: 5;
	margin-bottom: 40px;
}

.ryker_tm_hero .desc {
	width: 100%;
	float: left;
	margin-bottom: 40px;
	position: relative;
	z-index: 15;
	color: #F5F5F5;
}

.cta-hero {
	position: relative;
	z-index: 5;
}

.ryker_tm_hero .desc p {
	max-width: 550px;
	font-size: 17px;
	;
}

.ryker_tm_button {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_button a {
	text-decoration: none;
	color: #fff;
	background-color: #d1701f;
	border: 2px solid #d1701f;
	display: inline-block;
	padding: 15px 50px;
	font-family: "Poppins";
	border-radius: 50px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_button a:hover {
	background-color: transparent;
	color: #000;
}

.cta-hero a:hover {
	color: #fff;
	;
}

.ryker_tm_hero .avatar {
	min-width: 450px;
	min-height: 450px;
	position: relative;
	border-radius: 100%;
	z-index: 1;

}

.ryker_tm_hero .avatar .image {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	animation: morph 1s ease-in-out infinite, rotar 15s ease-in-out infinite;
	transform: scaleX(-1);
	background-blend-mode: multiply;
	-webkit-box-shadow: inset 0px 0px 0px 18px rgba(255, 255, 255, .3);
	-moz-box-shadow: inset 0px 0px 0px 18px rgba(255, 255, 255, .3);
	box-shadow: inset 0px 0px 0px 18px rgba(255, 255, 255, .3);
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes morph {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}

	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}

	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
}


@keyframes rotar {
	0% {
		transform: rotate(0deg) scale(1) scaleX(-1);
		opacity: 1;
	}

	50% {
		transform: rotate(180deg) scale(0) scaleX(-1);
		opacity: 0;
	}

	100% {
		transform: rotate(360deg) scale(1) scaleX(-1);
		opacity: 1;
	}
}

.short_skills {
	width: 100%;
	clear: both;
	display: flex;
	align-items: center;
	line-height: 1;
	position: absolute;
	bottom: 8%;
	left: auto;

}

.short_skills .text {
	position: relative;
}

.short_skills .text:before {
	position: absolute;
	content: "";
	width: 1px;
	height: 50px;
	background-color: rgba(0, 0, 0, .1);
	top: -5px;
	left: 100%;
	margin-left: 30px;
}

.short_skills .text span {
	line-height: 1.4;
	font-size: 13px;
	font-family: "Poppins";
}

.short_skills .icons {
	margin-left: 80px;
}

.short_skills .icons ul {
	margin: 0px;
	list-style-type: none;
}

.short_skills .icons ul li {
	margin: 0px 20px 10px 0px;
	float: left;
	width: 65px;
	height: 65px;
	background-color: #fff;
	border-radius: 100%;
	position: relative;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .09);
}

.short_skills .icons ul li:last-child {
	margin-right: 0px;
}

.short_skills .icons ul li .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25px;
	height: 25px;
}

/*---------------------------------------------------*/
/*	05) RYKER ABOUT
/*---------------------------------------------------*/

.ryker_tm_about {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 150px 0px 175px 0px;
}

.ryker_tm_about .about_inner {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
}

.ryker_tm_about .left {
	width: 50%;
	margin-right: 50px;
}

.ryker_tm_about .left .image {
	position: relative;
}

.ryker_tm_about .left .image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
}

.ryker_tm_about .left .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.ryker_tm_about .right {
	width: 50%;
	margin-left: 50px;
}

.ryker_tm_title {
	width: 100%;
	max-width: 700px;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_title span {
	font-family: "Poppins";
	font-weight: 600;
	text-transform: uppercase;
	color: #d1701f;
	display: inline-block;
	margin-bottom: 10px;
}

.ryker_tm_title h3 {
	font-weight: 700;
}

.ryker_tm_about .text {
	width: 100%;
	float: left;
	padding-top: 30px;
	margin-bottom: 35px;
}

.ryker_tm_about .signature {
	width: 100%;
	float: left;
	margin-bottom: 40px;
}

.ryker_tm_about .signature img {
	max-width: 250px;
}

.ryker_tm_about .experience {
	position: absolute;
	width: 220px;
	height: 220px;
	background-color: #fff;
	bottom: -40px;
	right: -40px;
	z-index: 1;
	border-radius: 100%;
	overflow: hidden;
}

.ryker_tm_about .experience .year {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 72px;
	font-weight: 800;
	background-attachment: fixed;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	animation: experience 25s linear infinite;
}

@keyframes experience {
	0% {
		background-position: 0px;
	}

	100% {
		background-position: -1000px;
	}
}

#circle {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
}

#circle text {
	font-family: "Poppins";
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

#circle svg {
	position: absolute;
	left: -90px;
	top: -90px;
	width: 400px;
	height: 400px;

	-webkit-animation: rotate 25s linear infinite;
	-moz-animation: rotate 25s linear infinite;
	-ms-animation: rotate 25s linear infinite;
	-o-animation: rotate 25s linear infinite;
	animation: rotate 25s linear infinite;
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(360deg);
	}

	to {
		-webkit-transform: rotate(0);
	}
}

@-moz-keyframes rotate {
	from {
		-moz-transform: rotate(360deg);
	}

	to {
		-moz-transform: rotate(0);
	}
}

@-ms-keyframes rotate {
	from {
		-ms-transform: rotate(360deg);
	}

	to {
		-ms-transform: rotate(0);
	}
}

@-o-keyframes rotate {
	from {
		-o-transform: rotate(360deg);
	}

	to {
		-o-transform: rotate(0);
	}
}

@keyframes rotate {
	from {
		transform: rotate(360deg);
	}

	to {
		transform: rotate(0);
	}
}

/*---------------------------------------------------*/
/*	06) RYKER SERVICES
/*---------------------------------------------------*/

.ryker_tm_services {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #f9f9f9;
	padding: 140px 0px 103px 0px;
}

.ryker_tm_services .services_inner {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
}

.ryker_tm_services .left {
	width: 50%;
	margin-right: 50px;
}

.ryker_tm_services .text {
	width: 100%;
	float: left;
	margin-top: 30px;
	margin-bottom: 37px;
}

.ryker_progress {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.progress_inner {
	width: 100%;
	margin-bottom: 25px;
}

.progress_inner:last-child {
	margin-bottom: 0px;
}

.progress_inner>span {
	margin: 0px 0px 5px 0px;
	width: 100%;
	display: block;
	text-align: left;
	color: #000;
	font-family: "Poppins";
}

.progress_inner span.number {
	float: right;
}

.progress_inner .background {
	background: rgba(0, 0, 0, .09);
	width: 100%;
	min-width: 100%;
	position: relative;
	height: 7px;
	border-radius: 50px;
}

.progress_inner .background .bar_in {
	height: 100%;
	background: #d1701f;
	width: 0px;
	overflow: hidden;
	border-radius: 50px;
}

.progress_inner .background .bar {
	width: 0px;
	height: 100%;
}

.progress_inner .background .bar.open {
	-webkit-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	/* Safari 4+ */
	-moz-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	/* Fx 5+ */
	animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	/* IE 10+ */
	width: 100%;
}

@-webkit-keyframes wow {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

@-moz-keyframes wow {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

@keyframes wow {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

.ryker_tm_services .right {
	width: 50%;
	margin-left: 50px;
}

.ryker_tm_services .right ul {
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}

.ryker_tm_services .right ul li {
	margin: 0px 0px 50px 0px;
	width: 50%;
	float: left;
	padding-left: 50px;
	position: relative;
}

.ryker_tm_services .right ul li:nth-child(1) {
	margin-top: 50px;
}

.ryker_tm_services .right ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	background-color: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	padding: 55px 40px;
	border-radius: 10px;
}

.ryker_tm_services .right ul li .svg {
	width: 50px;
	height: 50px;
	color: #d1701f;
	margin-bottom: 30px;
	display: block;
}

.ryker_tm_services .right ul li .title {
	font-size: 20px;
}

/*---------------------------------------------------*/
/*	07) RYKER PORTFOLIO
/*---------------------------------------------------*/

.ryker_tm_portfolio {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 140px 0px 100px 0px;
}

.ryker_tm_portfolio .portfolio_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_portfolio .portfolio_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 97px;
}

.ryker_tm_portfolio .portfolio_list ul {
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}

.ryker_tm_portfolio .portfolio_list ul li {
	margin: 0px 0px 50px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 50px;
}

.ryker_tm_portfolio .portfolio_list ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.ryker_tm_portfolio .portfolio_list ul li .image {
	position: relative;
}

.ryker_tm_portfolio .portfolio_list ul li .image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
}

.ryker_tm_portfolio .portfolio_list ul li .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.ryker_tm_portfolio .portfolio_list ul li .image .main:before {
	background-color: #000;
	content: '';
	height: 100%;
	position: absolute;
	transition: all .2s;
	transition-delay: .2s;
	transform: translateY(0px) translateX(0px);
	width: 100%;
	z-index: -1;
	border-radius: 10px;
}

.ryker_tm_portfolio .portfolio_list ul li .image .main:after {
	background-color: #d1701f;
	content: '';
	height: 100%;
	position: absolute;
	transition: all .2s;
	transition-delay: .2s;
	transform: translateY(0px) translateX(0px);
	width: 100%;
	z-index: -1;
	border-radius: 10px;
}

.ryker_tm_portfolio .portfolio_list ul li .list_inner:hover {
	animation-name: hoverPop;
	animation-duration: .4s;
	animation-fill-direction: forward;
}

.ryker_tm_portfolio .portfolio_list ul li .list_inner:hover .main:before {
	animation: slick-hover-2 3s .4s linear infinite;
	transform: translateY(-20px) translateX(-20px);
}

.ryker_tm_portfolio .portfolio_list ul li .list_inner:hover .main:after {
	animation: slick-hover 3s .4s linear infinite reverse;
	transform: translateY(20px) translateX(20px);
}

@keyframes hoverPop {

	0%,
	100% {
		transform: scale(1);
	}

	33% {
		transform: scale(1.05);
	}

	66% {
		transform: scale(.90);
	}
}

@keyframes slick-hover {
	0.00% {
		transform: translateY(20px) translateX(20px)
	}

	16.67% {
		transform: translateY(-13px) translateX(-9px)
	}

	33.33% {
		transform: translateY(4px) translateX(12px)
	}

	50.00% {
		transform: translateY(20px) translateX(-20px)
	}

	66.67% {
		transform: translateY(-3px) translateX(8px)
	}

	83.33% {
		transform: translateY(-15px) translateX(-11px)
	}

	100.00% {
		transform: translateY(20px) translateX(20px)
	}
}

@keyframes slick-hover-2 {
	0.00% {
		transform: translateY(-20px) translateX(-20px)
	}

	16.67% {
		transform: translateY(3px) translateX(-5px)
	}

	33.33% {
		transform: translateY(18px) translateX(-10px)
	}

	50.00% {
		transform: translateY(-20px) translateX(20px)
	}

	66.67% {
		transform: translateY(15px) translateX(-4px)
	}

	83.33% {
		transform: translateY(-1px) translateX(15px)
	}

	100.00% {
		transform: translateY(-20px) translateX(-20px)
	}
}

.ryker_tm_portfolio .portfolio_list .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 2;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_portfolio .portfolio_list .list_inner:hover .overlay {
	opacity: 1;
	visibility: visible;
}

.ryker_tm_portfolio .portfolio_list .details {
	position: absolute;
	z-index: 3;
	bottom: 35px;
	left: 40px;
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_portfolio .portfolio_list .list_inner:hover .details {
	opacity: 1;
	visibility: visible;
}

.ryker_tm_portfolio .portfolio_list .details h3 {
	font-size: 20px;
	color: #fff;
}

.ryker_tm_portfolio .portfolio_list .details span {
	color: #ddd;
	font-family: "Poppins";
}

.ryker_tm_full_link {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}

.ryker_tm_portfolio .popup_details {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
	display: none;

}

.ryker_tm_modalbox .portfolio_hidden_infos {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_modalbox .popup_details {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_modalbox .popup_details .top_image {
	position: relative;
	overflow: hidden;
	margin-bottom: 37px;
}

.ryker_tm_modalbox .popup_details .top_image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
	margin-bottom: -50%;
}

.ryker_tm_modalbox .popup_details .top_image .main {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

.ryker_tm_modalbox .portfolio_main_title {
	width: 100%;
	float: left;
	margin-bottom: 28px;
}

.ryker_tm_modalbox .portfolio_main_title h3 {
	font-weight: 600;
	font-size: 23px;
	margin-bottom: 5px;
}

.ryker_tm_modalbox .main_details {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-bottom: 55px;
}

.ryker_tm_modalbox .main_details .textbox {
	width: 70%;
	padding-right: 40px;
}

.ryker_tm_modalbox .main_details .textbox p {
	margin-bottom: 18px;
}

.ryker_tm_modalbox .main_details .textbox p:last-child {
	margin-bottom: 0px;
}

.ryker_tm_modalbox .main_details .detailbox {
	width: 30%;
	padding-left: 40px;
}

.ryker_tm_modalbox .main_details .detailbox>ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_modalbox .main_details .detailbox>ul>li {
	margin: 0px 0px 8px 0px;
	width: 100%;
	float: left;
}

.ryker_tm_modalbox .main_details .detailbox>ul>li:last-child {
	margin-bottom: 0px;
}

.ryker_tm_modalbox .main_details .detailbox .first {
	font-weight: 700;
	display: block;
	color: #000;
	margin-bottom: 3px;
}

.ryker_tm_modalbox .main_details .detailbox span a {
	text-decoration: none;
	color: #767676;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_modalbox .main_details .detailbox span a:hover {
	color: #000;
	letter-spacing: 2px;
}

.ryker_tm_modalbox .main_details .detailbox .share {
	margin: 0px;
	list-style-type: none;
	position: relative;
	top: 7px;
}

.ryker_tm_modalbox .main_details .detailbox .share li {
	margin: 0px 13px 0px 0px;
	display: inline-block;
}

.ryker_tm_modalbox .main_details .detailbox .share li:last-child {
	margin-right: 0px;
}

.ryker_tm_modalbox .main_details .detailbox .share li a {
	text-decoration: none;
	color: #000;
}

.ryker_tm_modalbox .additional_images {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_modalbox .additional_images ul {
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}

.ryker_tm_modalbox .additional_images ul li {
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}

.ryker_tm_modalbox .additional_images ul li:nth-child(3n-2) {
	width: 100%;
}

.ryker_tm_modalbox .additional_images ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.ryker_tm_modalbox .additional_images ul li .my_image {
	position: relative;
}

.ryker_tm_modalbox .additional_images ul li .my_image img {
	opacity: 0;
	min-width: 100%;
}

.ryker_tm_modalbox .additional_images ul li .my_image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

/*---------------------------------------------------*/
/*	08) RYKER VIDEO
/*---------------------------------------------------*/

.ryker_tm_video {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.ryker_tm_video .background {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.ryker_tm_video .background .image {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.ryker_tm_video .background .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0, 0, 0, .85);
	z-index: 1;
}

.ryker_tm_video .content {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	z-index: 2;
	padding: 160px 0px 150px 0px;
}

.ryker_tm_video .ryker_tm_title h3 {
	color: #fff;
}

.ryker_tm_video .content_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
}

.ryker_tm_video .rounded {
	width: 100px;
	height: 100px;
	display: block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 100%;
	background-color: #fff;
	margin-bottom: 51px;
}

.ryker_tm_video .rounded:before {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 0 13px 26px;
	border-color: transparent transparent transparent #d1701f;
	top: 50%;
	left: 50%;
	margin-left: 4px;
	transform: translate(-50%, -50%);
}

.ryker_tm_video .rounded:after {
	position: absolute;
	content: "";
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
	background-color: rgba(255, 255, 255, .2);
	border-radius: 100%;
	z-index: -1;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_video .rounded:hover:after {
	top: -20px;
	bottom: -20px;
	left: -20px;
	right: -20px;
}

.ryker_tm_video .rounded a {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
}

.ryker_tm_video .text {
	color: #fff;
	font-family: "Poppins";
	max-width: 600px;
	margin: 0px auto;
	margin-bottom: 45px;
	font-weight: 700;
}

.ryker_tm_video .ryker_tm_button a {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.ryker_tm_video .ryker_tm_button a:hover {
	background-color: transparent;
	color: #fff;
}

/*---------------------------------------------------*/
/*	09) RYKER TESTIMONIALS
/*---------------------------------------------------*/

.ryker_tm_testimonials {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 150px;
}

#grouploop {
	width: 100%;
	margin: 198px 0px 129px 0px;
}

#grouploop .item-wrap {
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
	width: 400%;
	position: relative;
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	/* display: flex; */

}

#grouploop .item-wrap .item {
	color: rgba(0, 0, 0, .06);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 100px;
}

#grouploop .item-wrap .item span {
	font-size: 180px;
	font-weight: 800;
	font-family: "Poppins";
}

.ryker_tm_testimonials .testimonials_list {
	width: 100%;
	max-width: 1150px;
	height: auto;
	clear: both;
	margin: 0px auto;
	position: relative;
	left: 62px;
}

.ryker_tm_testimonials .wr_in {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	padding: 70px 125px;
}

.ryker_tm_testimonials .testimonials_list .wrapper .wr_in .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
	padding: 95px 70px 90px 195px;
	border-radius: 10px;
}

.ryker_tm_testimonials .avatar {
	position: absolute;
	width: 250px;
	height: 250px;
	border-radius: 10px;
	top: 50%;
	transform: translateY(-50%);
	left: -125px;
	overflow: hidden;
}

.ryker_tm_testimonials .avatar .image {
	position: absolute;
	top: -4px;
	bottom: -4px;
	left: -4px;
	right: -4px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	opacity: 0;

	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;

	transform: scale(1.2) translateZ(0);
}

.ryker_tm_testimonials .owl-carousel .owl-item.active .avatar .image {
	opacity: 1;
	transition: all 1s .3s ease;
	transform: scale(1) translateZ(0);
}

.ryker_tm_testimonials .stars {
	width: 100%;
	float: left;
}

.ryker_tm_testimonials .stars {
	margin: 0px;
	list-style-type: none;
	margin-bottom: 25px;
}

.ryker_tm_testimonials .stars li {
	margin: 0px;
	display: inline-block;
}

.ryker_tm_testimonials .stars li .svg {
	color: #d1701f;
	width: 18px;
	height: 18px;
}

.ryker_tm_testimonials .text {
	width: 100%;
	float: left;
	margin-bottom: 30px;
}

.ryker_tm_testimonials .text p {
	font-size: 19px;
}

.ryker_tm_testimonials .details {
	width: 100%;
	float: left;
}

.ryker_tm_testimonials .details .author {
	font-size: 20px;
	margin-bottom: 8px;
}

.ryker_tm_testimonials .details .job {
	font-weight: 400;
	font-size: 16px;
	color: #767676;
}

.ryker_tm_testimonials .details h3 {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	line-height: 1;
	position: relative;
}

.ryker_tm_testimonials .details .author span,
.ryker_tm_testimonials .details .job span {
	position: relative;
	display: block;
	padding: 2px 0px;
	transform: translateY(102%);

	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.ryker_tm_testimonials .owl-carousel .owl-item.active .details .author span {
	transform: translateY(0px);
	transition-delay: 0.3s;
}

.ryker_tm_testimonials .owl-carousel .owl-item.active .details .job span {
	transform: translateY(0px);
	transition-delay: 0.6s;
}

.ryker_tm_testimonials .myquote {
	position: absolute;
	width: 180px;
	height: 180px;
	z-index: -1;
	color: rgba(0, 0, 0, .06);
	right: 70px;
	bottom: -92px;
	display: block;
}

/*---------------------------------------------------*/
/*	10) RYKER NEWS
/*---------------------------------------------------*/

.ryker_tm_news {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #f9f9f9;
	padding: 140px 0px 95px 0px;
}

.ryker_tm_news .news_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 90px;
}

.ryker_tm_news ul {
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}

.ryker_tm_news ul li {
	margin: 0px 0px 50px 0px;
	width: 33.3333%;
	padding-left: 50px;
	float: left;
}

.ryker_tm_news ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.ryker_tm_news ul li .image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.ryker_tm_news ul li .image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
}

.ryker_tm_news ul li .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 8px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_news ul li .image:hover .main {
	transform: scale(1.1);
}

.ryker_tm_news ul li .details {
	width: 100%;
	float: left;
	padding-top: 9px;
}

.ryker_tm_news ul li .details span {
	font-size: 16px;
	display: inline-block;
	margin-bottom: 10px;
}

.ryker_tm_news ul li .details span a {
	text-decoration: none;
	color: #767676;
	position: relative;
	display: inline-block;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_news ul li .details span a:hover {
	color: #d1701f;
}

.ryker_tm_news ul li .details span a:before {
	position: relative;
	content: ".";
	font-size: 40px;
	top: -3px;
	color: #767676;
	padding: 0px 9px 0px 5px;
}

.ryker_tm_news ul li .details .title a {
	text-decoration: none;
	color: #000;
	font-size: 20px;
	display: block;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_news ul li .details .title a:hover {
	color: #d1701f;
}

.ryker_tm_modalbox .description_wrap::-webkit-scrollbar {
	width: 11px;
}

.ryker_tm_modalbox .description_wrap {
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}

.ryker_tm_modalbox .description_wrap:-webkit-scrollbar-track {
	background: #fff;
}

.ryker_tm_modalbox .description_wrap::-webkit-scrollbar-thumb {
	background-color: #999;
	border-radius: 6px;
	border: 3px solid #fff;
}

.ryker_tm_modalbox {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	z-index: 15;
	background-color: rgba(0, 0, 0, .8);
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_modalbox.opened {
	opacity: 1;
	visibility: visible;
}

.ryker_tm_modalbox .box_inner {
	position: absolute;
	top: 70px;
	bottom: 70px;
	width: 968px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	margin-top: -20px;
	transition-delay: .3s;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_modalbox.opened .box_inner {
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}

.ryker_tm_modalbox .close {
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 40px;
	z-index: 111111;
}

.ryker_tm_modalbox .close a {
	text-decoration: none;
	color: #fff;
}

.ryker_tm_modalbox .close .svg {
	width: 50px;
	height: 50px;
}

.ryker_tm_modalbox .description_wrap {
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 50px;
	overflow-y: scroll;
}

.ryker_tm_modalbox .details {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.ryker_tm_modalbox .description_wrap .image {
	position: relative;
	max-height: 450px;
	z-index: -1;
	margin-bottom: 28px;
}

.ryker_tm_modalbox .description_wrap .image img {
	min-width: 100%;
	opacity: 0;
}

.ryker_tm_modalbox .description_wrap .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.ryker_tm_modalbox .details .title {
	font-weight: 600;
	font-size: 23px;
	margin-bottom: 9px;
}

.ryker_tm_modalbox .details span {
	font-size: 16px;
	margin-bottom: 8px;
	display: inline-block;
}

.ryker_tm_modalbox .details span a {
	text-decoration: none;
	color: #7E7E7E;
	position: relative;
	display: inline-block;
}

.ryker_tm_modalbox .details span a:before {
	position: relative;
	content: ".";
	font-size: 40px;
	top: -3px;
	color: #7e7e7e;
	padding: 0px 9px 0px 5px;
}

.ryker_tm_news .hide_content {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
	display: none;
}

.ryker_tm_modalbox .hide_content {
	width: 100%;
	float: left;
}

.ryker_tm_modalbox .hide_content .descriptions {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}

.ryker_tm_modalbox .hide_content .descriptions .bigger {
	color: #888;
	font-size: 20px;
	margin-bottom: 31px;
}

.ryker_tm_modalbox .hide_content .descriptions p {
	margin-bottom: 18px;
}

.ryker_tm_modalbox .hide_content .quotebox {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
}

.ryker_tm_modalbox .hide_content .quotebox p {
	font-size: 20px;
	font-style: italic;
	margin-bottom: 18px;
	border-left: 2px solid #d1701f;
	padding-left: 30px;
	color: #000;
}

.ryker_tm_modalbox .hide_content .icon {
	position: absolute;
	left: 0px;
	top: 10px;
}

.ryker_tm_modalbox .hide_content .icon .svg {
	width: 50px;
	height: 50px;
}

.ryker_tm_modalbox .button {
	display: none;
}

/*---------------------------------------------------*/
/*	11) RYKER CONTACT
/*---------------------------------------------------*/

.ryker_tm_contact {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 140px 0px 150px 0px;
	background-color: #F9F9F9;
}

.ryker_tm_contact .short_info {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 90px;
}

.ryker_tm_contact .short_info ul {
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}

.ryker_tm_contact .short_info ul li {
	margin: 0px 0px 50px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 50px;
}

.ryker_tm_contact .short_info ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
}

.ryker_tm_contact .short_info ul li .logo {
	display: inline-block;
	width: 65px;
	height: 65px;
	background-color: #fff;
	border-radius: 100%;
	position: relative;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 9%);
}

.ryker_tm_contact .short_info ul li .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25px;
	height: 25px;
	color: #d1701f;
	display: block;
}

.ryker_tm_contact .short_info ul li .info {
	padding-left: 30px;
}

.ryker_tm_contact .short_info ul li .info h3 {
	font-size: 16px;
}

.ryker_tm_contact .short_info ul li .info span {
	font-family: "Poppins";
}

.ryker_tm_contact .wrapper {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	padding-top: 43px;
}

.ryker_tm_contact .desc {
	max-width: 50%;
	float: left;
	padding-top: 73px;
}

.ryker_tm_contact .wrapper .left {
	width: 50%;
	padding-right: 25px;
}

.ryker_tm_contact .fields {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_contact .fields .first {
	width: 100%;
	float: left;
}

.ryker_tm_contact .fields ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_contact .fields ul li {
	width: 100%;
	margin: 0px 0px 30px 0px;
	float: left;
}

.ryker_tm_contact .fields ul li input {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .2);
	background-color: #fff;
	border-radius: 10px;
}

.ryker_tm_contact .fields ul li input:focus {
	outline: none;
	border: 1px solid rgba(0, 0, 0, .5);
}

.ryker_tm_contact .fields .last textarea {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .2);
	height: 120px;
	resize: none;
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 10px;
}

.ryker_tm_contact .fields .last textarea:focus {
	outline: none;
	border: 1px solid rgba(0, 0, 0, .5);
}

.ryker_tm_contact .empty_notice {
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}

.ryker_tm_contact .contact_error {
	color: #F52225;
	text-align: left;
	font-weight: 500;
}

.ryker_tm_contact .returnmessage {
	color: #3A00FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}

.ryker_tm_contact .right {
	width: 50%;
	padding-left: 25px;
	position: relative;
	top: 6px;
}

.ryker_tm_contact .map_wrap .map {
	min-height: 359px;
	width: 100%;
	border-radius: 10px;
}

/*---------------------------------------------------*/
/*	12) RYKER COPYRIGHT
/*---------------------------------------------------*/

.ryker_tm_copyright {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #d1701f;
	padding: 80px 0px;
}

.ryker_tm_copyright .copyright_inner {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-content: center;
	justify-content: space-between;
}

.ryker_tm_copyright .text p {
	color: #fff;
	font-family: "Poppins";
}

.ryker_tm_copyright .social ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_copyright .social ul li {
	margin: 0px 20px 0px 0px;
	display: inline-block;
}

.ryker_tm_copyright .social ul li:last-child {
	margin-right: 0px;
}

.ryker_tm_copyright .social ul li a {
	text-decoration: none;
	color: #fff;
	display: block;
}

/*---------------------------------------------------*/
/*	13) RYKER MAGIC CURSOR
/*---------------------------------------------------*/

.ryker_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
	display: none;
}

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	margin-left: -3px;
	margin-top: -3px;
	width: 6px;
	height: 6px;
	z-index: 50;
	background-color: #d1701f;
	-webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
	transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}

.cursor-inner.cursor-hover {
	margin-left: -40px;
	margin-top: -40px;
	width: 80px;
	height: 80px;
	background-color: #d1701f;
	opacity: .3;
}

.cursor-outer {
	margin-left: -15px;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	border: 2px solid #d1701f;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 50;
	opacity: .5;
	-webkit-transition: all .08s ease-out;
	transition: all .08s ease-out;
}

.cursor-outer.cursor-hover {
	opacity: 0;
}

/*---------------------------------------------------*/
/*  ARLO SETTINGS
/*---------------------------------------------------*/

.ryker_tm_settings {
	position: fixed;
	z-index: 10;
	top: 25%;
	right: -200px;
	width: 200px;
	background-color: rgba(0, 0, 0, 1.00);
	padding: 40px 20px 33px 30px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ryker_tm_settings.opened {
	right: 0px;
}

.ryker_tm_settings .wrapper {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.ryker_tm_settings .icon {
	position: absolute;
	top: 0px;
	right: 100%;
	background-color: #000;
	padding: 12px 12px 4px 12px;
}

.ryker_tm_settings .icon .svg {
	color: #fff;
	width: 25px;
	height: 25px;
	animation: fa-spin 2s infinite linear;
}

.ryker_tm_settings .link {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.ryker_tm_settings .title {
	color: #fff;
	font-family: "Poppins";
	font-weight: 600;
	position: relative;
	display: inline-block;
}

.ryker_tm_settings .title:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, .2);
	left: 0px;
	bottom: 0px;
}

.ryker_tm_settings .colors {
	margin: 0px 0px 22px 0px;
	list-style-type: none;
	padding-top: 32px;
}

.ryker_tm_settings .colors li {
	margin: 0px;
	display: inline-block;
}

.ryker_tm_settings .colors li a {
	text-decoration: none;
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

.ryker_tm_settings .direction {
	list-style-type: none;
	margin: 0px;
}

.ryker_tm_settings .direction li {
	margin: 0px 20px 0px 0px;
	display: inline-block;
}

.ryker_tm_settings .direction li a {
	opacity: .4;
	text-decoration: none;
	color: #fff;
}

.ryker_tm_settings .direction li a.active {
	opacity: 1;
}

.ryker_tm_settings .direction li .svg {
	width: 25px;
	height: 25px;
}

.ryker_tm_settings .colors li.bl {
	display: inline-block;
}

.ryker_tm_settings .colors li.wh {
	display: none;
}

body.dark .ryker_tm_settings .colors li.bl,
.ryker_tm_settings.changed .colors li.bl {
	display: none;
}

body.dark .ryker_tm_settings .colors li.wh,
.ryker_tm_settings.changed .colors li.wh {
	display: inline-block;
}

body.dark .ryker_tm_settings,
.ryker_tm_settings.changed {
	background-color: #fff;
}

body.dark .ryker_tm_settings .icon,
.ryker_tm_settings.changed .icon {
	background-color: #fff;
}

body.dark .ryker_tm_settings .icon .svg,
.ryker_tm_settings.changed .icon .svg {
	color: #000;
}

body.dark .ryker_tm_settings .title,
.ryker_tm_settings.changed .title {
	color: #000;
}

body.dark .ryker_tm_settings .title:before,
.ryker_tm_settings.changed .title:before {
	background-color: rgba(0, 0, 0, .5);
}

body.dark .ryker_tm_settings .direction li a,
.ryker_tm_settings.changed .direction li a {
	color: #000;
}

body.dark .ryker_tm_settings .cursor li:nth-child(1) a,
.ryker_tm_settings.changed .cursor li:nth-child(1) a {
	border-color: #000;
}

body.dark .ryker_tm_settings .cursor li:nth-child(1) a:before,
.ryker_tm_settings.changed .cursor li:nth-child(1) a:before {
	background-color: #000;
}

body.dark .ryker_tm_settings .cursor li .svg,
.ryker_tm_settings.changed .cursor li .svg {
	color: #000;
}

.ryker_tm_settings .cursor {
	margin: 0px;
	list-style-type: none;
	padding-top: 20px;
}

.ryker_tm_settings .cursor li {
	margin: 0px 20px 0px 0px;
	display: inline-block;
}

.ryker_tm_settings .cursor li a {
	text-decoration: none;
	color: #fff;
	opacity: .4;
	font-weight: 600;
}

.ryker_tm_settings .cursor li a.showme {
	opacity: 1;
}

.ryker_tm_settings .cursor li:nth-child(1) a {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	border: 2px solid #fff;
	position: relative;
	display: inline-block;
}

.ryker_tm_settings .cursor li:nth-child(1) a:before {
	position: absolute;
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background-color: #fff;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}

.ryker_tm_settings .cursor li .svg {
	width: 25px;
	height: 25px;
	color: #fff;
}

.ryker_tm_settings .cursor li:nth-child(2) {
	position: relative;
	top: -2px;
}

.ryker_tm_settings .effect {
	margin: 0px;
	list-style-type: none;
	padding-top: 15px;
	padding-bottom: 25px;
}

.ryker_tm_settings .effect li {
	margin: 0px 0px 5px 0px;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 100%;
	background-color: #fff;
	opacity: .4;
}

.ryker_tm_settings .effect li a {
	text-decoration: none;
	color: #000;
	font-size: 13px;
	font-weight: 600;
	font-family: "Poppins";
	display: block;
	position: relative;
	top: 2px;
}

.ryker_tm_settings .effect li.selected {
	background-color: #fff;
	opacity: 1;
}

/*---------------------------------------------------*/
/*	14) RYKER INTRO
/*---------------------------------------------------*/

.ryker_tm_intro {
	width: 100%;
	min-height: 100vh;
	display: flex;
	background-color: #f9f9f9;
}

.ryker_tm_intro .centered {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.ryker_tm_intro .centered span {
	display: block;
	font-family: "Poppins";
	font-size: 17px;
	padding-top: 20px;
	font-weight: 500;
}

.ryker_tm_intro .left {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 2;
}

.ryker_tm_intro .right {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 2;
}

.ryker_tm_intro .image {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.ryker_tm_intro .image img {
	max-width: 250px;
	margin-bottom: 25px;
}

.ryker_tm_intro .image h3 {
	font-size: 20px;
	font-weight: 600;
}

.ryker_tm_intro .features {
	width: 100%;
	float: left;
}

.ryker_tm_intro .features ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_intro .features ul li {
	margin: 0px;
}

.ryker_tm_intro .features ul li span {
	display: inline-block;
	position: relative;
	padding-left: 25px;
}

.ryker_tm_intro .features ul li .svg {
	position: absolute;
	top: 5px;
	left: 0px;
	color: #d1701f;
	width: 18px;
	height: 18px;
}

.ryker_tm_intro .right .features ul li .svg {
	color: rgba(255, 0, 3, 1.00);
}

.ryker_tm_intro .buttons {
	width: 100%;
	float: left;
	padding-top: 30px;
}

.ryker_tm_intro .buttons ul {
	margin: 0px;
	list-style-type: none;
}

.ryker_tm_intro .buttons ul li {
	margin: 0px;
	display: inline-block;
}

.ryker_tm_intro .buttons ul li a {
	text-decoration: none;
	background-color: #d1701f;
	border: 2px solid #d1701f;
	color: #fff;
	display: inline-block;
	padding: 7px 25px;
	border-radius: 50px;
	font-size: 15px;
	transition: all .3s ease;
}

.ryker_tm_intro .buttons ul li a:hover {
	background-color: transparent;
	color: #000;
}

.ryker_tm_intro .intro_line,
.ryker_tm_intro .intro_line_2,
.ryker_tm_intro .intro_line_3 {
	position: fixed;
	top: 0px;
	width: 1px;
	height: 200%;
	left: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, .06);
}

.ryker_tm_intro .intro_line {
	left: 25%;
}

.ryker_tm_intro .intro_line_2 {
	left: 50%;
	transform: translateY(-50%);
}

.ryker_tm_intro .intro_line_3 {
	left: 75%;
}

/*---------------------------------------------------*/
/*	14) RYKER MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1600px) {
	.container {
		max-width: 1070px;
	}

	.ryker_tm_hero .job h3 {
		font-size: 55px;
		line-height: 1.2;
	}

	.ryker_tm_hero .job {
		margin-bottom: 22px;
	}

	.ryker_tm_hero .avatar {
		min-width: 350px;
		min-height: 350px;
	}

	.ryker_tm_title h3 {
		font-size: 23px;
	}

	.ryker_tm_title span {
		margin-bottom: 5px;
	}

	.ryker_tm_button a {
		padding: 8px 35px;
	}

	.ryker_tm_about .text {
		padding-top: 25px;
		margin-bottom: 25px;
	}

	.ryker_tm_about .signature {
		margin-bottom: 25px;
	}

	.ryker_tm_services .right ul li .list_inner {
		padding: 45px 30px;
	}

	.ryker_tm_services .right ul li .svg {
		width: 45px;
		height: 45px;
		margin-bottom: 20px;
	}

	.ryker_tm_title {
		max-width: 450px;
	}

	.ryker_tm_news ul li .details span {
		margin-bottom: 5px;
	}
}

@media (max-width: 1200px) {
	.ryker_tm_modalbox .box_inner {
		width: 600px;
	}

	.ryker_tm_modalbox .close {
		margin-left: 10px;
	}

	.ryker_tm_modalbox .main_details {
		flex-direction: column;
	}

	.ryker_tm_modalbox .main_details .textbox {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 40px;
	}

	.ryker_tm_modalbox .main_details .detailbox {
		width: 100%;
		padding-left: 0px;
	}

	.ryker_tm_modalbox .additional_images ul {
		margin: 0px;
	}

	.ryker_tm_modalbox .additional_images ul li {
		width: 100%;
		padding-left: 0px;
	}
}

@media (max-width: 1040px) {
	.ryker_tm_topbar {
		display: none;
	}

	.ryker_tm_mobile_menu {
		display: block;
	}

	.ryker_tm_hero .content {
		flex-direction: column-reverse;
		justify-content: center;
		text-align: center;
	}

	.ryker_tm_hero .avatar {
		min-width: 200px;
		min-height: 200px;
		margin-bottom: 50px;
	}

	.ryker_tm_hero .job h3 {
		font-size: 50px;
	}

	.ryker_tm_hero .texts {
		padding: 0px;
	}

	.ryker_tm_about .about_inner {
		flex-direction: column;
	}

	.ryker_tm_about .left {
		width: 100%;
		margin: 0px 0px 70px 0px;
	}

	.ryker_tm_about .right {
		width: 100%;
		margin-left: 0px;
	}

	.ryker_tm_title h3 {
		font-size: 25px;
	}

	.ryker_tm_about .experience {
		bottom: 20px;
		right: 20px;
	}

	.ryker_tm_services .services_inner {
		flex-direction: column;
	}

	.ryker_tm_services .left {
		width: 100%;
		margin: 0px 0px 70px 0px;
	}

	.ryker_tm_services .right {
		width: 100%;
		margin: 0px;
	}

	.ryker_tm_services .right ul li:nth-child(1) {
		margin-top: 0px;
	}

	.ryker_tm_portfolio .portfolio_list ul li {
		width: 50%;
	}

	.ryker_tm_video .text {
		font-size: 25px;
	}

	#grouploop .item-wrap .item span {
		font-size: 120px;
	}

	#grouploop {
		margin: 177px 0px 108px 0px;
	}

	.ryker_tm_testimonials .avatar {
		position: relative;
		width: 60px;
		height: 60px;
		top: 0px;
		left: 0px;
		transform: translate(0);
	}

	.ryker_tm_testimonials .details {
		margin-bottom: 20px;
	}

	.ryker_tm_testimonials .testimonials_list .wrapper .wr_in .list_inner {
		padding: 70px 50px;
	}

	.ryker_tm_testimonials .wr_in {
		padding: 20px;
	}

	.ryker_tm_testimonials .testimonials_list {
		max-width: 100%;
		left: 0px;
	}

	.ryker_tm_testimonials .myquote {
		display: none;
	}

	.ryker_tm_testimonials .text p {
		font-size: 17px;
	}

	.ryker_tm_news ul li {
		width: 50%;
	}

	.ryker_tm_contact .short_info ul {
		margin: 0px;
	}

	.ryker_tm_contact .short_info ul li {
		width: 100%;
		padding-left: 0px;
	}

	.ryker_tm_contact .wrapper {
		flex-direction: column;
	}

	.ryker_tm_contact .wrapper .left {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 50px;
	}

	.ryker_tm_contact .right {
		width: 100%;
		padding-left: 0px;
	}

	.ryker_tm_copyright .copyright_inner {
		flex-direction: column;
		align-items: center;
	}

	.ryker_tm_copyright .text {
		margin-bottom: 5px;
	}
}

@media (max-width: 768px) {
	.ryker_tm_hero .job h3 {
		font-size: 35px;
	}

	.ryker_tm_hero .desc p {
		font-size: 16px;
	}

	.short_skills {
		flex-direction: column;
		width: auto;
		left: 50%;
		transform: translateX(-50%);
	}

	.short_skills .text:before {
		display: none;
	}

	.short_skills .icons {
		margin-left: 0px;
	}

	.short_skills .text {
		margin-bottom: 20px;
	}

	.short_skills .icons ul li {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.short_skills .icons ul li .svg {
		width: 18px;
		height: 18px;
	}

	.ryker_tm_title h3 {
		font-size: 22px;
	}

	.ryker_tm_about .experience {
		width: 170px;
		height: 170px;
	}

	.ryker_tm_about .experience .year {
		font-size: 55px;
	}

	#circle text {
		font-size: 14px;
	}

	#circle svg {
		width: 330px;
		height: 330px;
		top: -80px;
		left: -80px;
	}

	.ryker_tm_services .right ul {
		margin: 0px;
	}

	.ryker_tm_services .right ul li {
		width: 100%;
		padding-left: 0px;
	}

	.ryker_tm_portfolio .portfolio_list ul {
		margin: 0px;
	}

	.ryker_tm_portfolio .portfolio_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.ryker_tm_video .rounded {
		width: 80px;
		height: 80px;
	}

	.ryker_tm_video .text {
		font-size: 22px;
	}

	.ryker_tm_button a {
		padding: 10px 40px;
		font-size: 15px;
	}

	#grouploop .item-wrap .item span {
		font-size: 80px;
	}

	#grouploop {
		margin: 162px 0px 93px 0px;
	}

	.ryker_tm_news ul {
		margin: 0px;
	}

	.ryker_tm_news ul li {
		width: 100%;
		padding-left: 0px;
	}

	.ryker_tm_modalbox .box_inner {
		width: 300px;
	}

	.ryker_tm_modalbox .close {
		margin-left: -20px;
		top: -35px;
	}

	.ryker_tm_modalbox .close .svg {
		width: 20px;
		height: 20px;
	}

	.ryker_tm_modalbox .description_wrap {
		padding: 20px;
	}
}

/* -------------------------------- 

File#: _1_cta-banner
Title: Call to Action Banner
Descr: A banner containing brief info about a subject, plus links/buttons
Usage: codyhouse.co/license

-------------------------------- */

/* reset */
*,
*::after,
*::before {
	box-sizing: border-box;
}

* {
	font: inherit;
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: hsl(0, 0%, 100%);
	font-family: system-ui, sans-serif;
	color: hsl(230, 7%, 23%);
	font-size: 1.125rem;
	/* 18px */
	line-height: 1.4;
}

h1,
h2,
h3,
h4 {
	line-height: 1.2;
	color: hsl(230, 13%, 9%);
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
	/* 40px */
}

h2 {
	font-size: 2.125rem;
	/* 34px */
}

h3 {
	font-size: 1.75rem;
	/* 28px */
}

h4 {
	font-size: 1.375rem;
	/* 22px */
}

ol,
ul,
menu {
	list-style: none;
}

button,
input,
textarea,
select {
	background-color: transparent;
	border-radius: 0;
	color: inherit;
	line-height: inherit;
	-webkit-appearance: none;
	appearance: none;
}

textarea {
	resize: vertical;
	overflow: auto;
	vertical-align: top;
}

a {
	color: hsl(250, 84%, 54%);
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img,
video,
svg {
	display: block;
	max-width: 100%;
}

/* -------------------------------- 
  
  Buttons 
  
  -------------------------------- */

.cd-btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 0.375em;
	font-size: 1em;
	text-decoration: none;
	line-height: 1.2;
	cursor: pointer;
	transition: 0.2s;
	will-change: transform;
}

.cd-btn:focus-visible {
	outline: none;
}

.cd-btn:active {
	transform: translateY(2px);
}

.cd-btn--primary {
	background: hsl(250, 84%, 54%);
	box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
		0 1px 3px hsla(250, 84%, 38%, 0.25),
		0 2px 6px hsla(250, 84%, 38%, 0.1),
		0 6px 10px -2px hsla(250, 84%, 38%, 0.25);
	color: hsl(0, 0%, 100%);
}

.cd-btn--primary:hover {
	background: hsl(250, 84%, 60%);
	box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
		0 1px 2px hsla(250, 84%, 38%, 0.25),
		0 1px 4px hsla(250, 84%, 38%, 0.1),
		0 3px 6px -2px hsla(250, 84%, 38%, 0.25);
}

.cd-btn--primary:focus-visible {
	box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
		0 1px 2px hsla(250, 84%, 38%, 0.25),
		0 1px 4px hsla(250, 84%, 38%, 0.1),
		0 3px 6px -2px hsla(250, 84%, 38%, 0.25),
		0 0 0 2px hsl(0, 0%, 100%),
		0 0 0 4px hsl(250, 84%, 54%);
}

/* -------------------------------- 
  
  Component 
  
  -------------------------------- */

.cta-banner {
	background-color: #080808;
	overflow: hidden;
}

.cta-banner__grid {
	display: grid;
	align-items: center;
	gap: 1.5rem;
}

.cta-banner__grid>* {
	min-width: 0;
}

.cta-banner__content {
	text-align: left;
	display: grid;
	gap: 0.75rem;
}

.cta-banner__title {
	font-size: 1.75rem;
	color: #ddd;
	padding: 5px;
	margin-top: 50px;
}

.cta-banner__description {
	font-size: 0.9375rem;
	color: #F9F9F9;
}

.cta-banner__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 20px;
}

.cta-banner__img {
	width: 500px;
	transform: scaleX(-1);
}

@media (min-width: 64rem) {
	.cta-banner__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-banner__description {
		font-size: 1.125rem;
	}

	.cta-banner:not(.cta-banner--text-center\@md) .cta-banner__content {
		padding-left: 1.5rem;
		text-align: left;
	}

	.cta-banner:not(.cta-banner--text-center\@md) .cta-banner__btns {
		justify-content: center;
	}
}

@media only screen and (max-width: 600px) {

	.cta-banner__description {
		font-size: 1.125rem;
		text-align: center;
	}

	.cta-banner:not(.cta-banner--text-center\@md) .cta-banner__content {
		padding-left: 1.5rem;
		text-align: center;
	}

	.cta-banner:not(.cta-banner--text-center\@md) .cta-banner__btns {
		justify-content: center;
	}
}



/* -------------------------------- 
  
  Utilities 
  
  -------------------------------- */

.cd-padding-sm {
	padding: 1.5rem;
}

.cd-radius-md {
	border-radius: 0.375em;
}

.cd-link {
	color: hsl(250, 84%, 54%);
	text-decoration: none;
	background-image: linear-gradient(to right, hsl(250, 84%, 54%) 50%, hsla(250, 84%, 54%, 0.2) 50%);
	background-size: 200% 1px;
	background-repeat: no-repeat;
	background-position: 100% 100%;
	transition: background-position 0.2s;
}

.cd-link:hover {
	background-position: 0% 100%;
}

.cd-link--contrast-higher {
	color: hsl(230, 13%, 9%);
	background-image: linear-gradient(to right, hsl(230, 13%, 9%) 50%, hsla(230, 13%, 9%, 0.1) 50%);
}

html {
	scroll-behavior: smooth;
}

.ryker_tm_topbar .trigger .hamburger-inner,
.ryker_tm_topbar .trigger .hamburger-inner:after,
.ryker_tm_topbar .trigger .hamburger-inner:before {
	background-color: white !important;
}

.animate .trigger .hamburger-inner,
.animate .trigger .hamburger-inner:after,
.animate .trigger .hamburger-inner:before {
	background-color: black !important;
}

