@charset "utf-8";
/*
/*	Copyright (c) 2019 - 2021 Marketify
/*	Author: Marketify
/*	This file is made for CURRENT TEMPLATE


01) ARLO BASE
02) ARLO TOPBAR
03) ARLO MOBILE MENU
04) ARLO HERO
05) ARLO ABOUT

07) ARLO PORTFOLIO

09) ARLO NEWS
10) ARLO CONTACT
11) ARLO COPYRIGHT
12) ARLO CURSOR

14) ARLO GLITCH EFFECT
15) ARLO PARTICLE EFFECT
16) ARLO MEDIA QUERIES (FOR SMALL DEVICES)

/*---------------------------------------------------*/
/*	01) ARLO BASE
/*---------------------------------------------------*/

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

body {
	font-family: "Mulish";
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.5px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #333;
}

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

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

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

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

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

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

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

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

body.dark ::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #fff;
}

body.dark :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff;
	opacity: 1;
}

body.dark ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff;
	opacity: 1;
}

body.dark :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

body.dark ::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #fff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	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;
}

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

.arlo_tm_all_wrap,
.arlo_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+ */
}

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

.arlo_tm_preloader {
	position: fixed;
	background-color: #fff;
	z-index: 9999999;
	height: 100%;
	width: 100%;

	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
	-webkit-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
}

.arlo_tm_preloader .spinner_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 33333;
}

.arlo_tm_preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

.arlo_tm_preloader:before,
.arlo_tm_preloader:after {
	content: "";
	position: absolute;
	height: 50%;
	width: 100%;
	background-color: #000;

	-webkit-transition: .7s all ease;
	-o-transition: .7s all ease;
	transition: .7s all ease;
}

.arlo_tm_preloader:before {
	top: 0;
	left: 0;
}

.arlo_tm_preloader:after {
	bottom: 0;
	left: 0;
}

.arlo_tm_preloader.loaded:before,
.arlo_tm_preloader.loaded:after {
	height: 0%;
}

/*---------------------------------------------------*/
/*	02) ARLO TOPBAR
/*---------------------------------------------------*/

.arlo_tm_topbar {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
	padding: 20px 0px;

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

.arlo_tm_topbar.animate {
	background-color: #fff;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 9%);
}

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

.arlo_tm_topbar .logo .dark {
	display: none;
}

.arlo_tm_topbar.animate .logo .dark {
	display: block;
}

.arlo_tm_topbar.animate .logo .light {
	display: none;
}

.arlo_tm_topbar .logo img {
	max-width: 50px;
}

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

.arlo_tm_topbar .menu ul li {
	margin: 0px 20px 0px 0px;
	display: inline-block;
}

.arlo_tm_topbar .menu ul li:last-child {
	margin-right: 0px;
}

.arlo_tm_topbar .menu ul li a {
	text-decoration: none;
	color: #fff;
	font-family: "Poppins";
	font-weight: 500;

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

.arlo_tm_topbar.animate .menu ul li a {
	color: #000;
}

.arlo_tm_topbar .menu ul li.current a {
	color: #e65f78;
}

.arlo_tm_topbar .menu ul li a:hover {
	color: #e65f78;
}

/*---------------------------------------------------*/
/*	03) ARLO MOBILE MENU
/*---------------------------------------------------*/

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

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

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

.arlo_tm_mobile_menu .mobile_in .logo img {
	max-width: 50px;
}

.my_trigger .hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.my_trigger .hamburger-box {
	width: 30px;
	height: 18px;
	display: inline-block;
	position: relative;
}

.my_trigger .hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.my_trigger .hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 30px;
	height: 2px;
	background-color: #333333;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.my_trigger .hamburger-inner::before,
.my_trigger .hamburger-inner::after {
	content: "";
	display: block;
}

.my_trigger .hamburger-inner::before {
	top: -8px;
}

.my_trigger .hamburger-inner::after {
	bottom: -10px;
}

.my_trigger .hamburger--collapse-r .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.my_trigger .hamburger--collapse-r .hamburger-inner::after {
	top: -16px;
	transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.my_trigger .hamburger--collapse-r .hamburger-inner::before {
	transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.my_trigger .hamburger--collapse-r.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.my_trigger .hamburger--collapse-r.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.my_trigger .hamburger--collapse-r.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(90deg);
	transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.my_trigger .hamburger {
	padding: 0px;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.my_trigger .hamburger-box {
	display: block;
}

.my_trigger .hamburger .hamburger-inner::before,
.my_trigger .hamburger .hamburger-inner::after,
.my_trigger .hamburger .hamburger-inner {
	background-color: #000;
	width: 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;
}

.arlo_tm_mobile_menu .dropdown {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .2);
	display: none;
}

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

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

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

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

/*---------------------------------------------------*/
/*	04) ARLO HERO
/*---------------------------------------------------*/

.arlo_tm_hero {
	width: 100%;
	height: 100vh;
	position: relative;
	float: left;
	clear: both;
	overflow: hidden;
}

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

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

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

.arlo_tm_hero .content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
}

.arlo_tm_hero .image_wrap {
	width: 190px;
	height: 190px;
	display: inline-block;
	margin-bottom: 33px;
	position: relative;
}

.arlo_tm_hero .image_wrap .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 100%;
}

.arlo_tm_hero .image_wrap .main:before {
	position: absolute;
	content: "";
	top: -8px;
	bottom: -8px;
	left: -8px;
	right: -8px;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .08);
	z-index: -1;
}

.arlo_tm_hero .name_holder {
	margin-bottom: 9px;
}

.arlo_tm_hero .name_holder h3 {
	color: #fff;
	text-transform: uppercase;
	font-size: 45px;
	font-weight: 800;
	font-family: "Montserrat";
}

.arlo_tm_hero .name_holder h3 span {
	color: #e65f78;
}

.arlo_tm_hero .text_typing p {
	font-size: 19px;
	font-weight: 500;
	font-family: "Poppins";
	color: transparent;
}

.arlo_tm_animation_text_word {
	color: white;
}


.arlo_tm_arrow_wrap {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	z-index: 6;
	margin-left: -21px;
}

.arlo_tm_arrow_wrap.bounce {
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

.arlo_tm_arrow_wrap a {
	text-decoration: none;
	color: #fff;
	font-size: 30px;
}

/*---------------------------------------------------*/
/*	05) ARLO ABOUT
/*---------------------------------------------------*/

.arlo_tm_about {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 150px;
	padding-top: 140px;
}

.arlo_tm_about .about_inner {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	padding-top: 100px;
}

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

.arlo_tm_main_title span {
	color: #e65f78;
	display: inline-block;
	font-family: "Poppins";
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.arlo_tm_main_title h3 {
	font-size: 30px;
	font-weight: 800;
}

.arlo_tm_about .left {
	width: 35%;
	float: left;
	height: auto;
}

.arlo_tm_about .left .about_image_wrap {
	position: relative;
	float: left;
}

.arlo_tm_about .left .about_image_wrap .image {
	position: absolute;
	box-shadow: 0px 7px 15px lightgray;
	z-index: 2;
}

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

.arlo_tm_about .left .about_image_wrap .border .inner {
	position: absolute;
	top: 25px !important;
	bottom: -25px !important;
	left: 25px !important;
	right: -25px !important;
	border: 10px solid #000;
}

.arlo_tm_about .left .about_image_wrap img {
	opacity: 0;
	min-width: 100%;
}

.arlo_tm_about .right {
	width: 65%;
	height: auto;
	padding-left: 70px;
}

.arlo_tm_about .right .about_title {
	margin-bottom: 30px;
}

.arlo_tm_about .right .about_title h3 {
	font-size: 20px;
	font-weight: 600;
}

.arlo_tm_about .right .about_title h3 {
	color: #e65f78;
}

.arlo_tm_about .right .text {
	margin-bottom: 23px;
	float: left;
}

.arlo_tm_about .right .text span {
	color: #e65f78;
	font-style: italic;
}

.arlo_tm_about .about_short_contact_wrap {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 24px;
}

.arlo_tm_about .about_short_contact_wrap .cf_grid {
	display: grid;
	grid-template-columns: 30px 120px auto;
	line-height: 2.5;
}

.arlo_tm_about .about_short_contact_wrap .cf_grid .svg {
	width: 17px;
	height: 17px;
	color: #e65f78;
	margin-top: 11px;
}

.arlo_tm_about .about_short_contact_wrap .cf_grid label {
	font-weight: 600;
	color: #000;
}

.arlo_tm_about .about_short_contact_wrap .cf_grid span,
.arlo_tm_about .about_short_contact_wrap .cf_grid span a {
	color: #333;
}


/* hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh */
.arlo_tm_about .about_short_contact_wrap .cf_grid a,
.cf_project_card_right a,
.imp-data-container a,
.cf_datenschutz_hinweis a,
.modal a {
	text-decoration: none;
	color: #000;
	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;
}

.arlo_tm_about .about_short_contact_wrap .cf_grid a:after,
.cf_project_card_right a:after,
.imp-data-container a:after,
.cf_datenschutz_hinweis a:after,
.modal a:after {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: auto;
	right: 0;
	bottom: 0;
	transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
	background: currentColor;
}

.arlo_tm_about .about_short_contact_wrap .cf_grid a:hover:after,
.cf_project_card_right a:hover:after,
.imp-data-container a:hover:after,
.cf_datenschutz_hinweis a:hover:after,
.modal a:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.arlo_tm_about .about_short_contact_wrap ul li .svg {
	position: absolute;
	left: 0px;
	top: 6px;
	width: 17px;
	height: 17px;
	color: #e65f78;
}

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

.arlo_tm_button a {
	text-decoration: none;
	color: #fff;
	background-color: #e65f78;
	display: inline-block;
	padding: 12px 45px;
	font-family: "Poppins";
	position: relative;
	overflow: hidden;
}

.arlo_tm_button a:before {
	position: absolute;
	content: "";
	top: 0px;
	height: 100%;
	left: -25%;
	width: 0%;
	background-color: rgba(255, 255, 255, .1);
	transform: skew(50deg);
	transition-duration: .6s;
	z-index: 1;
}

.arlo_tm_button a:hover:before {
	width: 150%;
}

/*---------------------------------------------------*/
/*	07) ARLO PORTFOLIO
/*---------------------------------------------------*/

.arlo_tm_portfolio {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 100px;
	padding-top: 141px;
}

.arlo_tm_portfolio .portfolio_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 73px;
}

.arlo_tm_portfolio .portfolio_filter {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 20px;
}

.arlo_tm_portfolio .portfolio_filter ul,
.arlo_tm_portfolio .cf_project_list ul {
	list-style-type: none;
}

.arlo_tm_portfolio .portfolio_filter ul li {
	margin: 0px 30px 20px 0px;
	display: inline-block;
}

.arlo_tm_portfolio .portfolio_filter ul li:last-child {
	margin-right: 0px;
}

.arlo_tm_portfolio .portfolio_filter ul li a {
	text-decoration: none;
	color: #000;
	position: relative;
	display: inline-block;
	font-weight: 500;
	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;
}

.arlo_tm_portfolio .portfolio_filter ul li a.active {
	color: #e65f78;
}

.arlo_tm_portfolio .portfolio_filter ul li a:hover {
	color: #e65f78;
}

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

.arlo_tm_portfolio .cf_project_list ul li {
	margin: 0px 0px 50px 0px;
}

.arlo_tm_portfolio_titles {
	white-space: nowrap;
	background: #ffffff;
	font-size: 18px;
	padding: 5px 15px;
	font-family: "Poppins";
	font-weight: 600;
	color: #000;
	position: fixed;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
}

.arlo_tm_portfolio_titles.visible {
	opacity: 1;
	visibility: visible;
}

.arlo_tm_portfolio_titles .work__cat {
	position: absolute;
	background: #ffffff;
	top: 100%;
	left: 0;
	margin-top: -10px;
	font-family: "Poppins";
	font-size: 16px;
	font-weight: 400;
	padding: 5px 15px;
}

/* -------------------------------------------------- */
/*   my personal section - Portfolio Cards            */
/* -------------------------------------------------- */


.cf_project_card {
	background-color: #fff;
	border: 1px solid rgb(233, 233, 233);
	max-width: 100%;
	display: none;
	margin: 20px 0;
	overflow: hidden;
	position: relative;
}

.show {
	display: flex;
}

.cf_project_card_right {
	padding: 30px;
}

.cf_project_card .cf_project_card_right a {
	color: #e65f78;
	position: absolute;
	top: 280px;
	left: calc(100% - 200px);
}

.cf_project_card_right p {
	min-height: 100px;
}

.cf_project_card_right h2 {
	letter-spacing: 1px;
	margin: 10px 0;
}

.cf_project_card_right h6 {
	opacity: 0.6;
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cf_project_card .cf_project_card_right ul {
	margin: 0;
	padding: 0px 0px 20px 0px;
	list-style: none;
}

.cf_project_card .cf_project_card_right ul li {
	display: inline-block;
	opacity: 0.6;
	font-size: 14px;
	line-height: 20px;
	background-color: #fff;
	box-shadow: 0 1px 4px rgb(0 0 0 / 14%);
	padding: 5px 10px;
	margin: 0px 5px 0px 0px;
	border-radius: 3px;
}

.cf_project_card .cf_project_card_left {
	background-color: rgb(233, 233, 233);
	color: #fff;
	padding: 30px 20px;
	max-width: 40%;
	min-height: 330px;
}

.cf_project_card .cf_project_card_left img {
	height: 100%;
}

/*---------------------------------------------------*/
/*	10) ARLO CONTACT
/*---------------------------------------------------*/

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

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

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

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

.arlo_tm_contact .contact_inner .left {
	width: 50%;
	padding-right: 25px;
}

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

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

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

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

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

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

.arlo_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;
}

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

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

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

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

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

.cf_datenschutz_hinweis p {
	font-size: .8rem;
	margin-bottom: 10px;
}

.cf_datenschutz_hinweis a {
	cursor: pointer;
	color: #333;
}

/*---------------------------------------------------*/
/*	11) ARLO COPYRIGHT
/*---------------------------------------------------*/

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

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

.arlo_tm_copyright .copy p {
	color: #fff;
	font-family: "Poppins";
}

.arlo_tm_copyright .social .wrapper-social a {
	color: #fff;
}

.arlo_tm_copyright .social .hover-fx {
	font-size: 2rem;
	display: inline-block;
	cursor: pointer;
	margin: 15px;
	width: 80px;
	height: 80px;
	line-height: 84px;
	text-align: center;
	position: relative;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	transition: 300ms;
}

.arlo_tm_copyright .social .hover-fx:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	box-sizing: content-box;
	box-shadow: 0 0 0 3px #fff;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 300ms;
}

.arlo_tm_copyright .social .hover-fx:hover {
	background-color: #fff;
	color: #151515;
}

.arlo_tm_copyright .social .hover-fx:hover:after {
	opacity: 1;
	transform: scale(1.15);
}

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

.arlo_tm_copyright .social ul li {
	margin: 0px 15px 0px 0px;
	display: inline-block;
}

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

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

.arlo_tm_copyright .social ul li .svg {
	width: 30px;
	height: 30px;
}

.imp-data-container {
	display: flex;
}

.imp-data-container a {
	color: #fff;
	cursor: pointer;
}

.fa-linkedin {
	color: #fff;
	height: 200px;
}

/*---------------------------------------------------*/
/*	12) ARLO CURSOR
/*---------------------------------------------------*/

/* .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: 100;
	background-color: green;
	-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: #e65f78;
	opacity: .3;
} */

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

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

/* .arlo_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
} */


/*---------------------------------------------------*/
/*	ARLO SIDEBAR DEMO
/*---------------------------------------------------*/

/* .arlo_tm_leftpart {
	width: 400px;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	background-color: #002245;
	z-index: 3;
	box-shadow: 0 0 30px rgba(0, 34, 69, 0.05);

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

/* .arlo_tm_leftpart .inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	padding: 60px;
} */

/* .arlo_tm_leftpart .inner .logo {
	float: left;
} */

/* .arlo_tm_leftpart .inner .logo img {
	max-width: 200px;
	max-height: 200px;
} */

/* .arlo_tm_leftpart .inner .menu {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
} */

/* .arlo_tm_leftpart .inner .menu ul {
	margin: 0px;
	list-style-type: none;
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
} */

/* .arlo_tm_leftpart .inner .menu ul li {
	margin: 0px;
} */

/* .arlo_tm_leftpart .inner .menu ul li a {
	text-decoration: none;
	color: #fff;
	text-transform: capitalize;
	display: block;
	position: relative;
	padding: 13px 0px;
	font-family: "Poppins";
	font-weight: 500;

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

/* .arlo_tm_leftpart .inner .menu ul li.current a {
	color: #e54b4b;
} */

/* .arlo_tm_leftpart .inner .menu ul li.current a:after {
	width: 100%;
} */

/* .arlo_tm_leftpart .inner .menu ul li a:hover {
	color: #e54b4b;
} */

/* .arlo_tm_leftpart .inner .menu ul li a:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background-color: rgba(255, 255, 255, .015);
	left: 0px;
	bottom: 0px;
} */

/* .arlo_tm_leftpart .inner .menu ul li:last-child a:before {
	display: none;
} */

/* .arlo_tm_leftpart .inner .menu ul li a:after {
	position: absolute;
	content: "";
	width: 0%;
	height: 2px;
	background-color: rgba(255, 255, 255, .025);
	left: 0px;
	bottom: 0px;

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

/* .arlo_tm_leftpart .inner .menu ul li:last-child a:after {
	display: none;
} */

/* .arlo_tm_leftpart .inner .menu ul li a:hover:after {
	width: 100%;
} */

/* .arlo_tm_leftpart .inner .bottom {
	position: absolute;
	bottom: 50px;
	left: 60px;
} */

/* .arlo_tm_leftpart .inner .bottom ul {
	margin: 0px;
	list-style-type: none;
} */

/* .arlo_tm_leftpart .inner .bottom ul li {
	margin: 0px 18px 0px 0px;
	display: inline-block;
} */

/* .arlo_tm_leftpart .inner .bottom ul li:last-child {
	margin-right: 0px;
} */

/* .arlo_tm_leftpart .inner .bottom ul li a {
	text-decoration: none;
	color: #fff;

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

/* .arlo_tm_leftpart .inner .bottom ul li a:hover {
	color: #e54b4b;
} */

/* .arlo_tm_rightpart {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-left: 400px;

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

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

.arlo_tm_settings {
	position: fixed;
	z-index: 10;
	top: 15%;
	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;
}

.arlo_tm_settings.opened {
	right: 0px;
}

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

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

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

.arlo_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);
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* body.dark .arlo_tm_settings .direction li a,
.arlo_tm_settings.changed .direction li a {
	color: #000;
} */

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

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

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

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

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

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

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

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

.arlo_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%;
}

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

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

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

.arlo_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;
}

.arlo_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;
}

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

/* -------------------------------------------------- */
/*          my personal section                       */
/* -------------------------------------------------- */

.modal {
	display: none;
	position: fixed;
	z-index: 99;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.308);
}

.cf_impressum .modal-dialog-centered,
.cf_datenschutz .modal-dialog-centered,
.cf_haftungsausschluss .modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}

.cf_impressum .modal-content,
.cf_datenschutz .modal-content,
.cf_haftungsausschluss .modal-content {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	margin: auto;
	padding: 75px;
	width: 50%;
	border-radius: .4rem;
}

.cf_datenschutz .modal-content,
.cf_haftungsausschluss .modal-content {
	width: 80%;
	height: calc(90vh - 1rem);
}

.cf_haftungsausschluss .modal-content {
	height: calc(75vh - 1rem);
}

.cf_impressum .modal-header,
.cf_datenschutz .modal-header,
.cf_haftungsausschluss .modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

.cf_impressum .modal-title,
.cf_datenschutz .modal-title,
.cf_datenschutz .modal-body h2,
.cf_haftungsausschluss .modal-title,
.cf_haftungsausschluss .modal-body h2 {
	color: #3e3e3e;
	font-weight: 300;
}

.cf_impressum .modal-body h3,
.cf_impressum .modal-body h6,
.cf_datenschutz .modal-body h4 {
	color: #3e3e3e;
	font-weight: 400;
}

.cf_impressum .modal-body h6 {
	color: #e65f78;
	margin-bottom: 20px;
}

.cf_datenschutz .modal-body p,
.cf_datenschutz .modal-body a,
.cf_datenschutz .modal-body li,
.cf_haftungsausschluss .modal-body p,
.cf_impressum .modal-footer p,
.cf_impressum .modal-footer a {
	font-family: "Poppins";
	font-weight: 300;
	color: #626466;
}

.cf_datenschutz .modal-body a,
.cf_impressum .modal-footer a {
	text-decoration: none;
}

.cf_datenschutz .modal-body,
.cf_haftungsausschluss .modal-body {
	overflow-y: auto;
	padding: 5px 20px 5px 0;
}

.cf_datenschutz .modal-body h2,
.cf_haftungsausschluss .modal-body h2 {
	margin: 1rem 0;
}

.cf_datenschutz .modal-body h4 {
	font-weight: 300;
}

.cf_datenschutz .modal-body h6 {
	color: #626466;
	margin-top: 15px;
}

.cf_datenschutz .modal-body p,
.cf_haftungsausschluss .modal-body p {
	margin-bottom: 1em;
}

.cf_datenschutz .modal-body ul {
	margin: 0 0 2em 3em;
}

.close {
	color: #919191;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/*---------------------------------------------------*/
/*	16) ARLO MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media (max-width: 1600px) {
	.arlo_tm_leftpart {
		width: 350px;
	}

	.arlo_tm_rightpart {
		padding-left: 350px;
	}
}

@media (max-width: 1400px) {
	.arlo_tm_topbar {
		padding: 15px 0px;
	}

	.arlo_tm_hero .image_wrap {
		width: 170px;
		height: 170px;
		margin-bottom: 25px;
	}

	.arlo_tm_hero .name_holder {
		margin-bottom: 5px;
	}

	.container {
		max-width: 1070px;
	}

	.arlo_tm_about .right .about_title {
		margin-bottom: 15px;
	}

	.arlo_tm_leftpart .inner .logo img {
		max-width: 100px;
		max-height: 100px;
	}

	.arlo_tm_leftpart .inner .menu ul li a {
		padding: 5px 0px;
	}

	.arlo_tm_leftpart .inner {
		padding: 40px;
	}

	.arlo_tm_leftpart .inner .bottom {
		bottom: 30px;
		left: 40px;
	}
}

@media (max-width: 1200px) {}

@media (max-width: 1040px) {

	.arlo_tm_portfolio .cf_project_card {
		width: 65%;
		flex-direction: column;
	}

	.cf_project_card .cf_project_card_right {
		width: unset;
	}

	.cf_project_card .cf_project_card_right a {
		position: unset;
		margin-top: 20px;
	}

	.cf_project_card .cf_project_card_right ul li {
		width: auto;
	}

	.cf_project_card .cf_project_card_left {
		max-width: unset;
	}

	.cf_project_card .cf_project_card_left img {
		max-height: 382px;
	}

	.mouse-cursor {
		display: none;
	}

	.cursor-inner {
		display: none;
	}

	.cursor-inner.cursor-hover {
		display: none;
	}

	.cursor-outer {
		display: none;
	}

	.arlo_tm_preloader {
		display: none;
	}

	.arlo_tm_topbar {
		display: none;
	}

	.arlo_tm_leftpart {
		display: none;
	}

	.arlo_tm_rightpart {
		padding-left: 0px;
	}

	.arlo_tm_mobile_menu {
		display: block;
	}

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

	.arlo_tm_about .left {
		width: 100%;
		margin-bottom: 70px;
	}

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

	.arlo_tm_about .right .about_title {
		margin-bottom: 5px;
	}

	.arlo_tm_services .service_inner ul li {
		width: 50%;
	}

	.arlo_tm_contact .desc {
		max-width: 100%;
	}

	.arlo_tm_contact .contact_inner .wrapper {
		flex-direction: column;
	}

	.arlo_tm_contact .contact_inner .left {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 40px;
	}

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

	.arlo_tm_copyright .inner {
		flex-direction: column;
	}

	.arlo_tm_copyright .inner .copy {
		margin-bottom: 20px;
	}

	.cf_impressum .modal-content {
		width: 65%;
		padding: 60px;
	}
}

@media (max-width: 768px) {

	.cf_project_card .cf_project_card_left {
		padding: 15px 10px;
		min-height: unset;
	}

	.arlo_tm_hero .name_holder h3 {
		font-size: 35px;
	}

	.arlo_tm_hero .text_typing p {
		font-size: 17px;
		white-space: nowrap;
	}

	.arlo_tm_services .service_inner ul {
		margin: 0px;
	}

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

	.cf_impressum .modal-content {
		width: 90%;
	}

	.cf_datenschutz .modal-content,
	.cf_haftungsausschluss .modal-content {
		width: 90%;
		padding: 50px;
	}

	.close {
		line-height: .9;
	}
}

@media (max-width: 480px) {
	.imp-data-container {
		flex-direction: column;
		align-items: center;
	}

	.arlo_tm_copyright .imp-data-container p {
		display: none;
	}

	.arlo_tm_portfolio .cf_project_card {
		width: unset;
	}

	.cf_project_card .cf_project_card_right h2 {
		font-size: 30px;
		letter-spacing: unset;
	}

	.cf_project_card .cf_project_card_right ul {
		margin-top: 10px;
	}

	.cf_datenschutz .modal-title,
	.cf_haftungsausschluss .modal-title {
		font-size: 1.1rem;
	}

	.cf_datenschutz .modal-body h2,
	.cf_haftungsausschluss .modal-body h2 {
		font-size: 1.5em;
	}

	.cf_datenschutz .modal-body h4,
	.cf_haftungsausschluss .modal-body h4 {
		font-size: 1.4em;
	}

	.cf_datenschutz .modal-body h6,
	.cf_haftungsausschluss .modal-body h6 {
		font-weight: 300;
	}

	.cf_datenschutz .modal-body p,
	.cf_haftungsausschluss .modal-body p,
	.cf_datenschutz .modal-body a,
	.cf_datenschutz .modal-body li {
		font-size: .9em;
		font-weight: 200;
	}

	.cf_datenschutz .modal-body a {
		font-size: .7em;
	}

	.close {
		line-height: .7;
	}
}