
/* Start Global */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: #0083BE;
    transition: all .5s linear;
    border-radius: 25px;
    border: 1px solid black;
}

::-webkit-scrollbar-thumb:hover {
    background: #7751A1;
}

::selection {
	background: #0083BE; /* WebKit/Blink Browsers */
	color: white;
}
::-moz-selection {
	background: #0083BE; /* Gecko Browsers */
	color: white;
}

/* Fonts */

p, li, span, div, a {
    font-family: var(--main-text-fam);
    text-decoration: none;
}
p, li {margin: 0 0 15px;}
h1, .goth-bold {
    margin: 0 0 15px;
    font-weight: 700;
}
h2, h3, h4 {
    font-family: var(--main-title-fam); font-weight: 700;
    margin: 0 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

em, .regal {font-family: inherit;}

p, li, div, a {font-size: 20px;line-height: 1.5;}

.fs-12 {font-size: 12px;}
.fs-18 {font-size: 18px;}
.fs-20 {font-size: 20px;}
.fs-24 {font-size: 24px;}
.fs-32 {font-size: 32px;}
.fs-48, h2 {font-size: 48px;}
.fs-64, .big-title {font-size: 64px;}
.fs-200 {font-size: 200px;}
h1, .big-title {font-size: 92px;font-weight: 400;}
h1 em {font-size: 100px;}
.xbig-title {font-size: 200px;font-weight: 700;}

.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-700 {font-weight: 700;}

.lh-1 {line-height: 1;}
.lh-12 {line-height: 1.2;}

.indent {
    padding-left: 150px;
    text-indent:-150px;
}
.indent-big {
    padding-left: 40%;
    text-indent: -60%;
}
.ta-left {text-align: left;}
.ta-center {text-align: center;}
.ta-right {text-align: right;}

.italic {font-style: italic;}

/* Colors */

.color-white,
.color-white-all * {
    color: var(--main-white);
}
.main-color, p, li, div, a, button {
    color: var(--main-white);
}
.black-bg {
    background: var(--wp--preset--color--theme-black);
}
.white-bg {
    background: var(--wp--preset--color--theme-white);
}

/* Grid */

.grid {
    max-width: 1740px;
    display: block;
    margin: 0 auto;
}
.sm-grid {
    max-width: 1420px;
    display: block;
    margin: 0 auto;
}
.xsm-grid {
    max-width: 860px;
    display: block;
    margin: 0 auto;
}
.gutter {
    margin: 0 20px;
}


/* Positioning */

.rel {position: relative;}
.abs {position: absolute;}
.fixed {position: fixed;}

.abs-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.go-right {margin-left: auto;}
.go-center {margin: 0 auto;}

.z-1 {z-index: 1;}
.z-2 {z-index: 2;}
.z-5 {z-index: 5;}
.z-10 {z-index: 10;}
.z-999 {z-index: 999;}
.z-1000 {z-index: 1000;}

.display-none {display: none;}
.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-block {display: block;}
.display--grid {display: grid;}
.display--flex {display: flex;}

.top-left {top: 0; left: 0}
.top-right {top: 0; right: 0}

/* Sizing */

.full-width {width: 100%;}
.full-height {height: 100%;}
.max-content {width: max-content;}
.fill-dimentions {width: 100%; height: 100%;}

.va-mid {vertical-align: middle;}
.align-center {align-items: center;}

.block-20 {width: 20%;}
.block-25 {width: 25%;}
.block-30 {width: 30%;}
.block-33 {width: 33.3333%;}
.block-40 {width: 40%;}
.block-50 {width: 50%;}
.block-60 {width: 60%;}
.block-70 {width: 70%;}
.block-80 {width: 80%;}

.pad-top-150 {padding-top: 150px;}
.marg-bot-100 {padding-top: 150px;}
.pad-sides-20 {padding: 0 20px !important;}

/* Style Classes */

.overflow {overflow: hidden;}
.pe-none {pointer-events: none;}
.main-trans {transition: var(--main-ease);}
.mh-screen {min-height: 100vh;}
.no-margin {margin: 0;}

/* Theme Basic Declarations */

.top-pad {padding-top: var(--top-pad);}