@charset "utf-8";

/*---------------------------------------------------*/
/*	01) TRAMP BASE
/*---------------------------------------------------*/

a {
	text-decoration: none;
}

ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

ul li {
	margin: 0px;
	padding: 0px;
}

:root {
	--bff: 'Syne', sans-serif;
	--bc: #767676;
}

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}

body {
	font-family: var(--bff);
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #f9f9f9;
	color: var(--bc);
}

body::-webkit-scrollbar {
	width: 0px;
}

svg {
	fill: currentcolor;
	width: 15px;
	height: 15px;
}

img.svg {
	width: 15px;
	height: 15px;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: var(--bc);
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: var(--bc);
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: var(--bc);
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--bc);
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: var(--bc);
}

::placeholder {
	/* Most modern browsers support this now. */
	color: var(--bc);
}

.container {
	max-width: 1170px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	padding: 0px 20px;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	font-family: var(--bff);
	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;
}

a {
	text-decoration: none;
}

.tramp_tm_all_wrap {
	width: 100%;
	min-height: 100vh;
	position: relative;
}

.tramp_tm_all_wrap,
.tramp_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: #999999;
	-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%;
	}
}

.abs_image {
	position: relative;
}

.abs_image img {
	opacity: 0;
	min-width: 100%;
}

.abs_image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.line_effect {
	text-decoration: none;
	color: currentColor;
	display: inline-block;
	position: relative;
}

.line_effect:after {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: auto;
	right: 0;
	bottom: 3px;
	transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
	background: currentColor;
}

.line_effect:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.text_hover_effect {
	position: relative;
	display: inline;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px;
	transition: background-size .5s;
}

.text_hover_effect:after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
}

.text_hover_effect:hover {
	background-size: 100% 1px;
}

.tramp_tm_all_wrap .main_content {
	position: absolute;
	top: 70px;
	bottom: 70px;
	left: 70px;
	right: 70px;
	overflow: hidden;
}

.tramp_tm_all_wrap .main_content_inner {
	width: 100%;
	height: 100%;
}

.tramp_tm_section {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	overflow: hidden;
	overflow-y: scroll;
	opacity: 0;
	visibility: hidden;
	z-index: 8;
	transition: visibility 1s linear, opacity 0s linear;
	-moz-transition: visibility 1s linear, opacity 0s linear;
	-webkit-transition: visibility1s linear, opacity 0s linear;
	-o-transition: visibility 1s linear, opacity 0s linear;
}

.tramp_tm_section.animated {
	opacity: 1;
	visibility: visible;
	z-index: 9;
}

.tramp_tm_section.active {
	opacity: 1;
	visibility: visible;
	z-index: 10;
}

.tramp_tm_section.hidden {
	opacity: 0;
	visibility: hidden;
	z-index: 9;
}

.tramp_tm_section::-webkit-scrollbar {
	width: 0px;
}

.tm_text_effect span {
	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;
}

.tm_text_effect .wrapper {
	overflow: hidden;
	position: relative;
}

.tm_text_effect .after {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	transform: translateY(100%);
}

.tm_text_effect:hover .before {
	transform: translateY(-100%);
}

.tm_text_effect:hover .after {
	transform: translateY(0);
}

.tramp_tm_full_link {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.tramp_tm_button {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.tramp_tm_button:before {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: #000;
	transform: translateY(100%);
	pointer-events: none;
	transition: all .3s ease;
}

.tramp_tm_button:hover:before {
	transform: translateY(0);
}

.tramp_tm_button span {
	color: #fff;
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
}

.tramp_tm_button a {
	display: block;
	padding: 15px 35px;
	background-color: #666;
	color: white
}

.tm_borders {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 70px;
	right: 70px;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	z-index: -11;
}

.tm_borders2 {
	position: fixed;
	top: 70px;
	bottom: 70px;
	left: 0px;
	right: 0px;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	z-index: -11;
}

.tramp_tm_flexbox {
	width: 100%;
	display: flex;
}

.tramp_tm_flexbox .leftbox {
	width: 50%;
	padding-right: 50px;
}

.tramp_tm_flexbox .rightbox {
	width: 50%;
	padding-left: 50px;
}

@media(max-width:1040px) {
	.tramp_tm_flexbox {
		flex-direction: column;
	}

	.tramp_tm_flexbox .leftbox {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 100px;
	}

	.tramp_tm_flexbox .rightbox {
		width: 100%;
		padding-left: 0px;
	}
}

.tramp_tm_title {
	width: 100%;
}

.tramp_tm_title h3 {
	font-size: 17px;
	letter-spacing: 5px;
	text-transform: uppercase;
}

.tramp_tm_title span {
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 15px 50px;
}

/*---------------------------------------------------*/
/*	05) TRAMP HOME
/*---------------------------------------------------*/

#home .container {
	width: 100%;
	height: 100%;
}

.tramp_tm_home {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.tramp_tm_home .left {
	width: 50%;
	padding-right: 80px;
}

.tramp_tm_home .abs_image .main {
	border-top-left-radius: 1000px;
	border-top-right-radius: 1000px;
}

.tramp_tm_home .left.square .abs_image .main {
	border-radius: 0px;
}

.tramp_tm_home .left.square .abs_image .main:before {
	border-radius: 0px;
}

.tramp_tm_home .left.circle .abs_image .main {
	border-radius: 100%;
}

.tramp_tm_home .left.circle .abs_image .main:before {
	border-radius: 100%;
}

.tramp_tm_home .left.shape .abs_image .main {
	border-radius: 0px;
	border-top-left-radius: 100px;
	border-bottom-right-radius: 100px;
}

.tramp_tm_home .left.shape .abs_image .main:before {
	border-radius: 0px;
	border-top-left-radius: 100px;
	border-bottom-right-radius: 100px;
}

.tramp_tm_home .abs_image .main:before {
	position: absolute;
	content: "";
	top: -20px;
	bottom: -20px;
	left: -20px;
	right: -20px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-top-left-radius: 1000px;
	border-top-right-radius: 1000px;
}

.tramp_tm_home .right {
	width: 50%;
	padding-left: 50px;
}

.tramp_tm_home .name {
	margin-bottom: 13px;
}

.tramp_tm_home .name h3 {
	font-family: "Archivo Black";
	font-size: 60px;
	text-transform: uppercase;
}

.stroke_text {
	-webkit-text-stroke: 1px #000;
	color: transparent;
}

.tramp_tm_home .text {
	margin-bottom: 31px;
}

/*---------------------------------------------------*/
/*	TRAMP INTRO PAGE
/*---------------------------------------------------*/

.tramp_tm_intro {
	width: 100%;
}

.tramp_tm_intro .hero {
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 130px 20px;
}

.tramp_tm_intro .hero img {
	margin-bottom: 30px;
}

.tramp_tm_intro .hero span {
	font-size: 20px;
	display: block;
}

.tramp_tm_intro .demos {
	width: 100%;
	max-width: 1100px;
	margin: 0px auto;
	margin-bottom: 50px;
}

.tramp_tm_intro .demos ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px 0px 0px -50px;
}

.tramp_tm_intro .demos ul li {
	margin-bottom: 50px;
	padding-left: 50px;
	width: 50%;
	text-align: center;
}

.tramp_tm_intro .demos ul li .list_inner {
	width: 100%;
	position: relative;
	border: 1px solid rgba(0, 0, 0, .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;
}

.tramp_tm_intro .demos ul li .list_inner:hover {
	background-color: #f4f4f4;
}

.tramp_tm_intro .demos .image {
	padding: 20px;
}

.tramp_tm_intro .demos .details {
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, .1);
	padding: 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;
}

.tramp_tm_intro .demos .details h3 {
	font-size: 15px;
	text-transform: uppercase;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.tramp_tm_intro .demos ul li .list_inner:hover .details {
	background-color: #f8f8f8;
}

.tramp_tm_intro .demos .details h3 span {
	color: red;
	font-weight: 700;
	position: relative;
	top: -11px;
	left: 5px;
	font-size: 13px;
}

.tramp_tm_intro .features_wrapper {
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, .1);
	margin-bottom: 50px;
}

.tramp_tm_intro .features_wrapper .f_inner {
	width: 100%;
	max-width: 1100px;
	margin: 0px auto;
}

.tramp_tm_intro .main_title {
	width: 100%;
	text-align: center;
	margin: 100px 20px 50px 20px;
}

.tramp_tm_intro .main_title h3 {
	font-size: 20px;
	text-transform: uppercase;
}

.tramp_tm_intro .features_wrapper ul {
	margin: 0px 0px 0px -50px;
	display: flex;
	flex-wrap: wrap;
}

.tramp_tm_intro .features_wrapper ul li {
	width: 50%;
	padding-left: 50px;
	margin-bottom: 50px;
}

.tramp_tm_intro .features_wrapper ul li .list_inner {
	width: 100%;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, .1);
	text-align: center;
	padding: 50px;
}

.tramp_tm_intro .features_wrapper ul li h3 {
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.tramp_tm_intro .features_wrapper ul li .svg {
	width: 40px;
	height: 40px;
	margin-bottom: 25px;
}

.tramp_tm_intro .features_wrapper ul li a {
	color: #000;
}

.tramp_tm_intro .copyright {
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, .1);
	padding: 60px 20px;
	text-align: center;
}

.tramp_tm_intro .copyright a {
	color: #000;
}

/*---------------------------------------------------*/
/*	11) TRAMP MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1600px) {
	.container {
		max-width: 1070px;
	}

	.tramp_tm_all_wrap .main_content {
		top: 55px;
		bottom: 55px;
		left: 55px;
		right: 55px;
	}

	.tm_borders {
		left: 55px;
		right: 55px;
	}

	.tm_borders2 {
		top: 55px;
		bottom: 55px;
	}

	.tramp_tm_header {
		left: 55px;
		right: 55px;
		height: 55px;
	}

	.tramp_tm_footer {
		left: 55px;
		right: 55px;
		height: 55px;
	}

	.tramp_tm_header .logo img {
		max-width: 110px;
	}

	.tramp_tm_header .menu ul li {
		margin-right: 30px;
	}

	.tramp_tm_home .left {
		padding-right: 115px;
	}

	.tramp_tm_home .right {
		padding-left: 0px;
	}

	.tramp_tm_home .name h3 {
		font-size: 45px;
	}
}

@media (max-width: 1024px) {
	.container {
		max-width: 100%;
	}

	.tramp_tm_topbar {
		display: block;
	}

	.tramp_tm_header {
		display: none;
	}

	.tramp_tm_footer {
		display: none;
	}

	.mouse-cursor {
		display: none;
	}

	.tm_borders {
		display: none;
	}

	.tm_borders2 {
		display: none;
	}

	.tramp_tm_all_wrap .main_content {
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px;
	}

	.tramp_tm_home {
		flex-direction: column;
	}

	.tramp_tm_home .left {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 50px;
	}

	.tramp_tm_home .right {
		width: 100%;
		padding-left: 0px;
	}

	.tramp_tm_home .left .box {
		max-width: 300px;
		padding: 0px 20px;
	}

	.tramp_tm_home .name h3 {
		font-size: 36px;
	}

	.tramp_tm_title h3 {
		letter-spacing: 2px;
		font-size: 15px;
	}

	.tramp_tm_title span {
		padding: 12px 35px;
	}

	.portfolio_list ul li {
		width: 50%;
	}

	.tramp_tm_news .news_list .right {
		display: none;
	}

	.tramp_tm_news .news_list .left {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.tramp_tm_timeline .list_inner {
		flex-direction: column;
	}

	.tramp_tm_timeline .occ {
		width: 100%;
	}

	.tramp_tm_timeline .text {
		width: 100%;
		padding: 0px;
		margin: 25px 0px;
	}

	.tramp_tm_timeline .date {
		width: 100%;
		text-align: left;
	}

	.tramp_tm_partners ul li {
		width: 50%;
	}

	.tramp_tm_testimonials .testimonials_inner {
		padding: 30px;
	}

	.tramp_tm_about .personal_details .list span:first-child {
		min-width: auto;
	}

	.portfolio_list ul {
		margin: 0px;
	}

	.portfolio_list ul li {
		width: 100%;
		padding-left: 0px;
		margin-bottom: 20px;
	}

	.portfolio_filter ul li a {
		padding: 3px 20px;
	}

	.tramp_tm_contact .infolist ul {
		flex-direction: column;
		margin-left: 0px;
	}

	.tramp_tm_contact .infolist ul li {
		width: 100%;
		padding: 0px;
		margin-bottom: 15px;
	}

	.tramp_tm_contact .form_wrapper ul {
		flex-direction: column;
		margin-left: 0px;
	}

	.tramp_tm_contact .form_wrapper ul li {
		width: 100%;
		padding-left: 0px;
	}


	.tramp_tm_intro .demos ul {
		margin: 0px;
	}

	.tramp_tm_intro .demos ul li {
		width: 100%;
		padding-left: 0px;
	}

	.tramp_tm_intro .features_wrapper ul {
		margin: 0px;
	}

	.tramp_tm_intro .features_wrapper ul li {
		width: 100%;
		padding-left: 0px;
	}
}