@font-face{
	font-family:CF-Din-light;
	src: url('/wp-content/themes/korovesis/fonts/CF Din Light.woff');
	font-weight: 500;
}

@font-face{
	font-family:CF-Din-bold;
	src: url('/wp-content/themes/korovesis/fonts/CF Din CnBold.woff');
	font-weight: 700;
}

@font-face{
	font-family:CF-Din-reg;
	src: url('/wp-content/themes/korovesis/fonts/CF Din Black.woff');
	font-weight: regular;
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
    width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: #888888;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: #000000;
    transition: all 0.5s linear;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2B2F78;
}

/* SELECT */
::selection {
    background: #FF6600;
    color: #FFFDFA;
}


/* FONTS DECLARATION */

a, p, div, span, li {
    font-family: 'CF-Din-light', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
}
input,textarea,button{
	font-family: 'CF-Din-light', sans-serif;
}
.fw-400 {
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'CF-Din-light', sans-serif;
    color: #000;
	font-weight: 400;
}
h1, h2, .fw-900 {
    font-weight: 900;
}
h3, h4, h5, h6, strong, b, .fw-700 {
    font-weight: 700;
}



/* MAIN USED STYLES */

.rel,
.relative {
    position: relative;
}
.abs {
    position: absolute;
}
.abs-tl {
    position: absolute;
    top: 0;
    left: 0;
}
.abs-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.full-width {
    width: 100%;
}
.fill-dimentions {
    width: 100%;
    height: 100%;
}

.z-0 {z-index: 0;}
.z-1 {z-index: 1;}
.z-2 {z-index: 2;}
.z-10 {z-index: 10;}

.ta-center {
    text-align: center; 
}

.general-bg {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.bg-white {background: #FFFDFA;}
.bg-blue {background: #009BDA;}

.all-white-txt * {color: #FFFDFA;}
.color-white *{color:#FFFDFA !important;}
.color-grey {color: #666666; }
.color-orange{color:#FF6600;}

.overflow {overflow: hidden;}

.ta-right {text-align: right;}


/* Grid */

.grid {
	width: 100%;
	margin: 0 auto;
	max-width:1800px;
}
.gutter {
	margin: 0 20px;
}
.gutter-left{
	margin-left: 10px;
}

.gutter-right{
	margin-right: 10px;
}

.block-10 {
	width: 10%;
}
.block-20 {
	width: 20%;
}
.block-25 {
	width: 25%;
}
.block-30 {
	width: 30%;
}
.block-33 {
	width: 33.33333%;
}
.block-40 {
	width: 40%;
}
.block-42 {
	width: 42%;
}
.block-50 {
	width: 50%;
}
.block-60 {
	width: 60%;
}
.block-66 {
	width: 66.66667%;
}
.block-70 {
	width: 70%;
}
.block-73 {
	width: 73%;
}
.block-75 {
	width: 75%;
}
.block-80 {
	width: 80%;
}
.block-max{
    width:max-content;
}

/* General */

.vert-middle {
	top: 50%;
	-ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.abs {position: absolute;}
.abs-lt {
	position: absolute;
	left: 0;
	top: 0;
}
.abs-rt {
	position: absolute;
	right: 0;
	top: 0;
}
.abs-lb {
	position: absolute;
	left: 0;
	bottom: 0;
}
.abs-rb {
	position: absolute;
	right: 0;
	bottom: 0;
}
.abs-center {
	position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.abs-tl {
	position: absolute;
	left: 50%;
	-ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.abs-bl {
	position: absolute;
	bottom: 5%;
	left: 50%;
	-ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.abs-mr {
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.abs-ml {
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.no-scroll {
	overflow: hidden;
}
.fixed {
	position: fixed;
}
.relative {
	position: relative;
}
.go-right {
	margin-left: auto;
}
.go-center {
	margin: 0 auto;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}

.fill-dimentions {
	width: 100%;
	height: 100%;
}
.full-width {
	width: 100%;
}
.full-height {
	height: 100%;
}

.ta-center {
	text-align: center;
}
.ta-left {
	text-align: left;
}
.ta-right {
	text-align: right;
}
.ta-justify {
	text-align: justify;
	display: block;
}

.z--1 {z-index: -1;}
.z-0 {z-index: 0;}
.z-1 {z-index: 1;}
.z-2 {z-index: 2;}
.z-10 {z-index: 10;}
.z-20 {z-index: 20;}
.z-100 {z-index: 100;}
.z-200 {z-index: 200;}
.z-998 {z-index: 998;}
.z-999 {z-index: 999;}

.hidden {
	opacity: 0;
}
.display-none {
	display: none;
}
.overflow {
	overflow: hidden;
}
.display--inline {
	display: inline-block;
}
.display--inline-top {
	display: inline-block;
	vertical-align: top;
}
.display--inline-mid {
	display: inline-block;
	vertical-align: middle;
}
.display--inline-bot {
	display: inline-block;
	vertical-align: bottom;
}
.display--flex {
	display: inline-flex;
}
.display--block {
	display: block;
}
.pe-none {
	pointer-events: none;
}
.pe-all {
	pointer-events: all;
}
.general-bg {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}
.no-margin {
	margin: 0;
}


.fs-16{
    font-size:16px;
}
.fs-18{
	font-size: 18px;
}

.fs-24{
	font-size: 24px;
}

.fs-32{
	font-size: 32px;
}

.fs-40{
    font-size:40px;
}

.fs-64{
    font-size:64px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}