@charset "UTF-8";
@charset 'UTF-8';
/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	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, sub, sup, 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, select{
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }

/* #Basic Styles
================================================== */
body {
	background: #f2f2f2;
	font-family: 'Open Sans';
	font-weight:300;
	font-size: 15px;
	line-height:22px;
	color:#323232;
	overflow-x:hidden;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	-webkit-text-size-adjust: 100%;
 }
 html {
		overflow-x:hidden; 
	height:100%;
}
/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
	color: #414141;
	font-family: 'Poppins', sans-serif;
	font-weight:400;
	text-align:center;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 40px; line-height:48px;}
h2 { font-size: 34px; line-height:42px;}
h3 { font-size: 30px; line-height: 38px;}
h4 { font-size: 24px; line-height: 32px;}
h5 { font-size: 16px; line-height: 22px;font-weight:600;}
h6 { font-size: 14px; line-height: 20px;font-weight:600;}


	p {  }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: 600;}
	small { font-size: 80%; }
	


/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #323a3d; border-width: 1px 0 0; clear: both; margin:0 10px 0 10px; height: 0; position:relative;}


/* #Links
================================================== */
	a, a:visited { text-decoration: none; }
	a:hover, a:focus { color: #e74c3c;}
	p a, p a:visited { line-height: inherit; text-decoration: none;}
	a:focus{
	outline:none;
	}

/* #Lists
================================================== */
	ul, ol { }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li {  }
	li { line-height: 18px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }
/* #Buttons
================================================== */

	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
	background:#363636;	
	margin-top:10px;
	border:none;
	  color: #dfdfdf;
	  display: inline-block;
	  font-size: 16px;
	  cursor: pointer;
	  line-height: normal;
	  padding: 15px 25px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out; 
	width:100%}
	.button{
        background:#363636; 
        margin-top:10px;
        border:none;
          color: #dfdfdf;
          display: inline-block;
          font-size: 16px;
          cursor: pointer;
          line-height: normal;
          padding: 15px 25px;
        -webkit-transition : all 0.3s ease-out;
        -moz-transition : all 0.3s ease-out;
        -o-transition :all 0.3s ease-out;
        transition : all 0.3s ease-out;
    }
	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {	
	  color: #e74c3c;
	background:#292929;	 }

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {	
	  color: #e74c3c;}

	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}
/* #Images
================================================== */
/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 12.5px !important; }
	.add-bottom { margin-bottom: 25px !important; }
	.remove-top { margin-top: 0 !important; }
	.half-top { margin-top: 12.5px !important; }
	.add-top { margin-top: 25px !important; }

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
::selection {
	color:#fff;
}
::-moz-selection {
	color:#fff;
}




/*
* Skeleton V1.2 improved by IG Design
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Contents
==================================================
    #Base 1320 Grid
    #Base 1200 Grid
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */


    
    /* #Base 1320 Grid
    ================================================== */   
    
        .container                                  { position: relative; width: 1320px; margin: 0 auto; padding: 0; }
        .container .column,
        .container .columns                         { float: left; display: inline; margin-left: 25px; margin-right: 25px; margin-top: 25px; margin-bottom: 25px;}
        .row                                        { margin-bottom: 0px; }

        /* Nested Column Classes */
        .column.alpha, .columns.alpha               { margin-left: 0; }
        .column.omega, .columns.omega               { margin-right: 0; }

        /* Base Grid */
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 60px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 170px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 280px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 390px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 500px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 610px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 720px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 830px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 940px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 1050px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 1160px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 1270px; }

        .container .one-fifth.column                { width: 214px; }
        .container .two-fifths.column               { width: 478px; }
        .container .three-fifths.column                { width: 742px; }
        .container .four-fifths.column               { width: 1006px; }
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                  
        .row .three.columns,                   
        .row .four.columns,                    
        .row .five.columns,                    
        .row .six.columns,                     
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;}
        
        .row .one.columns                     { width: 8.333333333333332%; }
        .row .two.columns                     { width: 16.666666666666664%; }
        .row .three.columns                   { width: 25%; }
        .row .four.columns                    { width: 33.33333333333333%; }
        .row .five.columns                    { width: 41.66666666666667%; }
        .row .six.columns                     { width: 50%; }
        .row .seven.columns                   { width: 58.333333333333336%; }
        .row .eight.columns                   { width: 66.66666666666666%; }
        .row .nine.columns                    { width: 75%; }
        .row .ten.columns                     { width: 83.33333333333334%; }
        .row .eleven.columns                  { width: 91.66666666666666%; }
        .row .twelve.columns                  { width: 100%; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 110px;  }
        .container .offset-by-two                   { padding-left: 220px; }
        .container .offset-by-three                 { padding-left: 330px; }
        .container .offset-by-four                  { padding-left: 440px; }
        .container .offset-by-five                  { padding-left: 550px; }
        .container .offset-by-six                   { padding-left: 660px; }
        .container .offset-by-seven                 { padding-left: 770px; }
        .container .offset-by-eight                 { padding-left: 880px; }
        .container .offset-by-nine                  { padding-left: 990px; }
        .container .offset-by-ten                   { padding-left: 1100px; }
        .container .offset-by-eleven                { padding-left: 1210px; }   
    
    /* #Base 1200 Grid
    ================================================== */   
    @media only screen and (min-width: 1200px) and (max-width: 1319px) {    
        .container                             { position: relative; width: 1200px; margin: 0 auto; padding: 0; }
        .container .column,
        .container .columns              { float: left; display: inline; margin-left: 10px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;}
        .row                                        { margin-bottom: 0px; }

        /* Nested Column Classes */
        .column.alpha, .columns.alpha               { margin-left: 0; }
        .column.omega, .columns.omega               { margin-right: 0; }

        /* Base Grid */
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 80px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 180px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 280px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 380px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 480px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 580px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 680px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 780px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 880px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 980px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 1080px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 1180px; }

        .container .one-fifth.column                { width: 220px; }
        .container .two-fifths.column               { width: 460px; }
        .container .three-fifths.column                { width: 700px; }
        .container .four-fifths.column               { width: 940px; }
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                  
        .row .three.columns,                   
        .row .four.columns,                    
        .row .five.columns,                    
        .row .six.columns,                     
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;}
        
        .row .one.columns                     { width: 8.333333333333332%; }
        .row .two.columns                     { width: 16.666666666666664%; }
        .row .three.columns                   { width: 25%; }
        .row .four.columns                    { width: 33.33333333333333%; }
        .row .five.columns                    { width: 41.66666666666667%; }
        .row .six.columns                     { width: 50%; }
        .row .seven.columns                   { width: 58.333333333333336%; }
        .row .eight.columns                   { width: 66.66666666666666%; }
        .row .nine.columns                    { width: 75%; }
        .row .ten.columns                     { width: 83.33333333333334%; }
        .row .eleven.columns                  { width: 91.66666666666666%; }
        .row .twelve.columns                  { width: 100%; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 100px;  }
        .container .offset-by-two                   { padding-left: 200px; }
        .container .offset-by-three                 { padding-left: 300px; }
        .container .offset-by-four                  { padding-left: 400px; }
        .container .offset-by-five                  { padding-left: 500px; }
        .container .offset-by-six                   { padding-left: 600px; }
        .container .offset-by-seven                 { padding-left: 700px; }
        .container .offset-by-eight                 { padding-left: 800px; }
        .container .offset-by-nine                  { padding-left: 900px; }
        .container .offset-by-ten                   { padding-left: 1000px; }
        .container .offset-by-eleven                { padding-left: 1100px; }   
    }   
    
    
    

    /* #Base 960 Grid
    ================================================== */

    @media only screen and (min-width: 960px) and (max-width: 1199px) {
        .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
        .container .column,
        .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;}
        .row                                        { margin-bottom: 0px; }

        /* Nested Column Classes */
        .column.alpha, .columns.alpha               { margin-left: 0; }
        .column.omega, .columns.omega               { margin-right: 0; }

        /* Base Grid */
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 60px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 140px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 220px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 300px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 380px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 460px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 540px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 620px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 700px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 780px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 860px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 940px; }
        
        .container .one-fifth.column                { width: 172px; }
        .container .two-fifths.column               { width: 364px; }
        .container .three-fifths.column                { width: 556px; }
        .container .four-fifths.column               { width: 748px; }
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                                            
        .row .four.columns,                    
        .row .five.columns,                                              
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;width: 100%;}
        .row .six.columns, .row .three.columns{float: left;}

        .row .one.columns                     { width: 8.333333333333332%; }
        .row .two.columns                     { width: 16.666666666666664%; }
        .row .three.columns                   { width: 25%; }
        .row .four.columns                    { width: 33.33333333333333%; }
        .row .five.columns                    { width: 41.66666666666667%; }
        .row .six.columns                     { width: 50%; }
        .row .seven.columns                   { width: 58.333333333333336%; }
        .row .eight.columns                   { width: 66.66666666666666%; }
        .row .nine.columns                    { width: 75%; }
        .row .ten.columns                     { width: 83.33333333333334%; }
        .row .eleven.columns                  { width: 91.66666666666666%; }
        .row .twelve.columns                  { width: 100%; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 80px;  }
        .container .offset-by-two                   { padding-left: 160px; }
        .container .offset-by-three                 { padding-left: 240px; }
        .container .offset-by-four                  { padding-left: 320px; }
        .container .offset-by-five                  { padding-left: 400px; }
        .container .offset-by-six                   { padding-left: 480px; }
        .container .offset-by-seven                 { padding-left: 560px; }
        .container .offset-by-eight                 { padding-left: 640px; }
        .container .offset-by-nine                  { padding-left: 720px; }
        .container .offset-by-ten                   { padding-left: 800px; }
        .container .offset-by-eleven                { padding-left: 880px; }
    }


    /* #Tablet (Portrait)
    ================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  margin-top: 10px; margin-bottom: 10px;}
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }
        
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 44px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 108px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 172px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 236px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 300px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 364px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 428px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 492px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 556px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 620px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 684px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 748px; }
        
        .container .one-fifth.column                { width: 133.6px; }
        .container .two-fifths.column               { width: 287.2px; }
        .container .three-fifths.column                { width: 440.8px; }
        .container .four-fifths.column               { width: 594.4px; }
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                  
        .row .three.columns,                   
        .row .four.columns,                    
        .row .five.columns,                    
        .row .six.columns,                     
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;}
        .row .one.columns                     { width: 8.333333333333332%; }
        .row .two.columns                     { width: 16.666666666666664%; }
        .row .three.columns                   { width: 25%; }
        .row .four.columns                    { width: 33.33333333333333%; }
        .row .five.columns                    { width: 41.66666666666667%; }
        .row .six.columns                     { width: 50%; }
        .row .seven.columns                   { width: 58.333333333333336%; }
        .row .eight.columns                   { width: 66.66666666666666%; }
        .row .nine.columns                    { width: 75%; }
        .row .ten.columns                     { width: 83.33333333333334%; }
        .row .eleven.columns                  { width: 91.66666666666666%; }
        .row .twelve.columns                  { width: 100%; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 64px; }
        .container .offset-by-two                   { padding-left: 128px; }
        .container .offset-by-three                 { padding-left: 192px; }
        .container .offset-by-four                  { padding-left: 256px; }
        .container .offset-by-five                  { padding-left: 320px; }
        .container .offset-by-six                   { padding-left: 384px; }
        .container .offset-by-seven                 { padding-left: 448px; }
        .container .offset-by-eight                 { padding-left: 512px; }
        .container .offset-by-nine                  { padding-left: 576px; }
        .container .offset-by-ten                   { padding-left: 640px; }
        .container .offset-by-eleven                { padding-left: 704px; }
    }


    /*  #Mobile (Portrait)
    ================================================== */
    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
        .container .columns,
        .container .column {  margin-left: 0; margin-right: 0; margin-top: 10px; margin-bottom: 10px;}
        
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 420px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 420px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 420px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 420px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 420px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 420px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 420px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 420px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 420px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 420px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 420px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 420px; }

        
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                  
        .row .three.columns,                   
        .row .four.columns,                    
        .row .five.columns,                    
        .row .six.columns,                     
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;width: 100%;}
        
        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven { padding-left: 0; }

    }

    /* #Mobile 
    ================================================== */

    @media only screen and (min-width: 320px) and (max-width: 479px) {
        .container { width: 300px; }
        .container .columns,
        .container .column {  margin-left: 0; margin-right: 0;  margin-top: 10px; margin-bottom: 10px;}
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 300px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 300px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 300px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 300px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 300px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 300px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 300px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 300px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 300px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 300px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 300px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 300px; }
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                  
        .row .three.columns,                   
        .row .four.columns,                    
        .row .five.columns,                    
        .row .six.columns,                     
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;width: 100%;}

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven { padding-left: 0; }
    }


    /* #Mobile (Landscape)
    ================================================== */

    /* Note: Design for a width of 320px */
    @media only screen and (max-width: 319px) {
        .container { width: 220px; }
        .container .columns,
        .container .column { margin-left: 0; margin-right: 0; margin-top: 10px; margin-bottom: 10px;}
        .container .one.column,
        .container .one.columns,
        .row .expander-wrap .one.columns            { width: 220px;  }
        .container .two.columns,
        .row .expander-wrap .two.columns            { width: 220px; }
        .container .three.columns,
        .row .expander-wrap .three.columns          { width: 220px; }
        .container .four.columns,
        .row .expander-wrap .four.columns           { width: 220px; }
        .container .five.columns,
        .row .expander-wrap .five.columns           { width: 220px; }
        .container .six.columns,
        .row .expander-wrap .six.columns            { width: 220px; }
        .container .seven.columns,
        .row .expander-wrap .seven.columns          { width: 220px; }
        .container .eight.columns,
        .row .expander-wrap .eight.columns          { width: 220px; }
        .container .nine.columns,
        .row .expander-wrap .nine.columns           { width: 220px; }
        .container .ten.columns,
        .row .expander-wrap .ten.columns            { width: 220px; }
        .container .eleven.columns,
        .row .expander-wrap .eleven.columns         { width: 220px; }
        .container .twelve.columns,
        .row .expander-wrap .twelve.columns         { width: 220px; }
        
        /* Full Width Column % */
        .row .one.columns,                     
        .row .two.columns,                  
        .row .three.columns,                   
        .row .four.columns,                    
        .row .five.columns,                    
        .row .six.columns,                     
        .row .seven.columns,                  
        .row .eight.columns,                   
        .row .nine.columns,                    
        .row .ten.columns,                     
        .row .eleven.columns,                 
        .row .twelve.columns  {float: left;width: 100%;}

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven { padding-left: 0; }
    }

    /* #Clearing
    ================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }



/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	color: #444;
	text-shadow: none;
}

.fancybox-opened {
	z-index: 128030;
}

.fancybox-opened .fancybox-skin {
}

.fancybox-outer, .fancybox-inner {
	position: relative;
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url(../../../themes/talos/images/fancybox_sprite.png);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(//https://gposers.com/wp-content/themes/talos/images/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -28px;
	right: -28px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(//https://gposers.com/wp-content/themes/talos/images/blank.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 128010;
	background: url(../../../themes/talos/images/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url(../../../themes/talos/images/fancybox_sprite-2x.png);
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url(//https://gposers.com/wp-content/themes/talos/images/fancybox_loading@2x.gif);
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}


/* 
 * 	Core Owl Carousel CSS File
 *	v1.24
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
/*.grabbing { 
    cursor:url(//https://gposers.com/wp-content/themes/talos/css/grabbing.png) 8 8, move;
}*/

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
.owl-theme .owl-controls{
	text-align: center;
	z-index:100;
	left:0;
	width:100%;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	
}
.owl-theme .owl-controls .owl-buttons .owl-prev{
	position:absolute;
	top:0;
	left:0;
}
.owl-theme .owl-controls .owl-buttons .owl-next,
.owl-theme .owl-controls .owl-buttons .owl-prev{
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 8px;
	height: 8px;
	margin-left:5px;
	margin-right:5px;
	opacity: 1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #212121;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
}


/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .8s both ease;
  -moz-animation: fadeOut .8s both ease;
  animation: fadeOut .8s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .8s both ease;
  -moz-animation: fadeIn .8s both ease;
  animation: fadeIn .8s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  25% { opacity: 0; -webkit-transform:translateY(100px); }
  75% { opacity: .5; }
  100% { opacity: 1; -webkit-transform:translateY(0px); }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; -webkit-transform:translateY(0px);}
  100% { opacity:0;-webkit-transform:translateY(100px); }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(100%); }
}
@keyframes goDown {
  from { transform: translateY(100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}





/*RETINA DISPLAY*/

@media all and (-webkit-min-device-pixel-ratio: 1.5) { 

/*IMPORTANT : PLEASE NOTE:
Just define high resolution version (2x) all of the background images used in your website.
Example is given below:*/

/*#some-element { background-image: url(//https://gposers.com/wp-content/themes/talos/images/my_image@2x.png); background-size: 200px 100px; } */

/* Please visit: http://retinajs.com/ */

}



/*** ESSENTIAL STYLES ***/
.sf-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	position:relative;
	text-align: right;
}
.center .sf-menu{
	float:none;
	display: inline-block;
	text-align: center;
}

.sf-menu li {
	position: relative;
}



.sf-menu a {
	display: block;
	position:relative;
}

/*** DEMO SKIN ***/
.sf-menu {
	margin-bottom: 0;
	text-transform:uppercase;
	font-size:12px;
	font-weight:600;
}

.sf-menu a {
	padding: 0 18px;
	text-decoration: none;
	zoom: 1; /* IE7 */
	color: #fff;
}
.sf-menu a#sign_in {
	background-color:#252525;
	}
.sf-menu li {
	background: ;
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
}

ul.sf-menu li a.{
	color:#fff;
	padding-left: 20px;
}
ul.sf-menu li a:hover,
.current-menu-item a{
	outline:none;
}

.sf-menu ul li {
	min-width:200px;
}

ul.slimmenu.sf-menu > li a:after{
  content : "";
}


/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding : 0 18px;
	line-height: 45px;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #30d9a4; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #30d9a4; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: white;
}
#mobnav-btn:before {
    display: none;
	font-family: "fontello";
	 content: "\e874";
    font-size: 24px;
	width:24px;
	height:24px;
    color: white;
	cursor:pointer;
}
.mobnav-subarrow {
    display: none;
}

.sf-menu.search-menu .menu-item{
	padding-bottom: 0px;
}
.sf-menu .menu-item .menu-item{
	display: block;
	float: none;
	padding-bottom: 0px;
	position: relative;
}
.sf-menu .menu-item .menu-item i{
	position: absolute;
    right: 0px;
    top:15px;
    color:#fff;
    line-height: inherit;
    margin-right: 10px;
}
.sf-menu .menu-item .menu-item.mega-sub-menu{
	display: inline-block;
	float: left;
}
.sf-menu .menu-item.menu-item-mega{
	position: static;
	display: inline-block;
	white-space: nowrap;
}
.sf-menu .menu-item-mega > a{
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
}




ul.sf-menu .mega-menu-container {
	display: none;
	background-size:cover;
  	position: absolute;
    z-index: 1000;
    padding: 60px 50px;
    background-color: #111;
    box-shadow: none;
 	text-align: left; 	
}
.cbp-af-header-shrink ul.sf-menu .mega-menu-container:before{
	border:0px;
}
.sf-menu .mega-menu-container .mega-sub-menu > a{
	line-height: 22px;
	padding:6px 0;
	margin-bottom:0;
	font-weight:500;
	color:#fff;
	font-size: 10px;
	letter-spacing: 2px;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.sf-menu .mega-menu-container .mega-sub-menu.menu-title > a{
	padding: 0;
    padding-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: calc(100% - 20px);
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.sf-menu .mega-menu-container .mega-menu-columns .grid-container3 a{
	line-height: 22px;
	padding:6px 0;
	margin-bottom:0;
	font-weight:500;
	color:#fff;
	font-size: 10px;
	letter-spacing: 2px;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    margin-right: 25px;
}
ul.sub-menu li i{
	margin-left:0;
	padding-left:0;
	text-align:left;
}


/** VERSION 1.3 New CSS  ==================== **/	
ul.mega_submenu.icons li{
	position:relative;
}
.mega-menu-container ul.sub-menu i{
	position:absolute;
	right:25px;
}
/**  End Version 1.3 Updated  **/	

.sf-menu .right:hover > div:before {
	right: 24px;
	left: auto;
}

.sf-menu li div.mega-sub-menu:hover  > div {
	left: 100%;
	right: auto;
	top:-20px;
}
.sky-mega-menu li div.mega-sub-menu:hover > div:before {
	display:none;
}
.sf-menu li div.mega-sub-menu:hover > div {
    right: 100%;
    left: auto;
}
.sf-menu > .sub-menu {
    position: absolute;
    z-index: 1000;
    padding: 20px 20px;
    top: 100%;
    left: -9999px;
    margin-top: 10px;
    background-color: rgba(20,20,20,1);
    box-shadow: none;
    opacity: 0;
    -o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    -o-transition: -o-transform 0.1s, opacity 0.1s;
    -ms-transition: -ms-transform 0.1s, opacity 0.1s;
    -moz-transition: -moz-transform 0.1s, opacity 0.1s;
    -webkit-transition: -webkit-transform 0.1s, opacity 0.1s;
}

.sf-menu .grid-container2 .title-menu.menu-item > a,.sf-menu .mega-menu-columns .title-menu.menu-item > a {
	letter-spacing: 3px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(80,80,80,.9);
    line-height: 21px;
}
.sf-menu .mega-menu-columns .title-menu.menu-item > a{
	margin-right: 15px;
}
.sf-menu .grid-container2 .padding-top-15.title-menu.menu-item > a,.sf-menu .mega-menu-columns .padding-top-15.title-menu.menu-item > a{
	padding-top: 15px;
}
.sf-menu .grid-container2 .title-menu.menu-item > a:hover,.sf-menu .mega-menu-columns .title-menu.menu-item > a:hover{
	padding-left: 0;
	background-color: #111;
}
.sf-menu .grid-container2 .menu-item-has-children i{
	position: absolute;
	right: 0px;
    line-height: inherit;
    margin-right: 10px;
    padding-right: 0px;
}
.sf-menu .grid-container2 i, .sf-menu .mega-menu-columns i {
	display: inline-block;
    width: 12px;
    float: none;
    margin: 0;
    padding-right: 10px;
    font-size: 10px;
    text-align: center;
    font-weight: 400;
    line-height: inherit;
}
.sf-menu .grid-container2 .menu-item-has-children .mega-menu-columns i{
	display: inline-block;
    width: 12px;
    float: none;
    margin: 0;
    padding-right: 10px;
    font-size: 10px;
    text-align: center;
    font-weight: 400;
    line-height: inherit;
}
.sf-menu .grid-container2 .menu-item-has-children .mega-menu-columns li a{
	padding-left: 20px;
}
.sf-menu li:hover li > div{
	left: 100%;
    right: auto;
    top: -20px;
}
.dark-menu-background {
    top: 50px;
    background: rgba(40,40,40,0);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.new-menu{
	vertical-align: super;
    font-size: 8.5px;
    line-height: 8.5px;
    font-weight: 500;
    margin-left: 4px;
}

#menu-wrap .container .columns.multi-page, #menu-wraps .container .columns.multi-page{
	margin-top: 0px;
	margin-bottom: 0px;
}
.multi-page .logo{
	top:45px;
}
ul.slimmenu.sf-menu {
    margin: 0 auto;
    width: auto;
    float: right;
    list-style: none;
    padding: 0;
    box-sizing: border-box;
}
ul.slimmenu.sf-menu > li{
	padding-left: 0px;
}
ul.slimmenu.sf-menu > li.right ul,
ul.slimmenu.sf-menu > li.right .mega-menu-container {
	right: 0!important;
}
ul.slimmenu.sf-menu > li a {
    text-decoration: none;
    padding: 50px 22px;
    margin: 0px;
    display: block;
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu.sf-menu > li > a{
	padding-top: 30px;
	padding-bottom: 20px;
}
ul.slimmenu.sf-menu li ul.normal-sub{
	min-width: 240px;
    left: auto;
    padding: 10px 20px;
    background: #111;
}
ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
}
ul.slimmenu.sf-menu > li  ul  li a {
    padding: 1em 0;
    margin-left: 10px;
    margin-right: 10px;
    color: #f1f1f1;
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: calc(100% - 20px);
    display: block;
}
ul.slimmenu.sf-menu li ul li a{
	color: #f1f1f1;
}
ul.sf-menu li ul li a:hover{
	color: #fff;
}
.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-12{
	width: 100%;
}
.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-6{
	width: 50%;
}
.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-4{
	width: 33.33%;
}
.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-3{
	width: 25%;
}
.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-8{
	width: 66.66%;
}
.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-9{
	width: 75%;
}
ul.slimmenu.sf-menu li .sub-collapser{
	width: 0px;
}
ul.slimmenu.sf-menu li > ul > li ul.normal-sub{
	top:-10px;
	left: 100%;
	right:auto;
}
ul.slimmenu.sf-menu li .mega-menu-container ul.normal-sub{
	padding-left: 0px;
	padding-right: 0px;
}
.menu-mobile i {    
    font-size: 28px;    
    padding: 0;
    float: right;
    position: relative;
    top: 0;
    color: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

ul.slimmenu.sf-menu > li i{
	display: none;
}
ul.slimmenu.sf-menu > li li i{
	display: inline-block;
}

.menu-mobile {
	display: none;
	padding-top: 40px;
    padding-bottom: 40px;
}
ul.slimmenu.sf-menu li ul{
	box-shadow: none;
}
@media (max-width: 1199px) {
	.menu-mobile {
		display: block;
	}
	.sf-menu{display: none;}
	ul.slimmenu.sf-menu > li a{
		padding: 20px 0px!important;
	}
	ul.sf-menu.show-on-mobile {
    	display: block;
	}
	ul.slimmenu.sf-menu > li{
		display: block;
	}
	.multi-page .logo{
		top:30px;
	}
	.sf-menu .menu-item.menu-item-mega{
		display: block;
		position: relative;
	}
	ul.slimmenu.sf-menu > li i,ul.slimmenu.sf-menu > div.mega-menu-container i {
		display: block;
		color: #fff;
		position: absolute;
		top: 15px;
		right:0;
		line-height: inherit;
		z-index: 99999;
	    background: #212121;
    	padding: 5px 12px;
    	cursor: pointer;
    	font-size: 15px;
	}
	li.menu-item-has-children:before {
	    content: "\f489";
	    font-family: "Ionicons";
	    display: none;
	    cursor: pointer;
	    float: right;
	    padding: 8px 12px;
	    background: #212121;
	    color: #fff;
	}
  	ul.slimmenu.sf-menu{
		float: none;
	    text-align: left;
  	}
  	ul.slimmenu.sf-menu li ul.normal-sub{
		position: relative;
		background: transparent;
		text-align: left;
		box-shadow: none;
	}
	ul.slimmenu.sf-menu li > ul > li ul.normal-sub{
		left:0px;
	}
	ul.sf-menu .mega-menu-container{
		background: transparent!important;
		position: relative;
		box-shadow: none;
		width:100%!important;
	}
	ul.sf-menu >li.menu-item-mega:hover .mega-menu-container{
		display: none;
	}
	.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-12,
	.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-6,
	.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-4,
	.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-3,
	.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-8,
	.slimmenu.sf-menu .menu-item .menu-item.mega-sub-menu.col-9{
		width:100%;
	}
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(../../../themes/talos/css/font/fontawesome-webfont_v-4.7.0.eot);
  src: url(../../../themes/talos/css/font/fontawesome-webfont.eot) format('embedded-opentype'), url(../../../themes/talos/css/font/fontawesome-webfont.woff) format('woff2'), url(../../../themes/talos/css/font/fontawesome-webfont_v-4.7.0.woff) format('woff'), url(../../../themes/talos/css/font/fontawesome-webfont_v-4.7.0.ttf) format('truetype'), url(../../../themes/talos/css/font/fontawesome-webfont_v-4.7.0-fontawesomeregular.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@font-face {
	font-family: 'et-line';
	src:url(../../../themes/talos/css/font/et-line.eot);
	src:url(../../../themes/talos/css/font/et-line.eot#iefix) format('embedded-opentype'),
		url(../../../themes/talos/css/font/et-line.woff) format('woff'),
		url(../../../themes/talos/css/font/et-line.ttf) format('truetype'),
		url(../../../themes/talos/css/font/et-line.svg) format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'et-line';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display:inline-block;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile, .icon-laptop, .icon-desktop, .icon-tablet, .icon-phone, .icon-document, .icon-documents, .icon-search, .icon-clipboard, .icon-newspaper, .icon-notebook, .icon-book-open, .icon-browser, .icon-calendar, .icon-presentation, .icon-picture, .icon-pictures, .icon-video, .icon-camera, .icon-printer, .icon-toolbox, .icon-briefcase, .icon-wallet, .icon-gift, .icon-bargraph, .icon-grid, .icon-expand, .icon-focus, .icon-edit, .icon-adjustments, .icon-ribbon, .icon-hourglass, .icon-lock, .icon-megaphone, .icon-shield, .icon-trophy, .icon-flag, .icon-map, .icon-puzzle, .icon-basket, .icon-envelope, .icon-streetsign, .icon-telescope, .icon-gears, .icon-key, .icon-paperclip, .icon-attachment, .icon-pricetags, .icon-lightbulb, .icon-layers, .icon-pencil, .icon-tools, .icon-tools-2, .icon-scissors, .icon-paintbrush, .icon-magnifying-glass, .icon-circle-compass, .icon-linegraph, .icon-mic, .icon-strategy, .icon-beaker, .icon-caution, .icon-recycle, .icon-anchor, .icon-profile-male, .icon-profile-female, .icon-bike, .icon-wine, .icon-hotairballoon, .icon-globe, .icon-genius, .icon-map-pin, .icon-dial, .icon-chat, .icon-heart, .icon-cloud, .icon-upload, .icon-download, .icon-target, .icon-hazardous, .icon-piechart, .icon-speedometer, .icon-global, .icon-compass, .icon-lifesaver, .icon-clock, .icon-aperture, .icon-quote, .icon-scope, .icon-alarmclock, .icon-refresh, .icon-happy, .icon-sad, .icon-facebook, .icon-twitter, .icon-googleplus, .icon-rss, .icon-tumblr, .icon-linkedin, .icon-dribbble {
	font-family: 'et-line';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display:inline-block;
}
.icon-mobile:before {
	content: "\e000";
}
.icon-laptop:before {
	content: "\e001";
}
.icon-desktop:before {
	content: "\e002";
}
.icon-tablet:before {
	content: "\e003";
}
.icon-phone:before {
	content: "\e004";
}
.icon-document:before {
	content: "\e005";
}
.icon-documents:before {
	content: "\e006";
}
.icon-search:before {
	content: "\e007";
}
.icon-clipboard:before {
	content: "\e008";
}
.icon-newspaper:before {
	content: "\e009";
}
.icon-notebook:before {
	content: "\e00a";
}
.icon-book-open:before {
	content: "\e00b";
}
.icon-browser:before {
	content: "\e00c";
}
.icon-calendar:before {
	content: "\e00d";
}
.icon-presentation:before {
	content: "\e00e";
}
.icon-picture:before {
	content: "\e00f";
}
.icon-pictures:before {
	content: "\e010";
}
.icon-video:before {
	content: "\e011";
}
.icon-camera:before {
	content: "\e012";
}
.icon-printer:before {
	content: "\e013";
}
.icon-toolbox:before {
	content: "\e014";
}
.icon-briefcase:before {
	content: "\e015";
}
.icon-wallet:before {
	content: "\e016";
}
.icon-gift:before {
	content: "\e017";
}
.icon-bargraph:before {
	content: "\e018";
}
.icon-grid:before {
	content: "\e019";
}
.icon-expand:before {
	content: "\e01a";
}
.icon-focus:before {
	content: "\e01b";
}
.icon-edit:before {
	content: "\e01c";
}
.icon-adjustments:before {
	content: "\e01d";
}
.icon-ribbon:before {
	content: "\e01e";
}
.icon-hourglass:before {
	content: "\e01f";
}
.icon-lock:before {
	content: "\e020";
}
.icon-megaphone:before {
	content: "\e021";
}
.icon-shield:before {
	content: "\e022";
}
.icon-trophy:before {
	content: "\e023";
}
.icon-flag:before {
	content: "\e024";
}
.icon-map:before {
	content: "\e025";
}
.icon-puzzle:before {
	content: "\e026";
}
.icon-basket:before {
	content: "\e027";
}
.icon-envelope:before {
	content: "\e028";
}
.icon-streetsign:before {
	content: "\e029";
}
.icon-telescope:before {
	content: "\e02a";
}
.icon-gears:before {
	content: "\e02b";
}
.icon-key:before {
	content: "\e02c";
}
.icon-paperclip:before {
	content: "\e02d";
}
.icon-attachment:before {
	content: "\e02e";
}
.icon-pricetags:before {
	content: "\e02f";
}
.icon-lightbulb:before {
	content: "\e030";
}
.icon-layers:before {
	content: "\e031";
}
.icon-pencil:before {
	content: "\e032";
}
.icon-tools:before {
	content: "\e033";
}
.icon-tools-2:before {
	content: "\e034";
}
.icon-scissors:before {
	content: "\e035";
}
.icon-paintbrush:before {
	content: "\e036";
}
.icon-magnifying-glass:before {
	content: "\e037";
}
.icon-circle-compass:before {
	content: "\e038";
}
.icon-linegraph:before {
	content: "\e039";
}
.icon-mic:before {
	content: "\e03a";
}
.icon-strategy:before {
	content: "\e03b";
}
.icon-beaker:before {
	content: "\e03c";
}
.icon-caution:before {
	content: "\e03d";
}
.icon-recycle:before {
	content: "\e03e";
}
.icon-anchor:before {
	content: "\e03f";
}
.icon-profile-male:before {
	content: "\e040";
}
.icon-profile-female:before {
	content: "\e041";
}
.icon-bike:before {
	content: "\e042";
}
.icon-wine:before {
	content: "\e043";
}
.icon-hotairballoon:before {
	content: "\e044";
}
.icon-globe:before {
	content: "\e045";
}
.icon-genius:before {
	content: "\e046";
}
.icon-map-pin:before {
	content: "\e047";
}
.icon-dial:before {
	content: "\e048";
}
.icon-chat:before {
	content: "\e049";
}
.icon-heart:before {
	content: "\e04a";
}
.icon-cloud:before {
	content: "\e04b";
}
.icon-upload:before {
	content: "\e04c";
}
.icon-download:before {
	content: "\e04d";
}
.icon-target:before {
	content: "\e04e";
}
.icon-hazardous:before {
	content: "\e04f";
}
.icon-piechart:before {
	content: "\e050";
}
.icon-speedometer:before {
	content: "\e051";
}
.icon-global:before {
	content: "\e052";
}
.icon-compass:before {
	content: "\e053";
}
.icon-lifesaver:before {
	content: "\e054";
}
.icon-clock:before {
	content: "\e055";
}
.icon-aperture:before {
	content: "\e056";
}
.icon-quote:before {
	content: "\e057";
}
.icon-scope:before {
	content: "\e058";
}
.icon-alarmclock:before {
	content: "\e059";
}
.icon-refresh:before {
	content: "\e05a";
}
.icon-happy:before {
	content: "\e05b";
}
.icon-sad:before {
	content: "\e05c";
}
.icon-facebook:before {
	content: "\e05d";
}
.icon-twitter:before {
	content: "\e05e";
}
.icon-googleplus:before {
	content: "\e05f";
}
.icon-rss:before {
	content: "\e060";
}
.icon-tumblr:before {
	content: "\e061";
}
.icon-linkedin:before {
	content: "\e062";
}
.icon-dribbble:before {
	content: "\e063";
}
@font-face{font-family:'Mono Social Icons Font';src:url(../../../themes/talos/lib/monosocialiconsfont/fonts/MonoSocialIconsFont.eot);src:url(../../../themes/talos/lib/monosocialiconsfont/fonts/MonoSocialIconsFont.eot) format('embedded-opentype'),url(../../../themes/talos/lib/monosocialiconsfont/fonts/MonoSocialIconsFont.woff) format('woff'),url(//https://gposers.com/wp-content/themes/talos/lib/monosocialiconsfont/fonts/MonoSocialIconsFont.ttf) format('truetype'),url(../../../themes/talos/lib/monosocialiconsfont/fonts/MonoSocialIconsFont.svg) format('svg');src:url(//https://gposers.com/wp-content/themes/talos/lib/monosocialiconsfont/fonts/MonoSocialIconsFont.ttf) format('truetype');font-weight:400;font-style:normal}.vc-mono,.vc-mono:before{font-family:'Mono Social Icons Font';-webkit-text-rendering:optimizeLegibility;-moz-text-rendering:optimizeLegibility;-ms-text-rendering:optimizeLegibility;-o-text-rendering:optimizeLegibility;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-ms-font-smoothing:antialiased;-o-font-smoothing:antialiased;font-smoothing:antialiased}.vc-mono:before{font-size:2em!important;font-style:normal;word-wrap:normal;text-transform:none}.vc-mono-fivehundredpx:before{content:"fivehundredpx"}.vc-mono-aboutme:before{content:"aboutme"}.vc-mono-addme:before{content:"addme"}.vc-mono-amazon:before{content:"amazon"}.vc-mono-aol:before{content:"aol"}.vc-mono-appstorealt:before{content:"appstorealt"}.vc-mono-appstore:before{content:"appstore"}.vc-mono-apple:before{content:"apple"}.vc-mono-bebo:before{content:"bebo"}.vc-mono-behance:before{content:"behance"}.vc-mono-bing:before{content:"bing"}.vc-mono-blip:before{content:"blip"}.vc-mono-blogger:before{content:"blogger"}.vc-mono-coroflot:before{content:"coroflot"}.vc-mono-daytum:before{content:"daytum"}.vc-mono-delicious:before{content:"delicious"}.vc-mono-designbump:before{content:"designbump"}.vc-mono-designfloat:before{content:"designfloat"}.vc-mono-deviantart:before{content:"deviantart"}.vc-mono-diggalt:before{content:"diggalt"}.vc-mono-digg:before{content:"digg"}.vc-mono-dribble:before{content:"dribble"}.vc-mono-drupal:before{content:"drupal"}.vc-mono-ebay:before{content:"ebay"}.vc-mono-email:before{content:"email"}.vc-mono-emberapp:before{content:"emberapp"}.vc-mono-etsy:before{content:"etsy"}.vc-mono-facebook:before{content:"facebook"}.vc-mono-feedburner:before{content:"feedburner"}.vc-mono-flickr:before{content:"flickr"}.vc-mono-foodspotting:before{content:"foodspotting"}.vc-mono-forrst:before{content:"forrst"}.vc-mono-foursquare:before{content:"foursquare"}.vc-mono-friendsfeed:before{content:"friendsfeed"}.vc-mono-friendstar:before{content:"friendstar"}.vc-mono-gdgt:before{content:"gdgt"}.vc-mono-github:before{content:"github"}.vc-mono-githubalt:before{content:"githubalt"}.vc-mono-googlebuzz:before{content:"googlebuzz"}.vc-mono-googleplus:before{content:"googleplus"}.vc-mono-googletalk:before{content:"googletalk"}.vc-mono-gowallapin:before{content:"gowallapin"}.vc-mono-gowalla:before{content:"gowalla"}.vc-mono-grooveshark:before{content:"grooveshark"}.vc-mono-heart:before{content:"heart"}.vc-mono-hyves:before{content:"hyves"}.vc-mono-icondock:before{content:"icondock"}.vc-mono-icq:before{content:"icq"}.vc-mono-identica:before{content:"identica"}.vc-mono-imessage:before{content:"imessage"}.vc-mono-itunes:before{content:"itunes"}.vc-mono-lastfm:before{content:"lastfm"}.vc-mono-linkedin:before{content:"linkedin"}.vc-mono-meetup:before{content:"meetup"}.vc-mono-metacafe:before{content:"metacafe"}.vc-mono-mixx:before{content:"mixx"}.vc-mono-mobileme:before{content:"mobileme"}.vc-mono-mrwong:before{content:"mrwong"}.vc-mono-msn:before{content:"msn"}.vc-mono-myspace:before{content:"myspace"}.vc-mono-newsvine:before{content:"newsvine"}.vc-mono-paypal:before{content:"paypal"}.vc-mono-photobucket:before{content:"photobucket"}.vc-mono-picasa:before{content:"picasa"}.vc-mono-pinterest:before{content:"pinterest"}.vc-mono-podcast:before{content:"podcast"}.vc-mono-posterous:before{content:"posterous"}.vc-mono-qik:before{content:"qik"}.vc-mono-quora:before{content:"quora"}.vc-mono-reddit:before{content:"reddit"}.vc-mono-retweet:before{content:"retweet"}.vc-mono-rss:before{content:"rss"}.vc-mono-scribd:before{content:"scribd"}.vc-mono-sharethis:before{content:"sharethis"}.vc-mono-skype:before{content:"skype"}.vc-mono-slashdot:before{content:"slashdot"}.vc-mono-slideshare:before{content:"slideshare"}.vc-mono-smugmug:before{content:"smugmug"}.vc-mono-soundcloud:before{content:"soundcloud"}.vc-mono-spotify:before{content:"spotify"}.vc-mono-squidoo:before{content:"squidoo"}.vc-mono-stackoverflow:before{content:"stackoverflow"}.vc-mono-star:before{content:"star"}.vc-mono-stumbleupon:before{content:"stumbleupon"}.vc-mono-technorati:before{content:"technorati"}.vc-mono-tumblr:before{content:"tumblr"}.vc-mono-twitterbird:before{content:"twitterbird"}.vc-mono-twitter:before{content:"twitter"}.vc-mono-viddler:before{content:"viddler"}.vc-mono-vimeo:before{content:"vimeo"}.vc-mono-virb:before{content:"virb"}.vc-mono-www:before{content:"www"}.vc-mono-wikipedia:before{content:"wikipedia"}.vc-mono-windows:before{content:"windows"}.vc-mono-wordpress:before{content:"wordpress"}.vc-mono-xing:before{content:"xing"}.vc-mono-yahoobuzz:before{content:"yahoobuzz"}.vc-mono-yahoo:before{content:"yahoo"}.vc-mono-yelp:before{content:"yelp"}.vc-mono-youtube:before{content:"youtube"}.vc-mono-instagram:before{content:"instagram"}
@font-face{font-family:typicons;font-weight:400;font-style:normal;src:url(../../../themes/talos/lib/typicons/src/font/typicons.eot);src:url(../../../themes/talos/lib/typicons/src/font/typicons.eot#iefix) format('embedded-opentype'),url(../../../themes/talos/lib/typicons/src/font/typicons.woff) format('woff'),url(../../../themes/talos/lib/typicons/src/font/typicons.ttf) format('truetype'),url(../../../themes/talos/lib/typicons/src/font/typicons.svg) format('svg')}.typcn:before{font-family:typicons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;height:1em;font-size:1em;text-align:center;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}.typcn-adjust-brightness:before{content:'\e000'}.typcn-adjust-contrast:before{content:'\e001'}.typcn-anchor-outline:before{content:'\e002'}.typcn-anchor:before{content:'\e003'}.typcn-archive:before{content:'\e004'}.typcn-arrow-back-outline:before{content:'\e005'}.typcn-arrow-back:before{content:'\e006'}.typcn-arrow-down-outline:before{content:'\e007'}.typcn-arrow-down-thick:before{content:'\e008'}.typcn-arrow-down:before{content:'\e009'}.typcn-arrow-forward-outline:before{content:'\e00a'}.typcn-arrow-forward:before{content:'\e00b'}.typcn-arrow-left-outline:before{content:'\e00c'}.typcn-arrow-left-thick:before{content:'\e00d'}.typcn-arrow-left:before{content:'\e00e'}.typcn-arrow-loop-outline:before{content:'\e00f'}.typcn-arrow-loop:before{content:'\e010'}.typcn-arrow-maximise-outline:before{content:'\e011'}.typcn-arrow-maximise:before{content:'\e012'}.typcn-arrow-minimise-outline:before{content:'\e013'}.typcn-arrow-minimise:before{content:'\e014'}.typcn-arrow-move-outline:before{content:'\e015'}.typcn-arrow-move:before{content:'\e016'}.typcn-arrow-repeat-outline:before{content:'\e017'}.typcn-arrow-repeat:before{content:'\e018'}.typcn-arrow-right-outline:before{content:'\e019'}.typcn-arrow-right-thick:before{content:'\e01a'}.typcn-arrow-right:before{content:'\e01b'}.typcn-arrow-shuffle:before{content:'\e01c'}.typcn-arrow-sorted-down:before{content:'\e01d'}.typcn-arrow-sorted-up:before{content:'\e01e'}.typcn-arrow-sync-outline:before{content:'\e01f'}.typcn-arrow-sync:before{content:'\e020'}.typcn-arrow-unsorted:before{content:'\e021'}.typcn-arrow-up-outline:before{content:'\e022'}.typcn-arrow-up-thick:before{content:'\e023'}.typcn-arrow-up:before{content:'\e024'}.typcn-at:before{content:'\e025'}.typcn-attachment-outline:before{content:'\e026'}.typcn-attachment:before{content:'\e027'}.typcn-backspace-outline:before{content:'\e028'}.typcn-backspace:before{content:'\e029'}.typcn-battery-charge:before{content:'\e02a'}.typcn-battery-full:before{content:'\e02b'}.typcn-battery-high:before{content:'\e02c'}.typcn-battery-low:before{content:'\e02d'}.typcn-battery-mid:before{content:'\e02e'}.typcn-beaker:before{content:'\e02f'}.typcn-beer:before{content:'\e030'}.typcn-bell:before{content:'\e031'}.typcn-book:before{content:'\e032'}.typcn-bookmark:before{content:'\e033'}.typcn-briefcase:before{content:'\e034'}.typcn-brush:before{content:'\e035'}.typcn-business-card:before{content:'\e036'}.typcn-calculator:before{content:'\e037'}.typcn-calendar-outline:before{content:'\e038'}.typcn-calendar:before{content:'\e039'}.typcn-camera-outline:before{content:'\e03a'}.typcn-camera:before{content:'\e03b'}.typcn-cancel-outline:before{content:'\e03c'}.typcn-cancel:before{content:'\e03d'}.typcn-chart-area-outline:before{content:'\e03e'}.typcn-chart-area:before{content:'\e03f'}.typcn-chart-bar-outline:before{content:'\e040'}.typcn-chart-bar:before{content:'\e041'}.typcn-chart-line-outline:before{content:'\e042'}.typcn-chart-line:before{content:'\e043'}.typcn-chart-pie-outline:before{content:'\e044'}.typcn-chart-pie:before{content:'\e045'}.typcn-chevron-left-outline:before{content:'\e046'}.typcn-chevron-left:before{content:'\e047'}.typcn-chevron-right-outline:before{content:'\e048'}.typcn-chevron-right:before{content:'\e049'}.typcn-clipboard:before{content:'\e04a'}.typcn-cloud-storage:before{content:'\e04b'}.typcn-cloud-storage-outline:before{content:'\e054'}.typcn-code-outline:before{content:'\e04c'}.typcn-code:before{content:'\e04d'}.typcn-coffee:before{content:'\e04e'}.typcn-cog-outline:before{content:'\e04f'}.typcn-cog:before{content:'\e050'}.typcn-compass:before{content:'\e051'}.typcn-contacts:before{content:'\e052'}.typcn-credit-card:before{content:'\e053'}.typcn-css3:before{content:'\e055'}.typcn-database:before{content:'\e056'}.typcn-delete-outline:before{content:'\e057'}.typcn-delete:before{content:'\e058'}.typcn-device-desktop:before{content:'\e059'}.typcn-device-laptop:before{content:'\e05a'}.typcn-device-phone:before{content:'\e05b'}.typcn-device-tablet:before{content:'\e05c'}.typcn-directions:before{content:'\e05d'}.typcn-divide-outline:before{content:'\e05e'}.typcn-divide:before{content:'\e05f'}.typcn-document-add:before{content:'\e060'}.typcn-document-delete:before{content:'\e061'}.typcn-document-text:before{content:'\e062'}.typcn-document:before{content:'\e063'}.typcn-download-outline:before{content:'\e064'}.typcn-download:before{content:'\e065'}.typcn-dropbox:before{content:'\e066'}.typcn-edit:before{content:'\e067'}.typcn-eject-outline:before{content:'\e068'}.typcn-eject:before{content:'\e069'}.typcn-equals-outline:before{content:'\e06a'}.typcn-equals:before{content:'\e06b'}.typcn-export-outline:before{content:'\e06c'}.typcn-export:before{content:'\e06d'}.typcn-eye-outline:before{content:'\e06e'}.typcn-eye:before{content:'\e06f'}.typcn-feather:before{content:'\e070'}.typcn-film:before{content:'\e071'}.typcn-filter:before{content:'\e072'}.typcn-flag-outline:before{content:'\e073'}.typcn-flag:before{content:'\e074'}.typcn-flash-outline:before{content:'\e075'}.typcn-flash:before{content:'\e076'}.typcn-flow-children:before{content:'\e077'}.typcn-flow-merge:before{content:'\e078'}.typcn-flow-parallel:before{content:'\e079'}.typcn-flow-switch:before{content:'\e07a'}.typcn-folder-add:before{content:'\e07b'}.typcn-folder-delete:before{content:'\e07c'}.typcn-folder-open:before{content:'\e07d'}.typcn-folder:before{content:'\e07e'}.typcn-gift:before{content:'\e07f'}.typcn-globe-outline:before{content:'\e080'}.typcn-globe:before{content:'\e081'}.typcn-group-outline:before{content:'\e082'}.typcn-group:before{content:'\e083'}.typcn-headphones:before{content:'\e084'}.typcn-heart-full-outline:before{content:'\e085'}.typcn-heart-half-outline:before{content:'\e086'}.typcn-heart-outline:before{content:'\e087'}.typcn-heart:before{content:'\e088'}.typcn-home-outline:before{content:'\e089'}.typcn-home:before{content:'\e08a'}.typcn-html5:before{content:'\e08b'}.typcn-image-outline:before{content:'\e08c'}.typcn-image:before{content:'\e08d'}.typcn-infinity-outline:before{content:'\e08e'}.typcn-infinity:before{content:'\e08f'}.typcn-info-large-outline:before{content:'\e090'}.typcn-info-large:before{content:'\e091'}.typcn-info-outline:before{content:'\e092'}.typcn-info:before{content:'\e093'}.typcn-input-checked-outline:before{content:'\e094'}.typcn-input-checked:before{content:'\e095'}.typcn-key-outline:before{content:'\e096'}.typcn-key:before{content:'\e097'}.typcn-keyboard:before{content:'\e098'}.typcn-leaf:before{content:'\e099'}.typcn-lightbulb:before{content:'\e09a'}.typcn-link-outline:before{content:'\e09b'}.typcn-link:before{content:'\e09c'}.typcn-location-arrow-outline:before{content:'\e09d'}.typcn-location-arrow:before{content:'\e09e'}.typcn-location-outline:before{content:'\e09f'}.typcn-location:before{content:'\e0a0'}.typcn-lock-closed-outline:before{content:'\e0a1'}.typcn-lock-closed:before{content:'\e0a2'}.typcn-lock-open-outline:before{content:'\e0a3'}.typcn-lock-open:before{content:'\e0a4'}.typcn-mail:before{content:'\e0a5'}.typcn-map:before{content:'\e0a6'}.typcn-media-eject-outline:before{content:'\e0a7'}.typcn-media-eject:before{content:'\e0a8'}.typcn-media-fast-forward-outline:before{content:'\e0a9'}.typcn-media-fast-forward:before{content:'\e0aa'}.typcn-media-pause-outline:before{content:'\e0ab'}.typcn-media-pause:before{content:'\e0ac'}.typcn-media-play-outline:before{content:'\e0ad'}.typcn-media-play-reverse-outline:before{content:'\e0ae'}.typcn-media-play-reverse:before{content:'\e0af'}.typcn-media-play:before{content:'\e0b0'}.typcn-media-record-outline:before{content:'\e0b1'}.typcn-media-record:before{content:'\e0b2'}.typcn-media-rewind-outline:before{content:'\e0b3'}.typcn-media-rewind:before{content:'\e0b4'}.typcn-media-stop-outline:before{content:'\e0b5'}.typcn-media-stop:before{content:'\e0b6'}.typcn-message-typing:before{content:'\e0b7'}.typcn-message:before{content:'\e0b8'}.typcn-messages:before{content:'\e0b9'}.typcn-microphone-outline:before{content:'\e0ba'}.typcn-microphone:before{content:'\e0bb'}.typcn-minus-outline:before{content:'\e0bc'}.typcn-minus:before{content:'\e0bd'}.typcn-mortar-board:before{content:'\e0be'}.typcn-news:before{content:'\e0bf'}.typcn-notes-outline:before{content:'\e0c0'}.typcn-notes:before{content:'\e0c1'}.typcn-pen:before{content:'\e0c2'}.typcn-pencil:before{content:'\e0c3'}.typcn-phone-outline:before{content:'\e0c4'}.typcn-phone:before{content:'\e0c5'}.typcn-pi-outline:before{content:'\e0c6'}.typcn-pi:before{content:'\e0c7'}.typcn-pin-outline:before{content:'\e0c8'}.typcn-pin:before{content:'\e0c9'}.typcn-pipette:before{content:'\e0ca'}.typcn-plane-outline:before{content:'\e0cb'}.typcn-plane:before{content:'\e0cc'}.typcn-plug:before{content:'\e0cd'}.typcn-plus-outline:before{content:'\e0ce'}.typcn-plus:before{content:'\e0cf'}.typcn-point-of-interest-outline:before{content:'\e0d0'}.typcn-point-of-interest:before{content:'\e0d1'}.typcn-power-outline:before{content:'\e0d2'}.typcn-power:before{content:'\e0d3'}.typcn-printer:before{content:'\e0d4'}.typcn-puzzle-outline:before{content:'\e0d5'}.typcn-puzzle:before{content:'\e0d6'}.typcn-radar-outline:before{content:'\e0d7'}.typcn-radar:before{content:'\e0d8'}.typcn-refresh-outline:before{content:'\e0d9'}.typcn-refresh:before{content:'\e0da'}.typcn-rss-outline:before{content:'\e0db'}.typcn-rss:before{content:'\e0dc'}.typcn-scissors-outline:before{content:'\e0dd'}.typcn-scissors:before{content:'\e0de'}.typcn-shopping-bag:before{content:'\e0df'}.typcn-shopping-cart:before{content:'\e0e0'}.typcn-social-at-circular:before{content:'\e0e1'}.typcn-social-dribbble-circular:before{content:'\e0e2'}.typcn-social-dribbble:before{content:'\e0e3'}.typcn-social-facebook-circular:before{content:'\e0e4'}.typcn-social-facebook:before{content:'\e0e5'}.typcn-social-flickr-circular:before{content:'\e0e6'}.typcn-social-flickr:before{content:'\e0e7'}.typcn-social-github-circular:before{content:'\e0e8'}.typcn-social-github:before{content:'\e0e9'}.typcn-social-google-plus-circular:before{content:'\e0ea'}.typcn-social-google-plus:before{content:'\e0eb'}.typcn-social-instagram-circular:before{content:'\e0ec'}.typcn-social-instagram:before{content:'\e0ed'}.typcn-social-last-fm-circular:before{content:'\e0ee'}.typcn-social-last-fm:before{content:'\e0ef'}.typcn-social-linkedin-circular:before{content:'\e0f0'}.typcn-social-linkedin:before{content:'\e0f1'}.typcn-social-pinterest-circular:before{content:'\e0f2'}.typcn-social-pinterest:before{content:'\e0f3'}.typcn-social-skype-outline:before{content:'\e0f4'}.typcn-social-skype:before{content:'\e0f5'}.typcn-social-tumbler-circular:before{content:'\e0f6'}.typcn-social-tumbler:before{content:'\e0f7'}.typcn-social-twitter-circular:before{content:'\e0f8'}.typcn-social-twitter:before{content:'\e0f9'}.typcn-social-vimeo-circular:before{content:'\e0fa'}.typcn-social-vimeo:before{content:'\e0fb'}.typcn-social-youtube-circular:before{content:'\e0fc'}.typcn-social-youtube:before{content:'\e0fd'}.typcn-sort-alphabetically-outline:before{content:'\e0fe'}.typcn-sort-alphabetically:before{content:'\e0ff'}.typcn-sort-numerically-outline:before{content:'\e100'}.typcn-sort-numerically:before{content:'\e101'}.typcn-spanner-outline:before{content:'\e102'}.typcn-spanner:before{content:'\e103'}.typcn-spiral:before{content:'\e104'}.typcn-star-full-outline:before{content:'\e105'}.typcn-star-half-outline:before{content:'\e106'}.typcn-star-half:before{content:'\e107'}.typcn-star-outline:before{content:'\e108'}.typcn-star:before{content:'\e109'}.typcn-starburst-outline:before{content:'\e10a'}.typcn-starburst:before{content:'\e10b'}.typcn-stopwatch:before{content:'\e10c'}.typcn-support:before{content:'\e10d'}.typcn-tabs-outline:before{content:'\e10e'}.typcn-tag:before{content:'\e10f'}.typcn-tags:before{content:'\e110'}.typcn-th-large-outline:before{content:'\e111'}.typcn-th-large:before{content:'\e112'}.typcn-th-list-outline:before{content:'\e113'}.typcn-th-list:before{content:'\e114'}.typcn-th-menu-outline:before{content:'\e115'}.typcn-th-menu:before{content:'\e116'}.typcn-th-small-outline:before{content:'\e117'}.typcn-th-small:before{content:'\e118'}.typcn-thermometer:before{content:'\e119'}.typcn-thumbs-down:before{content:'\e11a'}.typcn-thumbs-ok:before{content:'\e11b'}.typcn-thumbs-up:before{content:'\e11c'}.typcn-tick-outline:before{content:'\e11d'}.typcn-tick:before{content:'\e11e'}.typcn-ticket:before{content:'\e11f'}.typcn-time:before{content:'\e120'}.typcn-times-outline:before{content:'\e121'}.typcn-times:before{content:'\e122'}.typcn-trash:before{content:'\e123'}.typcn-tree:before{content:'\e124'}.typcn-upload-outline:before{content:'\e125'}.typcn-upload:before{content:'\e126'}.typcn-user-add-outline:before{content:'\e127'}.typcn-user-add:before{content:'\e128'}.typcn-user-delete-outline:before{content:'\e129'}.typcn-user-delete:before{content:'\e12a'}.typcn-user-outline:before{content:'\e12b'}.typcn-user:before{content:'\e12c'}.typcn-vendor-android:before{content:'\e12d'}.typcn-vendor-apple:before{content:'\e12e'}.typcn-vendor-microsoft:before{content:'\e12f'}.typcn-video-outline:before{content:'\e130'}.typcn-video:before{content:'\e131'}.typcn-volume-down:before{content:'\e132'}.typcn-volume-mute:before{content:'\e133'}.typcn-volume-up:before{content:'\e134'}.typcn-volume:before{content:'\e135'}.typcn-warning-outline:before{content:'\e136'}.typcn-warning:before{content:'\e137'}.typcn-watch:before{content:'\e138'}.typcn-waves-outline:before{content:'\e139'}.typcn-waves:before{content:'\e13a'}.typcn-weather-cloudy:before{content:'\e13b'}.typcn-weather-downpour:before{content:'\e13c'}.typcn-weather-night:before{content:'\e13d'}.typcn-weather-partly-sunny:before{content:'\e13e'}.typcn-weather-shower:before{content:'\e13f'}.typcn-weather-snow:before{content:'\e140'}.typcn-weather-stormy:before{content:'\e141'}.typcn-weather-sunny:before{content:'\e142'}.typcn-weather-windy-cloudy:before{content:'\e143'}.typcn-weather-windy:before{content:'\e144'}.typcn-wi-fi-outline:before{content:'\e145'}.typcn-wi-fi:before{content:'\e146'}.typcn-wine:before{content:'\e147'}.typcn-world-outline:before{content:'\e148'}.typcn-world:before{content:'\e149'}.typcn-zoom-in-outline:before{content:'\e14a'}.typcn-zoom-in:before{content:'\e14b'}.typcn-zoom-out-outline:before{content:'\e14c'}.typcn-zoom-out:before{content:'\e14d'}.typcn-zoom-outline:before{content:'\e14e'}.typcn-zoom:before{content:'\e14f'}
@font-face{font-family:vc_entypo;src:url(../../../themes/talos/lib/vc-entypo/fonts/vc_entypo.eot);src:url(../../../themes/talos/lib/vc-entypo/fonts/vc_entypo.eot#iefix) format('embedded-opentype'),url(../../../themes/talos/lib/vc-entypo/fonts/vc_entypo.woff) format('woff'),url(../../../themes/talos/lib/vc-entypo/fonts/vc_entypo.ttf) format('truetype'),url(../../../themes/talos/lib/vc-entypo/fonts/vc_entypo.svg) format('svg');font-weight:400;font-style:normal}[class*=" entypo-icon-"]:before,[class^=entypo-icon-]:before{font-family:vc_entypo;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:0;text-align:center;font-variant:normal;text-transform:none;line-height:inherit;margin-left:0}.entypo-icon-note:before{content:"\266a"}.entypo-icon-note-beamed:before{content:"\266b"}.entypo-icon-music:before{content:"🎵"}.entypo-icon-search:before{content:"🔍"}.entypo-icon-flashlight:before{content:"🔦"}.entypo-icon-mail:before{content:"\2709"}.entypo-icon-heart:before{content:"\2665"}.entypo-icon-heart-empty:before{content:"\2661"}.entypo-icon-star:before{content:"\2605"}.entypo-icon-star-empty:before{content:"\2606"}.entypo-icon-user:before{content:"👤"}.entypo-icon-users:before{content:"👥"}.entypo-icon-user-add:before{content:"\e700"}.entypo-icon-video:before{content:"🎬"}.entypo-icon-picture:before{content:"🌄"}.entypo-icon-camera:before{content:"📷"}.entypo-icon-layout:before{content:"\268f"}.entypo-icon-menu:before{content:"\2630"}.entypo-icon-check:before{content:"\2713"}.entypo-icon-cancel:before{content:"\2715"}.entypo-icon-cancel-circled:before{content:"\2716"}.entypo-icon-cancel-squared:before{content:"\274e"}.entypo-icon-plus:before{content:"\2b"}.entypo-icon-plus-circled:before{content:"\2795"}.entypo-icon-plus-squared:before{content:"\229e"}.entypo-icon-minus:before{content:"\2d"}.entypo-icon-minus-circled:before{content:"\2796"}.entypo-icon-minus-squared:before{content:"\229f"}.entypo-icon-help:before{content:"\2753"}.entypo-icon-help-circled:before{content:"\e704"}.entypo-icon-info:before{content:"\2139"}.entypo-icon-info-circled:before{content:"\e705"}.entypo-icon-back:before{content:"🔙"}.entypo-icon-home:before{content:"\2302"}.entypo-icon-link:before{content:"🔗"}.entypo-icon-attach:before{content:"📎"}.entypo-icon-lock:before{content:"🔒"}.entypo-icon-lock-open:before{content:"🔓"}.entypo-icon-eye:before{content:"\e70a"}.entypo-icon-tag:before{content:"\e70c"}.entypo-icon-bookmark:before{content:"🔖"}.entypo-icon-bookmarks:before{content:"📑"}.entypo-icon-flag:before{content:"\2691"}.entypo-icon-thumbs-up:before{content:"👍"}.entypo-icon-thumbs-down:before{content:"👎"}.entypo-icon-download:before{content:"📥"}.entypo-icon-upload:before{content:"📤"}.entypo-icon-upload-cloud:before{content:"\e711"}.entypo-icon-reply:before{content:"\e712"}.entypo-icon-reply-all:before{content:"\e713"}.entypo-icon-forward:before{content:"\27a6"}.entypo-icon-quote:before{content:"\275e"}.entypo-icon-code:before{content:"\e714"}.entypo-icon-export:before{content:"\e715"}.entypo-icon-pencil:before{content:"\270e"}.entypo-icon-feather:before{content:"\2712"}.entypo-icon-print:before{content:"\e716"}.entypo-icon-retweet:before{content:"\e717"}.entypo-icon-keyboard:before{content:"\2328"}.entypo-icon-comment:before{content:"\e718"}.entypo-icon-chat:before{content:"\e720"}.entypo-icon-bell:before{content:"🔔"}.entypo-icon-attention:before{content:"\26a0"}.entypo-icon-alert:before{content:"💥"}.entypo-icon-vcard:before{content:"\e722"}.entypo-icon-address:before{content:"\e723"}.entypo-icon-location:before{content:"\e724"}.entypo-icon-map:before{content:"\e727"}.entypo-icon-direction:before{content:"\27a2"}.entypo-icon-compass:before{content:"\e728"}.entypo-icon-cup:before{content:"\2615"}.entypo-icon-trash:before{content:"\e729"}.entypo-icon-doc:before{content:"\e730"}.entypo-icon-docs:before{content:"\e736"}.entypo-icon-doc-landscape:before{content:"\e737"}.entypo-icon-doc-text:before{content:"📄"}.entypo-icon-doc-text-inv:before{content:"\e731"}.entypo-icon-newspaper:before{content:"📰"}.entypo-icon-book-open:before{content:"📖"}.entypo-icon-book:before{content:"📕"}.entypo-icon-folder:before{content:"📁"}.entypo-icon-archive:before{content:"\e738"}.entypo-icon-box:before{content:"📦"}.entypo-icon-rss:before{content:"\e73a"}.entypo-icon-phone:before{content:"📞"}.entypo-icon-cog:before{content:"\2699"}.entypo-icon-tools:before{content:"\2692"}.entypo-icon-share:before{content:"\e73c"}.entypo-icon-shareable:before{content:"\e73e"}.entypo-icon-basket:before{content:"\e73d"}.entypo-icon-bag:before{content:"👜"}.entypo-icon-calendar:before{content:"📅"}.entypo-icon-login:before{content:"\e740"}.entypo-icon-logout:before{content:"\e741"}.entypo-icon-mic:before{content:"🎤"}.entypo-icon-mute:before{content:"🔇"}.entypo-icon-sound:before{content:"🔊"}.entypo-icon-volume:before{content:"\e742"}.entypo-icon-clock:before{content:"🕔"}.entypo-icon-hourglass:before{content:"\23f3"}.entypo-icon-lamp:before{content:"💡"}.entypo-icon-light-down:before{content:"🔅"}.entypo-icon-light-up:before{content:"🔆"}.entypo-icon-adjust:before{content:"\25d1"}.entypo-icon-block:before{content:"🚫"}.entypo-icon-resize-full:before{content:"\e744"}.entypo-icon-resize-small:before{content:"\e746"}.entypo-icon-popup:before{content:"\e74c"}.entypo-icon-publish:before{content:"\e74d"}.entypo-icon-window:before{content:"\e74e"}.entypo-icon-arrow-combo:before{content:"\e74f"}.entypo-icon-down-circled:before{content:"\e758"}.entypo-icon-left-circled:before{content:"\e759"}.entypo-icon-right-circled:before{content:"\e75a"}.entypo-icon-up-circled:before{content:"\e75b"}.entypo-icon-down-open:before{content:"\e75c"}.entypo-icon-left-open:before{content:"\e75d"}.entypo-icon-right-open:before{content:"\e75e"}.entypo-icon-up-open:before{content:"\e75f"}.entypo-icon-down-open-mini:before{content:"\e760"}.entypo-icon-left-open-mini:before{content:"\e761"}.entypo-icon-right-open-mini:before{content:"\e762"}.entypo-icon-up-open-mini:before{content:"\e763"}.entypo-icon-down-open-big:before{content:"\e764"}.entypo-icon-left-open-big:before{content:"\e765"}.entypo-icon-right-open-big:before{content:"\e766"}.entypo-icon-up-open-big:before{content:"\e767"}.entypo-icon-down:before{content:"\2b07"}.entypo-icon-left:before{content:"\2b05"}.entypo-icon-right:before{content:"\27a1"}.entypo-icon-up:before{content:"\2b06"}.entypo-icon-down-dir:before{content:"\25be"}.entypo-icon-left-dir:before{content:"\25c2"}.entypo-icon-right-dir:before{content:"\25b8"}.entypo-icon-up-dir:before{content:"\25b4"}.entypo-icon-down-bold:before{content:"\e4b0"}.entypo-icon-left-bold:before{content:"\e4ad"}.entypo-icon-right-bold:before{content:"\e4ae"}.entypo-icon-up-bold:before{content:"\e4af"}.entypo-icon-down-thin:before{content:"\2193"}.entypo-icon-left-thin:before{content:"\2190"}.entypo-icon-right-thin:before{content:"\2192"}.entypo-icon-up-thin:before{content:"\2191"}.entypo-icon-ccw:before{content:"\27f2"}.entypo-icon-cw:before{content:"\27f3"}.entypo-icon-arrows-ccw:before{content:"🔄"}.entypo-icon-level-down:before{content:"\21b3"}.entypo-icon-level-up:before{content:"\21b0"}.entypo-icon-shuffle:before{content:"🔀"}.entypo-icon-loop:before{content:"🔁"}.entypo-icon-switch:before{content:"\21c6"}.entypo-icon-play:before{content:"\25b6"}.entypo-icon-stop:before{content:"\25a0"}.entypo-icon-pause:before{content:"\2389"}.entypo-icon-record:before{content:"\26ab"}.entypo-icon-to-end:before{content:"\23ed"}.entypo-icon-to-start:before{content:"\23ee"}.entypo-icon-fast-forward:before{content:"\23e9"}.entypo-icon-fast-backward:before{content:"\23ea"}.entypo-icon-progress-0:before{content:"\e768"}.entypo-icon-progress-1:before{content:"\e769"}.entypo-icon-progress-2:before{content:"\e76a"}.entypo-icon-progress-3:before{content:"\e76b"}.entypo-icon-target:before{content:"🎯"}.entypo-icon-palette:before{content:"🎨"}.entypo-icon-list:before{content:"\e005"}.entypo-icon-list-add:before{content:"\e003"}.entypo-icon-signal:before{content:"📶"}.entypo-icon-trophy:before{content:"🏆"}.entypo-icon-battery:before{content:"🔋"}.entypo-icon-back-in-time:before{content:"\e771"}.entypo-icon-monitor:before{content:"💻"}.entypo-icon-mobile:before{content:"📱"}.entypo-icon-network:before{content:"\e776"}.entypo-icon-cd:before{content:"💿"}.entypo-icon-inbox:before{content:"\e777"}.entypo-icon-install:before{content:"\e778"}.entypo-icon-globe:before{content:"🌎"}.entypo-icon-cloud:before{content:"\2601"}.entypo-icon-cloud-thunder:before{content:"\26c8"}.entypo-icon-flash:before{content:"\26a1"}.entypo-icon-moon:before{content:"\263d"}.entypo-icon-flight:before{content:"\2708"}.entypo-icon-paper-plane:before{content:"\e79b"}.entypo-icon-leaf:before{content:"🍂"}.entypo-icon-lifebuoy:before{content:"\e788"}.entypo-icon-mouse:before{content:"\e789"}.entypo-icon-briefcase:before{content:"💼"}.entypo-icon-suitcase:before{content:"\e78e"}.entypo-icon-dot:before{content:"\e78b"}.entypo-icon-dot-2:before{content:"\e78c"}.entypo-icon-dot-3:before{content:"\e78d"}.entypo-icon-brush:before{content:"\e79a"}.entypo-icon-magnet:before{content:"\e7a1"}.entypo-icon-infinity:before{content:"\221e"}.entypo-icon-erase:before{content:"\232b"}.entypo-icon-chart-pie:before{content:"\e751"}.entypo-icon-chart-line:before{content:"📈"}.entypo-icon-chart-bar:before{content:"📊"}.entypo-icon-chart-area:before{content:"🔾"}.entypo-icon-tape:before{content:"\2707"}.entypo-icon-graduation-cap:before{content:"🎓"}.entypo-icon-language:before{content:"\e752"}.entypo-icon-ticket:before{content:"🎫"}.entypo-icon-water:before{content:"💦"}.entypo-icon-droplet:before{content:"💧"}.entypo-icon-air:before{content:"\e753"}.entypo-icon-credit-card:before{content:"💳"}.entypo-icon-floppy:before{content:"💾"}.entypo-icon-clipboard:before{content:"📋"}.entypo-icon-megaphone:before{content:"📣"}.entypo-icon-database:before{content:"\e754"}.entypo-icon-drive:before{content:"\e755"}.entypo-icon-bucket:before{content:"\e756"}.entypo-icon-thermometer:before{content:"\e757"}.entypo-icon-key:before{content:"🔑"}.entypo-icon-flow-cascade:before{content:"\e790"}.entypo-icon-flow-branch:before{content:"\e791"}.entypo-icon-flow-tree:before{content:"\e792"}.entypo-icon-flow-line:before{content:"\e793"}.entypo-icon-flow-parallel:before{content:"\e794"}.entypo-icon-rocket:before{content:"🚀"}.entypo-icon-gauge:before{content:"\e7a2"}.entypo-icon-traffic-cone:before{content:"\e7a3"}.entypo-icon-cc:before{content:"\e7a5"}.entypo-icon-cc-by:before{content:"\e7a6"}.entypo-icon-cc-nc:before{content:"\e7a7"}.entypo-icon-cc-nc-eu:before{content:"\e7a8"}.entypo-icon-cc-nc-jp:before{content:"\e7a9"}.entypo-icon-cc-sa:before{content:"\e7aa"}.entypo-icon-cc-nd:before{content:"\e7ab"}.entypo-icon-cc-pd:before{content:"\e7ac"}.entypo-icon-cc-zero:before{content:"\e7ad"}.entypo-icon-cc-share:before{content:"\e7ae"}.entypo-icon-cc-remix:before{content:"\e7af"}.entypo-icon-github:before{content:"\f300"}.entypo-icon-github-circled:before{content:"\f301"}.entypo-icon-flickr:before{content:"\f303"}.entypo-icon-flickr-circled:before{content:"\f304"}.entypo-icon-vimeo:before{content:"\f306"}.entypo-icon-vimeo-circled:before{content:"\f307"}.entypo-icon-twitter:before{content:"\f309"}.entypo-icon-twitter-circled:before{content:"\f30a"}.entypo-icon-facebook:before{content:"\f30c"}.entypo-icon-facebook-circled:before{content:"\f30d"}.entypo-icon-facebook-squared:before{content:"\f30e"}.entypo-icon-gplus:before{content:"\f30f"}.entypo-icon-gplus-circled:before{content:"\f310"}.entypo-icon-pinterest:before{content:"\f312"}.entypo-icon-pinterest-circled:before{content:"\f313"}.entypo-icon-tumblr:before{content:"\f315"}.entypo-icon-tumblr-circled:before{content:"\f316"}.entypo-icon-linkedin:before{content:"\f318"}.entypo-icon-linkedin-circled:before{content:"\f319"}.entypo-icon-dribbble:before{content:"\f31b"}.entypo-icon-dribbble-circled:before{content:"\f31c"}.entypo-icon-stumbleupon:before{content:"\f31e"}.entypo-icon-stumbleupon-circled:before{content:"\f31f"}.entypo-icon-lastfm:before{content:"\f321"}.entypo-icon-lastfm-circled:before{content:"\f322"}.entypo-icon-rdio:before{content:"\f324"}.entypo-icon-rdio-circled:before{content:"\f325"}.entypo-icon-spotify:before{content:"\f327"}.entypo-icon-spotify-circled:before{content:"\f328"}.entypo-icon-qq:before{content:"\f32a"}.entypo-icon-instagrem:before{content:"\f32d"}.entypo-icon-dropbox:before{content:"\f330"}.entypo-icon-evernote:before{content:"\f333"}.entypo-icon-flattr:before{content:"\f336"}.entypo-icon-skype:before{content:"\f339"}.entypo-icon-skype-circled:before{content:"\f33a"}.entypo-icon-renren:before{content:"\f33c"}.entypo-icon-sina-weibo:before{content:"\f33f"}.entypo-icon-paypal:before{content:"\f342"}.entypo-icon-picasa:before{content:"\f345"}.entypo-icon-soundcloud:before{content:"\f348"}.entypo-icon-mixi:before{content:"\f34b"}.entypo-icon-behance:before{content:"\f34e"}.entypo-icon-google-circles:before{content:"\f351"}.entypo-icon-vkontakte:before{content:"\f354"}.entypo-icon-smashing:before{content:"\f357"}.entypo-icon-sweden:before{content:"\f601"}.entypo-icon-db-shape:before{content:"\f600"}.entypo-icon-logo-db:before{content:"\f603"}@font-face{font-family:vc_linecons;src:url(../../../themes/talos/lib/vc-linecons/fonts/vc_linecons_54101537.eot);src:url(../../../themes/talos/lib/vc-linecons/fonts/vc_linecons_54101537.eot#iefix) format('embedded-opentype'),url(../../../themes/talos/lib/vc-linecons/fonts/vc_linecons_54101537.woff) format('woff'),url(../../../themes/talos/lib/vc-linecons/fonts/vc_linecons_54101537.ttf) format('truetype'),url(../../../themes/talos/lib/vc-linecons/fonts/vc_linecons_54101537-vc_openiconic.svg) format('svg');font-weight:400;font-style:normal}[class*=" vc_li-"]:before,[class^=vc_li-]:before{font-family:vc_linecons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:0;text-align:center;font-variant:normal;text-transform:none;line-height:inherit;margin-left:0}.vc_li-heart:before{content:"\e000"}.vc_li-cloud:before{content:"\e001"}.vc_li-star:before{content:"\e002"}.vc_li-tv:before{content:"\e003"}.vc_li-sound:before{content:"\e004"}.vc_li-video:before{content:"\e005"}.vc_li-trash:before{content:"\e006"}.vc_li-user:before{content:"\e007"}.vc_li-key:before{content:"\e008"}.vc_li-search:before{content:"\e009"}.vc_li-settings:before{content:"\e00a"}.vc_li-camera:before{content:"\e00b"}.vc_li-tag:before{content:"\e00c"}.vc_li-lock:before{content:"\e00d"}.vc_li-bulb:before{content:"\e00e"}.vc_li-pen:before{content:"\e00f"}.vc_li-diamond:before{content:"\e010"}.vc_li-display:before{content:"\e011"}.vc_li-location:before{content:"\e012"}.vc_li-eye:before{content:"\e013"}.vc_li-bubble:before{content:"\e014"}.vc_li-stack:before{content:"\e015"}.vc_li-cup:before{content:"\e016"}.vc_li-phone:before{content:"\e017"}.vc_li-news:before{content:"\e018"}.vc_li-mail:before{content:"\e019"}.vc_li-like:before{content:"\e01a"}.vc_li-photo:before{content:"\e01b"}.vc_li-note:before{content:"\e01c"}.vc_li-clock:before{content:"\e01d"}.vc_li-paperplane:before{content:"\e01e"}.vc_li-params:before{content:"\e01f"}.vc_li-banknote:before{content:"\e020"}.vc_li-data:before{content:"\e021"}.vc_li-music:before{content:"\e022"}.vc_li-megaphone:before{content:"\e023"}.vc_li-study:before{content:"\e024"}.vc_li-lab:before{content:"\e025"}.vc_li-food:before{content:"\e026"}.vc_li-t-shirt:before{content:"\e027"}.vc_li-fire:before{content:"\e028"}.vc_li-clip:before{content:"\e029"}.vc_li-shop:before{content:"\e02a"}.vc_li-calendar:before{content:"\e02b"}.vc_li-vallet:before{content:"\e02c"}.vc_li-vynil:before{content:"\e02d"}.vc_li-truck:before{content:"\e02e"}.vc_li-world:before{content:"\e02f"}@font-face {
  font-family: 'vc_material';
  src:
    url(../../../themes/talos/lib/vc-material/fonts/vc_material_1qpt95.ttf) format('truetype'),
    url(../../../themes/talos/lib/vc-material/fonts/vc_material_1qpt95.woff) format('woff'),
    url(../../../themes/talos/lib/vc-material/fonts/vc_material_1qpt95-vc_material.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}

.vc-material {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'vc_material' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vc-material-3d_rotation:before {
  content: "\e84d";
}
.vc-material-ac_unit:before {
  content: "\eb3b";
}
.vc-material-alarm:before {
  content: "\e855";
}
.vc-material-access_alarms:before {
  content: "\e191";
}
.vc-material-schedule:before {
  content: "\e8b5";
}
.vc-material-accessibility:before {
  content: "\e84e";
}
.vc-material-accessible:before {
  content: "\e914";
}
.vc-material-account_balance:before {
  content: "\e84f";
}
.vc-material-account_balance_wallet:before {
  content: "\e850";
}
.vc-material-account_box:before {
  content: "\e851";
}
.vc-material-account_circle:before {
  content: "\e853";
}
.vc-material-adb:before {
  content: "\e60e";
}
.vc-material-add:before {
  content: "\e145";
}
.vc-material-add_a_photo:before {
  content: "\e439";
}
.vc-material-alarm_add:before {
  content: "\e856";
}
.vc-material-add_alert:before {
  content: "\e003";
}
.vc-material-add_box:before {
  content: "\e146";
}
.vc-material-add_circle:before {
  content: "\e147";
}
.vc-material-control_point:before {
  content: "\e3ba";
}
.vc-material-add_location:before {
  content: "\e567";
}
.vc-material-add_shopping_cart:before {
  content: "\e854";
}
.vc-material-queue:before {
  content: "\e03c";
}
.vc-material-add_to_queue:before {
  content: "\e05c";
}
.vc-material-adjust:before {
  content: "\e39e";
}
.vc-material-airline_seat_flat:before {
  content: "\e630";
}
.vc-material-airline_seat_flat_angled:before {
  content: "\e631";
}
.vc-material-airline_seat_individual_suite:before {
  content: "\e632";
}
.vc-material-airline_seat_legroom_extra:before {
  content: "\e633";
}
.vc-material-airline_seat_legroom_normal:before {
  content: "\e634";
}
.vc-material-airline_seat_legroom_reduced:before {
  content: "\e635";
}
.vc-material-airline_seat_recline_extra:before {
  content: "\e636";
}
.vc-material-airline_seat_recline_normal:before {
  content: "\e637";
}
.vc-material-flight:before {
  content: "\e539";
}
.vc-material-airplanemode_inactive:before {
  content: "\e194";
}
.vc-material-airplay:before {
  content: "\e055";
}
.vc-material-airport_shuttle:before {
  content: "\eb3c";
}
.vc-material-alarm_off:before {
  content: "\e857";
}
.vc-material-alarm_on:before {
  content: "\e858";
}
.vc-material-album:before {
  content: "\e019";
}
.vc-material-all_inclusive:before {
  content: "\eb3d";
}
.vc-material-all_out:before {
  content: "\e90b";
}
.vc-material-android:before {
  content: "\e859";
}
.vc-material-announcement:before {
  content: "\e85a";
}
.vc-material-apps:before {
  content: "\e5c3";
}
.vc-material-archive:before {
  content: "\e149";
}
.vc-material-arrow_back:before {
  content: "\e5c4";
}
.vc-material-arrow_downward:before {
  content: "\e5db";
}
.vc-material-arrow_drop_down:before {
  content: "\e5c5";
}
.vc-material-arrow_drop_down_circle:before {
  content: "\e5c6";
}
.vc-material-arrow_drop_up:before {
  content: "\e5c7";
}
.vc-material-arrow_forward:before {
  content: "\e5c8";
}
.vc-material-arrow_upward:before {
  content: "\e5d8";
}
.vc-material-art_track:before {
  content: "\e060";
}
.vc-material-aspect_ratio:before {
  content: "\e85b";
}
.vc-material-poll:before {
  content: "\e801";
}
.vc-material-assignment:before {
  content: "\e85d";
}
.vc-material-assignment_ind:before {
  content: "\e85e";
}
.vc-material-assignment_late:before {
  content: "\e85f";
}
.vc-material-assignment_return:before {
  content: "\e860";
}
.vc-material-assignment_returned:before {
  content: "\e861";
}
.vc-material-assignment_turned_in:before {
  content: "\e862";
}
.vc-material-assistant:before {
  content: "\e39f";
}
.vc-material-flag:before {
  content: "\e153";
}
.vc-material-attach_file:before {
  content: "\e226";
}
.vc-material-attach_money:before {
  content: "\e227";
}
.vc-material-attachment:before {
  content: "\e2bc";
}
.vc-material-audiotrack:before {
  content: "\e3a1";
}
.vc-material-autorenew:before {
  content: "\e863";
}
.vc-material-av_timer:before {
  content: "\e01b";
}
.vc-material-backspace:before {
  content: "\e14a";
}
.vc-material-cloud_upload:before {
  content: "\e2c3";
}
.vc-material-battery_alert:before {
  content: "\e19c";
}
.vc-material-battery_charging_full:before {
  content: "\e1a3";
}
.vc-material-battery_std:before {
  content: "\e1a5";
}
.vc-material-battery_unknown:before {
  content: "\e1a6";
}
.vc-material-beach_access:before {
  content: "\eb3e";
}
.vc-material-beenhere:before {
  content: "\e52d";
}
.vc-material-block:before {
  content: "\e14b";
}
.vc-material-bluetooth:before {
  content: "\e1a7";
}
.vc-material-bluetooth_searching:before {
  content: "\e1aa";
}
.vc-material-bluetooth_connected:before {
  content: "\e1a8";
}
.vc-material-bluetooth_disabled:before {
  content: "\e1a9";
}
.vc-material-blur_circular:before {
  content: "\e3a2";
}
.vc-material-blur_linear:before {
  content: "\e3a3";
}
.vc-material-blur_off:before {
  content: "\e3a4";
}
.vc-material-blur_on:before {
  content: "\e3a5";
}
.vc-material-class:before {
  content: "\e86e";
}
.vc-material-turned_in:before {
  content: "\e8e6";
}
.vc-material-turned_in_not:before {
  content: "\e8e7";
}
.vc-material-border_all:before {
  content: "\e228";
}
.vc-material-border_bottom:before {
  content: "\e229";
}
.vc-material-border_clear:before {
  content: "\e22a";
}
.vc-material-border_color:before {
  content: "\e22b";
}
.vc-material-border_horizontal:before {
  content: "\e22c";
}
.vc-material-border_inner:before {
  content: "\e22d";
}
.vc-material-border_left:before {
  content: "\e22e";
}
.vc-material-border_outer:before {
  content: "\e22f";
}
.vc-material-border_right:before {
  content: "\e230";
}
.vc-material-border_style:before {
  content: "\e231";
}
.vc-material-border_top:before {
  content: "\e232";
}
.vc-material-border_vertical:before {
  content: "\e233";
}
.vc-material-branding_watermark:before {
  content: "\e06b";
}
.vc-material-brightness_1:before {
  content: "\e3a6";
}
.vc-material-brightness_2:before {
  content: "\e3a7";
}
.vc-material-brightness_3:before {
  content: "\e3a8";
}
.vc-material-brightness_4:before {
  content: "\e3a9";
}
.vc-material-brightness_low:before {
  content: "\e1ad";
}
.vc-material-brightness_medium:before {
  content: "\e1ae";
}
.vc-material-brightness_high:before {
  content: "\e1ac";
}
.vc-material-brightness_auto:before {
  content: "\e1ab";
}
.vc-material-broken_image:before {
  content: "\e3ad";
}
.vc-material-brush:before {
  content: "\e3ae";
}
.vc-material-bubble_chart:before {
  content: "\e6dd";
}
.vc-material-bug_report:before {
  content: "\e868";
}
.vc-material-build:before {
  content: "\e869";
}
.vc-material-burst_mode:before {
  content: "\e43c";
}
.vc-material-domain:before {
  content: "\e7ee";
}
.vc-material-business_center:before {
  content: "\eb3f";
}
.vc-material-cached:before {
  content: "\e86a";
}
.vc-material-cake:before {
  content: "\e7e9";
}
.vc-material-phone:before {
  content: "\e0cd";
}
.vc-material-call_end:before {
  content: "\e0b1";
}
.vc-material-call_made:before {
  content: "\e0b2";
}
.vc-material-merge_type:before {
  content: "\e252";
}
.vc-material-call_missed:before {
  content: "\e0b4";
}
.vc-material-call_missed_outgoing:before {
  content: "\e0e4";
}
.vc-material-call_received:before {
  content: "\e0b5";
}
.vc-material-call_split:before {
  content: "\e0b6";
}
.vc-material-call_to_action:before {
  content: "\e06c";
}
.vc-material-camera:before {
  content: "\e3af";
}
.vc-material-photo_camera:before {
  content: "\e412";
}
.vc-material-camera_enhance:before {
  content: "\e8fc";
}
.vc-material-camera_front:before {
  content: "\e3b1";
}
.vc-material-camera_rear:before {
  content: "\e3b2";
}
.vc-material-camera_roll:before {
  content: "\e3b3";
}
.vc-material-cancel:before {
  content: "\e5c9";
}
.vc-material-redeem:before {
  content: "\e8b1";
}
.vc-material-card_membership:before {
  content: "\e8f7";
}
.vc-material-card_travel:before {
  content: "\e8f8";
}
.vc-material-casino:before {
  content: "\eb40";
}
.vc-material-cast:before {
  content: "\e307";
}
.vc-material-cast_connected:before {
  content: "\e308";
}
.vc-material-center_focus_strong:before {
  content: "\e3b4";
}
.vc-material-center_focus_weak:before {
  content: "\e3b5";
}
.vc-material-change_history:before {
  content: "\e86b";
}
.vc-material-chat:before {
  content: "\e0b7";
}
.vc-material-chat_bubble:before {
  content: "\e0ca";
}
.vc-material-chat_bubble_outline:before {
  content: "\e0cb";
}
.vc-material-check:before {
  content: "\e5ca";
}
.vc-material-check_box:before {
  content: "\e834";
}
.vc-material-check_box_outline_blank:before {
  content: "\e835";
}
.vc-material-check_circle:before {
  content: "\e86c";
}
.vc-material-navigate_before:before {
  content: "\e408";
}
.vc-material-navigate_next:before {
  content: "\e409";
}
.vc-material-child_care:before {
  content: "\eb41";
}
.vc-material-child_friendly:before {
  content: "\eb42";
}
.vc-material-chrome_reader_mode:before {
  content: "\e86d";
}
.vc-material-close:before {
  content: "\e5cd";
}
.vc-material-clear_all:before {
  content: "\e0b8";
}
.vc-material-closed_caption:before {
  content: "\e01c";
}
.vc-material-wb_cloudy:before {
  content: "\e42d";
}
.vc-material-cloud_circle:before {
  content: "\e2be";
}
.vc-material-cloud_done:before {
  content: "\e2bf";
}
.vc-material-cloud_download:before {
  content: "\e2c0";
}
.vc-material-cloud_off:before {
  content: "\e2c1";
}
.vc-material-cloud_queue:before {
  content: "\e2c2";
}
.vc-material-code:before {
  content: "\e86f";
}
.vc-material-photo_library:before {
  content: "\e413";
}
.vc-material-collections_bookmark:before {
  content: "\e431";
}
.vc-material-palette:before {
  content: "\e40a";
}
.vc-material-colorize:before {
  content: "\e3b8";
}
.vc-material-comment:before {
  content: "\e0b9";
}
.vc-material-compare:before {
  content: "\e3b9";
}
.vc-material-compare_arrows:before {
  content: "\e915";
}
.vc-material-laptop:before {
  content: "\e31e";
}
.vc-material-confirmation_number:before {
  content: "\e638";
}
.vc-material-contact_mail:before {
  content: "\e0d0";
}
.vc-material-contact_phone:before {
  content: "\e0cf";
}
.vc-material-contacts:before {
  content: "\e0ba";
}
.vc-material-content_copy:before {
  content: "\e14d";
}
.vc-material-content_cut:before {
  content: "\e14e";
}
.vc-material-content_paste:before {
  content: "\e14f";
}
.vc-material-control_point_duplicate:before {
  content: "\e3bb";
}
.vc-material-copyright:before {
  content: "\e90c";
}
.vc-material-mode_edit:before {
  content: "\e254";
}
.vc-material-create_new_folder:before {
  content: "\e2cc";
}
.vc-material-payment:before {
  content: "\e8a1";
}
.vc-material-crop:before {
  content: "\e3be";
}
.vc-material-crop_16_9:before {
  content: "\e3bc";
}
.vc-material-crop_3_2:before {
  content: "\e3bd";
}
.vc-material-crop_landscape:before {
  content: "\e3c3";
}
.vc-material-crop_7_5:before {
  content: "\e3c0";
}
.vc-material-crop_din:before {
  content: "\e3c1";
}
.vc-material-crop_free:before {
  content: "\e3c2";
}
.vc-material-crop_original:before {
  content: "\e3c4";
}
.vc-material-crop_portrait:before {
  content: "\e3c5";
}
.vc-material-crop_rotate:before {
  content: "\e437";
}
.vc-material-crop_square:before {
  content: "\e3c6";
}
.vc-material-dashboard:before {
  content: "\e871";
}
.vc-material-data_usage:before {
  content: "\e1af";
}
.vc-material-date_range:before {
  content: "\e916";
}
.vc-material-dehaze:before {
  content: "\e3c7";
}
.vc-material-delete:before {
  content: "\e872";
}
.vc-material-delete_forever:before {
  content: "\e92b";
}
.vc-material-delete_sweep:before {
  content: "\e16c";
}
.vc-material-description:before {
  content: "\e873";
}
.vc-material-desktop_mac:before {
  content: "\e30b";
}
.vc-material-desktop_windows:before {
  content: "\e30c";
}
.vc-material-details:before {
  content: "\e3c8";
}
.vc-material-developer_board:before {
  content: "\e30d";
}
.vc-material-developer_mode:before {
  content: "\e1b0";
}
.vc-material-device_hub:before {
  content: "\e335";
}
.vc-material-phonelink:before {
  content: "\e326";
}
.vc-material-devices_other:before {
  content: "\e337";
}
.vc-material-dialer_sip:before {
  content: "\e0bb";
}
.vc-material-dialpad:before {
  content: "\e0bc";
}
.vc-material-directions:before {
  content: "\e52e";
}
.vc-material-directions_bike:before {
  content: "\e52f";
}
.vc-material-directions_boat:before {
  content: "\e532";
}
.vc-material-directions_bus:before {
  content: "\e530";
}
.vc-material-directions_car:before {
  content: "\e531";
}
.vc-material-directions_railway:before {
  content: "\e534";
}
.vc-material-directions_run:before {
  content: "\e566";
}
.vc-material-directions_transit:before {
  content: "\e535";
}
.vc-material-directions_walk:before {
  content: "\e536";
}
.vc-material-disc_full:before {
  content: "\e610";
}
.vc-material-dns:before {
  content: "\e875";
}
.vc-material-not_interested:before {
  content: "\e033";
}
.vc-material-do_not_disturb_alt:before {
  content: "\e611";
}
.vc-material-do_not_disturb_off:before {
  content: "\e643";
}
.vc-material-remove_circle:before {
  content: "\e15c";
}
.vc-material-dock:before {
  content: "\e30e";
}
.vc-material-done:before {
  content: "\e876";
}
.vc-material-done_all:before {
  content: "\e877";
}
.vc-material-donut_large:before {
  content: "\e917";
}
.vc-material-donut_small:before {
  content: "\e918";
}
.vc-material-drafts:before {
  content: "\e151";
}
.vc-material-drag_handle:before {
  content: "\e25d";
}
.vc-material-time_to_leave:before {
  content: "\e62c";
}
.vc-material-dvr:before {
  content: "\e1b2";
}
.vc-material-edit_location:before {
  content: "\e568";
}
.vc-material-eject:before {
  content: "\e8fb";
}
.vc-material-markunread:before {
  content: "\e159";
}
.vc-material-enhanced_encryption:before {
  content: "\e63f";
}
.vc-material-equalizer:before {
  content: "\e01d";
}
.vc-material-error:before {
  content: "\e000";
}
.vc-material-error_outline:before {
  content: "\e001";
}
.vc-material-euro_symbol:before {
  content: "\e926";
}
.vc-material-ev_station:before {
  content: "\e56d";
}
.vc-material-insert_invitation:before {
  content: "\e24f";
}
.vc-material-event_available:before {
  content: "\e614";
}
.vc-material-event_busy:before {
  content: "\e615";
}
.vc-material-event_note:before {
  content: "\e616";
}
.vc-material-event_seat:before {
  content: "\e903";
}
.vc-material-exit_to_app:before {
  content: "\e879";
}
.vc-material-expand_less:before {
  content: "\e5ce";
}
.vc-material-expand_more:before {
  content: "\e5cf";
}
.vc-material-explicit:before {
  content: "\e01e";
}
.vc-material-explore:before {
  content: "\e87a";
}
.vc-material-exposure:before {
  content: "\e3ca";
}
.vc-material-exposure_neg_1:before {
  content: "\e3cb";
}
.vc-material-exposure_neg_2:before {
  content: "\e3cc";
}
.vc-material-exposure_plus_1:before {
  content: "\e3cd";
}
.vc-material-exposure_plus_2:before {
  content: "\e3ce";
}
.vc-material-exposure_zero:before {
  content: "\e3cf";
}
.vc-material-extension:before {
  content: "\e87b";
}
.vc-material-face:before {
  content: "\e87c";
}
.vc-material-fast_forward:before {
  content: "\e01f";
}
.vc-material-fast_rewind:before {
  content: "\e020";
}
.vc-material-favorite:before {
  content: "\e87d";
}
.vc-material-favorite_border:before {
  content: "\e87e";
}
.vc-material-featured_play_list:before {
  content: "\e06d";
}
.vc-material-featured_video:before {
  content: "\e06e";
}
.vc-material-sms_failed:before {
  content: "\e626";
}
.vc-material-fiber_dvr:before {
  content: "\e05d";
}
.vc-material-fiber_manual_record:before {
  content: "\e061";
}
.vc-material-fiber_new:before {
  content: "\e05e";
}
.vc-material-fiber_pin:before {
  content: "\e06a";
}
.vc-material-fiber_smart_record:before {
  content: "\e062";
}
.vc-material-get_app:before {
  content: "\e884";
}
.vc-material-file_upload:before {
  content: "\e2c6";
}
.vc-material-filter:before {
  content: "\e3d3";
}
.vc-material-filter_1:before {
  content: "\e3d0";
}
.vc-material-filter_2:before {
  content: "\e3d1";
}
.vc-material-filter_3:before {
  content: "\e3d2";
}
.vc-material-filter_4:before {
  content: "\e3d4";
}
.vc-material-filter_5:before {
  content: "\e3d5";
}
.vc-material-filter_6:before {
  content: "\e3d6";
}
.vc-material-filter_7:before {
  content: "\e3d7";
}
.vc-material-filter_8:before {
  content: "\e3d8";
}
.vc-material-filter_9:before {
  content: "\e3d9";
}
.vc-material-filter_9_plus:before {
  content: "\e3da";
}
.vc-material-filter_b_and_w:before {
  content: "\e3db";
}
.vc-material-filter_center_focus:before {
  content: "\e3dc";
}
.vc-material-filter_drama:before {
  content: "\e3dd";
}
.vc-material-filter_frames:before {
  content: "\e3de";
}
.vc-material-terrain:before {
  content: "\e564";
}
.vc-material-filter_list:before {
  content: "\e152";
}
.vc-material-filter_none:before {
  content: "\e3e0";
}
.vc-material-filter_tilt_shift:before {
  content: "\e3e2";
}
.vc-material-filter_vintage:before {
  content: "\e3e3";
}
.vc-material-find_in_page:before {
  content: "\e880";
}
.vc-material-find_replace:before {
  content: "\e881";
}
.vc-material-fingerprint:before {
  content: "\e90d";
}
.vc-material-first_page:before {
  content: "\e5dc";
}
.vc-material-fitness_center:before {
  content: "\eb43";
}
.vc-material-flare:before {
  content: "\e3e4";
}
.vc-material-flash_auto:before {
  content: "\e3e5";
}
.vc-material-flash_off:before {
  content: "\e3e6";
}
.vc-material-flash_on:before {
  content: "\e3e7";
}
.vc-material-flight_land:before {
  content: "\e904";
}
.vc-material-flight_takeoff:before {
  content: "\e905";
}
.vc-material-flip:before {
  content: "\e3e8";
}
.vc-material-flip_to_back:before {
  content: "\e882";
}
.vc-material-flip_to_front:before {
  content: "\e883";
}
.vc-material-folder:before {
  content: "\e2c7";
}
.vc-material-folder_open:before {
  content: "\e2c8";
}
.vc-material-folder_shared:before {
  content: "\e2c9";
}
.vc-material-folder_special:before {
  content: "\e617";
}
.vc-material-font_download:before {
  content: "\e167";
}
.vc-material-format_align_center:before {
  content: "\e234";
}
.vc-material-format_align_justify:before {
  content: "\e235";
}
.vc-material-format_align_left:before {
  content: "\e236";
}
.vc-material-format_align_right:before {
  content: "\e237";
}
.vc-material-format_bold:before {
  content: "\e238";
}
.vc-material-format_clear:before {
  content: "\e239";
}
.vc-material-format_color_fill:before {
  content: "\e23a";
}
.vc-material-format_color_reset:before {
  content: "\e23b";
}
.vc-material-format_color_text:before {
  content: "\e23c";
}
.vc-material-format_indent_decrease:before {
  content: "\e23d";
}
.vc-material-format_indent_increase:before {
  content: "\e23e";
}
.vc-material-format_italic:before {
  content: "\e23f";
}
.vc-material-format_line_spacing:before {
  content: "\e240";
}
.vc-material-format_list_bulleted:before {
  content: "\e241";
}
.vc-material-format_list_numbered:before {
  content: "\e242";
}
.vc-material-format_paint:before {
  content: "\e243";
}
.vc-material-format_quote:before {
  content: "\e244";
}
.vc-material-format_shapes:before {
  content: "\e25e";
}
.vc-material-format_size:before {
  content: "\e245";
}
.vc-material-format_strikethrough:before {
  content: "\e246";
}
.vc-material-format_textdirection_l_to_r:before {
  content: "\e247";
}
.vc-material-format_textdirection_r_to_l:before {
  content: "\e248";
}
.vc-material-format_underlined:before {
  content: "\e249";
}
.vc-material-question_answer:before {
  content: "\e8af";
}
.vc-material-forward:before {
  content: "\e154";
}
.vc-material-forward_10:before {
  content: "\e056";
}
.vc-material-forward_30:before {
  content: "\e057";
}
.vc-material-forward_5:before {
  content: "\e058";
}
.vc-material-free_breakfast:before {
  content: "\eb44";
}
.vc-material-fullscreen:before {
  content: "\e5d0";
}
.vc-material-fullscreen_exit:before {
  content: "\e5d1";
}
.vc-material-functions:before {
  content: "\e24a";
}
.vc-material-g_translate:before {
  content: "\e927";
}
.vc-material-games:before {
  content: "\e021";
}
.vc-material-gavel:before {
  content: "\e90e";
}
.vc-material-gesture:before {
  content: "\e155";
}
.vc-material-gif:before {
  content: "\e908";
}
.vc-material-goat:before {
  content: "\e900";
}
.vc-material-golf_course:before {
  content: "\eb45";
}
.vc-material-my_location:before {
  content: "\e55c";
}
.vc-material-location_searching:before {
  content: "\e1b7";
}
.vc-material-location_disabled:before {
  content: "\e1b6";
}
.vc-material-star:before {
  content: "\e838";
}
.vc-material-gradient:before {
  content: "\e3e9";
}
.vc-material-grain:before {
  content: "\e3ea";
}
.vc-material-graphic_eq:before {
  content: "\e1b8";
}
.vc-material-grid_off:before {
  content: "\e3eb";
}
.vc-material-grid_on:before {
  content: "\e3ec";
}
.vc-material-people:before {
  content: "\e7fb";
}
.vc-material-group_add:before {
  content: "\e7f0";
}
.vc-material-group_work:before {
  content: "\e886";
}
.vc-material-hd:before {
  content: "\e052";
}
.vc-material-hdr_off:before {
  content: "\e3ed";
}
.vc-material-hdr_on:before {
  content: "\e3ee";
}
.vc-material-hdr_strong:before {
  content: "\e3f1";
}
.vc-material-hdr_weak:before {
  content: "\e3f2";
}
.vc-material-headset:before {
  content: "\e310";
}
.vc-material-headset_mic:before {
  content: "\e311";
}
.vc-material-healing:before {
  content: "\e3f3";
}
.vc-material-hearing:before {
  content: "\e023";
}
.vc-material-help:before {
  content: "\e887";
}
.vc-material-help_outline:before {
  content: "\e8fd";
}
.vc-material-high_quality:before {
  content: "\e024";
}
.vc-material-highlight:before {
  content: "\e25f";
}
.vc-material-highlight_off:before {
  content: "\e888";
}
.vc-material-restore:before {
  content: "\e8b3";
}
.vc-material-home:before {
  content: "\e88a";
}
.vc-material-hot_tub:before {
  content: "\eb46";
}
.vc-material-local_hotel:before {
  content: "\e549";
}
.vc-material-hourglass_empty:before {
  content: "\e88b";
}
.vc-material-hourglass_full:before {
  content: "\e88c";
}
.vc-material-http:before {
  content: "\e902";
}
.vc-material-lock:before {
  content: "\e897";
}
.vc-material-photo:before {
  content: "\e410";
}
.vc-material-image_aspect_ratio:before {
  content: "\e3f5";
}
.vc-material-import_contacts:before {
  content: "\e0e0";
}
.vc-material-import_export:before {
  content: "\e0c3";
}
.vc-material-important_devices:before {
  content: "\e912";
}
.vc-material-inbox:before {
  content: "\e156";
}
.vc-material-indeterminate_check_box:before {
  content: "\e909";
}
.vc-material-info:before {
  content: "\e88e";
}
.vc-material-info_outline:before {
  content: "\e88f";
}
.vc-material-input:before {
  content: "\e890";
}
.vc-material-insert_comment:before {
  content: "\e24c";
}
.vc-material-insert_drive_file:before {
  content: "\e24d";
}
.vc-material-tag_faces:before {
  content: "\e420";
}
.vc-material-link:before {
  content: "\e157";
}
.vc-material-invert_colors:before {
  content: "\e891";
}
.vc-material-invert_colors_off:before {
  content: "\e0c4";
}
.vc-material-iso:before {
  content: "\e3f6";
}
.vc-material-keyboard:before {
  content: "\e312";
}
.vc-material-keyboard_arrow_down:before {
  content: "\e313";
}
.vc-material-keyboard_arrow_left:before {
  content: "\e314";
}
.vc-material-keyboard_arrow_right:before {
  content: "\e315";
}
.vc-material-keyboard_arrow_up:before {
  content: "\e316";
}
.vc-material-keyboard_backspace:before {
  content: "\e317";
}
.vc-material-keyboard_capslock:before {
  content: "\e318";
}
.vc-material-keyboard_hide:before {
  content: "\e31a";
}
.vc-material-keyboard_return:before {
  content: "\e31b";
}
.vc-material-keyboard_tab:before {
  content: "\e31c";
}
.vc-material-keyboard_voice:before {
  content: "\e31d";
}
.vc-material-kitchen:before {
  content: "\eb47";
}
.vc-material-label:before {
  content: "\e892";
}
.vc-material-label_outline:before {
  content: "\e893";
}
.vc-material-language:before {
  content: "\e894";
}
.vc-material-laptop_chromebook:before {
  content: "\e31f";
}
.vc-material-laptop_mac:before {
  content: "\e320";
}
.vc-material-laptop_windows:before {
  content: "\e321";
}
.vc-material-last_page:before {
  content: "\e5dd";
}
.vc-material-open_in_new:before {
  content: "\e89e";
}
.vc-material-layers:before {
  content: "\e53b";
}
.vc-material-layers_clear:before {
  content: "\e53c";
}
.vc-material-leak_add:before {
  content: "\e3f8";
}
.vc-material-leak_remove:before {
  content: "\e3f9";
}
.vc-material-lens:before {
  content: "\e3fa";
}
.vc-material-library_books:before {
  content: "\e02f";
}
.vc-material-library_music:before {
  content: "\e030";
}
.vc-material-lightbulb_outline:before {
  content: "\e90f";
}
.vc-material-line_style:before {
  content: "\e919";
}
.vc-material-line_weight:before {
  content: "\e91a";
}
.vc-material-linear_scale:before {
  content: "\e260";
}
.vc-material-linked_camera:before {
  content: "\e438";
}
.vc-material-list:before {
  content: "\e896";
}
.vc-material-live_help:before {
  content: "\e0c6";
}
.vc-material-live_tv:before {
  content: "\e639";
}
.vc-material-local_play:before {
  content: "\e553";
}
.vc-material-local_airport:before {
  content: "\e53d";
}
.vc-material-local_atm:before {
  content: "\e53e";
}
.vc-material-local_bar:before {
  content: "\e540";
}
.vc-material-local_cafe:before {
  content: "\e541";
}
.vc-material-local_car_wash:before {
  content: "\e542";
}
.vc-material-local_convenience_store:before {
  content: "\e543";
}
.vc-material-restaurant_menu:before {
  content: "\e561";
}
.vc-material-local_drink:before {
  content: "\e544";
}
.vc-material-local_florist:before {
  content: "\e545";
}
.vc-material-local_gas_station:before {
  content: "\e546";
}
.vc-material-shopping_cart:before {
  content: "\e8cc";
}
.vc-material-local_hospital:before {
  content: "\e548";
}
.vc-material-local_laundry_service:before {
  content: "\e54a";
}
.vc-material-local_library:before {
  content: "\e54b";
}
.vc-material-local_mall:before {
  content: "\e54c";
}
.vc-material-theaters:before {
  content: "\e8da";
}
.vc-material-local_offer:before {
  content: "\e54e";
}
.vc-material-local_parking:before {
  content: "\e54f";
}
.vc-material-local_pharmacy:before {
  content: "\e550";
}
.vc-material-local_pizza:before {
  content: "\e552";
}
.vc-material-print:before {
  content: "\e8ad";
}
.vc-material-local_shipping:before {
  content: "\e558";
}
.vc-material-local_taxi:before {
  content: "\e559";
}
.vc-material-location_city:before {
  content: "\e7f1";
}
.vc-material-location_off:before {
  content: "\e0c7";
}
.vc-material-room:before {
  content: "\e8b4";
}
.vc-material-lock_open:before {
  content: "\e898";
}
.vc-material-lock_outline:before {
  content: "\e899";
}
.vc-material-looks:before {
  content: "\e3fc";
}
.vc-material-looks_3:before {
  content: "\e3fb";
}
.vc-material-looks_4:before {
  content: "\e3fd";
}
.vc-material-looks_5:before {
  content: "\e3fe";
}
.vc-material-looks_6:before {
  content: "\e3ff";
}
.vc-material-looks_one:before {
  content: "\e400";
}
.vc-material-looks_two:before {
  content: "\e401";
}
.vc-material-sync:before {
  content: "\e627";
}
.vc-material-loupe:before {
  content: "\e402";
}
.vc-material-low_priority:before {
  content: "\e16d";
}
.vc-material-loyalty:before {
  content: "\e89a";
}
.vc-material-mail_outline:before {
  content: "\e0e1";
}
.vc-material-map:before {
  content: "\e55b";
}
.vc-material-markunread_mailbox:before {
  content: "\e89b";
}
.vc-material-memory:before {
  content: "\e322";
}
.vc-material-menu:before {
  content: "\e5d2";
}
.vc-material-message:before {
  content: "\e0c9";
}
.vc-material-mic:before {
  content: "\e029";
}
.vc-material-mic_none:before {
  content: "\e02a";
}
.vc-material-mic_off:before {
  content: "\e02b";
}
.vc-material-mms:before {
  content: "\e618";
}
.vc-material-mode_comment:before {
  content: "\e253";
}
.vc-material-monetization_on:before {
  content: "\e263";
}
.vc-material-money_off:before {
  content: "\e25c";
}
.vc-material-monochrome_photos:before {
  content: "\e403";
}
.vc-material-mood_bad:before {
  content: "\e7f3";
}
.vc-material-more:before {
  content: "\e619";
}
.vc-material-more_horiz:before {
  content: "\e5d3";
}
.vc-material-more_vert:before {
  content: "\e5d4";
}
.vc-material-motorcycle:before {
  content: "\e91b";
}
.vc-material-mouse:before {
  content: "\e323";
}
.vc-material-move_to_inbox:before {
  content: "\e168";
}
.vc-material-movie_creation:before {
  content: "\e404";
}
.vc-material-movie_filter:before {
  content: "\e43a";
}
.vc-material-multiline_chart:before {
  content: "\e6df";
}
.vc-material-music_note:before {
  content: "\e405";
}
.vc-material-music_video:before {
  content: "\e063";
}
.vc-material-nature:before {
  content: "\e406";
}
.vc-material-nature_people:before {
  content: "\e407";
}
.vc-material-navigation:before {
  content: "\e55d";
}
.vc-material-near_me:before {
  content: "\e569";
}
.vc-material-network_cell:before {
  content: "\e1b9";
}
.vc-material-network_check:before {
  content: "\e640";
}
.vc-material-network_locked:before {
  content: "\e61a";
}
.vc-material-network_wifi:before {
  content: "\e1ba";
}
.vc-material-new_releases:before {
  content: "\e031";
}
.vc-material-next_week:before {
  content: "\e16a";
}
.vc-material-nfc:before {
  content: "\e1bb";
}
.vc-material-no_encryption:before {
  content: "\e641";
}
.vc-material-signal_cellular_no_sim:before {
  content: "\e1ce";
}
.vc-material-note:before {
  content: "\e06f";
}
.vc-material-note_add:before {
  content: "\e89c";
}
.vc-material-notifications:before {
  content: "\e7f4";
}
.vc-material-notifications_active:before {
  content: "\e7f7";
}
.vc-material-notifications_none:before {
  content: "\e7f5";
}
.vc-material-notifications_off:before {
  content: "\e7f6";
}
.vc-material-notifications_paused:before {
  content: "\e7f8";
}
.vc-material-offline_pin:before {
  content: "\e90a";
}
.vc-material-ondemand_video:before {
  content: "\e63a";
}
.vc-material-opacity:before {
  content: "\e91c";
}
.vc-material-open_in_browser:before {
  content: "\e89d";
}
.vc-material-open_with:before {
  content: "\e89f";
}
.vc-material-pages:before {
  content: "\e7f9";
}
.vc-material-pageview:before {
  content: "\e8a0";
}
.vc-material-pan_tool:before {
  content: "\e925";
}
.vc-material-panorama:before {
  content: "\e40b";
}
.vc-material-radio_button_unchecked:before {
  content: "\e836";
}
.vc-material-panorama_horizontal:before {
  content: "\e40d";
}
.vc-material-panorama_vertical:before {
  content: "\e40e";
}
.vc-material-panorama_wide_angle:before {
  content: "\e40f";
}
.vc-material-party_mode:before {
  content: "\e7fa";
}
.vc-material-pause:before {
  content: "\e034";
}
.vc-material-pause_circle_filled:before {
  content: "\e035";
}
.vc-material-pause_circle_outline:before {
  content: "\e036";
}
.vc-material-people_outline:before {
  content: "\e7fc";
}
.vc-material-perm_camera_mic:before {
  content: "\e8a2";
}
.vc-material-perm_contact_calendar:before {
  content: "\e8a3";
}
.vc-material-perm_data_setting:before {
  content: "\e8a4";
}
.vc-material-perm_device_information:before {
  content: "\e8a5";
}
.vc-material-person_outline:before {
  content: "\e7ff";
}
.vc-material-perm_media:before {
  content: "\e8a7";
}
.vc-material-perm_phone_msg:before {
  content: "\e8a8";
}
.vc-material-perm_scan_wifi:before {
  content: "\e8a9";
}
.vc-material-person:before {
  content: "\e7fd";
}
.vc-material-person_add:before {
  content: "\e7fe";
}
.vc-material-person_pin:before {
  content: "\e55a";
}
.vc-material-person_pin_circle:before {
  content: "\e56a";
}
.vc-material-personal_video:before {
  content: "\e63b";
}
.vc-material-pets:before {
  content: "\e91d";
}
.vc-material-phone_android:before {
  content: "\e324";
}
.vc-material-phone_bluetooth_speaker:before {
  content: "\e61b";
}
.vc-material-phone_forwarded:before {
  content: "\e61c";
}
.vc-material-phone_in_talk:before {
  content: "\e61d";
}
.vc-material-phone_iphone:before {
  content: "\e325";
}
.vc-material-phone_locked:before {
  content: "\e61e";
}
.vc-material-phone_missed:before {
  content: "\e61f";
}
.vc-material-phone_paused:before {
  content: "\e620";
}
.vc-material-phonelink_erase:before {
  content: "\e0db";
}
.vc-material-phonelink_lock:before {
  content: "\e0dc";
}
.vc-material-phonelink_off:before {
  content: "\e327";
}
.vc-material-phonelink_ring:before {
  content: "\e0dd";
}
.vc-material-phonelink_setup:before {
  content: "\e0de";
}
.vc-material-photo_album:before {
  content: "\e411";
}
.vc-material-photo_filter:before {
  content: "\e43b";
}
.vc-material-photo_size_select_actual:before {
  content: "\e432";
}
.vc-material-photo_size_select_large:before {
  content: "\e433";
}
.vc-material-photo_size_select_small:before {
  content: "\e434";
}
.vc-material-picture_as_pdf:before {
  content: "\e415";
}
.vc-material-picture_in_picture:before {
  content: "\e8aa";
}
.vc-material-picture_in_picture_alt:before {
  content: "\e911";
}
.vc-material-pie_chart:before {
  content: "\e6c4";
}
.vc-material-pie_chart_outlined:before {
  content: "\e6c5";
}
.vc-material-pin_drop:before {
  content: "\e55e";
}
.vc-material-play_arrow:before {
  content: "\e037";
}
.vc-material-play_circle_filled:before {
  content: "\e038";
}
.vc-material-play_circle_outline:before {
  content: "\e039";
}
.vc-material-play_for_work:before {
  content: "\e906";
}
.vc-material-playlist_add:before {
  content: "\e03b";
}
.vc-material-playlist_add_check:before {
  content: "\e065";
}
.vc-material-playlist_play:before {
  content: "\e05f";
}
.vc-material-plus_one:before {
  content: "\e800";
}
.vc-material-polymer:before {
  content: "\e8ab";
}
.vc-material-pool:before {
  content: "\eb48";
}
.vc-material-portable_wifi_off:before {
  content: "\e0ce";
}
.vc-material-portrait:before {
  content: "\e416";
}
.vc-material-power:before {
  content: "\e63c";
}
.vc-material-power_input:before {
  content: "\e336";
}
.vc-material-power_settings_new:before {
  content: "\e8ac";
}
.vc-material-pregnant_woman:before {
  content: "\e91e";
}
.vc-material-present_to_all:before {
  content: "\e0df";
}
.vc-material-priority_high:before {
  content: "\e645";
}
.vc-material-public:before {
  content: "\e80b";
}
.vc-material-publish:before {
  content: "\e255";
}
.vc-material-queue_music:before {
  content: "\e03d";
}
.vc-material-queue_play_next:before {
  content: "\e066";
}
.vc-material-radio:before {
  content: "\e03e";
}
.vc-material-radio_button_checked:before {
  content: "\e837";
}
.vc-material-rate_review:before {
  content: "\e560";
}
.vc-material-receipt:before {
  content: "\e8b0";
}
.vc-material-recent_actors:before {
  content: "\e03f";
}
.vc-material-record_voice_over:before {
  content: "\e91f";
}
.vc-material-redo:before {
  content: "\e15a";
}
.vc-material-refresh:before {
  content: "\e5d5";
}
.vc-material-remove:before {
  content: "\e15b";
}
.vc-material-remove_circle_outline:before {
  content: "\e15d";
}
.vc-material-remove_from_queue:before {
  content: "\e067";
}
.vc-material-visibility:before {
  content: "\e8f4";
}
.vc-material-remove_shopping_cart:before {
  content: "\e928";
}
.vc-material-reorder:before {
  content: "\e8fe";
}
.vc-material-repeat:before {
  content: "\e040";
}
.vc-material-repeat_one:before {
  content: "\e041";
}
.vc-material-replay:before {
  content: "\e042";
}
.vc-material-replay_10:before {
  content: "\e059";
}
.vc-material-replay_30:before {
  content: "\e05a";
}
.vc-material-replay_5:before {
  content: "\e05b";
}
.vc-material-reply:before {
  content: "\e15e";
}
.vc-material-reply_all:before {
  content: "\e15f";
}
.vc-material-report:before {
  content: "\e160";
}
.vc-material-warning:before {
  content: "\e002";
}
.vc-material-restaurant:before {
  content: "\e56c";
}
.vc-material-restore_page:before {
  content: "\e929";
}
.vc-material-ring_volume:before {
  content: "\e0d1";
}
.vc-material-room_service:before {
  content: "\eb49";
}
.vc-material-rotate_90_degrees_ccw:before {
  content: "\e418";
}
.vc-material-rotate_left:before {
  content: "\e419";
}
.vc-material-rotate_right:before {
  content: "\e41a";
}
.vc-material-rounded_corner:before {
  content: "\e920";
}
.vc-material-router:before {
  content: "\e328";
}
.vc-material-rowing:before {
  content: "\e921";
}
.vc-material-rss_feed:before {
  content: "\e0e5";
}
.vc-material-rv_hookup:before {
  content: "\e642";
}
.vc-material-satellite:before {
  content: "\e562";
}
.vc-material-save:before {
  content: "\e161";
}
.vc-material-scanner:before {
  content: "\e329";
}
.vc-material-school:before {
  content: "\e80c";
}
.vc-material-screen_lock_landscape:before {
  content: "\e1be";
}
.vc-material-screen_lock_portrait:before {
  content: "\e1bf";
}
.vc-material-screen_lock_rotation:before {
  content: "\e1c0";
}
.vc-material-screen_rotation:before {
  content: "\e1c1";
}
.vc-material-screen_share:before {
  content: "\e0e2";
}
.vc-material-sd_storage:before {
  content: "\e1c2";
}
.vc-material-search:before {
  content: "\e8b6";
}
.vc-material-security:before {
  content: "\e32a";
}
.vc-material-select_all:before {
  content: "\e162";
}
.vc-material-send:before {
  content: "\e163";
}
.vc-material-sentiment_dissatisfied:before {
  content: "\e811";
}
.vc-material-sentiment_neutral:before {
  content: "\e812";
}
.vc-material-sentiment_satisfied:before {
  content: "\e813";
}
.vc-material-sentiment_very_dissatisfied:before {
  content: "\e814";
}
.vc-material-sentiment_very_satisfied:before {
  content: "\e815";
}
.vc-material-settings:before {
  content: "\e8b8";
}
.vc-material-settings_applications:before {
  content: "\e8b9";
}
.vc-material-settings_backup_restore:before {
  content: "\e8ba";
}
.vc-material-settings_bluetooth:before {
  content: "\e8bb";
}
.vc-material-settings_brightness:before {
  content: "\e8bd";
}
.vc-material-settings_cell:before {
  content: "\e8bc";
}
.vc-material-settings_ethernet:before {
  content: "\e8be";
}
.vc-material-settings_input_antenna:before {
  content: "\e8bf";
}
.vc-material-settings_input_composite:before {
  content: "\e8c1";
}
.vc-material-settings_input_hdmi:before {
  content: "\e8c2";
}
.vc-material-settings_input_svideo:before {
  content: "\e8c3";
}
.vc-material-settings_overscan:before {
  content: "\e8c4";
}
.vc-material-settings_phone:before {
  content: "\e8c5";
}
.vc-material-settings_power:before {
  content: "\e8c6";
}
.vc-material-settings_remote:before {
  content: "\e8c7";
}
.vc-material-settings_system_daydream:before {
  content: "\e1c3";
}
.vc-material-settings_voice:before {
  content: "\e8c8";
}
.vc-material-share:before {
  content: "\e80d";
}
.vc-material-shop:before {
  content: "\e8c9";
}
.vc-material-shop_two:before {
  content: "\e8ca";
}
.vc-material-shopping_basket:before {
  content: "\e8cb";
}
.vc-material-short_text:before {
  content: "\e261";
}
.vc-material-show_chart:before {
  content: "\e6e1";
}
.vc-material-shuffle:before {
  content: "\e043";
}
.vc-material-signal_cellular_4_bar:before {
  content: "\e1c8";
}
.vc-material-signal_cellular_connected_no_internet_4_bar:before {
  content: "\e1cd";
}
.vc-material-signal_cellular_null:before {
  content: "\e1cf";
}
.vc-material-signal_cellular_off:before {
  content: "\e1d0";
}
.vc-material-signal_wifi_4_bar:before {
  content: "\e1d8";
}
.vc-material-signal_wifi_4_bar_lock:before {
  content: "\e1d9";
}
.vc-material-signal_wifi_off:before {
  content: "\e1da";
}
.vc-material-sim_card:before {
  content: "\e32b";
}
.vc-material-sim_card_alert:before {
  content: "\e624";
}
.vc-material-skip_next:before {
  content: "\e044";
}
.vc-material-skip_previous:before {
  content: "\e045";
}
.vc-material-slideshow:before {
  content: "\e41b";
}
.vc-material-slow_motion_video:before {
  content: "\e068";
}
.vc-material-stay_primary_portrait:before {
  content: "\e0d6";
}
.vc-material-smoke_free:before {
  content: "\eb4a";
}
.vc-material-smoking_rooms:before {
  content: "\eb4b";
}
.vc-material-textsms:before {
  content: "\e0d8";
}
.vc-material-snooze:before {
  content: "\e046";
}
.vc-material-sort:before {
  content: "\e164";
}
.vc-material-sort_by_alpha:before {
  content: "\e053";
}
.vc-material-spa:before {
  content: "\eb4c";
}
.vc-material-space_bar:before {
  content: "\e256";
}
.vc-material-speaker:before {
  content: "\e32d";
}
.vc-material-speaker_group:before {
  content: "\e32e";
}
.vc-material-speaker_notes:before {
  content: "\e8cd";
}
.vc-material-speaker_notes_off:before {
  content: "\e92a";
}
.vc-material-speaker_phone:before {
  content: "\e0d2";
}
.vc-material-spellcheck:before {
  content: "\e8ce";
}
.vc-material-star_border:before {
  content: "\e83a";
}
.vc-material-star_half:before {
  content: "\e839";
}
.vc-material-stars:before {
  content: "\e8d0";
}
.vc-material-stay_primary_landscape:before {
  content: "\e0d5";
}
.vc-material-stop:before {
  content: "\e047";
}
.vc-material-stop_screen_share:before {
  content: "\e0e3";
}
.vc-material-storage:before {
  content: "\e1db";
}
.vc-material-store_mall_directory:before {
  content: "\e563";
}
.vc-material-straighten:before {
  content: "\e41c";
}
.vc-material-streetview:before {
  content: "\e56e";
}
.vc-material-strikethrough_s:before {
  content: "\e257";
}
.vc-material-style:before {
  content: "\e41d";
}
.vc-material-subdirectory_arrow_left:before {
  content: "\e5d9";
}
.vc-material-subdirectory_arrow_right:before {
  content: "\e5da";
}
.vc-material-subject:before {
  content: "\e8d2";
}
.vc-material-subscriptions:before {
  content: "\e064";
}
.vc-material-subtitles:before {
  content: "\e048";
}
.vc-material-subway:before {
  content: "\e56f";
}
.vc-material-supervisor_account:before {
  content: "\e8d3";
}
.vc-material-surround_sound:before {
  content: "\e049";
}
.vc-material-swap_calls:before {
  content: "\e0d7";
}
.vc-material-swap_horiz:before {
  content: "\e8d4";
}
.vc-material-swap_vert:before {
  content: "\e8d5";
}
.vc-material-swap_vertical_circle:before {
  content: "\e8d6";
}
.vc-material-switch_camera:before {
  content: "\e41e";
}
.vc-material-switch_video:before {
  content: "\e41f";
}
.vc-material-sync_disabled:before {
  content: "\e628";
}
.vc-material-sync_problem:before {
  content: "\e629";
}
.vc-material-system_update:before {
  content: "\e62a";
}
.vc-material-system_update_alt:before {
  content: "\e8d7";
}
.vc-material-tab:before {
  content: "\e8d8";
}
.vc-material-tab_unselected:before {
  content: "\e8d9";
}
.vc-material-tablet:before {
  content: "\e32f";
}
.vc-material-tablet_android:before {
  content: "\e330";
}
.vc-material-tablet_mac:before {
  content: "\e331";
}
.vc-material-tap_and_play:before {
  content: "\e62b";
}
.vc-material-text_fields:before {
  content: "\e262";
}
.vc-material-text_format:before {
  content: "\e165";
}
.vc-material-texture:before {
  content: "\e421";
}
.vc-material-thumb_down:before {
  content: "\e8db";
}
.vc-material-thumb_up:before {
  content: "\e8dc";
}
.vc-material-thumbs_up_down:before {
  content: "\e8dd";
}
.vc-material-timelapse:before {
  content: "\e422";
}
.vc-material-timeline:before {
  content: "\e922";
}
.vc-material-timer:before {
  content: "\e425";
}
.vc-material-timer_10:before {
  content: "\e423";
}
.vc-material-timer_3:before {
  content: "\e424";
}
.vc-material-timer_off:before {
  content: "\e426";
}
.vc-material-title:before {
  content: "\e264";
}
.vc-material-toc:before {
  content: "\e8de";
}
.vc-material-today:before {
  content: "\e8df";
}
.vc-material-toll:before {
  content: "\e8e0";
}
.vc-material-tonality:before {
  content: "\e427";
}
.vc-material-touch_app:before {
  content: "\e913";
}
.vc-material-toys:before {
  content: "\e332";
}
.vc-material-track_changes:before {
  content: "\e8e1";
}
.vc-material-traffic:before {
  content: "\e565";
}
.vc-material-train:before {
  content: "\e570";
}
.vc-material-tram:before {
  content: "\e571";
}
.vc-material-transfer_within_a_station:before {
  content: "\e572";
}
.vc-material-transform:before {
  content: "\e428";
}
.vc-material-translate:before {
  content: "\e8e2";
}
.vc-material-trending_down:before {
  content: "\e8e3";
}
.vc-material-trending_flat:before {
  content: "\e8e4";
}
.vc-material-trending_up:before {
  content: "\e8e5";
}
.vc-material-tune:before {
  content: "\e429";
}
.vc-material-tv:before {
  content: "\e333";
}
.vc-material-unarchive:before {
  content: "\e169";
}
.vc-material-undo:before {
  content: "\e166";
}
.vc-material-unfold_less:before {
  content: "\e5d6";
}
.vc-material-unfold_more:before {
  content: "\e5d7";
}
.vc-material-update:before {
  content: "\e923";
}
.vc-material-usb:before {
  content: "\e1e0";
}
.vc-material-verified_user:before {
  content: "\e8e8";
}
.vc-material-vertical_align_bottom:before {
  content: "\e258";
}
.vc-material-vertical_align_center:before {
  content: "\e259";
}
.vc-material-vertical_align_top:before {
  content: "\e25a";
}
.vc-material-vibration:before {
  content: "\e62d";
}
.vc-material-video_call:before {
  content: "\e070";
}
.vc-material-video_label:before {
  content: "\e071";
}
.vc-material-video_library:before {
  content: "\e04a";
}
.vc-material-videocam:before {
  content: "\e04b";
}
.vc-material-videocam_off:before {
  content: "\e04c";
}
.vc-material-videogame_asset:before {
  content: "\e338";
}
.vc-material-view_agenda:before {
  content: "\e8e9";
}
.vc-material-view_array:before {
  content: "\e8ea";
}
.vc-material-view_carousel:before {
  content: "\e8eb";
}
.vc-material-view_column:before {
  content: "\e8ec";
}
.vc-material-view_comfy:before {
  content: "\e42a";
}
.vc-material-view_compact:before {
  content: "\e42b";
}
.vc-material-view_day:before {
  content: "\e8ed";
}
.vc-material-view_headline:before {
  content: "\e8ee";
}
.vc-material-view_list:before {
  content: "\e8ef";
}
.vc-material-view_module:before {
  content: "\e8f0";
}
.vc-material-view_quilt:before {
  content: "\e8f1";
}
.vc-material-view_stream:before {
  content: "\e8f2";
}
.vc-material-view_week:before {
  content: "\e8f3";
}
.vc-material-vignette:before {
  content: "\e435";
}
.vc-material-visibility_off:before {
  content: "\e8f5";
}
.vc-material-voice_chat:before {
  content: "\e62e";
}
.vc-material-voicemail:before {
  content: "\e0d9";
}
.vc-material-volume_down:before {
  content: "\e04d";
}
.vc-material-volume_mute:before {
  content: "\e04e";
}
.vc-material-volume_off:before {
  content: "\e04f";
}
.vc-material-volume_up:before {
  content: "\e050";
}
.vc-material-vpn_key:before {
  content: "\e0da";
}
.vc-material-vpn_lock:before {
  content: "\e62f";
}
.vc-material-wallpaper:before {
  content: "\e1bc";
}
.vc-material-watch:before {
  content: "\e334";
}
.vc-material-watch_later:before {
  content: "\e924";
}
.vc-material-wb_auto:before {
  content: "\e42c";
}
.vc-material-wb_incandescent:before {
  content: "\e42e";
}
.vc-material-wb_iridescent:before {
  content: "\e436";
}
.vc-material-wb_sunny:before {
  content: "\e430";
}
.vc-material-wc:before {
  content: "\e63d";
}
.vc-material-web:before {
  content: "\e051";
}
.vc-material-web_asset:before {
  content: "\e069";
}
.vc-material-weekend:before {
  content: "\e16b";
}
.vc-material-whatshot:before {
  content: "\e80e";
}
.vc-material-widgets:before {
  content: "\e1bd";
}
.vc-material-wifi:before {
  content: "\e63e";
}
.vc-material-wifi_lock:before {
  content: "\e1e1";
}
.vc-material-wifi_tethering:before {
  content: "\e1e2";
}
.vc-material-work:before {
  content: "\e8f9";
}
.vc-material-wrap_text:before {
  content: "\e25b";
}
.vc-material-youtube_searched_for:before {
  content: "\e8fa";
}
.vc-material-zoom_in:before {
  content: "\e8ff";
}
.vc-material-zoom_out:before {
  content: "\e901";
}
.vc-material-zoom_out_map:before {
  content: "\e56b";
}

@font-face{font-family:vc_openiconic;src:url(../../../themes/talos/lib/vc-open-iconic/fonts/vc_openiconic_54101537.eot);src:url(../../../themes/talos/lib/vc-open-iconic/fonts/vc_openiconic_54101537.eot#iefix) format('embedded-opentype'),url(../../../themes/talos/lib/vc-open-iconic/fonts/vc_openiconic_54101537.woff) format('woff'),url(../../../themes/talos/lib/vc-open-iconic/fonts/vc_openiconic_54101537.ttf) format('truetype'),url(../../../themes/talos/lib/vc-open-iconic/fonts/vc_openiconic_54101537-vc_openiconic.svg) format('svg');font-weight:400;font-style:normal}[class*=" vc-oi-"]:before,[class^=vc-oi-]:before{font-family:vc_openiconic;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:0;text-align:center;font-variant:normal;text-transform:none;line-height:inherit;margin-left:0}.vc-oi-dial:before{content:'\e800'}.vc-oi-pilcrow:before{content:'\e801'}.vc-oi-at:before{content:'\e802'}.vc-oi-hash:before{content:'\e803'}.vc-oi-key-inv:before{content:'\e804'}.vc-oi-key:before{content:'\e805'}.vc-oi-chart-pie-alt:before{content:'\e806'}.vc-oi-chart-pie:before{content:'\e807'}.vc-oi-chart-bar:before{content:'\e808'}.vc-oi-umbrella:before{content:'\e809'}.vc-oi-moon-inv:before{content:'\e80a'}.vc-oi-mobile:before{content:'\e80b'}.vc-oi-cd:before{content:'\e80c'}.vc-oi-split:before{content:'\e80d'}.vc-oi-exchange:before{content:'\e80e'}.vc-oi-block:before{content:'\e80f'}.vc-oi-resize-full:before{content:'\e810'}.vc-oi-article-alt:before{content:'\e811'}.vc-oi-article:before{content:'\e812'}.vc-oi-pencil-alt:before{content:'\e813'}.vc-oi-undo:before{content:'\e814'}.vc-oi-attach:before{content:'\e815'}.vc-oi-link:before{content:'\e816'}.vc-oi-search:before{content:'\e817'}.vc-oi-mail:before{content:'\e818'}.vc-oi-heart:before{content:'\e819'}.vc-oi-comment:before{content:'\e81a'}.vc-oi-resize-full-alt:before{content:'\e81b'}.vc-oi-lock:before{content:'\e81c'}.vc-oi-book-open:before{content:'\e81d'}.vc-oi-arrow-curved:before{content:'\e81e'}.vc-oi-equalizer:before{content:'\e81f'}.vc-oi-heart-empty:before{content:'\e820'}.vc-oi-lock-empty:before{content:'\e821'}.vc-oi-comment-inv:before{content:'\e822'}.vc-oi-folder:before{content:'\e823'}.vc-oi-resize-small:before{content:'\e824'}.vc-oi-play:before{content:'\e825'}.vc-oi-cursor:before{content:'\e826'}.vc-oi-aperture:before{content:'\e827'}.vc-oi-play-circle2:before{content:'\e828'}.vc-oi-resize-small-alt:before{content:'\e829'}.vc-oi-folder-empty:before{content:'\e82a'}.vc-oi-comment-alt:before{content:'\e82b'}.vc-oi-lock-open:before{content:'\e82c'}.vc-oi-star:before{content:'\e82d'}.vc-oi-user:before{content:'\e82e'}.vc-oi-lock-open-empty:before{content:'\e82f'}.vc-oi-box:before{content:'\e830'}.vc-oi-resize-vertical:before{content:'\e831'}.vc-oi-stop:before{content:'\e832'}.vc-oi-aperture-alt:before{content:'\e833'}.vc-oi-book:before{content:'\e834'}.vc-oi-steering-wheel:before{content:'\e835'}.vc-oi-pause:before{content:'\e836'}.vc-oi-to-start:before{content:'\e837'}.vc-oi-move:before{content:'\e838'}.vc-oi-resize-horizontal:before{content:'\e839'}.vc-oi-rss-alt:before{content:'\e83a'}.vc-oi-comment-alt2:before{content:'\e83b'}.vc-oi-rss:before{content:'\e83c'}.vc-oi-comment-inv-alt:before{content:'\e83d'}.vc-oi-comment-inv-alt2:before{content:'\e83e'}.vc-oi-eye:before{content:'\e83f'}.vc-oi-pin:before{content:'\e840'}.vc-oi-video:before{content:'\e841'}.vc-oi-picture:before{content:'\e842'}.vc-oi-camera:before{content:'\e843'}.vc-oi-tag:before{content:'\e844'}.vc-oi-chat:before{content:'\e845'}.vc-oi-cog:before{content:'\e846'}.vc-oi-popup:before{content:'\e847'}.vc-oi-to-end:before{content:'\e848'}.vc-oi-book-alt:before{content:'\e849'}.vc-oi-brush:before{content:'\e84a'}.vc-oi-eject:before{content:'\e84b'}.vc-oi-down:before{content:'\e84c'}.vc-oi-wrench:before{content:'\e84d'}.vc-oi-chat-inv:before{content:'\e84e'}.vc-oi-tag-empty:before{content:'\e84f'}.vc-oi-ok:before{content:'\e850'}.vc-oi-ok-circle:before{content:'\e851'}.vc-oi-download:before{content:'\e852'}.vc-oi-location:before{content:'\e853'}.vc-oi-share:before{content:'\e854'}.vc-oi-left:before{content:'\e855'}.vc-oi-target:before{content:'\e856'}.vc-oi-brush-alt:before{content:'\e857'}.vc-oi-cancel:before{content:'\e858'}.vc-oi-upload:before{content:'\e859'}.vc-oi-location-inv:before{content:'\e85a'}.vc-oi-calendar:before{content:'\e85b'}.vc-oi-right:before{content:'\e85c'}.vc-oi-signal:before{content:'\e85d'}.vc-oi-eyedropper:before{content:'\e85e'}.vc-oi-layers:before{content:'\e85f'}.vc-oi-award:before{content:'\e860'}.vc-oi-up:before{content:'\e861'}.vc-oi-calendar-inv:before{content:'\e862'}.vc-oi-location-alt:before{content:'\e863'}.vc-oi-download-cloud:before{content:'\e864'}.vc-oi-cancel-circle:before{content:'\e865'}.vc-oi-plus:before{content:'\e866'}.vc-oi-upload-cloud:before{content:'\e867'}.vc-oi-compass:before{content:'\e868'}.vc-oi-calendar-alt:before{content:'\e869'}.vc-oi-down-circle:before{content:'\e86a'}.vc-oi-award-empty:before{content:'\e86b'}.vc-oi-layers-alt:before{content:'\e86c'}.vc-oi-sun:before{content:'\e86d'}.vc-oi-list:before{content:'\e86e'}.vc-oi-left-circle:before{content:'\e86f'}.vc-oi-mic:before{content:'\e870'}.vc-oi-trash:before{content:'\e871'}.vc-oi-quote-left:before{content:'\e872'}.vc-oi-plus-circle:before{content:'\e873'}.vc-oi-minus:before{content:'\e874'}.vc-oi-quote-right:before{content:'\e875'}.vc-oi-trash-empty:before{content:'\e876'}.vc-oi-volume-off:before{content:'\e877'}.vc-oi-right-circle:before{content:'\e878'}.vc-oi-list-nested:before{content:'\e879'}.vc-oi-sun-inv:before{content:'\e87a'}.vc-oi-bat-empty:before{content:'\e87b'}.vc-oi-up-circle:before{content:'\e87c'}.vc-oi-volume-up:before{content:'\e87d'}.vc-oi-doc:before{content:'\e87e'}.vc-oi-quote-left-alt:before{content:'\e87f'}.vc-oi-minus-circle:before{content:'\e880'}.vc-oi-cloud:before{content:'\e881'}.vc-oi-rain:before{content:'\e882'}.vc-oi-bat-half:before{content:'\e883'}.vc-oi-cw:before{content:'\e884'}.vc-oi-headphones:before{content:'\e885'}.vc-oi-doc-inv:before{content:'\e886'}.vc-oi-quote-right-alt:before{content:'\e887'}.vc-oi-help:before{content:'\e888'}.vc-oi-info:before{content:'\e889'}.vc-oi-pencil:before{content:'\e88a'}.vc-oi-doc-alt:before{content:'\e88b'}.vc-oi-clock:before{content:'\e88c'}.vc-oi-loop:before{content:'\e88d'}.vc-oi-bat-full:before{content:'\e88e'}.vc-oi-flash:before{content:'\e88f'}.vc-oi-moon:before{content:'\e890'}.vc-oi-bat-charge:before{content:'\e891'}.vc-oi-loop-alt:before{content:'\e892'}.vc-oi-lamp:before{content:'\e893'}.vc-oi-doc-inv-alt:before{content:'\e894'}.vc-oi-pencil-neg:before{content:'\e895'}.vc-oi-home:before{content:'\e896'}body.royal_preloader {
    background: none;
    visibility: hidden;
}
#royal_preloader {
    visibility: visible;
    position: fixed;
	width:100%;
	height:100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    margin: 0;
    z-index: 9999999999;
}
#royal_preloader.royal_preloader_number:before,
#royal_preloader.royal_preloader_progress:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: -moz-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: -ms-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: -o-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
}
#royal_preloader.complete {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear 0.5s;
       -moz-transition: opacity 0.2s linear 0.5s;
        -ms-transition: opacity 0.2s linear 0.5s;
         -o-transition: opacity 0.2s linear 0.5s;
            transition: opacity 0.2s linear 0.5s;
}
#royal_preloader.royal_preloader_line {
    height: 2px;
    bottom: auto;
}

/* Number Mode */

#royal_preloader.royal_preloader_number .royal_preloader_percentage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    line-height: 100px;
    font-size: 20px;
    font-family: Impact, Arial;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}
#royal_preloader.royal_preloader_number .royal_preloader_percentage > div {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border: 4px solid transparent;
    border-left-color: #FFFFFF;
    border-radius: 50%;
    -webkit-animation: rotate 0.8s linear infinite;
       -moz-animation: rotate 0.8s linear infinite;
        -ms-animation: rotate 0.8s linear infinite;
         -o-animation: rotate 0.8s linear infinite;
            animation: rotate 0.8s linear infinite;
}

/* Line Mode */

#royal_preloader.royal_preloader_line .royal_preloader_loader {
    position: absolute;
    height: 100%;
    left: 0;
}
#royal_preloader.royal_preloader_line .royal_preloader_peg {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100px;
    opacity: 0.5;
}

/* Text Mode */

#royal_preloader.royal_preloader_text .royal_preloader_loader {
    color: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
	opacity:.2;
    left: 50%;
	font-family: 'Poppins', sans-serif;
	font-weight:700;
    height: 80px;
    line-height: 80px;
    margin: auto;
    letter-spacing: -4px;
    font-size: 55px;
    white-space: nowrap;
}
#royal_preloader.royal_preloader_text .royal_preloader_loader div {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0%;
    background-color: #000000;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

/* Scale Text Mode */

#royal_preloader.royal_preloader_scale_text .royal_preloader_loader {
    color: #FFFFFF;
    position: absolute;
	font-family: 'Poppins', sans-serif;
	font-weight:700;
    top: 0;
    bottom: 0;
    left: 50%;
    height: 32px;
    line-height: 32px;
    margin: auto;
    letter-spacing: 1px;
    font-size: 32px;
    white-space: nowrap;
}

#royal_preloader.royal_preloader_scale_text .royal_preloader_loader span {
    display: inline-block;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
}

#royal_preloader.royal_preloader_scale_text .royal_preloader_loader span.loaded {
    -webkit-animation: scale 0.2s forwards;
       -moz-animation: scale 0.2s forwards;
        -ms-animation: scale 0.2s forwards;
         -o-animation: scale 0.2s forwards;
            animation: scale 0.2s forwards;
}

/* Logo Mode */

#royal_preloader.royal_preloader_logo .royal_preloader_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0px;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 5px;
}
#royal_preloader.royal_preloader_logo .royal_preloader_loader div {
    position: absolute;
    bottom: 0%;
    left: 0px;
    right: 0px;
    height: 100%;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
#royal_preloader.royal_preloader_logo .royal_preloader_percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    line-height: 40px;
    margin: 0px;
    color: #072E77;
    text-align: center;
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
}

/* Progress Mode */

#royal_preloader.royal_preloader_progress .royal_preloader_percentage {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #AAAAAA;
    color: rgba(255, 255, 255, 0.1);
    font-family: Impact, Arial;
    font-size: 20px;
    text-align: center;
}
#royal_preloader.royal_preloader_progress .royal_preloader_loader {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 60%;
    height: 2px;
    margin: -10px auto auto auto;
    background-color: rgba(0, 0, 0, 0.1);
}
#royal_preloader.royal_preloader_progress .royal_preloader_meter {
    width: 0;
    height: 100%;
    margin: auto;
    padding: 0;
    background-color: #C76363;
}


@-webkit-keyframes rotate {
    0% { -webkit-transform: rotate(0);}
    100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes rotate {
    0% { -moz-transform: rotate(0); }
    100% { -moz-transform: rotate(360deg); }
}
@-ms-keyframes rotate {
    0% { -ms-transform: rotate(0); }
    100% { -ms-transform: rotate(360deg); }
}
@-o-keyframes rotate {
    0% { -o-transform: rotate(0); }
    100% { -o-transform: rotate(360deg); }
}
@keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes scale {
    0% { -webkit-transform: scale(0); opacity: 0;}
    50% { -webkit-transform: scale(2);  opacity: 0.5;}
    100% { -webkit-transform: scale(1);  opacity: 1;}
}
@-moz-keyframes scale {
    0% { -moz-transform: scale(0); opacity: 0;}
    50% { -moz-transform: scale(2); opacity: 0.5;}
    100% { -moz-transform: scale(1); opacity: 1;}
}
@-ms-keyframes scale {
    0% { -ms-transform: scale(0); opacity: 0;}
    50% { -ms-transform: scale(2); opacity: 0.5;}
    100% { -ms-transform: scale(1); opacity: 1;}
}
@-o-keyframes scale {
    0% { -o-transform: scale(0); opacity: 0;}
    50% { -o-transform: scale(2); opacity: 0;.5}
    100% { -o-transform: scale(1); opacity: 1;}
}
@keyframes scale {
    0% { transform: scale(0); opacity: 0;}
    50% { transform: scale(2); opacity: 0.5;}
    100% { transform: scale(1); opacity: 1;}
}
/*
Theme Name: Talos
Theme URI: http://demo.oceanthemes.net/talos-preview/
Author: OceanThemes
Author URI: http://oceanthemes.net/
Description: Talos is a Modern and Creative premium WordPress Theme . Design Theme is made in a beautiful style. It is suitable for Personal Portfolio, Creative Agency, Designer Portfolio, Illustrator Portfolio, Photographer Portfolio and more.Theme has a universal design, it thought every detail and animation effect. Its just as easy to customize to fit your needs, replace images and texts.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: talos

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Table of Content
==================================================
  #Reset
  #Navigation
  #Primary
  #Home
  #About
  #Quotes
  #Team
  #Sep
  #Sep 2
  #Services
  #Counter
  #Work
  #Single Projects
  #Blog
  #Contact
  #Google map
  #Tooltip
  #footer
  #Media Queries
  #Post */

/* #Reset */
.wp-caption-text{}
.gallery-caption{}
.bypostauthor{}
.wp-caption {
  max-width: 100%;
}
img.aligncenter {
  margin-left: auto;
  margin-right: auto !important;
  display: block;
  clear: both;
  margin-top: 5px;
  width: auto !important;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  clear: both;
}
img.alignleft {
  margin: 5px 20px 20px 0;
  float: left;
  width: auto !important;
}
.alignleft {
  margin: 5px 10px 20px 0;
  float: left;
}
img.alignright {
  margin: 5px 0 20px 20px;
  float: right;
  width: auto !important;
}
.alignright {
  margin: 5px 0 20px 20px;
  float: right;
}
.transparent {
  z-index: 1;
  display: block;
  padding: 100px 0;
  position: relative;
}
.sticky .post {
  padding: 20px;
  background: #eee;
}
#main_content .sticky .post h2 {
  font-weight: bold;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
pre,
img {
  max-width: 100%;
}
.textwidget img {
  height: auto;
  margin: 10px 0;
}
.btn {
  color: #fff;
}
.btn-default {
  color: inherit;
}
.page-check h2,.page-check h1,.page-check h3,.page-check h4,.page-check h5,.page-check h6{
	margin: 30px 0;
	text-align: left;
	letter-spacing: 2px;
}
blockquote{
	font-style: italic;
	padding-left: 35px;
}
.page-check img{
	margin-top: 15px;
	margin-bottom: 15px;
}
ol li{
	line-height: 28px;
}
.widget_calendar table,
.widget select {
  width: 100%;
}
.widget select {
  padding: 3px 5px;
}
.widget_calendar table td,
.widget_calendar table th {
  padding: 9px 6px;
  text-align: center;
  border: 1px solid #ddd;
}
.rsswidget {
  color: #fff;
}
.recentcomments > a {
  font-style: italic;
}
.attachment-post-thumbnail {
  height: auto;
}
.widget ul {
  list-style: none;
}
.widget ul ul {
  padding-left: 20px;
  text-align: left;
}
.widget_nav_menu ul {
  padding-left: 0;
  text-align: left;
}
.widget li {
  line-height: 0;
}
.widget_sensei_course_categories li {
  line-height: inherit;
}

body {
  background: #f2f2f2;
  font-family: 'Open Sans';
  font-weight:300;
  font-size: 15px;
  line-height:22px;
  color:#323232;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  -webkit-text-size-adjust: 100%;
}




/* #Navigation
================================================== */

#menu-wrap{
    position: fixed;
	padding-bottom:10px;
	width:100%;
	z-index:5000;
	top:0;
	left:0;
}

#menu-wraps{
    position: absolute;
  padding-bottom:10px;
  width:100%;
  z-index:5000;
  top:0;
  left:0;
}
#menu-wrap .container .columns,#menu-wraps .container .columns  { 
	margin-top: 10px;
	margin-bottom: 10px;
}
.menu-back{
	background: rgba(33,33,33,0);
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}


.cbp-af-header {
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink {
	background: rgba(33,33,33,.93);
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .logo{
	/**/
	top:32px;
	background-size:86px 16px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .logo img{
  width:86px;
  height:16px;
}

.cbp-af-header.cbp-af-header-shrink ul.slimmenu {
	margin-top:1px;
	margin-bottom:0;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li:first-child {
	background:none;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li ul li:first-child { 
	background:none; 
}
ul.slimmenu li ul li a {
    color: #000;
}
ul.slimmenu li ul li a:hover {
}
ul.slimmenu li ul li { 
	background:none;
	padding-left:0; }
	
ul.slimmenu li ul {
	background:#212121;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.logo{
	position:absolute;
	/*width:134px;
	height:25px;*/
	z-index:10000;
	top:50px;
	background-size:134px 25px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.logo img{
  width:134px;
  height:25px;
}



.menu-collapser {
    position: relative;
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    padding: 0 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.collapse-button {
    position: absolute;
    right: 8px;
    top: 60%;
    width: 40px;
    background-image: linear-gradient(to bottom, #151515, #040404);
    background-repeat: repeat-x;
    border-style: solid;
    border-width: 1px;
    color: #000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.075);
    padding: 7px 10px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    font-size: 14px;
    text-align: center;

    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
.collapse-button:hover, .collapse-button:focus {
    background-image: none;
    background-color: #040404;
    color: #FFF;
}
.collapse-button .icon-bar {
    background-color: #fff;
    border-radius: 1px 1px 1px 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    display: block;
    height: 2px;
    width: 18px;
    margin: 2px 0;
}

ul.slimmenu {
	padding-top:10px;
	padding-right:10px;
	text-align:right;
	margin-top:23px;
	margin-bottom:20px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
ul.slimmenu li {
    position: relative;
    display: inline-block;
	background-size:15px 10px;
	padding-left:20px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
ul.slimmenu > li a:after { 
  font-family: "FontAwesome";
  content: "\f111";
  right: -10px;
  font-size: 3px;
  color: #fff;
  position: absolute;
}
ul.slimmenu > li:last-child a:after{
  content: "";
}
ul.slimmenu > li:first-child { border-left: 0 }
ul.slimmenu > li:last-child { margin-right: 0 }
ul.slimmenu li a {
    display: block;
    color: #fff;
    padding: 10px 0px;
	cursor:pointer;
    margin: 0px 12px;
	font-family: 'Open Sans', sans-serif;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
    border-bottom:1px solid rgba(0,0,0,0);
    font-size: 11px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
ul.slimmenu li a:hover {
    text-decoration: none;
}
ul.slimmenu li {
}
ul.slimmenu li:first-child {
	background:none;
}

ul.slimmenu li .sub-collapser {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 100%;
    z-index: 999;
    cursor: pointer;
}
ul.slimmenu li .sub-collapser:before {
	display:none;
}
ul.slimmenu li .sub-collapser > i {
	display:none;
}
ul.slimmenu li ul {
    margin: 0;
    list-style-type: none;
}
ul.slimmenu li ul a{
    font-size:10px;
}
ul.slimmenu li ul li:first-child { 
	background:none; }
ul.slimmenu li ul li {
	background:none;
	padding-left:0; }
ul.slimmenu li > ul {
    display: none;
    position: absolute;
	text-align:left;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 140%;
}
ul.slimmenu li > ul > li ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 999;
    width: 100%;
}
ul.slimmenu.collapsed {
	padding:0;
	margin:0;
}
ul.slimmenu.collapsed li {
    display: block;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
ul.slimmenu.collapsed li a {
    display: block;
    border-bottom: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
ul.slimmenu.collapsed li .sub-collapser {
    height: 40px;
}
ul.slimmenu.collapsed li > ul {
    display: none;
    position: static;
}



/* #Primary
================================================== */ 

.section{
    position:relative;
	width:100%;
}
.full-height,.fullheight{
	height:100vh;
}
.padding-top-page{
  padding-top: 180px;
}
.padding-top-bottom{
	padding-top:120px;
	padding-bottom:120px;
}
.padding-top{
	padding-top:120px;
}
.padding-bottom{
	padding-bottom:120px;
}
.padding-top-bottom-small{
	padding-top:70px;
	padding-bottom:70px;
}
.padding-top-small{
	padding-top:70px;
}
.padding-bottom-small{
	padding-bottom:70px;
}
.padding-bottom-30{
  padding-bottom: 30px;
}
.back-dark{
	background-color:#212121;
}
.back-dark3{
	background-color:#303030;
}
.back-dark2{
	background-color:#181818;
}
.back-dark1{
	background-color:#060606;
}
.back-black{
	background-color:#000000;
}
.back-white{
	background-color:#ffffff;
}
.back-gray{
	background-color:#f9f9f9;
}

.title-text {
  position:relative;
	width:100%;
	padding-bottom:50px;
}
.title-text.page-full-width{
  padding-bottom: 0px;
}
.title-text.left p{
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:600;
	font-size: 13px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#000;
}
.title-text.left.text-light p{
  color: #fff;
}
.title-text.left h3{
	text-align:left;
	padding-top:40px;
	width:100%;
	max-width:580px;
}
.title-text.left.blog-page h3{
  padding-top: 0px;
}
.title-text.left p b{
	padding-left:80px;
  position: relative;
}
.title-text.left p b:before {
  content:'';
  position:absolute;
  width:40px;
  height:1px;
  top:9px;
  left:18px;
  background-color:#646464;
} 

.title-text-app{
  position: relative;
  width: 100%;
  margin-top: 80px;
  padding-bottom: 30px;
}
.title-text-app .icon {
    position: relative;
    display: block;
    margin-bottom: 40px;
}
.title-text-app .icon i{
  font-size: 49px;  
}
.title-text-app.left p {
    position: relative;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #757575;
}
.title-text-app.left p b {
    position: relative;
    padding-left: 60px;
    color: #757575;
}
.title-text-app.left p b:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    top: 9px;
    left: 18px;
    background-color: #757575;
}
.title-text-app.left h3{
  text-align: left;
  margin-top: 15px;
}
.shop-page h1{
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  color: #fff;
}
.shop-page p{
      font-size: 17px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}
.title-text.top-page-title p {
    position: relative;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #fff;
}
.title-text.top-page-title h3 {
    text-align: left;
    padding-top: 40px;
    width: 100%;
    max-width: 580px;
    color: #fff;
}
.title-text.top-page-title p span {
    position: relative;
    padding-left: 80px;
}
.title-text.top-page-title p span:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    top: 9px;
    left: 16px;
    background-color: #fff;
}
 
 
 

/* #Home
================================================== */ 

.home-carousel-wrap{ 
	position:relative;
	width:100%;
	height:100vh;
	overflow:hidden;
	z-index:2;
} 
.home-carousel-wrap.half-height{
  height:70vh;
}
#sync1 .item {
	position: relative; 
    width:100%;
    display: block;
	height:100vh;
	background-size:cover;
	background-position:center center;
} 
#sync1 .item.half-height{
  height:70vh;
}

#sync2 {
	position:absolute;
	width:42px;
	top:50%;
	margin-top:120px;
	left:50%;
	margin-left:-21px;
}
#sync2 .item{
	height:15px;
	margin-left:5px;
	margin-right:5px;
	cursor:pointer;
	z-index:200;
	cursor:pointer;
	width:2px;
	background:#fff;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#sync2 .item:hover{
	height:25px;
}
#sync2 .synced .item {
	height:25px;
}
 
.home-mask{ 
	position:absolute;
	width:100%;
	height:100%;
	overflow:hidden;
	z-index:2;
	top:0;
	left:0;
} 
.home-text{
	position:absolute;
	width:100%;
	top:50%;
	left:0;
	z-index:10;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.home-text h1{
	font-size: 70px;
	line-height:75px;
	color:#f8f8f8;
	font-weight:700;
}
.home-text.home-archi h1{
  font-size: 55px;
  line-height: 60px;
  color: #f8f8f8;
  font-weight: 300;
}
.home-text.home-text-barber h1{
  position:relative;
  font-size: 100px;
  line-height:120px;
  font-weight:700;
  color: rgba(0,0,0,0.6);
  text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.home-text.home-text-barber h1:hover{
  letter-spacing:4px;
}
.home-text h1.text-background{
  position:relative;
  font-size: 120px;
  line-height:140px;
  font-weight:700;
  color: #f9f9f9;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(transparent, transparent),
             url(https://gposers.com/wp-content/themes/talos/images/home-1.jpg) repeat;
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  background-position:center center;
  background-size:cover;
  text-shadow: 2px 8px 6px rgba(0,0,0,0.1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.home-text h1.text-background:hover{
  letter-spacing:4px;
}
.home-text p.text-background{
  position: relative;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #f9f9f9;
}
.home-text.home-medical h1{
  font-size: 67px;
  line-height:75px;
  color:#212121;
  font-weight:700;
  text-align:left;
}
.home-text.home-medical p{
  text-align: left;
}
.home-text.home-design h1{
  font-size: 62px;
  line-height:76px;
  color:#212121;
  font-weight:700;
  text-align:left;
}
.home-text.home-design h1 strong{
  position:relative;
  font-size: 36px;
  line-height:76px;
}
.home-text.home-design h1 strong:after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image:url(../../../themes/talos/images/freeh.svg);
  background-repeat:no-repeat;
  background-position:center center;
  background-size:100% 100%;
}
.app-home-text h1{
  font-size: 54px;
  line-height:68px;
  color:#f8f8f8;
  font-weight:700;
  letter-spacing:2px;
  text-align:left;
}
.app-home-text p{
  color:#fff;
  text-align:left;
  width:100%;
  max-width:500px;
  font-weight:600;
  letter-spacing:1px;
  margin-top:20px;
  font-size:14px;
  line-height:22px;
}

.link-down{
	position:absolute;
	width:34px;
	height:48px;
	bottom:50px;
	left:50%;
	margin-left:-17px;
	background-image:url(../../../themes/talos/images/scrolldown.gif);
	background-size:34px 48px;
	background-position:center center;
	z-index:10;
}

.link-down.link-down-home-video{
  position:absolute;
  width:30px;
  height:36px;
  bottom:40px;
  left:50%;
  margin-left:-15px;
  background-image:url(../../../themes/talos/images/down-arrow.png);
  background-size:10px 36px;
  background-position:center center;
  background-repeat:no-repeat;
  z-index:10;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.link-down.link-down-home-video:hover{
  bottom:35px;
}

.link-down.link-down-home-medical{
  position: relative;
  width: 8px;
  height: 27px;
  float: left;
  background-image:url(../../../themes/talos/images/down-arrow-2.png);
  background-size: 8px 27px;
  background-position: center center;
  z-index: 10;
  bottom: 0px;
  left: 20px;
}
 
#shop-grid{
  position:relative;
  text-align:center;
  margin:0 auto;
  width:100%;
}
#shop-grid:after {
  content: '';
  display: block;
  clear: both;
}

.shop-item.portfolio-box-1{
  position:relative;
  float:left;
  width:50%;
  display:inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow:hidden;
  /*margin-left:-1px;*/
  -webkit-transform: translate3d(1px,0,0);
  transform: translate3d(1px,0,0);
}
.shop-item.portfolio-box-1.col-3{
  width: 33.33%;
}
.shop-item.portfolio-box-1.col-4{
  width: 25%;
}
.portfolio-box-1 img{
  width:100%;
  display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.shop-item.portfolio-box-1:hover img{
  -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.shop-item.portfolio-box-1 .mask{
  position:absolute;
  top:0;
  left:0;
  border:2px solid #313131;
  width:calc(100% - 36px);
  height:calc(100% - 36px);
  background-color:rgba(255,255,255,.8);
  z-index:2;
  opacity:0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.shop-item.portfolio-box-1:hover .mask{
  opacity:1;
  border:18px double #313131;
}
.shop-item.portfolio-box-1 .product-det{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  z-index:5;
  opacity:0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.shop-item.portfolio-box-1:hover .product-det{
  opacity:1;
}
.shop-item.portfolio-box-1 .product-det h3{
  text-align:center;
  padding-bottom:20px;
  font-size: 38px; 
  line-height: 38px;
  color: #414141;
  position: static;
}
.shop-item.portfolio-box-1 .product-det h3 span{
    text-align: center;
    padding-bottom: 20px;
    font-size: 38px;
    line-height: 38px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}
.shop-item.portfolio-box-1 .product-det h3 del span.amount,.shop-item.portfolio-box-1 .product-det h3 del span.amount span{
  font-style: italic;
  font-size: 20px; 
  letter-spacing:3px;
  line-height: 42px;
    text-decoration: line-through;
}
.shop-item.portfolio-box-1 .product-det h6{
  text-align:center;
  letter-spacing:3px;
  font-weight:600;
  padding-bottom:20px;
}
.shop-item.portfolio-box-1 .product-det .product-links{
  position:relative;
  width:100%;
  margin:0 auto;
  text-align:center;
}
.shop-item.portfolio-box-1 .product-det .product-links a{
  display:inline-block;
  padding:12px 0;
  width:90px;
  font-family: 'Poppins', sans-serif;
  text-transform:uppercase;
  font-size: 11px;
  line-height: 11px;
  letter-spacing:2px;
  font-weight:400;
  margin:0 auto;
  text-align:center;
  color:#fff;
  background-color:#212121;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
  border: 1px solid #212121;
}



#portfolio-filter.portfolio-filter {
  position:absolute;
  z-index:40;
  top:30px;
  left:80px;
  margin-bottom:25px;
  background-color: transparent;
  box-shadow: none;
}
#portfolio-filter.shop #filter.project-filter {
  position:relative;
  width:100%;
}
#portfolio-filter.shop #filter.project-filter li {
  display: block;
  text-align: left;
}
#portfolio-filter.shop #filter.project-filter:after {
  content: '';
  display: block;
  clear: both;
}
#portfolio-filter.shop #filter.project-filter li a {
  position: relative;
  display: inline-block;
  letter-spacing:1px;
  font-weight:400;
  padding:5px 25px;
  margin-right:10px;
  margin-bottom:5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px; 
  text-align: center;
  outline: none;
  color: #fff;
  border-radius:0;
  background-color:#212121;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.shop-det-wrap{ 
  position:relative;
  width:100%;
}
.shop-det-wrap h5{ 
  text-align:center;
  padding-bottom:20px;
}
.shop-det-wrap p{ 
  text-align:center;
}
.shop-det-wrap .shop-det-icon{ 
  position:relative;
  text-align:center;
  margin:0 auto;
  width: 48px;
  height: 48px;
  margin-bottom:20px;
  z-index:3;
}

/* #About
================================================== */

.about-wrap{ 
	position:relative;
	width:100%;
}
.about-wrap h5{ 
	text-align:left;
	padding-left:100px;
	padding-bottom:20px;
}
.about-wrap p{ 
	text-align:left;
	padding-left:100px;
}
.about-wrap .about-icon{ 
	position:absolute;
	top:0;
	left:0;
	width: 64px;
	height: 64px;
	z-index:3;
}
.about-wrap.align-center{ 
  position:relative;
  width:100%;
  text-align: center;
}
.about-wrap.align-center h5{ 
  text-align:center;
  padding-left:0;
  padding-bottom:20px;
}
.about-wrap.align-center p{ 
  text-align:center;
  padding-left:0;
}
.about-wrap.align-center .about-icon{ 
  text-align: center;
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  z-index: 3;
  padding-bottom: 20px;
}
.about-wrap .about-icon i{
  font-size: 48px;
  line-height: 1;
}
.about-wrap .about-icon.normal i{
  font-size: 32px;
  line-height: 1;
}
.about-wrap .about-icon img{
  display: block;
  width:50px;
  height:auto;
}
svg * {
  fill: none;
  stroke: currentColor;
}

/* #Quotes
================================================== */ 

#owl-sep-1 {
	position:relative;
	width:100%;
	max-width: 1320px;
	margin:0 auto;
	display:block;
}
#owl-sep-1 .item{
	position:relative;
	width:100%;
	margin-left:0 auto;
	z-index:2;
	display:block;
}
.quote{
	position:relative;
	padding-left:96px;
	margin:0 auto;
	overflow:hidden;
	display:block;
	padding-bottom:60px;
	background-image:url(../../../themes/talos/images/qu.png);
	background-repeat:no-repeat;
	background-position: 0 10px;
	background-size: 18px 11px;
}
.quote.small{
  padding-bottom: 20px;
}
.quote h4{
	text-align:left;
	font-style: italic;
	color:#c8c8c8;
	font-weight:300;
	width:100%;
	max-width:830px;
}
.quote h4.small{
  font-size: 20px;
  line-height: 28px;
}
.quote:before {
	content:'';
	position:absolute;
	width:40px;
	height:1px;
	top:14px;
	left:34px;
	background-color:#f9f9f9;
} 
#owl-sep-1.owl-theme .owl-controls{
	position:absolute;
	left:25px;
	text-align: left;
	bottom:0;
	z-index:100;
	width:100%;
	z-index:20;
}
#owl-sep-1.owl-theme .owl-controls .owl-page span{
	background:#fff;
	border-radius:0;
	width:2px;
	height:12px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#owl-sep-1.owl-theme .owl-controls .owl-page span:hover{
	height:15px;
}
#owl-sep-1.owl-theme .owl-controls .owl-page.active span {
	height:22px;
}

.owl-sep-2 {
  position:relative;
  width:100%;
  max-width:900px;
  display:block;
}
.owl-sep-2 .item{
  position:relative;
  width:100%;
  margin-left:0 auto;
  z-index:2;
  display:block;
}
.owl-sep-2 .quote{
  position:relative;
  padding-left:40px;
  margin:0 auto;
  overflow:hidden;
  display:block;
  padding-bottom:50px;
  background-image:url(../../../themes/talos/images/qu.png);
  background-repeat:no-repeat;
  background-position: 0 0;
  background-size: 18px 11px;
}
.owl-sep-2 .quote:before{
  content:none;
}
.owl-sep-2 .quote h4{
  text-align:left;
  font-style: italic;
  font-size: 22px; 
  line-height: 34px;
  color:#fff;
  letter-spacing:2px;
  font-weight:300;
  width:100%;
}
.owl-sep-2.owl-theme .owl-controls{
  position:absolute;
  left:0;
  text-align: left;
  bottom:0;
  z-index:100;
  width:100%;
  z-index:20;
}
.owl-sep-2.owl-theme .owl-controls .owl-page span{
  background:#f9f9f9;
  border-radius:50%;
  width:5px;
  height:5px;
  margin-right:10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.owl-sep-2.owl-theme .owl-controls .owl-page span:hover{
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}
.owl-sep-2.owl-theme .owl-controls .owl-page.active span {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

/* #Team
================================================== */

.team-wrap{ 
	position:relative;
	width:100%;
}
.team-wrap h6{ 
	text-align:left;
	padding-bottom:20px;
}
.team-wrap p{ 
	text-align:left;
	padding-bottom:25px;
}
.team-wrap img{ 
	width:100%;
	display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.team-wrap.fst img:hover{
    transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
}
.team-wrap.snd img:hover{
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
}
.team-wrap.trd img:hover{
    transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
}

.social-team{ 
	position:relative;
	display:block;
	padding-bottom:30px;
}
.list-social-team li {
    padding:0; 
	margin:0;
    list-style: none;
	text-align:left; 
	width:20px;
	height:20px;
    display: inline-block;
	cursor:pointer;
	border-radius:50%;
	margin-right:4px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.list-social-team li.icon-team a {
	font-family: 'FontAwesome';
	font-size: 14px;
	line-height:20px;
	text-align:left; 
	width:20px;
	color:#212121;
	opacity:1;
	margin:0;
	padding:0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.text-light .list-social-team li.icon-team a{
  color: #fff;
}
.list-social-team li:hover{
}
.list-social-team li:hover.icon-team a{
}



/* #Sep
================================================== */

.parallax-1 {
	background: url(https://gposers.com/wp-content/themes/talos/images/parallax-1.jpg) repeat fixed;
	background-size: cover;
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0;
	bottom: 0;
	z-index: 1;
	width:100%;  
}
.parallax-comingsoon{
  background-image: url(../../../themes/talos/images/cmsoon.jpg);
  background-size: cover;
}
@media only screen and (min-width: 1930px) { .parallax-1 { background-size: cover; } }
 @media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
	.parallax-1 { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
@media only screen and (max-width: 1400px) {
	.parallax-1 { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}

.dark-over-sep{ 
	position:absolute;
	background:#212121;
	opacity:.5;
	width:100%;
	height:100%;
	overflow:hidden;
	z-index:0;
	top:0;
	left:0;
} 
 
/* #Counter
================================================== */

.counter-wrap{ 
	position:relative;
	width:100%;
} 
.counter-wrap.custom-font .counter-numb{
  font-family: 'Parisienne', cursive;
}
.z-bigger{ 
	z-index:20;
} 
.z-low{ 
	z-index:1;
} 
.counter-wrap h6{
	text-align:center;
	color:#fff;
} 
.counter-wrap p{
	text-align:center;
	font-size:50px;
	line-height:50px;
	padding-bottom:12px;
}
 
/* #Work
================================================== */

.work-wrap{ 
	position:relative;
	width:100%;
}
.work-wrap img{ 
	width:100%;
	display:block;
}

.translate-left{
    position:relative;
	padding:30px;
	padding-bottom:45px;
	margin-top:70px;
	display:block;
	background:rgba(255,255,255,.85);
	z-index:3;
	-webkit-transform: translateX(-120px);
	-moz-transform: translateX(-120px);
	-ms-transform: translateX(-120px);
	-o-transform: translateX(-120px);
	transform: translateX(-120px);
}
.description-title-text {
    position:relative;
	width:100%;
	padding-bottom:30px;
}
.description-title-text.left p{
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:600;
	font-size: 13px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#000;
}
.description-title-text p i:nth-last-child(2){
  display: none;
}
.description-title-text.left p span{
	position:relative;
	padding-left:80px;
}
.description-title-text.left p span:before {
	content:'';
	position:absolute;
	width:40px;
	height:1px;
	top:10px;
	left:16px;
	background-color:#646464;
} 
.des-programs-author {
    position:relative;
	width:100%;
}
.des-programs-author.left h6 p{
	text-align:left;
	width:100%;
	font-weight:300;
	color:#b2b2b2;
	font-style: italic;
  padding: 0px;
}
.des-programs-author.left p{
	padding-top:5px;
	font-family: 'Poppins', sans-serif;
	font-size:14px;
	text-align:left;
	width:100%;
	font-weight:500;
	color:#7b7b7b;
	padding-bottom:30px;
}
.des-programs-author.left p span{
	font-weight:300;
}
.des-programs-author.left .link{
	position:relative;
	overflow:hidden;
	display:block;
	font-weight:300;
	font-family: 'Poppins', sans-serif;
	font-size:13px;
	line-height:13px;
	letter-spacing:2px;
	text-align:left;
	padding-bottom:7px;
	float:left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.des-programs-author.left .link:hover{
	color:#b2b2b2;
}
.des-programs-author.left .link:before {
	content:'';
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:-100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
} 
.des-programs-author.left .link:hover:before {
	left:-2px;
}


.translate-right{
    position:relative;
	padding:30px;
	padding-bottom:45px;
	margin-top:70px;
	display:block;
	background:rgba(255,255,255,.85);
	z-index:20;
	-webkit-transform: translateX(120px);
	-moz-transform: translateX(120px);
	-ms-transform: translateX(120px);
	-o-transform: translateX(120px);
	transform: translateX(120px);
}
.description-title-text.right p{
	position:relative;
	text-align:right;
	font-family: 'Poppins', sans-serif;
	font-weight:600;
	font-size: 13px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#000;
}
.description-title-text.right p span{
	position:relative;
	padding-left:80px;
}
.description-title-text.right p span:before {
	content:'';
	position:absolute;
	width:40px;
	height:1px;
	top:10px;
	left:16px;
	background-color:#646464;
} 
.des-programs-author {
    position:relative;
	width:100%;
}
.des-programs-author.right h6 p{
	text-align:right;
	width:100%;
	font-weight:300;
	color:#b2b2b2;
	font-style: italic;
  padding: 0;
}
.des-programs-author.right p{
	padding-top:5px;
	font-family: 'Poppins', sans-serif;
	font-size:14px;
	text-align:right;
	width:100%;
	font-weight:500;
	color:#7b7b7b;
	padding-bottom:30px;
}
.des-programs-author.right p span{
	font-weight:300;
}
.des-programs-author.right .link{
	position:relative;
	overflow:hidden;
	display:block;
	font-weight:300;
	font-family: 'Poppins', sans-serif;
	font-size:13px;
	line-height:13px;
	letter-spacing:2px;
	text-align:right;
	padding-bottom:7px;
	float:right;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.des-programs-author.right .link:hover{
	color:#b2b2b2;
}
.des-programs-author.right .link:before {
	content:'';
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:-100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
} 
.des-programs-author.right .link:hover:before {
	left:-2px;
} 
.container .columns.float-right {
	float:right;
}


.portfolio-bottom-link{
	position:relative;
  z-index: 21;
	overflow:hidden;
	display:block;
	font-weight:400;
	font-family: 'Poppins', sans-serif;
	font-size:18px;
	line-height:30px;
	letter-spacing:2px;
	text-align:center;
	padding-top:80px;
	color:#fff;
	padding-bottom:80px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-bottom-link b{
  font-family: 'Parisienne', cursive;
  font-size: 56px;
  line-height: 22px;
  letter-spacing: 0;
  font-weight: 300;
}
.portfolio-bottom-link:before {
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	top:0;
	left:-100%;
	background:rgba(255,255,255,.05);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} 
.portfolio-bottom-link:after {
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	bottom:0;
	right:-100%;
	background:rgba(255,255,255,.05);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} 
.portfolio-bottom-link:hover:before {
	left:0;
}  
.portfolio-bottom-link:hover:after {
	right:0;
} 



/* #Ajax Projects Expander Styles
================================================== */

	.relative{
		position: relative;
	}
	.portfolio{
		width:100%;
		height: auto;
		margin:0 auto;
		max-width: 1320px;
	}	
	.expander-wrap {
		position:relative;
		display: none;
		text-align: center;
	}

	#expander-wrap{
		position: relative;
		width:100%;
		max-width:1320px;
		margin:0 auto;
		overflow: hidden;
	}


/* Expander Item Controls */

	.project-controls{
		position: relative;
		width:100%;
		height: auto;
		top:50px;
		max-width: 1320px;
		margin:0 auto;
	}
	.expander-inner{
		position: relative;
	}
	.cls-btn{
		width:100%;
		padding: 0;
		margin: 0 auto;
		display: block;
		height: auto;
	}
	.expander-wrap .cls-btn .close {
		position:relative;
		display: inline-block;
		color:#000;
		top:0;
		margin-top:60px;
		margin-bottom:20px;
		width:50px;
		height:50px;
		background-image:url(../../../themes/talos/images/close.png);
		background-repeat:no-repeat;
		background-position:center center;
		background-size: 40px 40px;
		text-align:center;
		cursor: pointer;
		float:none;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
  .text-light .expander-wrap .cls-btn .close{
    background-image:url(../../../themes/talos/images/close-light.png);
  }
	.expander-close:hover {
		cursor:pointer;
	}
	.expander-wrap .cls-btn .close:hover {
		background-size: 35px 35px;
	}
	
/* #Single Projects
================================================== */	

.owl-portfolio-slider{
	position:relative;
	width:100%;
	margin:0 auto;
	text-align:center;
}
.owl-portfolio-slider .item{
	position:relative;
	width:100%;
}
.owl-portfolio-slider .item img{
	width:100%;
	display:block;
	height:auto;
}
.owl-portfolio-slider.owl-theme .owl-controls{
	position:absolute;
	left:0;
	text-align: center;
	bottom:30px;
	z-index:100;
	width:100%;
	z-index:20;
}
.owl-portfolio-slider.owl-theme .owl-controls .owl-page span{
	background:#000;
	border-radius:0;
	width:2px;
	height:12px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.owl-portfolio-slider.owl-theme .owl-controls .owl-page span:hover{
	height:12px;
}
.owl-portfolio-slider.owl-theme .owl-controls .owl-page.active span {
	height:20px;
}
.project-page img{
	width:100%;
	display:block;
	height:auto;
}
.project-page h6{
	text-align:left;
	margin-bottom:20px;
}
.project-page p{
	text-align:left;
	margin-bottom:45px;
}
.project-page p:last-child{
	margin-bottom:0;
}
.project-page a{
	color:#000;
	text-align:left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-page a:hover{
}

/* Video Hover Image */	

.video-wrapper, figure.vimeo, figure.youtube {
	margin:0;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
}	
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}	
figure.youtube a img, figure.vimeo a img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	max-width:none;
}	
figure.vimeo a:after, figure.youtube a:after {
	content:"";
	width:60px;
	height:60px;
	background:#fff;
	z-index:9;
	position:absolute;
	top:50%;
	left:50%;
	margin:-30px 0 0 -30px;
	border-radius:50%;
	-webkit-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
figure.vimeo:hover a:after, figure.youtube:hover a:after {
	background:#212121;
	-webkit-box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.2);
}	
figure.vimeo a:before, figure.youtube a:before {
	content:"";
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 10px solid #414141;
	z-index:10;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-3px;
	margin-top:-7px;
	display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
figure.vimeo:hover a:before, figure.youtube:hover a:before {
	border-left: 10px solid #fff;
}	
figure.vimeo a:hover img, figure.youtube a:hover img {
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	-webkit-transform: scale(1.03) rotate(1deg);
	transform: scale(1.03) rotate(1deg);
}	
figure.vimeo a img, figure.youtube a img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
	a -webkit-transform: scale(1);
	transform: scale(1);
}

/* #Sep 2
================================================== */

.parallax-2 {
	background: url(//https://gposers.com/wp-content/themes/images/parallax-2.jpg) repeat fixed;
	background-size: cover;
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0;
	bottom: 0;
	z-index: 1;
	width:100%;  
}
@media only screen and (min-width: 1930px) { .parallax-2 { background-size: cover; } }
 @media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
	.parallax-2 { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
@media only screen and (max-width: 1400px) {
	.parallax-2 { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}


/* #Logos
================================================== */

#owl-logos{
	position:relative;
	width:calc(100% - 30px);
	overflow:hidden;
	margin:0 auto;
	text-align:center;
	padding-bottom:70px;
}
#owl-logos.padding-bottom-0{
  padding-bottom: 0px;
}
#owl-logos .item{
	position:relative;
	margin-left:15px;
	margin-right:15px;
	overflow:hidden;
	text-align:center;
}
#owl-logos .item img{
	width:80px;
	display:block;
	margin:0 auto;
	text-align:center;
}
#owl-logos.owl-theme .owl-controls{
	position:absolute;
	left:0;
	text-align: center;
	bottom:0;
	z-index:100;
	width:100%;
	z-index:20;
}
#owl-logos.owl-theme .owl-controls .owl-page span{
	background:#fff;
	border-radius:0;
	width:2px;
	height:12px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#owl-logos.owl-theme .owl-controls .owl-page span:hover{
	height:12px;
}
#owl-logos.owl-theme .owl-controls .owl-page.active span {
	height:20px;
}

 

/* #Services
================================================== */
 
.services-wrap { 
	position:relative;
	padding:40px;
} 
.services-wrap h5{ 
	text-align:left;
	padding-bottom:20px;
}
.services-wrap h5 span{ 
	padding-right:10px;
	font-size:18px;
	font-family: 'et-line';
}

.pricing-wrap{ 
	position:relative;
	width:100%;
} 
.pricing-wrap:after {
  content: '';
  display: block;
  clear: both;
}
.pricing-plan{ 
	position:relative;
	width:33.33333%;
	float:left;
	display:inline-block;
	padding:50px;
	padding-bottom:140px;
	overflow:hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.col-2 .pricing-plan{
  width: 50%;
}
.col-4 .pricing-plan{
  width:25%;
}
.pricing-plan:before {
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	top:0;
	left:-100%;
	background:rgba(255,255,255,.05);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} 
.pricing-plan:after {
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	bottom:0;
	right:-100%;
	background:rgba(255,255,255,.05);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.pricing-plan.dark:after,.pricing-plan.dark:before {
  background:rgba(21,21,21,.014);
}
.pricing-plan:hover:before {
	left:0;
}  
.pricing-plan:hover:after {
	right:0;
}
.pricing-plan .top{
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:600;
	font-size: 13px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#fff;
	padding-bottom:40px;
}
.pricing-plan.dark .top{
  color: #212121;
}
.pricing-plan .top b{
	padding-left:80px;
}
.pricing-plan .top:before {
	content:'';
	position:absolute;
	width:40px;
	height:1px;
	top:7px;
	left:34px;
	background-color:#fff;
} 
.pricing-plan.dark .top:before {
  background-color : #212121;
}
.pricing-plan .price{
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:300;
	font-size: 38px; 
	line-height: 38px;
	color:#fff;
	padding-bottom:40px;
}
.pricing-plan.dark .price{
  color:#212121;
}
.pricing-plan .price .small{
	font-size: 20px; 
	line-height: 46px;
}   
.pricing-plan .price .small-text{
	font-size: 14px; 
	line-height: 46px;
	font-style: italic;
}  
.pricing-plan .price b{
	vertical-align: super;
	font-size: 20px;
} 
.pricing-plan ul li{
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:400;
	font-size: 12px; 
	line-height: 18px;
	letter-spacing:1px;
	color:#ccc;
	padding-bottom:12px;
}
.pricing-plan.dark ul li{
  color: #656565;
}
.pricing-plan .button{
	position:absolute;
	left:50px;
	bottom:50px;
	z-index:4;
	cursor:pointer;
	text-align:center;
	font-family: 'Poppins', sans-serif;
	font-weight:500;
	font-size: 12px; 
	line-height: 18px;
	letter-spacing:2px;
	color:#fff;
	width:70px;
	border-radius:3px;
	padding-top:8px;
	padding-bottom:8px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.pricing-plan .button:hover{
	background:#fff;
	color:#212121;
}



@media only screen and (min-width: 1930px) { .parallax-3 { background-size: cover; } }
 @media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
	.parallax-3 { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
@media only screen and (max-width: 1400px) {
	.parallax-3 { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
.services-bottom-link{
	position:relative;
	overflow:hidden;
	display:block;
	z-index:10;
	font-weight:400;
	font-family: 'Poppins', sans-serif;
	font-size:15px;
	line-height:22px;
	letter-spacing:2px;
	text-align:center;
	padding-top:80px;
	color:#fff;
	padding-bottom:80px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.services-bottom-link:before {
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	top:0;
	left:-100%;
	background:rgba(255,255,255,.05);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} 
.services-bottom-link:after {
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	bottom:0;
	right:-100%;
	background:rgba(255,255,255,.05);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} 
.services-bottom-link:hover:before {
	left:0;
}  
.services-bottom-link:hover:after {
	right:0;
} 


/* #Blog
================================================== */
 

.journal-wrap { 
	position:relative;
	width:100%;
}  
.journal-wrap:after {
  content: '';
  display: block;
  clear: both;
} 
.journal-wrap img { 
	width:70%;
	display:block;
} 
.journal-det { 
	position:absolute;
	width:70%;
	top:50px;
	right:0;
	z-index:3;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding:30px;
	display:block;
	background:rgba(255,255,255,.85);
} 
.journal-det.dark,.journal-det-right.dark{
  background:rgba(21,21,21,.85);
}
.journal-det.dark h6,.journal-det-right.dark h5,
.journal-det.dark h5,.journal-det-right.dark h6{
  color : #dbdbdb;
}
.journal-det h6{ 
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:500;
	font-size: 11px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#000;
	padding-bottom:3px;
}
.journal-det h6 span{
	position:relative;
	padding-left:60px;
}
.journal-det h6 span:before {
	content:'';
	position:absolute;
	width:20px;
	height:1px;
	top:8px;
	left:16px;
	background-color:#646464;
} 
.journal-det h5{ 
	position:relative;
	text-align:left;
	padding-bottom:20px;
} 
.journal-det .link{
	position:relative;
	overflow:hidden;
	display:block;
	font-weight:300;
	font-family: 'Poppins', sans-serif;
	font-size:12px;
	line-height:18px;
	letter-spacing:2px;
	text-align:left;
	float:left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.journal-det .link:hover{
	color:#b2b2b2;
}
.journal-det .link:before {
	content:'';
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:-100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
} 
.journal-det .link:hover:before {
	left:-2px;
}


.journal-wrap-right { 
	position:relative;
	width:100%;
}  
.journal-wrap-right:after {
  content: '';
  display: block;
  clear: both;
} 
.journal-wrap-right img { 
	width:70%;
	display:block;
	float:right;
}  
.journal-det-right { 
	position:absolute;
	width:70%;
	top:50px;
	left:0;
	z-index:3;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding:30px;
	display:block;
	background:rgba(255,255,255,.85);
} 
.journal-det-right h6{ 
	position:relative;
	text-align:right;
	font-family: 'Poppins', sans-serif;
	font-weight:500;
	font-size: 11px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#000;
	padding-bottom:3px;
}
.journal-det-right h6 span{
	position:relative;
	padding-left:60px;
}
.journal-det-right h6 span:before {
	content:'';
	position:absolute;
	width:20px;
	height:1px;
	top:8px;
	left:16px;
	background-color:#646464;
} 
.journal-det-right h5{ 
	position:relative;
	text-align:right;
	padding-bottom:20px;
} 
.journal-det-right .link{
	position:relative;
	overflow:hidden;
	display:block;
	font-weight:300;
	font-family: 'Poppins', sans-serif;
	font-size:12px;
	line-height:18px;
	letter-spacing:2px;
	text-align:right;
	float:right;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.journal-det-right .link:hover{
	color:#b2b2b2;
}
.journal-det-right .link:before {
	content:'';
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:-100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
} 
.journal-det-right .link:hover:before {
	left:-2px;
}

 
/* #Contact
================================================== */
 
.contact-det-wrap{ 
	position:relative;
	width:100%;
	display:block;
}  
.contact-det-wrap:after {
  content: '';
  display: block;
  clear: both;
}
.contact-det{ 
	position:relative;
	width:33.3333%;
	display:inline-block;
	float:left;
	padding:70px;
	z-index:3;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0px -15px 18px rgba(0,0,0,.2);
	/*-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	transform: translateY(-100px);*/
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.col-2 .contact-det{
  width:50%;
}
.col-4 .contact-det{
  width: 25%;
}
.contact-det:hover{
	z-index:4; 
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}
.contact-det p{
	position:relative;
	text-align:left;
	font-family: 'Poppins', sans-serif;
	font-weight:600;
	font-size: 13px; 
	line-height: 16px;
	letter-spacing:1px;
	color:#fff;
	padding-bottom:30px;
}
.contact-det h6{
	text-align:left;
	padding-top:6px;
	font-style: italic;
	width:100%;
	font-weight:300;
	color:#f1f1f1;
	letter-spacing:1px;
  line-height: 30px;
}
.contact-det p b{
	padding-left:80px;
}
.contact-det p:before {
	content:'';
	position:absolute;
	width:40px;
	height:1px;
	top:7px;
	left:34px;
	background-color:#fff;
} 

/* #Google map
================================================== */

#google-container {
	position: relative;
	width: 100%;
    height:500px;
}
#cd-google-map {
	position: relative;
}
#cd-zoom-in, #cd-zoom-out {
	height: 32px;
	width: 32px;
	cursor: pointer;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-size: 32px 64px;
	opacity:.7;
	background-image: url(../../../themes/talos/images/cd-icon-controller.svg);
	z-index:3;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#cd-zoom-in:hover, #cd-zoom-out:hover {
	opacity:1;
}
#cd-zoom-in:hover, #cd-zoom-out:hover {
	opacity:1;
}
#cd-zoom-in:hover, #cd-zoom-out:hover {
	opacity:1;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out {
    margin-left: 50px;
  }
}
#cd-google-map address{
  position: absolute;
  bottom: 0;
  background: #000;
  padding: 20px;
  color: #fff;
}
#cd-zoom-in {
	background-position: 50% 0;
	margin-top: 50px;
	margin-bottom: 1px;
	z-index:3;
}
#cd-zoom-out {
	background-position: 50% -32px;
	z-index:3;
} 

a.button--size-s{
  margin-right: 30px;
  padding: 16px 35px;
  text-align: center;
  background: #000;
  letter-spacing: 3px;
  color: #fff;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  text-transform: none;
  border-radius: 30px;
  min-width: 20px;
  max-width: 180px;
  display: inline-block;
  webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
a.button-video{
  position: relative;
  letter-spacing: 2px;
}
a.button-video:before{
  position: absolute;
  left: 0;
  top: 17px;
  z-index: 3;
  content: '\f144';
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 26px;
  -webkit-transition: color 0.3s, text-shadow 0.3s;
  transition: color 0.3s, text-shadow 0.3s;
}
a.button-video.button--size-s:hover{
  background : transparent!important;
}

.button-effect {
	min-width: 150px;
	max-width: 200px;
	display: block;
	margin: 0 auto;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	cursor:pointer;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.button-effect:focus {
	outline: none;
}
.button-effect > span {
	vertical-align: middle;
}
.button--moema {
	padding: 16px 30px;
	border-radius: 50px;
	text-align:center;
	background:#fff;
	letter-spacing:2px;
	color: #000;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}
.button--moema::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}
.button--moema:hover {
	-webkit-transition: background-color 0.3s 0s, color 0.3s 0s;
	transition: background-color 0.3s 0s, color 0.3s 0s;
	color:#fff;
	-webkit-animation: anim-moema-1 0.6s forwards;
	animation: anim-moema-1 0.6s forwards;
}
.button--moema:hover::before {
	-webkit-animation: anim-moema-2 0.6s 0.5s forwards;
	animation: anim-moema-2 0.6s 0.5s forwards;
}
@-webkit-keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.2, 1.2, 1);
		transform: scale3d(1.2, 1.2, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.2, 1.2, 1);
		transform: scale3d(1.2, 1.2, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@-webkit-keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
} 
 
.title-text-button-app a.button-app {
    position: relative;
    float: left;
    display: inline-block;
    margin-top: 40px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #212121;
    padding-right: 32px;
    -webkit-transition: color 0.3s, padding-right 0.3s;
    transition: color 0.3s, padding-right 0.3s;
}
.title-text-button-app a.button-app:after {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    content: '\f178';
    color: #212121;
    font-family: 'FontAwesome';
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.title-text-button-app a.button-app:hover {
    padding-right: 42px;
}
 
/* #footer
================================================== */

.footer h1,.footer h2,.footer h3,.footer h4,.footer h5, .footer h6 ,.footer p,.footer .widget ul li a,.footer .widget ul li span,.footer .widget .textwidget{
  color: #f4f4f4;
}
.footer .widget ul li{
    border-top: 1px solid rgba(225,225,225,.2);
}
.footer .widget ul li:last-child{
  border-bottom: 1px solid rgba(225,225,225,.2);
}
.footer-top{
	position:relative;
}  
.footer-top:after {
  content: '';
  display: block;
  clear: both;
}
.footer-top img{
	width:120px;
	display:block;
}
.overflow-hidden{
	overflow:hidden;
}
.social-footer{ 
	position:relative;
	display:block;
	float:right;
}
.list-social-footer li {
    padding:0; 
	margin:0;
    list-style: none;
	text-align:center; 
	width:30px;
	height:30px;
    display: inline-block;
	cursor:pointer;
	background:#323232;
	border-radius:50%;
	margin-left:4px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.list-social-footer li.icon-footer a {
	font-family: 'FontAwesome';
	font-size: 13px;
	line-height:30px;
	width:30px;
	color:#fff;
	opacity:1;
	margin:0;
	padding:0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.list-social-footer li:hover{
}
.list-social-footer li:hover.icon-footer a{
}


.footer-line{
	position:relative;
	width:100%;
	height:1px;
	background-color:rgba(255,255,255,.1);
}
.arrow-up-footer {
	position:relative;
	width:30px;
	height:30px;
	margin:0 auto;
	text-align:center;
	background-image:url(../../../themes/talos/images/up-arrow.png);
	background-repeat:no-repeat;
	background-position:center center;
	background-size: 22px 12px;
  cursor: pointer;
}
.left-footer p{
	text-align:left;
	font-size:12px;
	line-height:20px;
	color: #f4f4f4;
	letter-spacing:1px;
}
.right-footer p{
	text-align:right;
	font-size:12px;
	line-height:20px;
	color: #f4f4f4;
	letter-spacing:1px;
}


/* #Tooltip
================================================== */

	.tipper { height: 1px; left: -99999px; position: absolute; pointer-events: none; top: -99999px; width: 1px;z-index:100000; }
	.tipper .tipper-content { background: rgba(20, 20, 20, 0.85);font-weight:400;letter-spacing:1px;box-shadow: 0 0 25px rgba(0,0,0,0.5);text-transform:uppercase; border-radius: 3px; color: #fff; display: block; float: left; font-family: 'Open Sans'; font-size: 9px; margin: 0; padding: 6px 20px; position: relative; white-space: nowrap; }
	.tipper .tipper-caret { background: url(//https://gposers.com/wp-content/themes/images/tipper-icon.png) no-repeat; display: block; height: 11px;  position: absolute; width: 100%; }

	.tipper.right .tipper-content { box-shadow: 1px 0 3px rgba(0, 0, 0, 0.25); }
	.tipper.right .tipper-caret { background-position: left center; left: -5px; top: 0; }

	.tipper.left .tipper-content { box-shadow: -1px 0 3px rgba(0, 0, 0, 0.25); }
	.tipper.left .tipper-caret { background-position: right center; right: -5px; top: 0; }

	.tipper.top .tipper-caret,
	.tipper.bottom .tipper-caret { display: block; float: none; height: 5px;  width: 12px;margin-left:-6px; }

	.tipper.top .tipper-content { box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25); }
	.tipper.top .tipper-caret { background-position: center bottom; bottom: -5px; left: 0; text-align:center;}

	.tipper.bottom .tipper-content { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25); }
	.tipper.bottom .tipper-caret { background-position: center top; top: -5px; left: 0; }
 
/* #Media Queries
================================================== */

@media only screen and (max-width: 1320px) {
#owl-sep-1.owl-theme .owl-controls .owl-page span{
	display:none;
}
}

@media only screen and (max-width: 1200px) {

.home-text h1.text-background {
    font-size: 60px;
    line-height: 65px;
}
.home-text.home-text-barber h1{
  font-size: 60px;
  line-height:65px;
} 
.home-text.home-design h1{
  font-size: 46px;
  line-height:56px;
}
.home-text.home-design h1 strong{
  font-size: 26px;
  line-height:56px;
}
.logo{
	left:10px;
	top:30px;
	background-size:80px 15px;
}
.cbp-af-header.cbp-af-header-shrink .logo{
	left:10px;
	top:30px;
	background-size:80px 15px;
	-webkit-transition : all 0.5s ease-out;
	-moz-transition : all 0.5s ease-out;
	-o-transition :all 0.5s ease-out;
	transition : all 0.5s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .logo img{
  width:80px;
  height:15px;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li a {
    border-bottom:none;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li a:hover {
    border-bottom:none;
	background:none;
}
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li {
	background:none;
}
ul.slimmenu li a: {
    border-bottom:none;
}
ul.slimmenu li a:hover {
    border:none;
	background:none;
}
ul.slimmenu li {
	background:none;
}
ul.slimmenu li > ul {
    width: 100%;
	text-align:right;
}

.home-text h1,.home-text.home-archi h1{
	font-size: 60px;
	line-height:65px;
} 
.quote{
	padding-left:0;
	padding-bottom:0;
	background-image:none;
}
.quote:before {
	display:none;
} 

.translate-right,
.translate-left{
	padding:0;
	padding-bottom:45px;
	margin-top:20px;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.journal-wrap img,
.journal-wrap-right img { 
	width:100%;
	float:none;
}  
.journal-det,
.journal-det-right { 
	position:relative;
	width:100%;
	top:auto;
	right:auto;
	left:auto;
	padding:0;
	padding-top:30px;
	padding-bottom:40px;
	background:none;
	text-align:left;
  border: 0px!important;
}
 .journal-det-right h6{ 
	text-align:left;
}
.journal-det-right h5{ 
	text-align:left;
} 
.journal-det-right .link{
	text-align:left;
	float:left;
}
.contact-det-wrap{ 
	padding-top:120px;
	padding-bottom:50px;
} 
.contact-det{ 
  width:100%;
  padding:40px;
  box-shadow: 0px -15px 18px rgba(0,0,0,0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.contact-det:hover{
  z-index:4; 
    -webkit-transform: scale(1.05) translateY(0);
       -moz-transform: scale(1.05) translateY(0);
        -ms-transform: scale(1.05) translateY(0);
         -o-transform: scale(1.05) translateY(0);
            transform: scale(1.05) translateY(0);
}
.col-2 .contact-det{
  width:100%;
}
.col-4 .contact-det{
  width: 100%;
}

}

@media only screen and (max-width: 1000px) {
#portfolio-filter.portfolio-filter {
  left: 30px;
}
.title-text.left h3{
	font-size: 22px; 
	line-height: 28px;
}
.title-text-app h3{
  font-size: 22px; 
  line-height: 28px;
}
.shop-page h1{
  font-size: 35px;
  line-height: 38px;
}
.about-wrap h5{ 
	padding-left:70px;
}
.about-wrap p{ 
	padding-left:70px;
}
.about-wrap .about-icon{ 
	font-size:24px;
	line-height:24px;
}
.app-home-text h1{
  font-size: 34px;
  line-height:44px;
}
.app-home-text p{
  font-size:12px;
  line-height:20px;
}

}

@media only screen and (max-width: 800px) {
.home-text h1,
.home-text.home-text-barber h1,
.home-text.home-archi h1{
	font-size: 40px;
	line-height:45px;
}
.home-text h1.text-background {
    font-size: 40px;
    line-height: 45px;
}
.home-text.home-design h1{
  font-size: 36px;
  line-height:46px;
}
.home-text.home-design h1 strong{
  font-size: 20px;
  line-height:46px;
}
.quote h4{
	font-size: 18px;
	line-height: 24px;
}
.pricing-plan, .col-2 .pricing-plan, .col-4 .pricing-plan{ 
	width:100%;
}
#royal_preloader.royal_preloader_scale_text .royal_preloader_loader {
    height: 22px;
    line-height: 22px;
    font-size: 22px;
}

}
@media only screen and (min-width: 800px) and (max-width: 992px) {
  .pricing-plan .top:before{
    left: 20px;
  }
  .pricing-plan .top b {
    padding-left: 50px;
  }
  .pricing-plan .price{
    font-size: 30px;
  }
  .pricing-plan .price .small-super{
    font-size: 15px;
  }
}

@media only screen and (max-width: 600px) {
.home-text h1,
.home-text.hometext-barber h1,
.home-text.home-archi h1{
	font-size: 25px;
	line-height:30px;
}
.shop-page h1{
  font-size: 25px;
  line-height: 30px;
}
.app-home-text h1{
  font-size: 30px;
  line-height:40px;
}
.app-home-text p{
  font-size:12px;
  line-height:17px;
}
.home-text h1.text-background {
    font-size: 25px;
    line-height: 30px;
}
.home-text.home-design h1{
  font-size: 26px;
  line-height:36px;
}
.home-text.home-design h1 strong{
  font-size: 14px;
  line-height:36px;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1319px) {
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  }

@media only screen and (min-width: 768px) and (max-width: 959px) {
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
.right-footer p,
.left-footer p{
	text-align:center;
}
.footer-top{
	position:relative;
	text-align:center;
	margin:0 auto;
}  
.footer-top img{
	text-align:center;
	margin:0 auto;
}
.social-footer{ 
	text-align:center;
	margin:0 auto;
	float:none;
	padding-top:10px;
	padding-bottom:10px;
}
.list-social-footer li {
    margin-left:2px;
	margin-right:2px;
}
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
.right-footer p,
.left-footer p{
	text-align:center;
}
.footer-top{
	position:relative;
	text-align:center;
	margin:0 auto;
}  
.footer-top img{
	text-align:center;
	margin:0 auto;
}
.social-footer{ 
	text-align:center;
	margin:0 auto;
	float:none;
	padding-top:10px;
	padding-bottom:10px;
}
.list-social-footer li {
    margin-left:2px;
	margin-right:2px;
}
}

@media only screen and (max-width: 319px) {
.right-footer p,
.left-footer p{
	text-align:center;
}
.footer-top{
	position:relative;
	text-align:center;
	margin:0 auto;
}  
.footer-top img{
	text-align:center;
	margin:0 auto;
}
.social-footer{ 
	text-align:center;
	margin:0 auto;
	float:none;
	padding-top:10px;
	padding-bottom:10px;
}
.list-social-footer li {
    margin-left:2px;
	margin-right:2px;
}
}
@media only screen and (max-width: 1199px) {
  ul.slimmenu > li a:after{
    content: none;
  }
  .menu-back{
    background: rgba(33,33,33);
  }
  #menu-wrap {
    position: absolute;
  }
  .logo img{
    width: 100px;
    height: 18px;
  }
  #menu-wrap{
    padding-bottom: 0;
  }
  ul.slimmenu li a{
    border-bottom: 0px;
  }
}

.blog-box-2{
  margin-bottom: 70px;
}
.blog-box-2 img{
  width:100%;
}
.blog-box-2 h3{
  text-align: left;
  margin-top: 20px;
  margin-bottom: 5px;
  clear: both;
}
.blog-box-2 h3 a.blog-title{  
  width: 100%;
  max-width: 580px;
  font-size: 30px;
  line-height: 38px;
  color: #414141;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: 0.4s;
} 
.blog-box-2 h3 a.blog-title:hover{
  color: #cfa144;
  transition: 0.4s;
}
.blog-box-2 .subtext {
  text-align: left;
  color: #747474;
  font-family: 'Playfair Display', serif;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 17px;
  font-style: italic;
  margin-top: 5px;
  margin-bottom: 10px;
}
.blog-pages-wrap-box  .blog-box-2 .subtext a{
  color: #000;
  transition: 0.4s;
  font-weight: 600;
}

.subtext > span {
  display: inline-block;
  margin-right: 15px;
}
.subtext > span > span{
  display: inline-block;
  margin-right: 5px;
}

.blog-box-2 p{
  margin-bottom: 10px;
}
.blog-pages-wrap-box  .blog-box-2 .link-to-post .link{
  position: relative;
  overflow: hidden;
  display: block;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  color: #cfa144;
  margin-bottom: 50px;
  float: left;
}
.blog-pages-wrap-box  .blog-box-2 .link-to-post .link:hover{
  color:#b2b2b2;
}
.blog-pages-wrap-box  .blog-box-2 .link-to-post .link:before {
  background-color: #cfa144;
  content:'';
  position:absolute;
  width:100%;
  height:2px;
  bottom:0;
  left:-100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
} 
.blog-pages-wrap-box  .blog-box-2 .link-to-post .link:hover:before {
  left:-2px;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-left{
  text-align: left;
}
.sidebar{
  position:relative;
  width:100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow:hidden;
}


.sidebar .widget{
  padding-top: 50px;
}
.sidebar .widget:first-child{
  padding-top: 0px;
}

.sidebar input{
  width:100%;
  padding-left:20px;
  padding-right:20px;
  font-family: 'Open Sans', sans-serif;
  font-weight:400;
  letter-spacing:1px;
  font-size: 12px;
  line-height:22px;
  padding-top: 15px;
  padding-bottom: 15px;
  background:#fbfbfb;
  border:none;
  color: #737373;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.sidebar input:active { 
  color: #fff;
  outline: none !important;
}
.sidebar input:hover {  
  color: #737373;
  outline: none !important;
}
.sidebar input:focus {
  color: #fff;   
  outline: none !important;
}

.sidebar input:-ms-input-placeholder  {
  font-size: 10px;
  text-transform:uppercase;
  -webkit-transition:  color 0.3s;
  transition:  color 0.3s;
}
.sidebar input::-moz-placeholder  {
  font-size: 10px;
  text-transform:uppercase;
  -webkit-transition:  color 0.3s;
  transition:  color 0.3s;
}
.sidebar input:-moz-placeholder  {
  font-size: 10px;
  text-transform:uppercase;
  -webkit-transition:  color 0.3s;
  transition:  color 0.3s;
}
.sidebar input::-webkit-input-placeholder  {
  font-size: 10px;
  text-transform:uppercase;
  -webkit-transition:  color 0.3s;
  transition:  color 0.3s;
}
.sidebar input:active:-ms-input-placeholder  {
  color: #fff;
}
.sidebar input:active::-moz-placeholder  {
  color: #fff;
}
.sidebar input:active:-moz-placeholder  {
  color: #fff;
}
.sidebar input:active::-webkit-input-placeholder  {
  color: #fff;
}
.sidebar input:focus:-ms-input-placeholder  {
  color: #fff;
}
.sidebar input:focus::-moz-placeholder  {
  color: #fff;
}
.sidebar input:focus:-moz-placeholder  {
  color: #fff;
}
.sidebar input:focus::-webkit-input-placeholder  {
  color: #fff;
}

.separator-sidebar{ 
  position:relative;
  width:100%;
  padding-top:50px;
}

.sidebar h6{ 
  text-align:left;
  padding-bottom:20px;
}

.widget_recent_entries ul{ 
  position:relative;
  width:100%;
  overflow:hidden;
  text-align:left;
}
.widget ul li{
  position:relative;
  display:block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  line-height:21px;
  text-align:left;
  text-transform:uppercase;
  padding-top:10px;
  padding-bottom:10px;
  border-top:1px solid rgba(0,0,0,.1);
  letter-spacing:1px;  
  font-weight:400;
  
}
.widget ul li a{
  color:#323232;
  -webkit-transition: padding-left 0.3s, color 0.3s;
  transition: padding-left 0.3s, color 0.3s;
}
.widget ul li:last-child{
  border-bottom:1px solid rgba(0,0,0,.1);
}
.widget ul li a:hover {
  padding-left:10px;
}

.widget.widget_calendar caption{
  font-size: 15px;
  color: #414141;
  font-weight: bold;
  margin-bottom: 15px;
}
.widget.widget_calendar table th{
  font-size: 13px;
  font-weight: bold;
}
.widget.widget_calendar table td{
  font-size: 14px;
  font-weight: 400;
}
.widget.widget_tag_cloud ul {
  position:relative;
  width:100%;
  overflow:hidden;
  text-align:left;
}
.widget.widget_tag_cloud ul li{
  display:inline-block;
  border: 0px;
  font-family: 'Poppins', sans-serif;
  padding-top: 0;
  margin-bottom: 8px;
  padding-bottom: 5px;
}
.widget.widget_tag_cloud ul li a{
  position:relative;
  padding:8px 20px;
  background: #212121;
  font-size:11px!important;
  letter-spacing:1px;
  text-transform: none;
  border-radius:2px;
  color:#fff;
  font-family: 'Poppins', sans-serif;
  font-weight:400;   
  -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.widget.widget_tag_cloud ul li a:hover{
  color: #fff;
}

/* #Post
================================================== */

.owl-post-slider{
  position:relative;
  width:100%;
  margin:0 auto;
  text-align:center;
}
.owl-post-slider .item{
  position:relative;
  width:100%;
}
.owl-post-slider .item img{
  width:100%;
  display:block;
  height:auto;
}
.owl-post-slider.owl-theme .owl-controls{
  position:absolute;
  left:0;
  text-align: center;
  bottom:30px;
  z-index:100;
  width:100%;
  z-index:20;
}
.owl-post-slider.owl-theme .owl-controls .owl-page span{
  background:#fff;
  border-radius:0;
  width:2px;
  height:12px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.owl-post-slider.owl-theme .owl-controls .owl-page span:hover{
  height:12px;
}
.owl-post-slider.owl-theme .owl-controls .owl-page.active span {
  height:20px;
}
.tags-wrap{ 
  position:relative;
  width:100%;
  display:block;
  padding-top:30px;
  padding-bottom:30px;
}  
.tags-wrap:after {
  content: '';
  display: block;
  clear: both;
}
.tags-wrap a{ 
  position:relative;
  display:inline-block;
  float:left;
  padding:8px 20px;
  background: #212121;
  font-size:11px;
  letter-spacing:1px;
  line-height:11px;
  border-radius:2px;
  color:#fff;
  font-family: 'Poppins', sans-serif;
  font-weight:400;
  margin-right:2px;
  margin-bottom:2px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} 
.post {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 30px;
} 
.post p {
    padding-bottom: 20px;
}
.gu-box.margin-gu {
    margin-top: 10px;
    margin-bottom: 30px;
}
.gu-box {
    position: relative;
    width: 100%;
    border-left: 2px solid #bababa;
}
.gu-box p {
    color: #000;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 28px;
    font-style: italic;
}
.gu-box span {
    color: #999999;
    padding-left: 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 12px;
    line-height: 20px;
}
.content-comm{
  position:relative;
  width:100%;
  margin-top:20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom:11px;
  overflow:hidden;
  margin-bottom:5px;
  padding-bottom:25px;
  border-bottom:1px solid rgba(0,0,0,.1);
}
.content-comm.sub-comm{
  position:relative;
  width:calc(100% - 50px);
  margin-left:50px;
}
.content-comm:after {
  content: '';
  display: block;
  clear: both;
}
.content-comm img {
  display: block;
  float:left;
  width:100px;
  height:auto;
  margin-right:25px;
  margin-bottom:25px;
}
.content-comm p {
  text-align:left;
  padding-bottom:25px;
}
.name-aut-replay{
  position:absolute;
  bottom:20px;
  right:0;
  text-align:right;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:11px;
  line-height:11px;
  font-weight:400;  
}
.name-aut-replay a{
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;   
}
.name-aut-replay a:hover{
  color:#212121;
}
.comments{
  position:relative;
  width:100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow:hidden;
  margin-top:30px;
}
.comments input{
  position:relative;
  width:calc(100% - 40px);
  padding-left:20px;
  padding-right:20px;
  font-family: 'Open Sans', sans-serif;
  font-weight:400;
  letter-spacing:1px;
  font-size: 12px;
  line-height:24px;
  padding-bottom: 15px;
  background:transparent;
  border:none;
  color: #737373;
  margin-bottom:20px;
  -webkit-transition: border-bottom 0.3s, color 0.3s;
  transition: border-bottom 0.3s, color 0.3s;
}
.comments textarea {
  width:calc(100% - 40px);
  padding-left:20px;
  padding-right:20px;
  font-family: 'Open Sans', sans-serif;
  font-weight:400;
  letter-spacing:1px;
  font-size: 12px;
  line-height:24px;
  background:transparent;
  height:70px;
  border:none;
  color: #737373;
  margin-bottom:20px;
  -webkit-transition: border-bottom 0.3s, color 0.3s;
  transition: border-bottom 0.3s, color 0.3s;
}
.comments textarea,
.comments input { 
  border-bottom:1px solid rgba(100,100,100,.2);
}
.comments textarea:active,
.comments input:active {  
  color: #101010;
}
.comments textarea:active,
.comments input:hover { 
  color: #101010;
}
.comments textarea:focus,
.comments input:focus {  
    outline: none !important;
}
.comments input:-ms-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments input::-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments input:-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments input::-webkit-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments textarea:-ms-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments textarea::-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments textarea:-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments textarea::-webkit-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#999999;
}
.comments button {
  background:#efefef;
  color:#212121;
  font-size:14px;
  padding: 13px 30px;
  max-width:140px;
}
.comments button:hover {
  color:#fff;
}
.comments button:focus,
.comments button:active {
  border:none;
  outline:none;
}
p.form-submit{
  text-align: center;
}
p.form-submit input.submit{
  background: #efefef;
  color: #212121;
  font-size: 14px;
  padding: 13px 30px;
  max-width: 145px;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 2px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  line-height: normal;
  border: 0;
}
p.form-submit input.submit:hover{
  color:#fff;
}
p.logged-in-as{
  margin-bottom: 20px;
}
p.logged-in-as a:first-child{
  color:#414141;
}

.comment-respond h3.comment-reply-title{
  margin-top: 30px;
}
.comment-respond h3.comment-reply-title small a{
  float: right;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 25px;
  font-weight: 400;
}
.comment-respond form p textarea{
  outline: 0;
    width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 24px;
    background: transparent;
    height: 70px;
    border: none;
    color: #737373;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(100,100,100,.2);
    -webkit-transition: border-bottom 0.3s, color 0.3s;
    transition: border-bottom 0.3s, color 0.3s;
}

/* Pagination */
nav[role="navigation"] {
    text-align: center;
    padding-top: 50px;
}
.cd-pagination {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.cd-pagination li {
  /* hide numbers on small devices */
  display: none;
  margin: 0 .2em;
}
.cd-pagination li.button-pag {
  /* make sure prev next buttons are visible */
  display: inline-block;
}
.cd-pagination a, .cd-pagination span {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* use padding and font-size to change buttons size */
  font-size: 11px;
  letter-spacing:2px;
  font-weight:600;
}
.cd-pagination a {
  border: 1px solid #e6e6e6;
  border-radius: 0.25em;
  color:#000;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.cd-pagination a:hover {
  background-color: #000;
  border: 1px solid #000;
  color:#fff;
}
.cd-pagination a:active {
  /* click effect */
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-pagination a.disabled {
  /* button disabled */
  color:#fff;
  pointer-events: none;
}
.cd-pagination a.disabled::before, .cd-pagination a.disabled::after {
  opacity: .4;
}
.cd-pagination .button-pag:first-of-type a::before {
  content: '\00ab';
}
.cd-pagination .button-pag:last-of-type a::after {
  content: ' \00bb';
}
.cd-pagination .current {
  /* selected number */
  color: #ffffff;
  pointer-events: none;
}
.cd-pagination.animated-buttons span{
  border-radius: 0.25em;
}
@media only screen and (min-width: 768px) {
  .cd-pagination li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-pagination {
  }
}

/* -------------------------------- 

No space - remove distance between list items

-------------------------------- */
.cd-pagination.no-space {
  width: auto;
  max-width: none;
  display: inline-block;
  border-radius: 0.25em;
  border: 1px solid #e6e6e6;
}
.cd-pagination.no-space:after {
  content: "";
  display: table;
  clear: both;
}
.cd-pagination.no-space li {
  margin: 0;
  float: left;
  border-right: 1px solid #e6e6e6;
}
.cd-pagination.no-space li:last-of-type {
  border-right: none;
}
.cd-pagination.no-space a, .cd-pagination.no-space span {
  float: left;
  border-radius: 0;
  border: none;
}
.cd-pagination.no-space li:first-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}
.cd-pagination.no-space li:last-of-type a {
  border-radius: 0 0.25em 0.25em 0;
}

/* -------------------------------- 

move buttons - move prev and next buttons to the sides

-------------------------------- */
.cd-pagination.move-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.cd-pagination.move-buttons .button-pag:first-of-type {
  float: left;
}
.cd-pagination.move-buttons .button-pag:last-of-type {
  float: right;
}

.cd-pagination.no-space.move-buttons {
  width: 90%;
  max-width: 768px;
  display: block;
  overflow: hidden;
}
.cd-pagination.no-space.move-buttons li {
  float: none;
  border: none;
}
.cd-pagination.no-space.move-buttons a, .cd-pagination.no-space.move-buttons span {
  float: none;
}

/* -------------------------------- 

custom icons - customize the small arrow inside the next and prev buttons 

-------------------------------- */
.cd-pagination.custom-icons .button-pag a {
  position: relative;
}
.cd-pagination.custom-icons .button-pag:first-of-type a {
  padding-left: 2.4em;
}
.cd-pagination.custom-icons .button-pag:last-of-type a {
  padding-right: 2.4em;
}
.cd-pagination.custom-icons .button-pag:first-of-type a::before,
.cd-pagination.custom-icons .button-pag:last-of-type a::after {
  content: '';
  position: absolute;
  display: inline-block;
  /* set size for custom icons */
  width: 16px;
  height: 16px;
  top: 50%;
  /* set margin-top = icon height/2 */
  margin-top: -8px;
  background: transparent url(../../../themes/talos/images/cd-icon-arrow-1.svg) no-repeat center center;
}
.cd-pagination.custom-icons .button-pag:first-of-type a::before {
  left: .8em;
}
.cd-pagination.custom-icons .button-pag:last-of-type a::after {
  right: .8em;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* -------------------------------- 

custom buttons - replace prev and next buttons text with a custom icon 

-------------------------------- */
.cd-pagination.custom-buttons a, .cd-pagination.custom-buttons span {
  vertical-align: middle;
}
.cd-pagination.custom-buttons .button-pag a {
  /* set custom width */
  width: 40px;
  /* image replacement */
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  color: #000;
  background-image: url(https://gposers.com/wp-content/themes/talos/images/cd-icon-arrow-2.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.cd-pagination.custom-buttons .button-pag:last-of-type a {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cd-pagination.custom-buttons .button-pag:last-of-type a:active {
  -webkit-transform: scale(0.9) rotate(180deg);
  -moz-transform: scale(0.9) rotate(180deg);
  -ms-transform: scale(0.9) rotate(180deg);
  -o-transform: scale(0.9) rotate(180deg);
  transform: scale(0.9) rotate(180deg);
}

.cd-pagination.no-space.custom-buttons .button-pag:last-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}

/* -------------------------------- 

animated buttons - animate the text inside prev and next buttons 

-------------------------------- */
.cd-pagination.animated-buttons a, .cd-pagination.animated-buttons span {
  padding: 0 1.2em;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
}
.cd-pagination.animated-buttons .button-pag a {
  position: relative;
  padding: 0 2em;
}
.cd-pagination.animated-buttons .button-pag:first-of-type a::before,
.cd-pagination.animated-buttons .button-pag:last-of-type a::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  right: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-pagination.animated-buttons .button-pag:last-of-type a::after {
  -webkit-transform: translateX(-50%) rotate(180deg);
  -moz-transform: translateX(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) rotate(180deg);
  -o-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
}
.cd-pagination.animated-buttons i {
  display: block;
  height: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

.cd-pagination.animated-buttons .button-pag a:hover i {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-pagination.animated-buttons .button-pag:first-of-type a:hover::before {
  -webkit-transform: translateX(-50%) translateY(-50px);
  -moz-transform: translateX(-50%) translateY(-50px);
  -ms-transform: translateX(-50%) translateY(-50px);
  -o-transform: translateX(-50%) translateY(-50px);
  transform: translateX(-50%) translateY(-50px);
}

.cd-pagination.animated-buttons .button-pag:last-of-type a:hover::after {
  -webkit-transform: translateX(-50%) rotate(180deg) translateY(50px);
  -moz-transform: translateX(-50%) rotate(180deg) translateY(50px);
  -ms-transform: translateX(-50%) rotate(180deg) translateY(50px);
  -o-transform: translateX(-50%) rotate(180deg) translateY(50px);
  transform: translateX(-50%) rotate(180deg) translateY(50px);
}
.button--moema {
  padding: 16px 30px;
  border-radius: 50px;
  text-align:center;
  background:#fff;
  letter-spacing:2px;
  color: #000;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button--moema::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background: inherit;
  border-radius: 50px;
  z-index: -1;
  opacity: 0.4;
  -webkit-transform: scale3d(0.8, 0.5, 1);
  transform: scale3d(0.8, 0.5, 1);
}
.button--moema:hover {
  -webkit-transition: background-color 0.3s 0s, color 0.3s 0s;
  transition: background-color 0.3s 0s, color 0.3s 0s;
  color:#fff;
  -webkit-animation: anim-moema-1 0.6s forwards;
  animation: anim-moema-1 0.6s forwards;
}
.button--moema:hover::before {
  -webkit-animation: anim-moema-2 0.6s 0.5s forwards;
  animation: anim-moema-2 0.6s 0.5s forwards;
}
@-webkit-keyframes anim-moema-1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes anim-moema-2 {
  to {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-2 {
  to {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
} 

.vc_column_container>.vc_column-inner {
    padding-left: 0px!important;
    padding-right: 0px!important;
    padding-top: 0!important;
}

/*.container .row .vc_column_container {
    padding-left: 15px;
    padding-right: 15px;
}*/
.wpb_row.vc_row-o-full-height {
    min-height: 100vh;
}
.row{
  width:100%;
}
.container .container{width:100%;}
.wpb_row.vc_row-flex {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.wpb_row.vc_row-flex .container,.wpb_row.vc_row-flex .row {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}
.wpb_row.vc_row-o-equal-height .vc_column_container {
    -moz-box-align: stretch;
    align-items: stretch;
}
.wpb_row.vc_row-flex .vc_column_container {
    display: flex;
}
.wpb_row.vc_row-o-columns-middle .vc_column_container .vc_column-inner {
    -moz-box-pack: center;
    justify-content: center;
}
.wpb_row.vc_row-flex .vc_column_container .vc_column-inner {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}
.wpb_row.vc_row-o-columns-bottom .vc_column_container .vc_column-inner {
    -moz-box-pack: end;
    justify-content: flex-end;
}
.wpb_row.vc_row-o-content-top .vc_column_container .vc_column-inner {
    -moz-box-pack: start;
    justify-content: flex-start;
}

.wpb_revslider_element{
  margin-bottom: 0!important;
}

section{
  position: relative;
}
.parallax-row{  
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}
.parallax-subheader{ 
  background: url(../../../themes/talos/images/type.png) repeat fixed; 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-size: cover!important;
}
.parallax-title-top{  
  background: url(../../../themes/talos/images/type.png) repeat fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}
.parallax-shop-page{  
  background: url(../../../themes/talos/images/hero-project.jpg) repeat fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}
.parallax-row.cover{
  background-size: cover!important;
}
@media only screen and (min-width: 1930px) { .parallax-row,.parallax-subheader,.parallax-title-top,.parallax-shop-page { background-size: cover; } }
 @media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
  .parallax-row,.parallax-subheader,.parallax-title-top,.parallax-shop-page { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
@media only screen and (max-width: 1400px) {
  .parallax-row,.parallax-subheader,.parallax-title-top,.parallax-shop-page { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea{
  border-bottom: 1px solid rgba(100,100,100,.2)!important;
  position: relative;
    width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    line-height: 24px;
    padding-bottom: 15px;
    background: transparent;
    border: none;
    color: #737373;
    -webkit-transition: border-bottom 0.3s, color 0.3s;
    transition: border-bottom 0.3s, color 0.3s;
    outline: none;
}
.wpcf7-form-control-wrap input.text-light,
.wpcf7-form-control-wrap textarea.text-light{
  border-bottom: 1px solid rgba(255,255,255,.3)!important;
}
.wpcf7-form-control-wrap input.text-light,
.wpcf7-form-control-wrap textarea.text-light{
  color: #fff;
}
.wpcf7-form-control-wrap textarea{
  height:100px;
}
img.ajax-loader{display: none;}
div.wpcf7-validation-errors{
  border:none!important;
  text-align: center;
}
.wpcf7 .button-contact {
  background:#323232;
  color:#fff;
  font-size:14px;
  padding: 13px 30px;
  max-width:140px;
}
.form-submit .button-contact {
  background:#efefef;
  color:#212121;
  font-size:14px;
  padding: 10px 30px;
  max-width:140px;
  border:0;
}
.wpcf7 .button-contact.btn-dark,.form-submit .button-contact.btn-dark{
  color: #fff;
  background: #212121;
}
.wpcf7 .button-contact:hover,.form-submit .button-contact:hover {
  color:#fff;
}
.wpcf7 .button-contact:focus,
.wpcf7 .button-contact:active,
.form-submit .button-contact:focus,
.form-submit .button-contact:active {
  border:none;
  outline:none;
}
.wpcf7 input.text-light:-ms-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 input.text-light::-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 input.text-light:-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 input.text-light::-webkit-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 textarea.text-light:-ms-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 textarea.text-light::-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 textarea.text-light:-moz-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
.wpcf7 textarea.text-light::-webkit-input-placeholder  {
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
}
div.wpcf7-mail-sent-ok{
  border: none!important;
}
.half-height {
    height: 70vh;
}
/* #Portfolio
================================================== */

#projects-grid{
  position:relative;
  text-align:center;
  margin:0 auto;
  width:100%;
  max-width:100%;
  overflow:hidden;
}
#projects-grid.margin-on-side{
  width:calc(100% - 40px);
  max-width:calc(100% - 40px);
}
#projects-grid:after {
  content: '';
  display: block;
  clear: both;
}
.portfolio-box-1{
  position:relative;
  float:left;
  width:33.3333333333%;
  display:inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow:hidden;
  margin-left:-1px;
  -webkit-transform: translate3d(1px,0,0);
  transform: translate3d(1px,0,0);
}
.portfolio-box-1.col-2{
  width:50%;
}
.portfolio-box-1.col-4{
  width:25%;
}
.portfolio-box-1.col-5{
  width:20%;
}
.projects-grid-2 .portfolio-box-1.col-2{
  width:calc(50% - 50px);
}
.projects-grid-2 .portfolio-box-1.col-4{
  width:calc(25% - 50px);
}
.projects-grid-2 .portfolio-box-1.col-5{
  width:calc(20% - 50px);
}
.portfolio-box-1 .mask{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  background-color:#212121;
  opacity:0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.portfolio-box-1:hover .mask{
  opacity:.9;
}
.portfolio-box-1 h3{
  position:absolute;
  left:25px;
  bottom:40px;
  font-family: 'Poppins', sans-serif;
  letter-spacing:1px;
  font-weight:500;
  font-size: 18px; 
  line-height: 24px;
  text-align:left;
  z-index:3;
  letter-spacing:-1px;
  color:#fff;
  opacity:0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-box-1:hover h3{
  left:40px;
  opacity:1;
}
.portfolio-box-1 h3 span{
  font-weight:300;
  font-size: 10px;
  letter-spacing:2px;
}
.portfolio-box-1 img{
  width:100%;
  display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-box-1:hover img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


#portfolio-filter {
  position:absolute;
  text-align: center;
  z-index:20;
  top:30px;
  left:50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius:30px;
  background-color:#212121;
  box-shadow:0 0 15px 7px rgba(12,12,12,.2);
}
#filter {
  position:relative;
  width:100%;
  text-align: center;
}
#filter li {
  display: inline-block;
  text-align: center;
}
#filter:after {
  content: '';
  display: block;
  clear: both;
}
#filter li a {
  position: relative;
  display: inline-block;
  letter-spacing:1px;
  font-weight:400;
  padding:5px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px; 
  text-align: center;
  outline: none;
  color: #fff;
  border-radius:30px;
  background-color:#212121;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#filter li .current {
}
#filter li a:hover {
}

#portfolio-filter.portfolio-filter-3 {
  position:relative;
  top: 0px;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0px;
}
.portfolio-filter-3 #filter {
  position:relative;
  width:100%;
}
.portfolio-filter-3 #filter li {
  display: inline-block;
  text-align: center;
}
.portfolio-filter-3 #filter:after {
  content: '';
  display: block;
  clear: both;
}
.portfolio-filter-3 #filter li a {
  position: relative;
  display: inline-block;
  letter-spacing:1px;
  font-weight:400;
  padding:5px 20px;
  margin-right:10px;
  margin-bottom:5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px; 
  text-align: center;
  outline: none;
  color: #fff;
  border-radius:3px;
  background-color:#212121;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.6s;
       -moz-transition-duration: 0.6s;
            transition-duration: 0.6s;
}
.isotope {
    -webkit-transition-property: height, width;
       -moz-transition-property: height, width;
            transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
       -moz-transition-property:    -moz-transform, opacity;
        -ms-transition-property:     -ms-transform, opacity;
         -o-transition-property:         top, left, opacity;
            transition-property:         transform, opacity;
}

@media only screen and (max-width: 992px) { 
  #portfolio-filter {
    position: relative;
    border-radius: 0;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
}
}


/* #Freelance parallax
================================================== */

.parallax-freelance {
  background-repeat: no-repeat!important;
  background-attachment: fixed;
  background-size: cover!important;
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  bottom: 0;
  z-index: 1;
  width:100%;  
}
@media only screen and (min-width: 1930px) { .parallax-freelance { background-size: cover; } }
 @media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
  .parallax-freelance { background-size: cover; background-attachment: scroll; background-position: top center!important; }
}
@media only screen and (max-width: 1400px) {
  .parallax-freelance { background-size: cover!important; background-attachment: scroll; background-position: top center!important; }
}
.home-text p {
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-top: 30px;
  letter-spacing: 1px;
}
.home-text.home-text-carousel p{
  margin-bottom: 20px;
  margin-top: 0px;
}
.home-text p span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 2px;
}
.text-light, 
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p{
  color: #fff;
}
.text-dark, 
.text-dark h1,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark h5,
.text-dark h6,
.text-dark p{
  color: #212121;
}
.counter-wrap.freelance-num p {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    top: 50%;
    margin-top: -40px;
    height: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    padding-bottom: 0;
    opacity: 0.4;
}
.counter-wrap.freelance-num h6 {
    text-align: center;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    letter-spacing: 2px;
    font-weight: 400;
}
.counter-wrap.freelance-num.text-dark h6{
  color: #212121;
  font-weight: 500;
}
/* #Home HTML Video
================================================== */
video#video_background { 
  position: absolute;
  top:50%;
  left:50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 2;
  overflow: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
#video-wrap{ 
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}
.home-text h2 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f8f8f8;
    text-transform: uppercase;
}
.home-text p {
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-top: 20px;
    letter-spacing: 2px;
}
.home-text p span {
    padding: 6px 25px;
    border-radius: 2px;
}
.portfolio-box-1 .mask-g{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  background-color:#212121;
  background-image:url(../../../themes/talos/images/more.png);
  background-position:center center;
  background-repeat:no-repeat;
  background-size:30px 30px;
  opacity:0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.portfolio-box-1:hover .mask-g{
  opacity:.9;
}
#projects-grid.full-width-small{
  width:100%;
  max-width:1320px;
}
#projects-grid.translate-gallery{
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transform: translateY(-100px);
  z-index:18;
  box-shadow: 0px -15px 18px rgba(0,0,0,.2);
}
#portfolio-filter.gallery-version {
  top:-115px;
}
/* #Skills
================================================== */

.pro-bar-container {
  position:relative;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 2px;
  background: #212121;
  margin-bottom:34px;
}
.pro-bar-container:last-child{
  margin-bottom: 0px;
}
.skills-name{
  font-family: 'Poppins', sans-serif;
  position:relative;
  width:100%;
  text-align:left;
  padding-bottom:5px;
  font-weight:300;
  font-size: 13px;
  letter-spacing:2px;
  color:#fff;
}
.skills-name span{
  font-weight:300;
  color:#dbdbdb;
  padding-left:3px;
  float:right;
}
.pro-bar {
  position:relative;
  height: 2px;
  overflow:hidden;
}
  .pro-bar.bar-100  { width: 100%; }
  .pro-bar.bar-99   { width: 99%;  }
  .pro-bar.bar-98   { width: 98%;  }
  .pro-bar.bar-97   { width: 97%;  }
  .pro-bar.bar-96   { width: 96%;  }
  .pro-bar.bar-95   { width: 95%;  }
  .pro-bar.bar-94   { width: 94%;  }
  .pro-bar.bar-93   { width: 93%;  }
  .pro-bar.bar-92   { width: 92%;  }
  .pro-bar.bar-91   { width: 91%;  }
  .pro-bar.bar-90   { width: 90%;  }
  .pro-bar.bar-89   { width: 89%;  }
  .pro-bar.bar-88   { width: 88%;  }
  .pro-bar.bar-87   { width: 87%;  }
  .pro-bar.bar-86   { width: 86%;  }
  .pro-bar.bar-85   { width: 85%;  }
  .pro-bar.bar-84   { width: 84%;  }
  .pro-bar.bar-83   { width: 83%;  }
  .pro-bar.bar-82   { width: 82%;  }
  .pro-bar.bar-81   { width: 81%;  }
  .pro-bar.bar-80   { width: 80%;  }
  .pro-bar.bar-79   { width: 79%;  }
  .pro-bar.bar-78   { width: 78%;  }
  .pro-bar.bar-77   { width: 77%;  }
  .pro-bar.bar-76   { width: 76%;  }
  .pro-bar.bar-75   { width: 75%;  }
  .pro-bar.bar-74   { width: 74%;  }
  .pro-bar.bar-73   { width: 73%;  }
  .pro-bar.bar-72   { width: 72%;  }
  .pro-bar.bar-71   { width: 71%;  }
  .pro-bar.bar-70   { width: 70%;  }
  .pro-bar.bar-69   { width: 69%;  }
  .pro-bar.bar-68   { width: 68%;  }
  .pro-bar.bar-67   { width: 67%;  }
  .pro-bar.bar-66   { width: 66%;  }
  .pro-bar.bar-65   { width: 65%;  }
  .pro-bar.bar-64   { width: 64%;  }
  .pro-bar.bar-63   { width: 63%;  }
  .pro-bar.bar-62   { width: 62%;  }
  .pro-bar.bar-61   { width: 61%;  }
  .pro-bar.bar-60   { width: 60%;  }
  .pro-bar.bar-59   { width: 59%;  }
  .pro-bar.bar-58   { width: 58%;  }
  .pro-bar.bar-57   { width: 57%;  }
  .pro-bar.bar-56   { width: 56%;  }
  .pro-bar.bar-55   { width: 55%;  }
  .pro-bar.bar-54   { width: 54%;  }
  .pro-bar.bar-53   { width: 53%;  }
  .pro-bar.bar-52   { width: 52%;  }
  .pro-bar.bar-51   { width: 51%;  }
  .pro-bar.bar-50   { width: 50%;  }
  .pro-bar.bar-49   { width: 49%;  }
  .pro-bar.bar-48   { width: 48%;  }
  .pro-bar.bar-47   { width: 47%;  }
  .pro-bar.bar-46   { width: 46%;  }
  .pro-bar.bar-45   { width: 45%;  }
  .pro-bar.bar-44   { width: 44%;  }
  .pro-bar.bar-43   { width: 43%;  }
  .pro-bar.bar-42   { width: 42%;  }
  .pro-bar.bar-41   { width: 41%;  }
  .pro-bar.bar-40   { width: 40%;  }
  .pro-bar.bar-39   { width: 39%;  }
  .pro-bar.bar-38   { width: 38%;  }
  .pro-bar.bar-37   { width: 37%;  }
  .pro-bar.bar-36   { width: 36%;  }
  .pro-bar.bar-35   { width: 35%;  }
  .pro-bar.bar-34   { width: 34%;  }
  .pro-bar.bar-33   { width: 33%;  }
  .pro-bar.bar-32   { width: 32%;  }
  .pro-bar.bar-31   { width: 31%;  }
  .pro-bar.bar-30   { width: 30%;  }
  .pro-bar.bar-29   { width: 29%;  }
  .pro-bar.bar-28   { width: 28%;  }
  .pro-bar.bar-27   { width: 27%;  }
  .pro-bar.bar-26   { width: 26%;  }
  .pro-bar.bar-25   { width: 25%;  }
  .pro-bar.bar-24   { width: 24%;  }
  .pro-bar.bar-23   { width: 23%;  }
  .pro-bar.bar-22   { width: 22%;  }
  .pro-bar.bar-21   { width: 21%;  }
  .pro-bar.bar-20   { width: 20%;  }
  .pro-bar.bar-19   { width: 19%;  }
  .pro-bar.bar-18   { width: 18%;  }
  .pro-bar.bar-17   { width: 17%;  }
  .pro-bar.bar-16   { width: 16%;  }
  .pro-bar.bar-15   { width: 15%;  }
  .pro-bar.bar-14   { width: 14%;  }
  .pro-bar.bar-13   { width: 13%;  }
  .pro-bar.bar-12   { width: 12%;  }
  .pro-bar.bar-11   { width: 11%;  }
  .pro-bar.bar-10   { width: 10%;  }
  .pro-bar.bar-9    { width: 9%;   }
  .pro-bar.bar-8    { width: 8%;   }
  .pro-bar.bar-7    { width: 7%;   }
  .pro-bar.bar-6    { width: 6%;   }
  .pro-bar.bar-5    { width: 5%;   }
  .pro-bar.bar-4    { width: 4%;   }
  .pro-bar.bar-3    { width: 3%;   }
  .pro-bar.bar-2    { width: 2%;   }
  .pro-bar.bar-1    { width: 1%;   }
  .pro-bar.bar-0    { width: 0%;   }
  .float-left{float: left;}

.services-wrap-feature { 
  position:relative;
  padding:40px;
} 
.services-wrap-feature h5{ 
  text-align:left;
  padding-bottom:20px;
}
.services-wrap-feature h5 span{ 
  padding-right:10px;
  font-size:18px;
}
.button-effect.button--moema.button-meal{
  line-height: 22px;
}
.wellcome-meal{ 
  position:relative;
  width:100%;
  max-width:400px;
}
.wellcome-meal h3{ 
  text-align:left;
  color:#f9f9f9;
  padding-bottom:20px;
  font-weight:300;
}
.wellcome-meal h3 b{ 
  font-family: 'Parisienne', cursive;
  font-size: 34px;
  line-height:28px;
}
.wellcome-meal p{ 
  text-align:left;
  color:#fff;
  padding-bottom:40px;
}
.wellcome-meal .button-effect {
  min-width: 110px;
  max-width: 110px;
  display: block;
  letter-spacing:2px;
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  cursor:pointer;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.wellcome-meal .button-effect:focus {
  outline: none;
}
.wellcome-meal .button-effect > span {
  vertical-align: middle;
}
.wellcome-meal .button--moema {
  padding: 7px 18px;
  border-radius: 3px;
  text-align:center;
  background:#fff;
  letter-spacing:2px;
  font-size:12px;
  font-weight:600;
  color:#212121;
  float:left;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.wellcome-meal .button--moema::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  background: inherit;
  border-radius: 3px;
  z-index: -1;
  opacity: 0.4;
  -webkit-transform: scale3d(0.8, 0.5, 1);
  transform: scale3d(0.8, 0.5, 1);
}
.wellcome-meal .button--moema:hover {
  -webkit-transition: background-color 0.3s 0s, color 0.3s 0s;
  transition: background-color 0.3s 0s, color 0.3s 0s;
  color:#fff;
  -webkit-animation: anim-moema-1 0.6s forwards;
  animation: anim-moema-1 0.6s forwards;
}
.wellcome-meal .button--moema:hover::before {
  -webkit-animation: anim-moema-2 0.6s 0.5s forwards;
  animation: anim-moema-2 0.6s 0.5s forwards;
}
.menu-wrap{ 
  position:relative;
  width:100%;
}  
.menu-wrap:after {
  content: '';
  display: block;
  clear: both;
} 
.menu-wrap h4{ 
  text-align:left;
  padding-bottom:20px;
}  
.menu-wrap h4.margin-menu{ 
  margin-top:13px;
}
.menu-wrap h6{ 
  position:relative;
  text-align:left;
  width:100%;
  font-weight:500;
    text-transform: lowercase;
}   
.menu-wrap h6 span{ 
  float:right;
}   
.menu-wrap h6 span.dots{
  position:absolute;
  float:none;
  top:23px;
  left:-1px;
  right:-1px;
  z-index:1;
  margin:0;
  border:0;
  height:2px;
  display:block;
  background-position:bottom;
  background-size:6px 2px;
  background-repeat:repeat-x
} 
.menu-wrap p{ 
  padding-top:8px;
  text-align:left;
  font-style: italic;
  font-weight:400;
  font-size:13px;
  line-height:19px;
  padding-bottom:18px;
    text-transform: lowercase;
}
/* #About
================================================== */

.top-call-action{
    position:relative;
  width:100%;
  margin:0 auto;
  text-align:center;
}
.top-call-action:after {
  content: '';
  display: block;
  clear: both;
}
.top-call-action h6{
  margin:0 auto;
  text-align:center;
  font-weight:500;
  margin-right:25px;
  color:#bebebe;
  display:inline-block;
}
.top-call-action .link{
    position:relative;
  display:inline-block;
  margin:0 auto;
  font-family: 'FontAwesome';
  text-align:center;
  font-weight:300;
  color:#fff;
  border-radius: 10px/40px;
  width:70px;
  height:32px;
  font-size:14px;
  line-height:32px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear; 
}
.top-call-action .link:hover{
    background-color:#000;
}
.line {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 1px;
    background-color: rgba(0,0,0,.08);
    display: block;
}
.process{
    position:relative;
  width:100%;
  margin:0 auto;
  text-align:center;
}
.process h6{
    text-align:center;
  padding-bottom:20px;
}
.process h6 b{
  font-family: 'FontAwesome';
  padding-left:25px;
  padding-right:25px;
  font-size:14px;
  font-weight:300;
}
.process p{
  margin:0 auto;
  text-align:center;
  width:100%;
  max-width:850px;
}
.home-video {
  position:relative;
  width:100%;
  max-width:650px;
  margin:0 auto;
  text-align:center;  
  outline: 6px double #51504e;
  -webkit-box-shadow: 0 0 60px #51504e;
        box-shadow: 0 0 60px #51504e;
}
.big-text-top {
  margin-top:30px;
  font-size: 16px;
  line-height:26px;
  font-weight:500;
  text-transform:uppercase;
  color: #dbdbdb;
  text-align:center;
  letter-spacing:5px;
    text-shadow: 3px 3px 0px rgba(112,112,112,.2);
}
.big-text-top b {
  font-size: 40px;
  line-height:50px;
  color: #fff;
  font-weight:700;
  letter-spacing:2px;
  text-shadow: 6px 6px 0px rgba(112,112,112,.3);
}
#owl-home .item {
    position: relative;
    width: 100%;
    display: block;
    height: 100vh;
    background-size: cover;
    background-position: center center;
}
#owl-home.owl-theme .owl-controls{
  position:absolute;
  left:30px;
  text-align: center;
  top:50%;
  z-index:100;
  width:8px;
  z-index:20;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#owl-home.owl-theme .owl-controls .owl-page span{
  background:#212121;
  border-radius:50%;
  width:4px;
  height:4px;
  display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
#owl-home.owl-theme .owl-controls .owl-page span:hover{
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
#owl-home.owl-theme .owl-controls .owl-page.active span {
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.home-link{
  position:absolute;
  width:100%;
  bottom:30px;
  left:0;
  z-index:10;
}
.services-wrap.services-box .icon-ser{
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: .2;
}
.services-wrap.services-box .icon-ser i{
  font-size: 90px;
}

/* #Portfolio
================================================== */

#projects-grid.projects-grid-2{
  position:relative;
  text-align:center;
  margin:0 auto;
  width:calc(100% - 50px);
  overflow:hidden;
  padding-top:20px;
  padding-bottom:25px;
  display:block;
}
#projects-grid.projects-grid-2:after {
  content: '';
  display: block;
  clear: both;
}
.projects-grid-2 .portfolio-box-1{
  position:relative;
  float:left;
  margin:25px;
  width:calc(33.33% - 50px);
  display:inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow:hidden;
  margin-left:24px;
  -webkit-transform: translate3d(1px,0,0);
  transform: translate3d(1px,0,0);
  box-shadow:0 0 1px 1px rgba(12,12,12,.05);
}
.projects-grid-2 .portfolio-box-1.box-port-half{
  width:calc(50% - 50px);
  margin-left:22px;
  -webkit-transform: translate3d(3px,0,0);
  transform: translate3d(3px,0,0);
}
.projects-grid-2 .portfolio-box-1 .mask{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  background-color:#212121;
  background-image:url(../../../themes/talos/images/more.png);
  background-position:center center;
  background-repeat:no-repeat;
  background-size:30px 30px;
  opacity:0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.projects-grid-2 .portfolio-box-1:hover .mask{
  opacity:.9;
}
.projects-grid-2 .portfolio-box-1 h3{
  position:absolute;
  left:25px;
  bottom:40px;
  font-family: 'Poppins', sans-serif;
  letter-spacing:1px;
  font-weight:500;
  font-size: 18px; 
  line-height: 24px;
  text-align:left;
  z-index:3;
  letter-spacing:-1px;
  color:#fff;
  opacity:0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.projects-grid-2 .portfolio-box-1:hover h3{
  left:40px;
  opacity:1;
}
.projects-grid-2 .portfolio-box-1 h3 span{
  font-weight:300;
  font-size: 10px;
  letter-spacing:2px;
}
.projects-grid-2 .portfolio-box-1 img{
  width:100%;
  display:block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.projects-grid-2 .portfolio-box-1:hover img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


#portfolio-filter.portfolio-filter-2 {
  position:absolute;
  text-align: center;
  z-index:20;
  top:60px;
  left:50%;
  padding:4px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius:3px;
  background-color:rgba(255,255,255,.9);
  box-shadow:0 0 3px 1px rgba(12,12,12,.1);
}
#filter {
  position:relative;
  width:100%;
  text-align: center;
}
#filter li {
  display: inline-block;
  text-align: center;
}
#filter:after {
  content: '';
  display: block;
  clear: both;
}
.portfolio-filter-2  #filter li a {
  position: relative;
  display: inline-block;
  letter-spacing:1px;
  font-weight:400;
  padding:5px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px; 
  text-align: center;
  outline: none;
  color: #212121;
  border-radius:3px;
  background-color:#f9f9f9;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.portfolio-filter-2  #filter li .current {
  color: #fff;
}
.portfolio-filter-2  #filter li a:hover {
  color: #fff;
}
.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.6s;
       -moz-transition-duration: 0.6s;
            transition-duration: 0.6s;
}
.isotope {
    -webkit-transition-property: height, width;
       -moz-transition-property: height, width;
            transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
       -moz-transition-property:    -moz-transform, opacity;
        -ms-transition-property:     -ms-transform, opacity;
         -o-transition-property:         top, left, opacity;
            transition-property:         transform, opacity;
} 
.home-text.home-design{
  position:absolute;
  width:100%;
  top:50%;
  left:0;
  z-index:10;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* #letters
================================================== */

.cd-title {
  position: relative;
}
.cd-title h1 {
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}
/* -------------------------------- 

xtype 

-------------------------------- */
.cd-headline.type .cd-words-wrapper {
  vertical-align: top;
  overflow: hidden;
}
.cd-headline.type .cd-words-wrapper::after {
  /* vertical bar */
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 90%;
  width: 2px;
  background-color: #aebcb9;
}
.cd-headline.type .cd-words-wrapper.waiting::after {
  -webkit-animation: cd-pulse 1s infinite;
  -moz-animation: cd-pulse 1s infinite;
  animation: cd-pulse 1s infinite;
}
.cd-headline.type .cd-words-wrapper.selected {
}
.cd-headline.type .cd-words-wrapper.selected::after {
  visibility: hidden;
}
.cd-headline.type .cd-words-wrapper.selected b {
  color: #fff;
}
.cd-headline.type b {
  visibility: hidden;
}
.cd-headline.type b.is-visible {
  visibility: visible;
}
.cd-headline.type i {
  position: absolute;
  visibility: hidden;
}
.cd-headline.type i.in {
  position: relative;
  visibility: visible;
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -moz-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}

.margin-bottom-25{
  margin-bottom: 25px;
}
.con-soc-links{
  position:relative;
  width:100%;
  text-align:center;
  margin:0 auto;
  overflow:hidden;
}
.con-soc-links a{
  display:inline-block;
  color:#fff;
  font-family: 'Poppins', sans-serif;
  font-weight:300;
  text-align:center;
  letter-spacing:2px;
  font-style: italic; 
  padding-bottom:14px;
  padding-top:4px;
  font-size: 16px; 
  line-height: 20px;
  overflow:hidden;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.con-soc-links a:hover {
    font-size:11px;
    border-radius: 3px;
    padding: 6px 20px;
}
.con-soc-links a span{
  position:relative;
  padding-left:25px;
  padding-right:25px;
}
.con-soc-links a span:before{
  position:absolute;
  content:'';
  bottom:-20px;
  border-radius:3px;
  left:0;
  width:100%;
  height:2px;
  z-index:-1;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.con-soc-links a:hover span:before{
  bottom:-7px;
  height:30px;
}
.font-weight-700{
  font-weight: 700;
}
.letter-spacing-3{
  letter-spacing: 3px;
}

/* #Showcase
================================================== */

.case-study-wrapper {
  position:absolute;
  width:100%;
  max-width:500px;
  top:50%;
  left:50%;
  z-index:10;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.case-study-wrapper li {
  list-style:none;
  display:block;
  padding-bottom:30px;
  text-align:center;
  margin:0 auto;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.case-study-wrapper li a {
  color:#f9f9f9;
  text-align:center;
  display:block;
  font-size:26px;
  padding:0;
  margin:0;
  font-family: 'Poppins', sans-serif;
  font-weight:700;
  line-height:22px;
  letter-spacing:2px;
  color:#f9f9f9;
}
.case-study-wrapper li a span {
  font-size:11px;
  font-family: 'Poppins', sans-serif;
  font-weight:500;
  padding:0;
  margin:0;
  line-height:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#999;
} 
.case-study-wrapper li a:hover {
  color:#f9f9f9;
}
.case-study-wrapper:hover li {
  opacity:0.2;
} 
.case-study-wrapper:hover li:hover {
  opacity:1;
}

.dark-over-portfolio{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:5;
  background-color:#212121;
  opacity:.8;
}
  
.case-study-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin:0;
  z-index:2;
} 
.case-study-images li {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position:center center;
  background-repeat:no-repeat;
  top: 0;
  left: 0;
  overflow: hidden;
  list-style:none;
  opacity:0;
  webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.case-study-images li.show {
  opacity:1;
} 

.next-pre-background{
  background-color: #181818;
}
.project-next-prev{
  position:relative;
  width:100%;
  overflow:hidden;
  z-index: 5;
}
.project-next-prev:after {
  content: '';
  display: block;
  clear: both;
}
.project-prev{
  position:relative;
  width:50%;
  display:inline-block;
  height:350px;
  float:left;
  background:url(../../../themes/talos/images/project-left.svg)no-repeat center center;
  background-size:120px 120px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.project-prev .text,
.project-next .text{
  position:absolute;
  letter-spacing:3px;
  font-family: 'Poppins', sans-serif;
  width:100%;
  left:0;
  top:120%;
  margin-top:-28px;
  font-size:20px;
  line-height:28px;
  text-align:center;
  color:#fff;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.project-prev:hover .text,
.project-next:hover .text{
  top:50%;
}
.project-prev .text span,
.project-next .text span{
  font-family: 'Open Sans', sans-serif;
  font-weight:600;
  font-size: 10px;
  color:#b5b5b5;
  line-height:28px;
  letter-spacing:2px;
  text-transform: uppercase;
}

.project-prev:hover{
  background-position:center -100%;
}
.project-next{
  position:relative;
  width:50%;
  display:inline-block;
  height:350px;
  float:right;
  background:url(../../../themes/talos/images/project-right.svg)no-repeat center center;
  background-size:120px 120px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.project-next:hover{
  background-position:center -100%;
}
.tp-dottedoverlay.twoxtwo{
  background:#212121;
  opacity: .7;
}
.fade-elements{
  opacity: 0.99;
}
.img-from-bottom {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.img-from-bottom.wpb_single_image img {
    width: 100%;
    max-width: 950px;
    display: block;
    text-align: center;
    margin: 0 auto;
}
.vc_item img{
  width:100%;
  height:auto;
}
.owl-gallery {
    position: relative;
    margin-top: 25px;
    width: calc(100% - 50px);
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    padding-bottom: 70px;
}
.owl-gallery .item {
    position: relative;
    overflow: hidden;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
}
.owl-gallery .item .mask {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 5px;
    z-index: 5;
    cursor: pointer;
    background-image: url(../../../themes/talos/images/more.png);
    background-color: rgba(11,11,11,.9);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
    opacity: 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.owl-gallery .item .mask:hover{
  opacity:1;
}
.owl-gallery.owl-theme .owl-controls{
  text-align: center;
  width:100%;
  z-index:20;
  position: absolute;
  bottom: 0px;
}
.owl-gallery.owl-theme .owl-controls .owl-page span{
  background:#000;
  border-radius:0;
  width:2px;
  height:12px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.owl-gallery.owl-theme .owl-controls .owl-page.active span {
  height:20px;
}
/* #FAQ
================================================== */


.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.smk_accordion .accordion_in {
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
  margin-bottom:2px;
}
.smk_accordion .accordion_in .acc_head {
  position: relative;
  padding: 15px;
  text-align:left;
  background:#fafafa;
  font-family: 'Poppins', sans-serif;
  font-weight:500;
  font-size: 14px;
  line-height:20px;
  color: #414141;
  letter-spacing:1px;
  display: block;
  cursor: pointer;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.smk_accordion .accordion_in .acc_head:hover {
  color:#fff;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
  color:#fff;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  background: url(../../../themes/talos/images/acc1.png)no-repeat center center;
  background-size:20px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.smk_accordion .accordion_in .acc_head:hover .acc_icon_expand {
  background: url(../../../themes/talos/images/acc2.png)no-repeat center center;
  background-size:20px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
  background: url(../../../themes/talos/images/acc3.png)no-repeat center center;
  background-size:20px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.smk_accordion .accordion_in .acc_content {
  color:#606060;
  padding:30px;
  background:#f2f2f2;
}
.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}
.smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {
}
.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {
}
.smk_accordion .accordion_in.acc_active > .acc_content {
  display: block;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head,
.smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding-left: 40px;
}

.product-det .star-rating{
  display: none;
}
.product-det .price del{
  display: block;
}
.product-det .price ins{
  text-decoration:  none;
}
.shop-item.portfolio-box-1 .product-det h3 span.amount{
  font-weight: 400;
  letter-spacing: 0px;
}
.shop-item.portfolio-box-1 .product-det h3 ins span.amount,.shop-item.portfolio-box-1 .product-det h3 ins span.amount span{
    text-align: center;
    padding-bottom: 20px;
    font-size: 38px;
    line-height: 38px;
    font-style: normal;
    font-weight: 400;
    text-decoration:  none;
}
.woocommerce-review-link,.posted_in a{
  color: #414141;
  -webkit-transition : all 0.3s ease-out;
  -moz-transition : all 0.3s ease-out;
  -o-transition :all 0.3s ease-out;
  transition : all 0.3s ease-out;
}

.cart-slide-out{ 
  position:fixed;
  right:0;
  top:170px;
  z-index:300;
      padding: 14px 18px;
  background-color:#212121;
  color:#fff;
  cursor:pointer;
}
.cart-slide-out img{ 
  width:25%;
  height:auto;
  float: right!important;
}
.cart-slide-out .cart-slide-out-item{ 
  position:absolute;
  cursor: default;
  top:45px;
  right:-270px;
  width:240px;
  padding:20px 20px 20px 10px;
  z-index:301;
  background:#fff;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.cart-slide-out-item p.total{
  color: #414141;
  margin: 5px 0;
}
.cart-slide-out-item p.buttons a{
  float: left;
    width: 35%;
    font-size: 13px;
    padding: 12px 15px;
    text-align: center;
}
.cart-slide-out-item p.buttons a:hover{
  color: #fff;
}
.cart-slide-out-item p.buttons a:last-child{
  float:right;
}
.cart-slide-out-item ul li.mini_cart_item{
  padding:4px 0;
  clear: both;
}
.cart-slide-out-item ul li.empty{
  color:#414141;
  text-align: center;
}
.woocommerce a.remove:hover{
  background:transparent!important;
}
.cart-slide-out-item ul li.mini_cart_item a{
  color: #414141;
      font-weight: bold;
    font-size: 13px;
    -webkit-transition : all 0.3s ease-out;
    -moz-transition : all 0.3s ease-out;
    -o-transition :all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.cart-slide-out-item ul li.mini_cart_item:before{
  content: " ";
    display: table;
}
.cart-slide-out-item ul li.mini_cart_item a.remove{
  position: absolute;
  line-height: 3;
  margin-left: 0;
}
.cart-slide-out-item ul li.mini_cart_item .quantity{
  color:#414141;
  display: block;
}
.product-detail a, .product-detail span.quantity {
    margin-left: 20px;
}
.cart-slide-out:hover .cart-slide-out-item{ 
  right:0;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item{ 
  position:relative;
  padding:30px;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item:after {
  content: '';
  display: block;
  clear: both;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item img{ 
  width:80px;
  display:block;
  margin-right:20px;
  margin-bottom:20px;
  float:left;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item h6{ 
  text-align:left;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item p{ 
  text-align:left;
  font-size:11px;
  font-weight:500;
  letter-spacing:3px;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item .subtotal{ 
  position:relative;
  width:100%;
  color: #414141;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight:500;
  text-align:left;
  padding-top:10px; 
  padding-bottom:10px;
  margin-bottom:10px;
  border-bottom:1px solid rgba(31,31,31,.1);
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item .subtotal span{ 
  float:right;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item a{ 
  color: #414141;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  line-height: 14px;
  letter-spacing:2px;
  font-weight:600;
  text-align:left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item a:after{ 
  font-family: 'FontAwesome';
  content: '\f178 ';
  padding-left:12px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.cart-slide-out .cart-slide-out-item .inside-cart-out-item a:hover:after{ 
  padding-left:16px;
}
.border-grey{
  border: 1px solid rgba(225,225,225,.2);
}

.hero-wrap-pages-cs,.hero-wrap-pages{
  z-index: 10;
  position: absolute;
  width: 100%;
  top: 50%;
  webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hero-wrap-pages h2{
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #fff;
  text-transform: none;
}
.hero-wrap-pages p{
  color: #fff;
  margin-top: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}
.hero-wrap-pages-cs h2{
      letter-spacing: 2px;
    font-weight: 900;
    color: #fff;
    text-transform: none;
    font-size: 45px;
}
.hero-wrap-pages-cs p{
  font-size: 17px;
    line-height: 23px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #f8f8f8;
    margin-top: 15px;
}
ul.countdown {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
}
ul.countdown li {
    display: inline-block;
}
ul.countdown li span {
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    color: #fff;
}
ul.countdown li.seperator {
    font-size: 40px;
    width: 40px;
    text-align: center;
    line-height: 90px;
    vertical-align: top;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-weight: 600;
}
ul.cs_socials{
  margin-top: 40px;
}
ul.cs_socials li{
  display: inline-block;
  padding: 0 10px;
}
ul.cs_socials li i{
  font-size: 20px;
  color: #fff;
  -webkit-transition : all 0.3s ease-out;
  -moz-transition : all 0.3s ease-out;
  -o-transition :all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.container .container{
  width: 100%;
}

@media only screen and (max-width: 768px) { 
  .portfolio-box-1,.portfolio-box-1.col-2,.portfolio-box-1.col-4,.portfolio-box-1.col-5{
    width:50%;
  } 
  .projects-grid-2 .portfolio-box-1{margin: 10px;}
  .projects-grid-2 .portfolio-box-1,
  .projects-grid-2 .portfolio-box-1.col-2,
  .projects-grid-2 .portfolio-box-1.col-4,
  .projects-grid-2 .portfolio-box-1.col-5{
    width:calc(50% - 20px);
  } 
  #portfolio-filter.portfolio-filter-2{
    position: relative;
    top: 0px;
  }
  .shop-item.portfolio-box-1.col-3,
  .shop-item.portfolio-box-1.col-4{
    width:50%;
  }
  ul.countdown li span {
    font-size: 35px;
    line-height: 60px;
    font-weight: 400;
    color: #fff;
  }
  ul.countdown li.seperator {
    font-size: 25px;
    width: 18px;
    line-height: 65px;
    vertical-align: top;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 480px) {
 .portfolio-box-1,.portfolio-box-1.col-2,.portfolio-box-1.col-4,.portfolio-box-1.col-5{
    width:100%;
  } 
  .projects-grid-2 .portfolio-box-1,
  .projects-grid-2 .portfolio-box-1.col-2,
  .projects-grid-2 .portfolio-box-1.col-4,
  .projects-grid-2 .portfolio-box-1.col-5{
    width:calc(100% - 20px);
  }
  .shop-item.portfolio-box-1.col-3,
  .shop-item.portfolio-box-1.col-4{
    width:100%;
  }
  a.button-video{
    margin-top: 30px;
    margin-left: 0px;
  } 
  .hero-wrap-pages-cs h2{font-size: 25px;}
  .hero-wrap-pages-cs p{font-size: 14px;}
  ul.countdown li span{font-size: 25px;line-height: 35px;}
  ul.countdown li.seperator{font-size: 15px;width:5px;line-height: 40px;}
  ul.cs_socials li i{font-size: 15px;}

}
.icon-about img{
  filter: hue-rotate(-49deg) saturate(68%) brightness(90%);
}@font-face{font-display:block;font-family:TablePress;font-style:normal;font-weight:400;src:url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAPUAA0AAAAACZAAAAN+AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCUhEICoQIgnILFgABNgIkAygEIAWGcgeBARv6B8iuBzK53oAhKg2KWDsrezjalSefocfD9/uZ575PSbYEqJHAIdo6tMDGdCprFIHd+F9r+rZE46O2iHBJfoAuxwW0yfgKS8KGVFE4dHX1gPmgVhzwhcJbReQ9RWXcraeutbmNHE7T7B1sex8stfMfnkvv0XsgUZrYO1hirXme9TnUkBvQ22RGX50VAr48H54Cn9b8GD73edAAhjboBpIQ6kKOhCz7GA8V5HfzyeA6h0mnrFTJnPjxC7KCrl9caqIUg0EAYACGDBn6YGCxeIE+EkwANTWJX/brZpNfyE5o/7r9uPZjS4tESbCTExLCjxOEbxGi2dQeNEAXUMMlvADkqSV0IHXtkQXNOnI2ctJpRIPt8+HjNivx3rlQYA8FqGwdCxF2aZrdJluMnaqFvy+yngVKbBcn0fSOd1xTpnW4HTkptV8Gi2kvCeUHC0BD+D0VKMIqXniZPJyPya9D7gT6DvUpwJER6avgKDsOfW9jU+YGc/ng6MhA3VSar3NdtvrD9WHZurKVKYOi0RwlY9500YSuWDE084F+jMinu4sTudD5yBTTozA9Horpmb+M3TwIBHempnzdpu1/raWypX0JND/ki4p71CQQlFqnAvkijABrVFIq5BdNJbFncoBOF03/h3IINPQRBxJCYDoAOnkRIDR0w0BSmYiBzDinAuQ6eROg0DEGY6DUiEUYqKyILwFq2qS9GKhrpFsykdeFLmDjknYG4jKbNeNyQ1zhCoP840pdYiqu8jTW4mp6pMXH1HVJp8wRmHmQKTKiUOBVSMHrlKuBlYidxkMgw6/bMoG5RD6qfs8yO8LVqFCFa8ELrcVLEqTaS7UG5aqVq1GlWi28k3rRgCjbiU+qqOItvDEqXjkvwF/dUF595jB8LSqqgwIWAWsRmcJJ5GsHbYUqVbirBi5IpRMxLso/i2oSA6ZYDoMFCiknI7ZkGacSVYUjlLSXyG8n08nOQcXTeyzU5ozbiGRQZRt0vu/TMoEV8RLI3DiBSiVzMtNKAPgErlwLoqiAY2fJ9UbRMU/0rz38UP5FQtH3i8V3KYSHYJdSYRnwW8XazUAUop3gQY19hkEH98OA2QQ6wg0S+FjtwOwdOvF5J2VXBBLQmo2EAxsIKVJkkUcRZVRRa7NrP+my6Ns8cKszHYJf+fPPLPTq5vFcmYKZNL+fn1CZDgoYecKZHwA=) format("woff2"),url(//https://gposers.com/wp-content/plugins/tablepress/css/build/tablepress.woff) format("woff")}.tablepress{--text-color:#111;--head-text-color:var(--text-color);--head-bg-color:#d9edf7;--odd-text-color:var(--text-color);--odd-bg-color:#f9f9f9;--even-text-color:var(--text-color);--even-bg-color:#fff;--hover-text-color:var(--text-color);--hover-bg-color:#f3f3f3;--border-color:#ddd;--padding:0.5rem;border:none;border-collapse:collapse;border-spacing:0;clear:both;margin:0 auto 1rem;table-layout:auto;width:100%}.tablepress>:not(caption)>*>*{background:none;border:none;float:none!important;padding:var(--padding);text-align:left;vertical-align:top}.tablepress>*+tbody>*>*,.tablepress>tbody>*~*>*,.tablepress>tfoot>*>*{border-top:1px solid var(--border-color)}.tablepress>:where(thead,tfoot)>*>th{background-color:var(--head-bg-color);color:var(--head-text-color);font-weight:700;vertical-align:middle;word-break:normal}.tablepress>:where(tbody)>.odd>*{background-color:var(--odd-bg-color);color:var(--odd-text-color)}.tablepress>:where(tbody)>.even>*{background-color:var(--even-bg-color);color:var(--even-text-color)}.tablepress>.row-hover>tr:hover>*{background-color:var(--hover-bg-color);color:var(--hover-text-color)}.tablepress img{border:none;margin:0;max-width:none;padding:0}.tablepress-table-description{clear:both;display:block}.dataTables_wrapper{clear:both;margin-bottom:1rem;position:relative}.dataTables_wrapper .tablepress{clear:both;margin-bottom:0}.dataTables_wrapper:after{clear:both;content:"";display:block;height:0;line-height:0;visibility:hidden}.dataTables_wrapper label input,.dataTables_wrapper label select{display:inline;margin:2px;width:auto}.dataTables_length{float:left;white-space:nowrap}.dataTables_filter{float:right;white-space:nowrap}.dataTables_filter label input{margin-left:.5em;margin-right:0}.dataTables_info{clear:both;float:left;margin:4px 0 0}.dataTables_paginate{float:right;margin:4px 0 0}.dataTables_paginate .paginate_button{color:#111;display:inline-block;margin:0 5px;outline:none;position:relative;text-decoration:underline}.dataTables_paginate .paginate_button:first-child{margin-left:0}.dataTables_paginate .paginate_button:last-child{margin-right:0}.dataTables_paginate .paginate_button:after,.dataTables_paginate .paginate_button:before{color:#d9edf7}.dataTables_paginate .paginate_button:hover{cursor:pointer;text-decoration:none}.dataTables_paginate .paginate_button:hover:after,.dataTables_paginate .paginate_button:hover:before{color:#049cdb}.dataTables_paginate .paginate_button.disabled{color:#999;cursor:default;text-decoration:none}.dataTables_paginate .paginate_button.disabled:after,.dataTables_paginate .paginate_button.disabled:before{color:#f9f9f9}.dataTables_paginate .paginate_button.current{cursor:default;font-weight:700;text-decoration:none}.dataTables_paginate.paging_simple{padding:0 15px}.dataTables_paginate.paging_simple .paginate_button.next:after,.dataTables_paginate.paging_simple .paginate_button.previous:before{-webkit-font-smoothing:antialiased;bottom:0;content:"\f053";font-family:TablePress;font-size:14px;font-weight:700;height:14px;left:-14px;line-height:1;margin:auto;position:absolute;right:auto;text-align:left;text-shadow:.1em .1em #666;top:0;width:14px}.dataTables_paginate.paging_simple .paginate_button.next:after{content:"\f054";left:auto;text-align:right}.dataTables_scroll{clear:both}.dataTables_scroll .tablepress{width:100%!important}.dataTables_scrollHead table.tablepress{margin:0}.dataTables_scrollBody{-webkit-overflow-scrolling:touch}.dataTables_scrollBody .tablepress thead th:after{content:""}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th>div.dataTables_sizing{height:0;margin:0!important;overflow:hidden;padding:0!important}.tablepress{--head-active-bg-color:#049cdb;--head-active-text-color:var(--head-text-color)}.tablepress .sorting,.tablepress .sorting_asc,.tablepress .sorting_desc{cursor:pointer;outline:none;padding-right:20px;position:relative}.tablepress .sorting:after,.tablepress .sorting_asc:after,.tablepress .sorting_desc:after{-webkit-font-smoothing:antialiased;bottom:0;font-family:TablePress;font-size:14px;font-weight:400;height:14px;left:auto;line-height:1;margin:auto;position:absolute;right:6px;top:0}.tablepress .sorting:after{content:"\f0dc"}.tablepress .sorting_asc:after{content:"\f0d8";padding:0 0 2px}.tablepress .sorting_desc:after{content:"\f0d7"}.tablepress .sorting:hover,.tablepress .sorting_asc,.tablepress .sorting_desc{background-color:var(--head-active-bg-color);color:var(--head-active-text-color)}
.tablepress-id-1{font-family:'Poppins',sans-serif;width:auto;margin:0 auto 1em}.tablepress-id-1 .column-2 td{width:150px;text-align:center;font-weight:500}.tablepress-id-1 .column-2,.tablepress-id-1 .column-3,.tablepress-id-1 .column-4,.tablepress-id-1 .column-5,.tablepress-id-1 .column-6{width:150px;text-align:center}.tablepress .row-hover tr:hover td{background-color:#666;color:#fff}.tablepress-id-1 .column-1{font-weight:600}.tablepress .odd td{background-color:#ebebeb;color:#000}.tablepress .even td{background-color:#fff;color:#000}.tablepress-id-1 th{background-color:#323232!important;color:#fff;padding:25px 10px}