/**
Theme Name: Prime Consulting
Theme URI: https://sorvus.com/
Author: Sorvus Media
Version: 1.0.1
**/
/* geologica-200 - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 200;
  src: url('fonts/geologica-v1-greek_latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* geologica-300 - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/geologica-v1-greek_latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* geologica-regular - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/geologica-v1-greek_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* geologica-700 - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/geologica-v1-greek_latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ancizar-serif-300italic - greek_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ancizar Serif';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/ancizar-serif-v5-greek_latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
Css Reset
**/
a, a:after, a:before{
	text-decoration:none;
	color:inherit;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
table {border-collapse: collapse;border-spacing: 0;}
* { box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
a {outline : none; color:inherit; text-decoration:none;}
a img {outline : none;}
img {border : 0; display:block;}
strong, b{	font-weight:600;}
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  font-family: 'Geologica';
}
button {
  cursor: pointer;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
textarea {
  font-family: 'Geologica';
}
section,
div{
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
}

:root{
	--clr_blue:#02106F;
	--clr_light:#EBECF9;
	--clr_yellow:#FFF0B1;
}

/**
Floats & Aligns
**/
.txt-center{
	text-align:center;
}

.txt-left{
	text-align:left;
}

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

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.empty{
    min-height: 1px;
}

.section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

/**
Columns
**/
[class*="col-"] {
	float:left;
}

.col-D {width:3.5%;height:10px;}
.col-0 {width:31%;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-20 {width:20%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/**
Grid
**/
[class*="grid-"] {
	display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}	

.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.grid-3{
    grid-template-columns: repeat(3, 3fr);
}
.grid-4{
    grid-template-columns: repeat(4, 1fr);
}
.grid-5{
    grid-template-columns: repeat(5, 1fr);
}

/**
Body
**/
body, html{
	font-family: 'Geologica';	
	background:var(--clr_light);
	color:var(--clr_blue);
	font-size:18px;
	overflow-x:hidden;
}

.wrapper{
    display: block;
    width:90%;
    margin:0 auto;
    position: relative;
}

/**
Header
**/
header{
    position: relative;
    width:100%;
    padding:100px 0px;
}

.logo{
    display: inline-block;   
}

.logo svg{
    height:80px;
    width:auto;
    fill:var(--clr_blue);
}


.header_nav{
    display: inline-block;
    float:right;
}

.header_nav a{
    display: inline-block;
    line-height: 80px;
    margin-left: 30px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 0.9em;
}

.header_nav a:first-child{
    font-weight: 700;
    margin-right: 30px;
}

.header_nav_btn{
    float:right;
    height:80px;
    width:80px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	align-content: stretch;
    cursor: pointer;
}

/**
Full Nav
**/
.fullNav{
    position: fixed;
    right:-5%;
    top:0;
    bottom:0;
    z-index: 1000;
    background:#fff;
    padding:100px 300px 100px 100px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.fullNav.active{
    right:0;
    visibility: visible;
    opacity: 1;
}

.fullNav ul{
    list-style: none;
}

.fullNav ul li a{
    font-size: 1.2em;
    line-height: 1.7em;
    text-transform: uppercase;
    font-weight: 700;
}

.fullNav ul li ul{
    padding:20px;
}

.fullNav ul li ul li a{
    font-weight: 300;
    font-size: 1em;
    text-transform: none;
}

.fullNav ul li{
    margin-bottom: 5px;
}

.fullNav ul li ul li{
    margin-bottom: 0px;
}

.fullNav_header{
    height:80px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    cursor: pointer;
}

/**
Footer
**/
.prefooter{
    overflow: hidden;
}

.prefooter svg{
    width:100%;
    height:auto;
    margin-bottom: -20px;
    position: relative;
    display: inline-block;
    fill:var(--clr_blue);
}

footer{
    padding:100px 0px;
    background:var(--clr_blue);
    color:var(--clr_light);
    float: left;
    width:100%;
}

.social_footer{
    margin-top: 100px;
}

/**
PrimeTitle-01
**/
.primetitle01_BIG{
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 8vw;
    white-space: nowrap;
	background: #EBECF9;
	background: linear-gradient(0deg, rgba(235, 236, 249, 1) 0%, rgba(235, 236, 249, 0) 100%);
}

.primetitle01_SMALL{
    text-align: center;
    color:var(--clr_light);
    font-size: 3em;
    background:var(--clr_blue);
    padding:10px 0px 20vh;
    box-shadow: 0px -20px 50px 0px rgba(2,16,111,0.2);
    -webkit-box-shadow: 0px -20px 50px 0px rgba(2,16,111,0.2);
    -moz-box-shadow: 0px -20px 50px 0px rgba(2,16,111,0.2);
	font-family: 'Ancizar Serif';
  font-style: italic;
  font-weight: 300;
}

/**
PrimeText01
**/
.PrimeText01{
    background:var(--clr_blue);
    color:var(--clr_light);
    display: inline-block;
    
}

.PrimeText01Header{
    border-bottom: 2px solid var(--clr_light);
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.PrimeText01Header div{
    display: inline-block;
}

.PrimeText01Header a:hover{
    color:var(--clr_yellow);
}

.MainLink{
    float:left;
}

.MainLink a{
    font-weight: 700;
}

.alt_links{
    float:right;
    text-align: right;
}

.PrimeText01Body{
    padding:40px 0 20vh;
}
.alt_links a{
    margin-left:20px;
    font-weight: 200;
}

/**
People
**/
.people{
    background:var(--clr_yellow);
    color:var(--clr_blue);
    display: inline-block;
    float:left;
    margin-top:-10px;
    padding:40px 0px;
}

.person img{
    width:100%;
    height:auto;
}

.personName{
    padding: 10px 0px 0px 10px;
    font-weight: 600;
}

.personTitle{
    padding: 0px 0px 20px 10px;
    font-weight: 300;
    font-size: 0.8em;
}

.personEmail{
    padding: 0px 0px 0px 10px;
}

.personEmail svg {
}

/**
Content
**/
.content{
    font-size: 1.4em;
    font-weight: 200;
    line-height: 1.6em;
}

.float-right{
    float:right;
}

.txt-justify{
    text-align: justify;
}
/**
Services Grid
**/
.servicesGrid{
    position: relative;
    display: inline-block;
    background:var(--clr_yellow);
    padding:15vh 0;
    box-shadow: 0px -20px 50px 0px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0px -20px 50px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px -20px 50px 0px rgba(0,0,0,0.4);
	color:var(--clr_blue);
}

.servicesGrid_Header h2{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3em;
    line-height: 1em;
}

.servicesGrid_Holder{
    padding:10vh 0;
}

.servicesGrid_Holder a{
    height: 30vh;
    border:1px solid #fff;
    padding:40px;
    background:#FFF4C5;
    position: relative;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}

.servicesGrid_Holder a:hover{
    background:var(--clr_blue);
    color:var(--clr_yellow);
}

.servicesGrid_Title{
    text-transform: uppercase;
    font-size: 1.4em;
}

.servicesGrid_footer svg{
    fill:var(--clr_blue);
    height: 50px;
    width:auto;
}

.servicesGrid_footer div:last-child{
    text-align: right;
}

.servicesGrid_footer div:last-child svg{
    height:30px;
    margin-top:10px;
}

.servicesGrid_Holder a:hover svg{
    fill:var(--clr_yellow);
}

.servicesALT{
    position: relative;
    display: inline-block;
    background:var(--clr_blue);
    color:var(--clr_yellow);
    padding:15vh 0;
    box-shadow: 0px -20px 50px 0px rgba(0,0,0,0);
-webkit-box-shadow: 0px -20px 50px 0px rgba(0,0,0,0);
-moz-box-shadow: 0px -20px 50px 0px rgba(0,0,0,0);
}

.servicesALT .servicesGrid_Holder a{
    background:rgba(0,0,0,0.1);
	color:var(--clr_yellow);
}

.servicesALT .servicesGrid_Holder a svg{
	fill:var(--clr_yellow);
}

.servicesALT .servicesGrid_Holder a:hover svg{
	fill:var(--clr_blue);
}

.servicesMain{
    position: relative;
    display: inline-block;
    background:var(--clr_yellow);
    color:var(--clr_blue);
    padding:15vh 0;
    box-shadow: 0px -20px 50px 0px rgba(0,0,0,0);
-webkit-box-shadow: 0px -20px 50px 0px rgba(0,0,0,0);
-moz-box-shadow: 0px -20px 50px 0px rgba(0,0,0,0);
}

.servicesMain .servicesGrid_Holder a{
    background:var(--clr_yellow);
	color:var(--clr_blue);
}

.servicesALT .servicesGrid_Holder a:hover{
    background:var(--clr_yellow);
    color:var(--clr_blue);
}

.servicesMain .servicesGrid_Holder a:hover{
    background:var(--clr_blue);
    color:var(--clr_yellow);
}


/**
Full Photo Parallax
**/
.photoFull{
    background:var(--clr_yellow);
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: stretch;
	align-content: stretch;
    overflow: hidden;
    margin-top:-10px;
    object-fit: cover;
}

.photoFull img{
    position: absolute;
    top:-20%;
    min-width:100%;
    min-height:140%;
}

/**
Page
**/
.pageTitle{
    padding-top:100px;
    text-align: center;
}
.pageTitle h1{
    font-weight: 700;
    font-size: 4em;
    text-transform: uppercase;
}

.pageTitleALT{
	padding-top:100px;
    text-align: left;
}

.pageTitleALT h1{
	font-weight: 700;
    font-size: 4em;
    text-transform: uppercase;
}

.pageTitleArticle{
	padding-top:100px;
    text-align: left;
}

.pageTitleArticle h1{
	font-weight: 700;
    font-size: 2em;
    text-transform: uppercase;
}



.pageContent01{
    background:var(--clr_blue);
    color:var(--clr_light);
    display: inline-block;
    padding:100px 0px;
}

.content p,
.content ul,
.content ol{
    margin-bottom: 25px;
}

.content ul,
.content ol{
    padding-left:45px;
}

.content h3{
    font-weight: 700;
    padding:30px 0px 20px;
}

.pageContent02{
	width:100%;
    background:var(--clr_yellow);
    display: inline-block;
    margin-top:-5px;
    padding:100px 0;
}

.code{
    text-align: center;
    padding:100px 0;
    background:var(--clr_blue);
}

.code svg{
    width:60%;
    max-width:600px;
    height:auto;
}

/**
Articles
**/
.article_grid {
    padding:50px 0px;
    display: inline-block;
}
.article_grid article{
    background:#fff;
    padding:25px;
    box-shadow: 2px 8px 11px 3px rgba(165,170,201,0.21);
    -webkit-box-shadow: 2px 8px 11px 3px rgba(165,170,201,0.21);
    -moz-box-shadow: 2px 8px 11px 3px rgba(165,170,201,0.21);
}

.article_grid .post-thumbnail{
    margin-bottom: 15px;
}

.article_grid .post-thumbnail img{
    width:100%;
    height:auto;
}

.post-title{
    font-weight: 700;
}

.post-meta{
    font-weight: 300;
    font-size: 0.8em;
    margin-bottom: 25px;
}

.post-excerpt{
    font-weight: 300;
    font-size: 0.9em;
}

.article_grid .post-meta{
	margin-top:20px;
}

.read-more{
    margin-top: 25px;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    font-weight: 300;
}

.read-more:before{
    content:"";
    position: absolute;
    left:0;
    bottom:0;
    right:0;
    height:2px;
    background:var(--clr_blue);
}

/**
Single
**/
.single-thumbnail{
    margin:25px 0px;
}

.single-thumbnail img{
    width:100%;
    height:auto;
}

.singleArticle .post-meta{
    margin-bottom: 45px;
    margin-top:45px;
}