@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
06) ARLO PROFILE
07) ARLO PORTFOLIO
08) ARLO COUNTER
09) ARLO NEWS
10) ARLO CONTACT
11) ARLO COPYRIGHT
12) ARLO CURSOR
13) ARLO RIPPLE EFFECT
14) ARLO GLITCH EFFECT
15) ARLO PARTICLE EFFECT
16) ARLO MEDIA QUERIES (FOR SMALL DEVICES)


/*---------------------------------------------------*/
/*	01) ARLO BASE
/*---------------------------------------------------*/

li {
	list-style: none;
}

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: rgb(34, 207, 126);}
.arlo_tm_topbar .menu ul li a:hover{color: rgb(34, 207, 126);}

/*---------------------------------------------------*/
/*	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: rgb(0, 0, 0);
	padding: 10px 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 .name-mobile a{
	text-decoration: none;
	color: #c8c6c6;
}


.arlo_tm_mobile_menu .mobile_in .hp-mobile a{
	text-decoration: none;
	color: #c8c6c6;
}




.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: #fff;
	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: rgb(0, 0, 0);
	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: #c8c6c6;
	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,.6);
	z-index: 1;
}
.arlo_tm_hero .content{
	width: 800px;
	position: absolute;
	top: 75%;
	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: #7e0a0a;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 800;
	font-family: "Montserrat";
	line-height: 40px;
	text-shadow: 1px 2px 3px #6b6b6b;
}
.arlo_tm_hero .name_holder h3 span {
	text-transform: none;
	color: #c8c6c6;
	font-weight: 600;
	font-size: 38px;
	text-shadow: 1px 2px 3px #6b6b6b;
}
.arlo_tm_hero .text_typing p{
	color: #c8c6c6;
    font-size: 22px;
	font-weight: 500;
    font-family: "Poppins";
}
.arlo_tm_arrow_wrap{
	position: absolute;
	left: 50%;
	bottom: 3px;
	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: #c8c6c6;
	font-size: 30px;
}

/*---------------------------------------------------*/
/*	05) ARLO ABOUT
/*---------------------------------------------------*/

.arlo_tm_about{
	background-color: rgb(51, 50, 50);
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-bottom: 100px;
	padding-top: 50px;
}

.about-container a {
	text-decoration: none;
	color: #7e0a0a;
}

.about-box {
	width: 90%;
	margin: auto;
}

.section-title{
	font-weight: bold;
	font-size: 24px;
	background-color: rgb(0, 0, 0);
	color: #c8c6c6;
	text-align: center;
	margin: auto;
	margin-bottom: 40px;
	width: 45%;
	transform: skew(-15deg);
}

.title-item{
	transform: skew(15deg);
}

.about-left{
	margin-bottom: 25px;
}

.about-container{
	width: 95%;
	margin: auto;
	margin-top: -20px;
}


.about-news {
	width: 95%;
	height: 200px;
	margin: auto;
	background-color: #c8c6c6;
	margin-bottom: 25px;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
}

.about-flyer {
	width: 95%;
	height: auto;
	margin: auto;
	background-color: #c8c6c6;
	padding-bottom: 40px;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
}

.about-flyer img {
	margin: auto;
	padding-top: 10px;
}

.about-create{
	width: 95%;
	margin: auto;
	background-color: #c8c6c6;
	height: auto;
	padding-bottom: 36px;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
}

/*---------------------------------------------------*/
/*	06) ARLO PROFILE
/*---------------------------------------------------*/
.profile {
	width: 90%;
	margin: auto;
}

.profile h4{
	text-align: center;
}

.profile h2{
	text-align: center;
	font-size: 48px;
	font-weight: bold;
	color: #c8c6c6;
}

.profile h3{
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	color: #c8c6c6;
}

.profile img{
	margin-top: 40px;
	margin-bottom: 20px;
}

.profile p {
	color: #c8c6c6;
}

.profile li{
	font-size: 14px;
}


.title-item-profile {
	margin-top: 40px;
}

.profile-item {
	width: 95%;
	background-color: #c8c6c6;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
}

.profile-sentence p{
	margin-bottom: 20px;
	font-size: 16px;
}

.profile-item li {
	line-height: 20px;
}

.profile-sentence img {
	width: 100px;
	margin: 0;
	margin-bottom: 30px;
}

.opera-title {
	margin-top: 5px!important;
}

.profile-bottom {
	margin-top: 20px;
}

/*---------------------------------------------------*/
/*	07) ARLO STAGE
/*---------------------------------------------------*/
.stage {
	background-color: #333;
	height: 100%;
	padding: 90px;
}

.stage-box {
	width: 90%;
	margin: auto;
}

.flyer-wrap{
	background-color: #c8c6c6;
	margin-bottom: 40px;
	padding: 20px;
	text-align: center;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
}

.flyer-wrap img{
	margin: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	max-height: 260px;
}

.flyer-sentence {
	padding-top: 20px;
	padding-left: 40px;
}

.flyer-sentence p{
	color: #c8c6c6;
}

.flyer-title{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.flyer-sentence {
	margin-bottom: 80px;
}

.flyer-item img:hover{
	opacity: 0.7;
}

/*---------------------------------------------------*/
/*	08) LESSON
/*---------------------------------------------------*/
.lesson {
	background-color: #333;
	height: 100%;
	padding-top: 90px;
	padding-bottom: 90px;
}

.lesson-wrap {
	color: #333;
	padding: 0 20px;
}

.lesson-wrap h4 {
	text-align: center;
	padding: 10px;
}

.lesson h3 {
	font-weight: bold;
	padding: 1rem 2rem;
	border-left: 5px solid #7e0a0a;
	background: #f4f4f4;
	margin-bottom: 20px;
}



.lesson-left {
	background-color: #c8c6c6;
	height: auto;
	margin: 10px;
	padding: 20px;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
	line-height: 24px;
}


.lesson-right {
	background-color: #c8c6c6;
	margin: 10px;
	padding: 20px;
	box-shadow:inset 0 0 10px 3px rgba(51, 51, 51, 0.5);
	line-height: 24px;
}

.lesson-right h4 {
	margin-top: 12px;
	line-height: 15px;
}

.attention p {
	margin-top: 10px;
	color: #c8c6c6;
	font-size: 12px;
	text-align: center;
}


/*---------------------------------------------------*/
/*	09) GALLERY
/*---------------------------------------------------*/
.gallery {
	background-color: #333;
	height: 100vh;
	height: 100%;
	padding-top: 90px;
	padding-bottom: 50px;
}


.youtube {
	margin-bottom: 40px;
	padding: 0 20px;
}

.youtube p {
	color: #c8c6c6;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}

.youtube-item {
	margin-bottom: 20px;
}

.picture {
	margin-bottom: 40px;
	padding: 0 20px;
}

.picture-item {
	margin-bottom: 20px;
}



.picture-item p {
	color: #c8c6c6;
}

/*---------------------------------------------------*/
/*	10) CONTACT
/*---------------------------------------------------*/

.formWrap {
	background-color: #333;
	height: 100%;
	color: #c8c6c6;
	padding-top: 90px;
	padding-bottom: 90px;
}

.form-container {
	height: 100vh;
}

.formTable {
	color: #c8c6c6;
	padding: 0 40px;
}

.formTable input {
	margin-bottom: 20px;
}

.formbtn {
	margin-top: 20px;
	margin-bottom: 50px;
}

.formbtn input{
	background-color: #7e0a0a;
}

.from-item {
	width: 100%;
	margin: auto;
}

.form-item-1 {
	width: 95%;
}

.attention {
	font-size: 10px;
}
/*---------------------------------------------------*/
/*	09) ARLO NEWS
/*---------------------------------------------------*/

.arlo_tm_news{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #f9f9f9;
	padding: 140px 0px 90px 0px;
}
.arlo_tm_news .news_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 87px;
}
.arlo_tm_news .news_list ul{
	margin: 0px 0px 0px -50px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.arlo_tm_news .news_list ul li{
	margin: 0px 0px 50px 0px;
	float: left;
	width: 33.3333%;
	padding-left: 50px;
}
.arlo_tm_news .news_list ul li .list_inner{
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
}
.arlo_tm_news .news_list ul li .image{
	position: relative;
	overflow: hidden;
}
.arlo_tm_news .news_list ul li .image img{
	min-width: 100%;
	opacity: 0;
}
.arlo_tm_news .news_list ul li .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center; 
	transform: scale(1) translateZ(0);
	
	-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_news .news_list ul li .list_inner .image:hover .main{transform: scale(1.1) rotate(3deg);}
.arlo_tm_news .news_list ul li .details{
	width: 100%;
	float: left;
	padding-right: 15px;
	padding-top: 32px;
}
.arlo_tm_news .news_list ul li .details .title{margin-bottom: 10px;}
.arlo_tm_news .news_list ul li .details .title a{
	text-decoration: none;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	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_news .news_list ul li .details .title a:hover{color: #e65f78;}
.arlo_tm_news .news_list ul li .details .date{
	text-transform: uppercase;
	font-family: "Poppins";
	font-size: 12px;
	color: #767676;
	font-style: italic;
}
.arlo_tm_news .news_list ul li .details .date 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;
}
.arlo_tm_news .news_list ul li .details .date a:hover{color: #e65f78;}
.arlo_tm_news .news_list ul li .details .date span{
	position: relative;
	margin-left: 11px;
}
.arlo_tm_news .news_list ul li .details .date span:before{
	position: absolute;
	content: "";
	margin-top: 1px;
	top: 50%;
	transform: translateY(-50%) rotate(15deg);
	right: 100%;
	background-color: #939393;
	width: 1px;
	height: 9px;
	margin-right: 7px;
}
.arlo_tm_news .description{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
	display: none;
}
body.modal{
	overflow-y: hidden;
}
.arlo_tm_modalbox_news{
	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;
}
.arlo_tm_modalbox_news.opened{
	opacity: 1;
	visibility: visible;
}
.arlo_tm_modalbox_news .container{
	height: 100vh;
}
.arlo_tm_modalbox_news .box_inner:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 50px;
	background-color: #fff;
	top: 0px;
	left: 0px;
}
.arlo_tm_modalbox_news .box_inner:after{
	position: absolute;
	content: "";
	width: 100%;
	height: 50px;
	background-color: #fff;
	bottom: 0px;
	left: 0px;
}
.arlo_tm_modalbox_news .box_inner{
	position: absolute;
	top: 70px;
	bottom: 70px;
	width: 1200px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	margin-top: -20px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
	
	transition-delay: .3s;
}
.arlo_tm_modalbox_news.opened .box_inner{
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}
.arlo_tm_modalbox_news .close{
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 40px;
	z-index: 111111;
}
.arlo_tm_modalbox_news .close a{
	text-decoration: none;
	color: #fff;
}
.arlo_tm_modalbox_news .close .svg{
	width: 50px;
	height: 50px;
}
.arlo_tm_modalbox_news .description_wrap{
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 50px;
}
.arlo_tm_modalbox_news .details{
	width: 100%;
	float: left;
	margin-bottom: 30px;
}
.arlo_tm_modalbox_news .description{
	width: 100%;
	float: left;
}
.arlo_tm_modalbox_news .description p{
	margin-bottom: 15px;
}
.arlo_tm_modalbox_news .description blockquote{
	font-style: italic;
	color: #000;
	border-left: 2px solid #e65f78;
	padding-left: 20px;
	margin-bottom: 15px;
}
.arlo_tm_modalbox_news .description_wrap .image{
	position: relative;
	max-height: 450px;
	z-index: -1;
	margin-bottom: 40px;
}
.arlo_tm_modalbox_news .description_wrap .image img{
	min-width: 100%;
}
.arlo_tm_modalbox_news .description_wrap .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.arlo_tm_modalbox_news .details .title{
	font-weight: 600;
	margin-bottom: 5px;
}
.arlo_tm_modalbox_news .date{
	text-transform: uppercase;
    font-family: "Poppins";
    font-size: 12px;
    color: #767676;
    font-style: italic;
}
.arlo_tm_modalbox_news .date 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;
}
.arlo_tm_modalbox_news .date a:hover{color: #e65f78;}
.arlo_tm_modalbox_news .date span{
	position: relative;
    margin-left: 11px;
}
.arlo_tm_modalbox_news .date span:before{
	position: absolute;
    content: "";
    margin-top: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    right: 100%;
    background-color: #939393;
    width: 1px;
    height: 9px;
    margin-right: 7px;
}
.arlo_tm_modalbox_news .share{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
}
.arlo_tm_modalbox_news .share span{
	font-family: "Poppins";
	color: #000;
	font-weight: 600;
	display: inline-block;
	padding-right: 20px;
}
.arlo_tm_modalbox_news .share ul{
	margin: 0px;
	list-style-type: none;
}
.arlo_tm_modalbox_news .share ul li{
	margin: 0px 10px 0px 0px;
	display: inline-block;
}
.arlo_tm_modalbox_news .share ul li a{
	text-decoration: none;
	color: #000;
}
.arlo_tm_full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 4;
}

/*---------------------------------------------------*/
/*	10) ARLO CONTACT
/*---------------------------------------------------*/

/*---------------------------------------------------*/
/*	11) ARLO COPYRIGHT
/*---------------------------------------------------*/

.arlo_tm_copyright{
	width: 100%;
	height: auto;
	clear: both;
	background-color: #000;
	padding: 40px 0px;
}

.arlo_tm_copyright p{
	text-align: center;
	color: #c8c6c6;
}


/*---------------------------------------------------*/
/*	12) ARLO CURSOR
/*---------------------------------------------------*/



/*---------------------------------------------------*/
/*	13) ARLO RIPPLE EFFECT
/*---------------------------------------------------*/

.arlo_tm_hero .ripple{
	width: 100%;
	height: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url("..//img/slider/1.jpg");
}
.arlo_tm_hero .ripple:before{
	position: absolute;
	content: "";
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,.6);
	z-index: 1;
}

/*---------------------------------------------------*/
/*	14) ARLO GLITCH EFFECT
/*---------------------------------------------------*/

.arlo_tm_hero .glitch_wrap{
	position: relative;
	width: 100%;
	height:100%;
	float: left;
	overflow: hidden;
}
.glitch{
	position: absolute;
 	width: 100%;
 	height: 100%;
	top: 0;
 	left: 0;
	background-image: url("..//img/slider/1.jpg");
	background-size: cover;
	-webkit-background-size: cover;
	background-position: center;
	z-index: -1 !important;
	opacity: 1;
	transform: scale(1);
}
.glitch:before{
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,.6);
}

/*---------------------------------------------------*/
/*	15) ARLO PARTICLE EFFECT
/*---------------------------------------------------*/

.arlo_tm_hero .particle_wrapper{
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
}
#particles-js {
	width: 100%;
	height: 100%;
  	position: relative;
  	z-index: 2;
}

.my_shape{
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -11px;
	z-index: 5;
}
.my_shape .svg{
	width: 100%;
	height: 100%;
}
.arlo_tm_down.shape{
	bottom: 20%;
}
.my_shape svg{
	width: 100%;
	height: 100%;
	color: #fff;
}
.arlo_tm_hero.polygon{clip-path:polygon(0 0, 100% 0, 100% 83%, 50% 100%, 0 83%);}

/*---------------------------------------------------*/
/*	ARLO SIDEBAR DEMO
/*---------------------------------------------------*/

.arlo_tm_leftpart{
	width: 400px;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	background-color: #000000;
	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 .name a{
	text-decoration: none;
	font-size: 48px;
	color: #c8c6c6;
	line-height: 40px;
}
.arlo_tm_leftpart .inner .logo .hp a{
	text-decoration: none;
	font-size: 24px;
	color: #c8c6c6;
}

.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: #c8c6c6;
	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: rgb(34, 207, 126);}
.arlo_tm_leftpart .inner .menu ul li.current a:after{width: 100%;}

.arlo_tm_leftpart .inner .menu ul li a:hover{color: rgb(34, 207, 126);}
.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: #c8c6c6;
	
	-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: #752626;}

.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;
}

/*---------------------------------------------------*/
/*	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_modalbox_news .box_inner{width: 900px;}
	.lesson-wrap p {
		font-size: 14px;
	}
}
@media (max-width: 1200px) {
	.arlo_tm_modalbox_news .box_inner{width: 100%;top: 0px;bottom: 0px;}
	.arlo_tm_modalbox_news .box_inner:before{display: none;}
	.arlo_tm_modalbox_news .box_inner:after{display: none;}
	.arlo_tm_modalbox_news .close{position: absolute;top: 20px;left: auto;right: 20px;margin-left: 0px;}
	.arlo_tm_modalbox_news .close .svg{color: #777;width: 25px;height: 25px;}
	.lesson-wrap h3 {
		font-size: 28px;
	}
	.lesson-wrap p {
		font-size: 12px;
	}
}
@media (max-width: 1040px) {
	.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_services .service_inner ul li{width: 50%;}
	.arlo_tm_portfolio .portfolio_list ul li{width: 50%;}
	.arlo_tm_news .news_list 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;}
	.arlo_tm_modalbox_news .description_wrap{padding: 20px;}
	.arlo_tm_modalbox_news .details .title{font-size: 20px;}
	.lesson-wrap p {
		font-size: 13px;
	}

	
}
@media (max-width: 768px) {

	.arlo_tm_hero .name_holder h3{font-size: 42px;}
	.arlo_tm_hero .text_typing p{font-size: 17px;}
	.arlo_tm_about .about_short_contact_wrap ul li{width: 100%;}
	.arlo_tm_services .service_inner ul{margin: 0px;}
	.arlo_tm_services .service_inner ul li{width: 100%;padding-left: 0px;}
	.arlo_tm_portfolio .portfolio_list ul{margin: 0px;}
	.arlo_tm_portfolio .portfolio_list ul li{width: 100%;padding-left: 0px;}
	.arlo_tm_news .news_list ul{margin: 0px;}
	.arlo_tm_news .news_list ul li{width: 100%;padding-left: 0px;}
	.arlo_tm_counter_section ul li{width: 50%;}
	.flyer-sentence{
		text-align: center;
	}
	.flyer-wrap{
		margin-bottom: 10px;
	}

	.lesson-item-left {
		margin-bottom: 20px;
	}
	
}	

@media (max-width: 480px) {
	.arlo_tm_hero .content{
		top: 60%;
	}
	.arlo_tm_hero .name_holder h3{
		font-size: 30px;
		line-height: 24px;
	}
	.arlo_tm_hero .name_holder h3 span{
		font-size: 22px;
	}
	.arlo_tm_counter_section ul{margin: 0px;}
	.arlo_tm_counter_section ul li{width: 100%;padding-left: 0px;}

	.arlo_tm_copyright p {
		font-size: 8px;
	}
	
	.section-title-profile {
		font-size: 20px;
		margin-bottom: -20px;
	}


	.arlo_tm_hero .text_typing p{
		font-size: 12px;
	}

	.flyer-sentence p{
		font-size: 14px;
	}

	.lesson h3 {
		font-size: 22px;
	}
}	
