<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox &lt; 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"], input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}

.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}

.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
*********************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
Border radius
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter &amp; jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
.transition, body, header, footer, section {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.transitionBg, a, button, input, input:focus, select, option, textarea {
  -webkit-transition: background-color 200ms;
  -moz-transition: background-color 200ms;
  -ms-transition: background-color 200ms;
  -o-transition: background-color 200ms;
  transition: background-color 200ms;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.box-shadow-t-b, .banners .shadow, .banners2 .transparent, .new-to-rkta {
  -moz-box-shadow: inset 0 15px 27px -13px rgba(105, 104, 104, 0.03), inset 0 -15px 27px -6px rgba(105, 104, 104, 0.04);
  -webkit-box-shadow: inset 0 15px 27px -13px rgba(105, 104, 104, 0.03), inset 0 -15px 27px -6px rgba(105, 104, 104, 0.04);
  box-shadow: inset 0 15px 27px -13px rgba(105, 104, 104, 0.03), inset 0 -15px 27px -6px rgba(105, 104, 104, 0.04);
}

.bg-img, .banners, .banners2, .auction-list-img, .new-to-rkta, .list-of-insta .col-5, .sidebar-auctions .side-auction-image, .auctions-page-image, .more-auctions .more-auctions-image, .departments-items-image {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
}

.border-radius, .footer-widget .but1a, input[type="text"], input[type="email"], .slider-content .but1a, .auction-list .but2, .new-to-rkta .but1b, .new-to-rkta .but3, .items-page-buttons a {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

body {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4f565c;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-weight: normal;
  letter-spacing: 1px;
}

.full-width, nav, section, header, footer, form, .wrapper2, .list-style3, .social-icons, .sidebar-auctions {
  float: left;
  height: auto;
  width: 100%;
}

nav, section, header, footer, form {
  margin: 0;
}

header {
	position:relative;
	z-index:9999;
}

p:empty {
  margin: 0 !important;
  padding: 0 !important;
}

a, button, input, input:focus, select, option, textarea {
  color: inherit;
  text-decoration: none;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  outline: 0 solid transparent;
  border: 0 solid transparent;
  letter-spacing: 1px;
  outline: 0;
}

a {
  color: #42615c;
  font-weight: 500;
}

a:hover {
  color: #2d433f;
}

.wrapper {
  padding-top: 23px;
  padding-bottom: 23px;
}

.wrapper2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.mobile-nav {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0 0 15px 0;
}

ul {
  margin: 15px 10px;
  list-style: disc;
  list-style-position: inside;
}

ul li {
  margin-bottom: 10px;
}

::-webkit-input-placeholder {
  color: #787b7f;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #787b7f;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #787b7f;
}

:-ms-input-placeholder {
  color: #787b7f;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
  background-color: #FFF;
  border: 1px solid transparent;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, select:focus, textarea:focus, .field:focus {
  border: 1px solid #42615c;
}

.text-link {
  color: #42615c;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: #364c48;
}

/*********************
                RKTA General style
*********************/
.but1, .but1a, .but1b {
  background-color: #42615c;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.but1:hover, .but1a:hover, .but1b:hover {
  background-color: #364c48;
  color: #fff;
}

.but1:focus, .but1a:focus, .but1b:focus {
  color: #fff;
}

.but1a {
  font-size: 15px;
}

.but1b {
  font-size: 14px;
}

.but2 {
  background-color: #b8b9b7;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.but2:hover {
  background-color: #7f7f7f;
  color: #fff;
}

.but2:focus {
  color: #fff;
}

.but3 {
  background-color: #839d9c;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.but3:hover {
  background-color: #5d8f8d;
  color: #fff;
}

.but3:focus {
  color: #fff;
}

.but4 {
  background-color: #949594;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.but4:hover {
  background-color: #7f7f7f;
  color: #fff;
}

.but4:focus {
  color: #fff;
}

.but5 {
  background-color: #787b7f;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.but5:hover {
  background-color: #5B5D61;
  color: #fff;
}

.but5:focus {
  color: #fff;
}

.but6 {
  color: #42615c;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.but6:hover {
  color: #25272b;
}

.but6:focus {
  color: #42615c;
}

.para2 {
  font-size: 15px;
  color: #4f565c;
}

.para3 {
  font-size: 16px;
  color: #949594;
  text-transform: lowercase;
  letter-spacing: 3px;
}

.para4 {
  font-size: 17px;
  color: #787b7f;
}

.para5 {
  font-size: 15px;
  color: #949594;
}

.para6 {
  font-size: 19px;
  color: #4f565c;
}

.para7 {
  font-size: 15px;
  color: #787b7f;
}

.para8 {
  font-size: 13px;
  color: #787b7f;
}

.para9 {
  font-size: 12px;
  color: #787b7f;
}

.para10 {
  font-size: 15px;
  color: #333;
}

.para11 {
  font-size: 18px;
  color: #839d9c;
}

.para11a {
  font-size: 18px;
  color: #4f565c;
}

.para12 {
  font-size: 16px;
  color: #4f565c;
}

.para12a {
  font-size: 18px;
  color: #4f565c;
}

.para13 {
  font-size: 18px;
  color: #b8b9b7;
}

.para14 {
  font-size: 18px;
  color: #333;
  text-transform: uppercase;
}

.para15 {
  font-size: 16px;
  color: #787b7f;
}

.para16 {
  font-size: 18px;
  color: #949594;
}

.para17 {
  font-size: 15px;
  color: #4f565c;
  font-weight: bold;
}

.para18 {
  text-align: center;
  padding-bottom: 37px;
  width: 75%;
  margin: 0 auto;
}

.para19 {
  text-align: center;
  width: 75%;
  margin: 0 auto;
  font-weight: 600;
  font-size: 17px;
}

.span1 {
  color: #42615c;
}

.span2 {
  background-color: #42615c;
  font-size: 27px;
  font-family: "Rozha One", serif;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  min-width: 50px;
  text-align: center;
}

.h1 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.h2 {
  font-size: 26px;
  color: #4f565c;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.h2a {
  font-size: 26px;
  color: #42615c;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.h3 {
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.h4 {
  font-size: 55px;
  font-family: "Rozha One", serif;
  color: #4f565c;
  line-height: 1;
  margin-bottom: 10px;
}

.h4a {
  font-size: 27px;
  font-family: "Rozha One", serif;
  color: #4f565c;
  line-height: 1;
  margin-bottom: 10px;
}

.h4b {
  font-size: 40px;
  font-family: "Rozha One", serif;
  color: #4f565c;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.list-style1 {
  margin: 0;
  list-style: none;
}

.list-style1 li {
  display: inline;
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
  text-transform: lowercase;
  text-align: center;
}

.list-style1 li a {
  text-decoration: none;
  font-weight: normal;
}

.list-style2, .list-style2 ul {
  margin: 0;
  list-style: none;
}

.list-style2 li {
  font-size: 16px;
  color: #787b7f;
  margin-bottom: 2px;
}

.list-style2 li a {
  text-decoration: none;
  font-weight: normal;
  color: #787b7f;
}

.list-style2 li a:hover {
  color: #333;
}

.list-style3 {
  margin: 0;
  list-style: none;
}

.list-style3 li {
  float: left;
  width: 49%;
  margin-right: 1.5%;
  margin-bottom: 0;
}

.list-style3 li a {
  text-decoration: none;
  font-weight: normal;
  color: #787b7f;
}

.list-style3 li:nth-child(even) {
  margin-right: 0;
}

/*********************
                Header
*********************/
a.logo {
  width: 100%;
  float: left;
  line-height: 1;
}

/*********************
                Desktop Menu
*********************/
nav.hide-for-responsive {
  padding-top: 22px;
}

nav.hide-for-responsive ul {
  list-style: none;
  margin: 0;
}

nav.hide-for-responsive ul li {
  margin-bottom: 0;
}

nav.hide-for-responsive &gt; ul {
  float: right;
}

nav.hide-for-responsive &gt; ul &gt; li {
  float: left;
  border-right: 1px solid #d5d3d1;
  padding-right: 6px;
  margin-right: 6px;
  line-height: 1;
  z-index: 1;
}

nav.hide-for-responsive &gt; ul &gt; li &gt; li:last-child {
  border-right: none;
}

nav.hide-for-responsive &gt; ul &gt; li &gt; a {
  text-transform: uppercase;
  padding-bottom: 8px;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

nav.hide-for-responsive &gt; ul &gt; li &gt; a:hover {
  color: #42615c;
  border-bottom: 2px solid #42615c;
}

nav.hide-for-responsive &gt; ul &gt; li &gt; .sub-menu &gt; li:hover &gt; a {
  color: #000;
}

nav.hide-for-responsive &gt; ul &gt; li:last-child a {
  padding-right: 0;
  margin-right: 0;
}

nav.hide-for-responsive &gt; ul.active a {
  color: #42615c;
}

nav.hide-for-responsive .sub-menu {
  position: absolute;
  min-width: 180px;
  width: 100%;
}

nav.hide-for-responsive .sub-menu &gt; li:hover &gt; a {
  color: #000;
}

nav.hide-for-responsive .sub-menu &gt; li {
  height: 0;
  overflow: hidden;
  background-color: #edeeee;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

nav.hide-for-responsive .sub-menu &gt; li &gt; a {
  padding: 8px 10px;
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
  text-transform: inherit;
  padding-bottom: 8px;
  font-size: 15px;
  text-decoration: none;
  font-weight: normal;
}

nav.hide-for-responsive .sub-menu &gt; li &gt; .sub-menu {
  margin-left: 100%;
  top: 0;
}

nav.hide-for-responsive .menu-item-has-children &gt; .sub-menu &gt; li:last-child {
  border-bottom: none;
}

nav.hide-for-responsive .menu-item-has-children {
  position: relative;
}

nav.hide-for-responsive .menu-item-has-children:hover &gt; a {
  color: #000;
  border-bottom: 2px solid #000;
}

nav.hide-for-responsive .menu-item-has-children:hover &gt; .sub-menu {
  padding-top: 22px;
}

nav.hide-for-responsive .menu-item-has-children:hover &gt; .sub-menu &gt; li {
  height: auto;
  overflow: visible;
}

nav.hide-for-responsive .menu-item-has-children:hover &gt; .sub-menu &gt; li:last-child {
  border-bottom: none;
}

nav.hide-for-responsive .current-menu-item &gt; a, nav.hide-for-responsive .current-menu-ancestor &gt; a {
  color: #2d433f;
  border-bottom: 2px solid #42615c !important;
}

/*********************
Responsive Menu
*********************/
.menu-button {
  display: none;
  width: 103px;
  float: right;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  text-align: right;
  top: 14px;
  cursor: pointer;
  right: 10px;
  z-index: 1;
}

.menu-button:after, .menu-button:before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  left: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-button:after {
  top: 5px;
  height: 4px;
  border-top: 2px solid;
  border-bottom: 2px solid;
}

.menu-button:before {
  top: 17px;
  height: 2px;
  background-color: #000;
}

.menu-opened:after {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 12px;
  border: 0;
  height: 2px;
  width: 19px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-opened:before {
  top: 12px;
  background: #000;
  width: 19px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.responsive-menu {
  display: none;
  z-index: 101;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  position: fixed;
  right: -320px;
  top: 0;
  bottom: 0;
  max-width: 300px;
  width: 100%;
  background-color: #FFF;
  -webkit-transition: right 0.2s ease;
  -moz-transition: right 0.2s ease;
  -ms-transition: right 0.2s ease;
  -o-transition: right 0.2s ease;
  transition: right 0.2s ease;
  -webkit-box-shadow: -6px 12px 10px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: -6px 12px 10px 2px rgba(0, 0, 0, 0.12);
  box-shadow: -6px 12px 10px 2px rgba(0, 0, 0, 0.12);
  padding: 65px 15px 25px;
  /* Plus Minus */
  /* End of Plus Minus*/
}

.responsive-menu &gt; ul &gt; li {
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 15px;
  padding-left: 15px;
  border-bottom: 1px solid #edeeee;
}

.responsive-menu &gt; ul &gt; li:hover &gt; a {
  color: #2d433f;
}

.responsive-menu &gt; ul &gt; li a {
  text-decoration: none;
  font-weight: normal;
}

.responsive-menu &gt; ul &gt; li .sub-menu {
  padding-left: 10px;
}

.responsive-menu &gt; ul &gt; li .sub-menu li {
  padding-top: 9px;
  padding-bottom: 2px;
  padding-right: 10px;
  padding-left: 10px;
  border-bottom: 1px solid #edeeee;
}

.responsive-menu &gt; ul &gt; li .sub-menu li a {
  text-decoration: none;
  font-weight: normal;
}

.responsive-menu &gt; ul &gt; li .sub-menu &gt; li:first-child {
  border-top: none;
}

.responsive-menu &gt; ul &gt; li .sub-menu &gt; li:last-child {
  border-bottom: none;
}

.responsive-menu &gt; ul &gt; li:first-child {
  border-top: none;
}

.responsive-menu &gt; ul &gt; li:last-child {
  border-bottom: none;
}

.responsive-menu ul {
  list-style: none;
  margin: 0;
}

.responsive-menu ul li {
  margin-bottom: 0;
}

.responsive-menu .menu-item-has-children {
  position: relative;
  padding-right: 17px;
}

.responsive-menu .menu-item-has-children .sub-menu li:hover &gt; a {
  color: #2d433f;
}

.responsive-menu .has-details {
  position: absolute;
  right: -15px;
  width: 35px;
  height: 45px;
  background: #fff;
  top: 0px;
  border-left: 1px solid #edeeee;
  cursor: pointer;
}

.responsive-menu .has-details:after {
  position: absolute;
  right: 16px;
  top: 17px;
  width: 2px;
  height: 11px;
  content: "";
  background: #42615c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.responsive-menu .has-details:before {
  position: absolute;
  right: 11px;
  top: 21px;
  width: 12px;
  height: 2px;
  content: "";
  background: #42615c;
}

.responsive-menu .show {
  background-color: #d5d3d1;
}

.responsive-menu .show:after {
  height: 0;
}

.responsive-menu .but2 {
  margin: 22px 0;
  display: block;
  text-align: center;
}

.responsive-menu .but1, .responsive-menu .but1a, .responsive-menu .but1b {
  padding: 10px 22px;
  width: 100%;
  text-align: center;
}

.responsive-menu .hide-for-responsive {
  display: block;
}

.responsive-menu .social-icons {
  margin-top: 38px;
  text-align: center;
}

.responsive-menu .social-icons .fa {
  font-size: 25px;
  margin-right: 15px;
  color: #42615c;
}

.responsive-menu .social-icons .fa:hover {
  color: #364c48;
}

.responsive-menu ul.sub-menu {
  display: inline-block;
  width: 100%;
}

.responsive-menu ul a {
  display: block;
}

.responsive-menu .current-menu-item &gt; a, .responsive-menu .current-menu-ancestor &gt; a {
  color: #2d433f;
  font-weight: 500 !important;
}

.responsive-menu .menu-button {
  top: 17px;
  right: -28px;
  width: 87px;
  height: 50px;
  position: absolute;
}

.show-menu {
  right: 0;
}

body.unscroll-body {
  overflow: hidden;
}

div#slide-4-layer-5 {
  letter-spacing: 2.5px !important;
}

div#slide-4-layer-7 {
  background-color: #42615c !important;
  font-size: 14px !important;
}

div#slide-4-layer-7:hover {
  color: #fff !important;
  background-color: #364c48 !important;
}

/*********************
               Footer
*********************/
.footer-widget {
  background-color: #edeeee;
  padding: 41px 0;
}

.footer-widget .para4 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-bottom: 22px;
  line-height: 1;
}

.footer-widget .three.columns, .footer-widget .four.columns {
  margin-left: 0;
}

.footer-widget .three.columns {
  margin-right: 7px;
  width: 24%;
}

.footer-widget .four.columns {
  width: 26%;
  padding-left: 27px;
}

.footer-widget .list-style2 {
  margin-bottom: 15px;
}

.footer-widget .list-style2 span {
  width: 67px;
  display: inline-block;
}

.footer-widget .para8 {
  list-style: none;
  margin: 0;
}

.footer-widget .para8 li {
  margin-bottom: 4px;
}

.footer-widget form {
  margin-top: 13px;
}

.footer-widget input[type="text"], .footer-widget input[type="email"] {
  width: 100%;
}

.footer-widget .but1a {
  float: right;
  padding: 8px 15px;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.social-icons li {
  display: inline-block;
  width: 27px;
}

.social-icons li .fa {
  font-size: 20px;
  color: #42615c;
}

.social-icons li .fa:hover {
  color: #364c48;
}

input[type="text"], input[type="email"] {
  margin-bottom: 9px;
  padding: 8px 11px;
  font-size: 15px;
  color: #42615c;
}

input[type="text"]:focus, input[type="email"]:focus {
  border: 1px solid #42615c;
  outline: none;
}

footer {
  border-top: 1px groove;
  font-size: 12px;
  background-color: #edeeee;
  padding: 17px 0;
}

footer p, footer a {
  line-height: 2.9;
  font-size: 12px;
}

footer a {
  color: #787b7f;
  text-decoration: none;
  font-weight: normal;
}

footer a:hover {
  color: #42615c;
}

footer .fa {
  font-size: 5px;
  position: relative;
  bottom: 3px;
  color: #787b7f;
  margin: 0 4px;
}

footer .creaters {
  text-align: right;
  padding-top: 5px;
}

footer .creaters a {
  font-size: 12px;
  float: right;
  width: 100%;
  line-height: 1;
}

footer .creaters a span {
  position: relative;
  bottom: 5px;
  margin-right: 7px;
}

footer .four.columns:nth-child(2) {
  text-align: center;
}

/*********************
Intro Banners for all pages, Banner images can change here
*********************/
.banner-1 {
  background-image: url("/assets/images/banner-1.jpg");
}

.banner-2 {
  background-image: url("/assets/images/banner-2.jpg");
}

.banner-3 {
  background-image: url("/assets/images/banner-3.jpg");
}

.banner-4 {
  background-image: url("/assets/images/banner-4.jpg");
}

.banner-5 {
  background-image: url("/assets/images/banner-2.jpg");
}

.banner-6 {
  background-image: url("/assets/images/banner-2.jpg");
}

.banner-7 {
  background-image: url("/assets/images/banner-2.jpg");
}

.banner-8 {
  background-image: url("/assets/images/banner-2.jpg");
}

.banner-9 {
  background-image: url("/assets/images/banner-3.jpg");
}

.banner-10 {
  background-image: url("/assets/images/banner-3.jpg");
}

.banner-11 {
  background-image: url("/assets/images/banner-2.jpg");
}

/*********************
Banners STYLES
*********************/
.banner-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: .05;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.banners .shadow {
  padding: 49px 0;
}

.banners2 {
  text-align: center;
  position: relative;
}

.banners2 .transparent {
  background-color: rgba(131, 157, 156, 0.81);
  padding: 53.5px 0;
}

.banners2 .h1 {
  letter-spacing: 3.5px;
  margin-bottom: 12px;
  font-weight: 600;
}

.banners2 .list-style1 a:hover {
  color: #25272b;
}

.banners2 .list-style1 .fa {
  margin: 0 0 0 8px;
}

/*********************
Home page STYLES
*********************/
.slider-content {
  background-color: #fff;
  padding: 31px 35px;
  border-top: 3px solid #839d9c;
  border-bottom: 3px solid #839d9c;
  width: 50%;
}

.slider-content .h2 {
  font-weight: 600;
}

.slider-content .para2 {
  padding: 28px 0;
}

.slider-content .but1a {
  padding: 13px 27px;
}

/*********************
Auction list on home page
*********************/
.auction-list {
  border-right: 1px solid #dcddde;
  text-align: center;
  padding: 36px 25px;
}

.auction-list .auction-list-img {
  margin: 16px auto;
}

.auction-list h4 {
  font-size: 16px;
  color: #949594;
  text-transform: lowercase;
  letter-spacing: 3px;
  font-weight: initial;
}

.auction-list .but2 {
  margin-top: 13px;
  padding: 12px 53px;
}

.auction-list h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.auction-list h3 a {
  text-decoration: none;
  font-weight: normal;
}

.auction-list .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

.auction-list .bottom-bucket a {
  margin-top: 13px;
  padding: 12px 53px;
  background-color: #b8b9b7;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.auction-list .bottom-bucket h6 {
  font-size: 17px;
  font-weight: initial;
  color: #787b7f;
}

.auction-list .bottom-bucket p {
  font-size: 15px;
  color: #949594;
}

section .auction-list:last-child {
  padding-right: 0;
  border-right: none;
  width: 32.3%;
}

section .auction-list:first-child {
  padding-left: 0;
  width: 32.3%;
}

.auction-list.vc_col-sm-4 {
  margin: 0;
  width: 35.299999999999997%;
  float: left;
}

.auction-list-img {
  height: 200px;
  max-width: 330.3px;
  margin: auto;
}

.auction-list-img1 {
  background-image: url("/assets/images/image1.jpg");
}

.auction-list-img2 {
  background-image: url("/assets/images/image2.jpg");
}

.auction-list-img3 {
  background-image: url("/assets/images/image3.jpg");
}

/*********************
new to RKTA (on HOME page)
*********************/
.new-to-rkta {
  text-align: center;
  padding: 36px 0 61px;
}

.new-to-rkta h4 {
  font-size: 55px;
  font-family: "Rozha One", serif;
  color: #4f565c;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 13px;
}

.new-to-rkta .para6 {
  width: 62%;
  margin: auto;
  margin-bottom: 31px;
}

.new-to-rkta .but1b, .new-to-rkta .but3 {
  padding: 13px 20px;
  display: inline-block;
}

.new-to-rkta .but1b {
  margin-right: 6px;
}

.new-to-rkta p {
  font-size: 19px;
}

/*********************
Instagram (on HOME page)
*********************/
.instagram {
  text-align: center;
  padding: 30px 0;
}

.instagram .para4 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 30px;
}

.instagram p {
  font-weight: 600;
}

.instagram .vc_column-inner {
  padding: 0;
}

.col-5 {
  width: 18%;
  float: left;
}

.list-of-insta {
  margin: 0 auto;
  max-width: 1458px;
  width: 100%;
}

.list-of-insta .col-5 {
  margin-top: 1%;
  margin-bottom: 1%;
  margin-right: 1%;
  width: 19.2%;
  float: left;
  padding-top: 18%;
  position: relative;
}

.list-of-insta .col-5 div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}

.list-of-insta .col-5:last-child {
  margin-right: 0;
}

.list-of-insta a:last-child .col-5 {
  margin-right: 0;
}

/*********************
Page Style 1: (included on Content page, Content page 2)
*********************/
.page-style1 h2 {
  font-size: 26px;
  color: #42615c;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.page-style1 p {
  margin-bottom: 16px;
}

.page-style1 .row {
  margin-bottom: 71px;
}

.page-style1 .row:last-child {
  margin-bottom: 0;
}

.page-style1 .row &gt; .five.columns + .seven.columns {
  padding-left: 25px;
}

.page-style1 .wpb_content_element p {
  padding-left: 0;
  padding-right: 10px;
}

.page-style1 .wpb_content_element p a {
  font-weight: 600;
  color: #42615c;
  text-decoration: none;
}

.page-style1 .wpb_content_element p a:hover {
  color: #364c48;
}

.page-style1 .contact-form {
  padding: 0 15px;
}

/*********************
Sidebar Auctions
*********************/
.page-style1 .para11 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.page-style1 .five.columns .para11 {
  letter-spacing: 2.5px;
}

.sidebar-auctions {
  border: 1px solid #dcddde;
  margin-bottom: 11px;
  margin-left: 13px;
  width: 95%;
}

.sidebar-auctions .side-auction-image {
  height: 178px;
  display: block;
}

.sidebar-auctions .para12a {
  text-transform: uppercase;
  padding: 19px 19px 0 19px;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
}

.sidebar-auctions .para10 {
  padding: 0 19px;
  line-height: 1.3;
}

.sidebar-auctions .but5, .sidebar-auctions .but4, .sidebar-auctions .but2 {
  padding-top: 11px;
  padding-bottom: 11px;
  text-align: center;
  margin: 0;
  float: left;
  width: 33.33%;
}

.span2 {
  padding: 2px 12px;
}

.sidebar-auction1 .side-auction-image {
  background-image: url("/assets/images/auction-1.jpg");
}

.sidebar-auction2 .side-auction-image {
  background-image: url("/assets/images/auction-2.jpg");
}

/*********************
Auctions Page
*********************/
.auctions-page {
  border-bottom: 1px solid #dcddde;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.auctions-page:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.auctions-page-image {
  height: 333px;
  max-width: 350px;
  margin: 0 auto;
}

.auctions-page-image .span2 {
  letter-spacing: 0;
}

.auctions-page-content a {
  text-decoration: none;
}

.auctions-page-content a span {
  margin-bottom: 10px;
}

.auctions-page-content .h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
}

.auctions-page-content ul {
  margin: 22px 0;
}

.auctions-page-content ul .para11 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.auctions-page-content .but5, .auctions-page-content .but4, .auctions-page-content .but2 {
  padding-top: 11px;
  padding-bottom: 11px;
  text-align: center;
  margin: 0;
  float: left;
  width: 33.33%;
}

.auctions-page-content a:first-child {
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.auctions-page-content a:last-child {
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.auctions-page1 .auctions-page-image {
  background-image: url("/assets/images/auction-1.jpg");
  background-size: contain;
  background-position: center center;
  background-color: #eeeeee;
}

/*********************
Single pages | Department Details, 
*********************/
.single-page-content {
  padding-top: 15px;
  min-height: 436px;
  position: relative;
  padding-bottom: 105px;
}

.single-page-content .para11a {
  padding: 2px 0 20px;
}

.single-page-content .para11 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-top: 25px;
  margin-bottom: 5px;
}

.single-page-content .para11:first-child {
  margin-top: 0;
}

.single-page-content .list-style3 {
  margin-top: 15px;
}

.single-page-content p {
  padding-right: 35px;
}

.list-style4 {
  list-style: none;
  float: left;
  width: 100%;
  margin: 0;
}

.list-style4 li {
  float: left;
  margin-right: 21px;
  font-size: 18px;
}

.list-style4 li a:hover {
  color: #42615c;
}

.list-style5 ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 0;
}

.list-style5 ul li {
  margin-bottom: 0;
}

.single-page-buttons {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-top: 20px;
}

.single-page-buttons .but4, .single-page-buttons .but2 {
  padding: 12px 0;
  text-align: center;
  width: 45%;
}

.single-page-buttons .but4 {
  margin-right: 6px;
}

.single-page .para13 {
  text-align: center;
  padding: 40px 0 17px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.5px;
}

/*********************
Single pages | Team on other page 
*********************/
.team-on-other-page {
  background-color: #edeeee;
  padding: 14px 0;
}

.team-on-other-page .six.columns:first-child {
  border-right: 1px solid #d5d3d1;
  padding-right: 30px;
}

.team-on-other-page .six.columns {
  padding-top: 15px;
  padding-bottom: 15px;
}

.team-on-other-page .h4a {
  color: #42615c;
  text-transform: capitalize;
  font-weight: 500;
}

.team-on-other-page .para7 {
  padding: 12px 0;
  color: #787b7f;
}

.team-on-other-page .para2 a {
  letter-spacing: 1px;
  margin-right: 14px;
  text-decoration: none;
  font-weight: normal;
}

/*********************
Single pages | Auctions on other page
*********************/
.more-auctions {
  border: 1px solid #d5d3d1;
  text-align: center;
}

.more-auctions .para14 {
  padding: 22px 0 10px;
  font-weight: 600;
  width: 69%;
  margin: auto;
  letter-spacing: 2px;
}

.more-auctions .para2 {
  margin-bottom: 13px;
}

.more-auctions .buttons a {
  padding: 11px 0;
}

.more-auctions .more-auctions-image {
  height: 250px;
  margin: 0 auto;
  display: inline-block;
  width: 100%;
}

.more-auctions .more-auctions-image .span2 {
  float: left;
}

.more-auctions.four.columns {
  width: 32%;
  margin-left: 0;
  margin-right: 2%;
}

.more-auctions.four.columns:nth-of-type(3n+3) {
  margin-right: 0px;
}

.one-button a {
  width: 100%;
}

.two-buttons a {
  width: 50%;
  float: left;
}

/*********************
Single pages | Image slider
*********************/
.image-slider {
  position: relative;
  width: 500px;
  margin: 0 auto;
  height: 420px;
}

.image-slider img {
  width: 100%;
  height: 100%;
}

.image-slider .span2 {
  position: absolute;
  top: 0;
  left: 0;
}

.image-slider .three-buttons {
  /*        position: absolute;*/
  bottom: 0;
  width: 100%;
}

.image-slider .buttons a {
  padding: 14px 0;
  text-align: center;
}

.image-slider .image-frame {
  height: 100%;
  overflow: hidden;
}

.image-slider .image-frame &gt; a.fancybox-thumbs {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  /*            background-position: 50%;*/
  display: inline-block;
  /*            -webkit-background-size: cover;
            -o-background-size: cover;
            background-size: cover;*/
  background-size: contain;
  background-position: center center;
  background-color: #eeeeee;
}

.item-image {
  max-width: 500px;
  margin: 0 auto;
}

.item-image img {
  width: 100%;
}

.three-buttons a {
  float: left;
  width: 33.33%;
}

/*********************
Highlights from Previous Items | Items page
*********************/
.items-page .more-auctions {
  margin-top: 2%;
}

.items-page .para19 {
  margin-bottom: 10px;
}

.items-page-buttons {
  width: 100%;
  margin: 0 auto 37px auto;
  display: inline-block;
  text-align: center;
}

.items-page-buttons a {
  padding: 11px 20px;
  margin-right: 8px;
  text-align: center;
  margin-bottom: 8px;
}

/*********************
Departments items | Items page
*********************/
.departments-items {
  text-align: center;
  min-height: 540px;
}

.departments-items .h3 {
  padding: 31px 0 20px;
}

.departments-items .para7 {
  width: 95%;
  margin: auto;
  padding-bottom: 13px;
}

.departments-items .but6 {
  margin-bottom: 14px;
}

.departments-items-image {
  height: 250px;
  width: 100%;
  display: inline-block;
}

.departments-items.four.columns {
  margin-left: 0;
  margin-right: 15px;
  margin-top: 15px;
  width: 32%;
}

.departments-items.four.columns a {
  text-decoration: none;
  font-weight: normal;
}

.departments-items:nth-child(3n+3) {
  margin-right: 0 !important;
}

/*********************
The Team
*********************/
.the-team .para18 {
  color: #42615c;
}

.the-team-content {
  text-align: center;
  background-color: #edeeee;
  padding: 34px 52px;
}

.the-team-content .h4b {
  color: #42615c;
  text-transform: capitalize;
}

.the-team-content .para16 {
  padding: 11px 0 16px;
  text-transform: capitalize;
  font-weight: bold;
}

.the-team-content .para15 {
  margin-bottom: 15px;
}

.the-team-content a {
  font-weight: 700;
}

.the-team-content ul {
  list-style: none;
}

.the-team-content.six.columns {
  margin-left: 0;
  margin-top: 15px;
  width: 48.8%;
  min-height: 750px;
}

.the-team-content.six.columns:nth-of-type(odd) {
  margin-right: 12px;
}

/*********************
Upcoming auctions
*********************/
.upcoming-auction1 .more-auctions-image {
  background-image: url("/assets/images/furniture-1.jpg");
  background-size: contain;
  background-color: #eeeeee;
  background-position: center center;
}

.upcoming-auction1 .span2 {
  margin: 10px 0px 0px;
}

.upcoming-auction2 .more-auctions-image {
  background-image: url("/assets/images/furniture-2.jpg");
}

.upcoming-auction3 .more-auctions-image {
  background-image: url("/assets/images/furniture-3.jpg");
}

.upcoming-auction4 .more-auctions-image {
  background-image: url("/assets/images/furniture-1.jpg");
}

.upcoming-auction5 .more-auctions-image {
  background-image: url("/assets/images/furniture-2.jpg");
}

.upcoming-auction6 .more-auctions-image {
  background-image: url("/assets/images/furniture-3.jpg");
}

.breadcrumbs {
  font-size: 14px;
  color: #fff;
  text-transform: lowercase;
}

.breadcrumbs a {
  text-decoration: none;
  font-weight: normal;
  color: #fff;
}

.contact-form .half {
  width: 50%;
  float: left;
  clear: none !important;
}

.contact-form .half:first-child {
  width: 49%;
  margin-right: 1%;
}

.contact-form .newsletter label {
  display: none !important;
}

.contact-form .newsletter .gfield_checkbox label {
  display: inline-block !important;
}

.contact-form input, .contact-form textarea {
  max-width: 100% !important;
  width: 100% !important;
}

.contact-form input[type="submit"] {
  float: right;
  width: initial !important;
  padding: 10px 20px;
  background-color: #42615c;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.map .vc_column-inner {
  padding: 0px;
}

.map .vc_column-inner .wpb_wrapper {
  padding: 0px;
}

.contact .wrapper2 {
  margin-top: 0px;
}

.wpb_single_image .vc_figure {
  height: auto;
  width: 310px;
}

.wpb_single_image .vc_figure img {
  height: auto;
  width: 100%;
}

.wpb_single_image .vc_figure .vc_single_image-wrapper {
  height: 100%;
  width: 100%;
}

.team-member1 {
  min-height: 560px;
}

.subscribe-footer label {
  display: none !important;
}

.subscribe-footer input[type="submit"] {
  float: right;
  padding: 8px 15px;
  font-size: 15px;
  letter-spacing: 1.5px;
  background-color: #42615c;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
}

.subscribe-footer .gform_footer {
  margin-top: 0px !important;
  padding-top: 0px !important;
  float: right;
}

#fancybox-thumbs ul {
  position: static;
  margin: auto;
}

.textCenter {
  text-align: center;
}

.bidOnline {
  position: relative;
  width: 500px;
  margin: 0 auto;
  max-width: 100%;
}

.bidOnline .bidOnlineLogo {
  max-width: 50%;
  float: right;
}

.fancybox-skin {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.fancybox-title {
  width: 100%;
  left: 0;
  background-color: #f9f9f9;
  top: 100%;
}

.fancybox-title span {
  background-color: #f9f9f9 !important;
  color: black !important;
  text-shadow: none !important;
  margin: 0px !important;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 20px 15px !important;
  border-radius: 0px !important;
  text-transform: capitalize;
}

@media screen and (max-width: 1390px) {
  .list-of-insta .col-5 {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 1315px) {
  .footer-widget .three.columns {
    width: 23%;
  }
  .container {
    width: 100%;
  }
  .columns {
    margin-left: 0;
  }
  .auctions-page .eight.columns {
    margin-left: 4%;
  }
  .single-page .six.columns:last-child {
    margin-left: 4%;
  }
  a.logo {
    width: 100% !important;
  }
}

@media screen and (max-width: 1192px) {
  .page-style1 img {
    width: 100%;
  }
  .page-style1 .row &gt; .seven.columns {
    padding-right: 15px;
  }
  .page-style1 .row &gt; .five.columns + .seven.columns {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1170px) {
  .footer-widget .three.columns, .footer-widget .four.columns {
    width: 48%;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1100px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 1040px) {
  header .four.columns {
    width: 60%;
    margin: auto;
  }
  header .eight.columns {
    width: 100%;
    float: left;
  }
  header nav ul {
    float: none;
  }
  .single-page .six.columns {
    width: 100%;
  }
  .single-page-content {
    padding-bottom: 0;
    min-height: inherit;
    margin-bottom: 25px;
  }
  /*********************
    Responsive Menu
    *********************/
  .hide-for-responsive {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .responsive-menu {
    display: block;
  }
  .four.columns.more-auctions {
    margin-bottom: 2%;
  }
}

@media screen and (max-width: 1020px) {
  .single-page .six.columns:last-child {
    margin-left: 0px;
  }
  .para12 {
    float: left;
    width: 100%;
  }
  .single-page-buttons {
    position: relative;
    display: inline-block;
    text-align: center;
  }
  .team-on-other-page .six.columns:first-child {
    border-right: 0px;
  }
  .team-member1 {
    min-height: 560px;
  }
  .subscribe-footer label {
    display: none;
  }
  .subscribe-footer input[type="submit"] {
    float: right;
    padding: 8px 15px;
    font-size: 15px;
    letter-spacing: 1.5px;
  }
  .subscribe-footer .gform_footer top_label {
    margin-top: 0px;
  }
  .departments-items {
    min-height: 570px;
  }
  .footer-departments {
    display: none;
  }
  ul.social-icons {
    text-align: center;
  }
  .maincontent, .sidebar {
    width: 100%;
    float: left;
  }
  .maincontent .seven.columns, .maincontent .five.columns, .sidebar .seven.columns, .sidebar .five.columns {
    width: 100%;
  }
}

@media screen and (max-width: 1010px) {
  footer .four.columns, footer .creaters {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 990px) {
  .more-auctions.four.columns {
    width: 49%;
  }
  .more-auctions.four.columns:nth-of-type(3n+3) {
    margin-right: 2%;
  }
  .more-auctions.four.columns:nth-of-type(2n+2) {
    margin-right: 0;
  }
}

@media screen and (max-width: 900px) {
  .auction-list.vc_col-sm-4 {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .auction-list {
    border-right: none;
  }
  section .auction-list:first-child, section .auction-list:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 860px) {
  .auctions-page-content ul li {
    width: 100%;
  }
}

@media screen and (max-width: 830px) {
  .items-page .more-auctions.four.columns:nth-of-type(even) {
    margin-right: 0;
  }
}

@media screen and (max-width: 814px) {
  .para19, .para18 {
    width: 100%;
  }
  .items-page-buttons a {
    width: 45%;
  }
}

@media screen and (max-width: 780px) {
  .departments-items.four.columns {
    width: 48%;
  }
  .departments-items:nth-child(3n+3) {
    margin-right: 15px !important;
  }
  .departments-items:nth-of-type(odd) {
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  section .auction-list:first-child {
    padding-left: 25px;
  }
  section .auction-list:last-child {
    padding-right: 25px;
  }
  .new-to-rkta {
    padding-left: 15px;
    padding-right: 15px;
  }
  .instagram .vc_column-inner {
    padding: 0 !important;
  }
  .instagram .para4 {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 750px) {
  .sidebar-auctions .but5, .sidebar-auctions .but4, .sidebar-auctions .but2 {
    font-size: 12px;
  }
  .single-page-buttons {
    position: static;
  }
  .single-page-buttons .but4, .single-page-buttons .but2 {
    width: 100%;
    margin-right: 0;
  }
  .list-style3 li {
    width: 100%;
  }
  .single-page .para13 {
    padding: 20px 0 17px;
  }
}

@media screen and (max-width: 700px) {
  header {
    position: relative;
  }
  header .four.columns {
    float: left;
    width: 60%;
    margin: 0;
  }
  header .eight.columns {
    float: left;
    width: 40%;
    padding-top: 9px;
  }
  .banners2 .transparent {
    padding: 6% 0;
  }
  .slider-content {
    width: 80%;
  }
  .auctions-page-content .but5, .auctions-page-content .but4, .auctions-page-content .but2 {
    font-size: 10px;
  }
  .the-team-content.six.columns {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  .more-auctions.four.columns {
    width: 100%;
  }
  .more-auctions.four.columns:nth-of-type(even) {
    margin-left: 0;
  }
  .departments-items {
    min-height: 620px;
  }
  .auctions-page-image {
    max-width: initial;
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .slider-content {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.71);
  }
}

@media screen and (max-width: 550px) {
  .footer-widget .three.columns {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer-widget .four.columns {
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
  }
  .sidebar-auctions {
    margin-left: 0;
    width: 100%;
  }
  .auctions-page .eight.columns {
    margin-left: 0;
  }
  .auctions-page-content .but5, .auctions-page-content .but4, .auctions-page-content .but2 {
    font-size: 14px;
    width: 100%;
  }
  .single-page .six.columns:last-child {
    margin-left: 0;
  }
  .team-on-other-page .six.columns:first-child {
    border: none;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .image-slider .three-buttons {
    bottom: 0;
  }
  .image-slider .three-buttons a {
    width: 33.3%;
    padding: 14px 0;
    font-size: 12px;
  }
  .departments-items.four.columns {
    width: 100%;
    margin-right: 0;
  }
  .image-slider {
    width: 100%;
  }
  .image-slider img {
    margin-top: 107px;
    height: inherit;
  }
  .image-slider .span2 {
    top: 107px;
  }
  .auctions-page-content .h2 {
    margin-top: 21px;
  }
}

@media screen and (max-width: 515px) {
  .new-to-rkta .but3, .new-to-rkta .but1b {
    width: 45%;
    font-size: 75%;
    display: inline-block;
    float: left;
  }
}

@media screen and (max-width: 450px) {
  /*********************
    Responsive Menu
    *********************/
  .menu-button {
    top: 7px;
    right: -5px;
  }
}

@media screen and (max-width: 315px) {
  /*********************
    Responsive Menu
    *********************/
  .menu-button {
    top: 0;
    right: -5px;
  }
}

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
</pre></body></html>