@import url('../../../../css2');
/* SCROLL & SELECT */

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f3f3f6;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f15a29;
  transition: all 0.5s linear;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2b2f78;
}

/* SELECT */
::selection {
  background: #efefef;
  color: #fff;
}

/* FONTS DECLARATION */

a,
p,
div,
span,
li {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #262262;
}
.fw-400 {
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: #262262;
}
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: #fff;
}
.bg-blue {
  background: #009bda;
}

.all-white-txt * {
  color: #fff;
}
.color-blue {
  color: #009bda;
}

.overflow {
  overflow: hidden;
}

.ta-right {
  text-align: right;
}

/* Grid */

.grid {
  width: 90%;
  margin: 0 auto;
}
.gutter {
  margin: 0 20px;
}
.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%;
}

/* 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;
}

/*--------------------------------------------------------------
# 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;
}

.main-navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
