﻿/*
	Template Name 		: Adzilen - Creative Portfolio Template
	Author who Updates	: Serhat Çağrı Görgülü
	Author Url 			: https://griguvercin.com.tr
*/



body {
	font-size: 16px;
	/*font-family: 'Roboto', sans-serif;*/
	background: #111;
	color: #707070;
	
}

h1,
h2,
h3,
h4,
h5,
h6 {
	
	color: #fff;
}

img {
	max-width: 100%;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

::-moz-selection {
	background: #ff9f9b;
	color: #fff;
}

::selection {
	background: #ff9f9b;
	color: #fff;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #111;
	z-index: 9999;
	text-align: center;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 120px;
	display: flex;
	flex-flow: column nowrap;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .diamond {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	background: #ff5d56;
	-webkit-transform: translateY(0) rotate(45deg) scale(0);
	transform: translateY(0) rotate(45deg) scale(0);
	-webkit-animation: diamonds 1500ms linear infinite;
	animation: diamonds 1500ms linear infinite;
}

	.preloader .diamond:nth-child(1) {
		-webkit-animation-delay: -1000ms;
		animation-delay: -1000ms;
	}

	.preloader .diamond:nth-child(2) {
		-webkit-animation-delay: -2000ms;
		animation-delay: -2000ms;
	}

	.preloader .diamond:nth-child(3) {
		-webkit-animation-delay: -3000ms;
		animation-delay: -3000ms;
	}

	.preloader .diamond:nth-child(4) {
		-webkit-animation-delay: -4000ms;
		animation-delay: -4000ms;
	}

@-webkit-keyframes diamonds {
	50% {
		-webkit-transform: translateY(-50px) rotate(45deg) scale(1);
		transform: translateY(-50px) rotate(45deg) scale(1);
	}

	100% {
		-webkit-transform: translateY(-100px) rotate(45deg) scale(0);
		transform: translateY(-100px) rotate(45deg) scale(0);
	}
}

@keyframes diamonds {
	50% {
		-webkit-transform: translateY(-50px) rotate(45deg) scale(1);
		transform: translateY(-50px) rotate(45deg) scale(1);
	}

	100% {
		-webkit-transform: translateY(-100px) rotate(45deg) scale(0);
		transform: translateY(-100px) rotate(45deg) scale(0);
	}
}

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

	.row.no-gutters > [class^="col-"],
	.row.no-gutters > [class*=" col-"] {
		padding-right: 0;
		padding-left: 0;
	}

.btn-custom {
	display: inline-block;
	background: #26bdef;
	border: 2px solid #26bdef;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 12px 30px 10px;
	transition: all 0.3s;
}

	.btn-custom:hover {
		color: #26bdef;
		background: none;
	}