:root{
	--black : #000000;
	--primary : #181818;
	--accent : #181818;
	--light	:	#d0d4d8;
	--light-grey : #e5e8f0;
	--white : #ffffff;
	--grey : #d0d4d8;
	--from-top: 148px;
	--left : calc(67% - 1em);
	--right : calc(33% - 1em);
	--grd : linear-gradient( 120deg,var(--primary) 40%,var(--white) 40.1%);
	--font : "Geologica", 'sans-serif';
	--title-font :  'Geologica', 'sans-serif';
	--agrd : linear-gradient( 135deg, var(--primary) 50%, #0000 50%);
	--from-top: 106px;
}

body{
	font-family: var(--font);
	margin: 0;
	font-weight: 300;	
	color: var(--black);
	line-height: 1.5em;
	font-size: 18px;
	background: var(--white);
	text-rendering: geometricPrecision;
}

::selection{
	background: var(--primary)!important;
	color: var(--white);
}
img::selection{
	background: transparent!important;
}
*:focus {
    outline: none!important;
}


* {
  box-sizing: border-box;
  max-width:100%;
  -webkit-tap-highlight-color: transparent;
}

body *{
	position: relative;
}

img{
	max-width:100%;
	height: auto;
	pointer-events: none;
}
figure{
	margin: 0;
}
main{
	min-height: 90vh;
	padding-bottom: 6em;
	margin: 0 auto;
	z-index:2;
	background: var(--white);
}
a{
	color: var(--accent);
	font-weight: 700;
    text-decoration-color: var(--primary);
}


blockquote p {
    margin: 0;
}

blockquote {
    margin: 0;
    font-size: 1.6em;
    font-style: italic;
    font-weight: 300;
    padding: 0;
    line-height: 1.25em;
    text-align: center;
	color: var(--primary);
}

blockquote:before, blockquote:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin: 1em auto;
}
blockquote:before{
	background: linear-gradient(90deg,	var(--accent) 0%, #fff0 90%);
}

blockquote:after{
	background:  linear-gradient(270deg,	var(--accent) 10%,  #fff0 90%);
}

h1,h2,h3,h4,h5,h6{
	font-family: var(--title-font);
	font-weight:700;
	width: 100%;
	line-height: 1.3em;
}

h1{
	font-weight: 900;
	font-size:2em;
	margin: 0 auto;
}

h2 {
    font-weight: 800;
    font-size: 1.5em;
    margin: 2em auto 0.5em;
}
h3 {
    font-weight: 700;
    font-size: 1.3em;
    margin: 2em auto 0.5em;
}

h4 {
    font-weight: 700;
    font-size: 1.1em;
    margin: 2em auto 1em;
}

h5 {
    font-weight: 700;
    font-size: 1em;
    margin: 2em auto 1em;
}
h6 {
    font-weight: 700;
    font-size: 1em;
    margin: 2em auto 1em;
}
.justify_between {
    align-items: center;
    justify-content: space-between;
}


.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1em;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  a.skin-side.left {
    width: calc((100% - 1160px)/2);
    right: calc(50% + 580px);
	}
a.skin-side.right {
    width: calc((100% - 1160px)/2);
    left: calc(50% + 580px);
}
}
@media (min-width: 1440px) {
  .container{
    max-width: 1140px;
  }
}

@media (min-width: 1600px) {
  .container{
    max-width: 1240px;
  }
  a.skin-side.left {
    width: calc((100% - 1260px)/2);
    right: calc(50% + 630px);
}
a.skin-side.right {
    width: calc((100% - 1260px)/2);
    left: calc(50% + 630px);
}
}

.row {
  display: flex;
  flex-wrap: wrap;
  width:100%;
}
* {
  box-sizing: border-box;
}

