/*

COLOURS...

BRAND       BLUE            #005a8d         rgba(76,184,255,1)
HIGHLIGHT   YELLOW          #f6e545         rgba(246,229,69,1)
DARK        DARK GREY       #032538         rgba(29,42,91,1)
LIGHT       LIGHT GREY      #dee6f2         rgba(228,244,255,1)
WHITE       white-space:    #ffffff         rgba(255,255,255,1)

FONTS...

font-family: 'Brown', sans-serif;

*/

/*------------------------------
BASE STYLES
------------------------------*/

*, *:before, *:after{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing:antialiased;
  font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

html{
  font-size:62.5%;
}

html,body{
    height: 100%;
    min-width: 320px;
}

body{
    font-family: 'Brown', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: rgba(255,255,255,1);
    color: rgba(29,42,91,1);
    -webkit-font-smoothing: antialiased;
    -mos-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.wrapper{
    position: relative;
    width: 100%;
    min-height: 100%;
    padding-top: 140px;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

header,
main,
section,
footer{
    min-width: 320px;
    position: relative;
    clear: both;
}


.overlay{
  position: relative;
  width: 100%;
}

.sidr-class-graphic,
.graphic{
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    font-size: 0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

.clear{
    clear: both;
}

.content-container{
    position:relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 30px;
}

.content-container.full-width{
    max-width: none;
}

.content-container.edge-to-edge{
    max-width: none;
    padding: 0;
}



.paragraph{
    line-height: 1.5;
    margin-bottom: 30px;
}

.paragraph.width-full{
  max-width:100%;
}

.paragraph.width-narrow{
  max-width:700px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph.width-slim{
  max-width:750px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph > p:first-of-type{
    margin-top: 0;
}

.paragraph > p:last-of-type{
    margin-bottom: 0;
}

.bigtext{
  font-size: 1.4em;
}

.hidden{
    display: none;
}

address{
  font-style: normal;
}

/*-- HORIZONTAL LISTS --*/

ul.sidr-class-horizontal,
ul.horizontal{
    display: block;
    position: relative;
    list-style: none;
    font-size: 0;
    text-align: center;
    margin: 0;
    padding: 0;
}

.align-right ul.horizontal{
    text-align: right;
}

.align-left ul.horizontal{
    text-align: left;
}

ul.sidr-class-horizontal> li,
ul.horizontal > li{
    display: inline-block;
    position: relative;
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: normal;
    vertical-align: top;
}

/*-- VERTICAL LISTS --*/

ul.list{
    display: block;
    position: relative;
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

ul.list > li{
    display: block;
    position: relative;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

/*-- ANCHOR TARGET --*/

.anchor-target{
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
    margin-bottom: -1px;
}

/*-- ALIGNMENT --*/

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

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

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

.align-right{
    text-align: right;
}
.align-right ul{
    text-align: right;
    list-style-position: inside;
}
.align-center{
    text-align: center;
}
.align-center ul{
    text-align: center;
    list-style-position: inside;
}

.middle-wrapper{
    display: inline-flex;
    width: 100%;
    height: 100%;
}

.middle{
    position: relative;
    width: 100%;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    -o-align-self: center;
    align-self: center;
}

/*------------------------------
PANEL LAYOUT
------------------------------*/

.panels{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
}

.panels > .panel{
  flex-shrink: 1;
  flex-grow: 0;
}

.panels.one > .panel{
  flex-basis: 100%;
  width: 100%;
}

.panels.two > .panel{
  flex-basis: 50%;
  width: 50%;;
}

.panels.three > .panel{
  flex-basis: 33.3333%;
  width: 33.3333%;;
}

.panels.four > .panel{
  flex-basis: 25%;
  width: 25%;
}

.panels.panels-left > .panel.image-panel{
  order: 1;
}

.panels.panels-left > .panel.text-panel{
  order: 0;
}

.panels.panels-right > .panel.image-panel{
  order: 0;
}

.panels.panels-right > .panel.text-panel{
  order: 1;
}

.panel-content-container{
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
    height: 100%;
    padding: 50px 30px;
}

/*-- HEADER PANEL QUIRKS --*/

.header .panels.two > .panel.image-panel{
  flex-basis: 40%;
  width: 40%;
}

.header .panels.two > .panel.text-panel{
  flex-basis: 60%;
  width: 60%;
}

.header.fullscreen .panels.two > .panel.image-panel{
  flex-basis: 50%;
  width: 50%;
}

.header.fullscreen .panels.two > .panel.text-panel{
  flex-basis: 50%;
  width: 50%;
}

/*------------------------------
FRAME
------------------------------*/

.frame{
  font-size: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 60px;
}

/*------------------------------
LOADER
------------------------------*/

/*

#loading{
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 600;
  opacity: 1;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}

body{
  overflow: hidden;
}

.page-loaded #loading{
  pointer-events: none;
  opacity: 0;
}

body.page-loaded{
  overflow: visible;
}

*/

/*------------------------------
SQUARIFY
------------------------------*/

.squarify{
  position: relative;
  padding: 0;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.squarify > .squarify-content{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.squarify > .square{
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.squarify > .square > img{
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/*------------------------------
CIRCLE
------------------------------*/

.circle{
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/*------------------------------
TEXT STYLES
------------------------------*/

strong,
b{
    font-weight: 700;
}

em,
i{
    font-style: italic;
}

small{
    font-size: 0.8em;
}

.note{
    font-size: 0.8em;
}

.subtle{
  opacity: 0.5;
  font-size: 0.8em;
}

/*-- HEADINGS --*/

h1,
h2,
h3,
h4,
h5,
h6{
    position: relative;
    font-family: 'Brown', sans-serif;
    font-weight: normal;
}

h1{

}

h2{

}

h3{

}

h4{

}

h5{

}

h6{

}


/*-- COOL HEADINGS --*/

.cool-header-container{
  display: block;
  margin-bottom: 15px;
}

.cool-header{
  display: inline-block;
  padding: 20px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*-- COOL HEADINGS: HEADING --*/

.cool-header.cool-header-heading{
  transform: rotate(-1.5deg);
}

.cool-header.cool-header-heading > h1{
  margin: 0;
}

.cool-header.cool-header-heading:hover{
  transform: rotate(1.5deg);
}

/*-- COOL HEADINGS: SUB-HEADING --*/

.cool-header.cool-header-subheading{
  transform: rotate(1.5deg);
}

.cool-header.cool-header-subheading > h2{
  margin: 0;
}

.cool-header.cool-header-subheading:hover{
  transform: rotate(-1.5deg);
}

/*-- COOL HEADINGS: SUB-SUB-HEADING --*/

.cool-header.cool-header-subsubheading{
  transform: rotate(-0.5deg);
}

.cool-header.cool-header-subsubheading > h3{
  margin: 0;
}

.cool-header.cool-header-subsubheading:hover{
  transform: rotate(0.5deg);
}



.quote{
  font-style: italic;
}

.bg-dark h1 > span,
.bg-dark h2 > span,
.bg-dark h3 > span,
.bg-dark h4 > span,
.bg-dark h5 > span,
.bg-dark h6 > span{
  color: rgba(246,229,69,1);
}

.bg-light h1 > span,
.bg-light h2 > span,
.bg-light h3 > span,
.bg-light h4 > span,
.bg-light h5 > span,
.bg-light h6 > span{
  color: rgba(76,184,255,1);
}

.bg-brand h1 > span,
.bg-brand h2 > span,
.bg-brand h3 > span,
.bg-brand h4 > span,
.bg-brand h5 > span,
.bg-brand h6 > span{
  color: rgba(29,42,91,1);
}

.bg-highlight h1 > span,
.bg-highlight h2 > span,
.bg-highlight h3 > span,
.bg-highlight h4 > span,
.bg-highlight h5 > span,
.bg-highlight h6 > span{
  color: rgba(29,42,91,1);
}

.bg-white h1 > span,
.bg-white h2 > span,
.bg-white h3 > span,
.bg-white h4 > span,
.bg-white h5 > span,
.bg-white h6 > span{
  color: rgba(76,184,255,1);
}

.bg-black h1 > span,
.bg-black h2 > span,
.bg-black h3 > span,
.bg-black h4 > span,
.bg-black h5 > span,
.bg-black h6 > span{
  color: rgba(246,229,69,1);
}

main .content-container h1:first-of-type,
main .content-container h2:first-of-type,
main .banner-text-container h1:first-of-type,
main .banner-text-container h2:first-of-type{
  margin-top: 0;
}

.text-dark{
  color: rgba(29,42,91,1);
}

.text-light{
  color: rgba(228,244,255,1);
}

.text-brand{
  color: rgba(76,184,255,1);
}

.text-highlight{
  color: rgba(246,229,69,1);
}

.text-white{
  color: rgba(255,255,255,1);
}

.text-black{
  color: rgba(0,0,0,1);
}

.text-green{
  color: rgba(143,219,67,1);
}

.text-pink{
  color: rgba(246,42,91,1);
}

.text-purple{
  color: rgba(186,88,211,1);
}

.text-red{
  color: rgba(243,31,28,1);
}



.fill-dark{
  fill: rgba(29,42,91,1);
}

.fill-light{
  fill: rgba(228,244,255,1);
}

.fill-brand{
  fill: rgba(76,184,255,1);
}

.fill-highlight{
  fill: rgba(246,229,69,1);
}

.fill-white{
  fill: rgba(255,255,255,1);
}

.fill-black{
  fill: rgba(0,0,0,1);
}

.fill-grey{
  fill: rgba(240,240,240,1);
}

.fill-green{
  fill: rgba(143,219,67,1);
}

.fill-pink{
  fill: rgba(246,42,91,1);
}

.fill-purple{
  fill: rgba(186,88,211,1);
}

.fill-red{
  fill: rgba(243,31,28,1);
}


/*-- ALERTS --*/

.alert{
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.alert > p:first-of-type{
  margin-top: 0;
}

.alert > p:last-of-type{
  margin-bottom: 0;
}

.alert.alert-success{
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert.alert-info{
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert.alert-warning{
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert.alert-danger{
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/*-- LINKS --*/

a{
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a,
a:hover,
a:active,
a:focus{
    outline:0;
}

a{
    color: rgba(76,184,255,1);
    text-decoration: none;
}

a:hover{
    color: rgba(29,42,91,1);
}

/*-- LINKS - DARK BACKGROUNDS --*/

.bg-black a,
.bg-dark a{
    color: rgba(255,255,255,1);
    text-decoration: none;
}

.bg-black a:hover,
.bg-dark a:hover{
    color: rgba(246,229,69,1);
}

/*-- LINKS - BRAND BACKGROUNDS --*/

.bg-brand a{
    color: rgba(255,255,255,1);
    text-decoration: none;
}

.bg-brand a:hover{
    color: rgba(246,229,69,1);
}

/*-- LINKS - HIGHLIGHT BACKGROUNDS --*/

.bg-highlight a{
    color: rgba(29,42,91,1);
    text-decoration: none;
}

.bg-highlight a:hover{
    color: rgba(76,184,255,1);
}

/*-- LINKS - LIGHT BACKGROUNDS --*/

.bg-light a,
.bg-white a{
    color: rgba(76,184,255,1);
    text-decoration: none;
}

.bg-light a:hover,
.bg-white a:hover{
    color: rgba(29,42,91,1);
}

/*-- BUTTONS --*/

.button{
  margin-top: 30px;
}

div.button > a,
input[type=submit],
button[type=submit],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  display: inline-block;
  background-color: rgba(76,184,255,1);
  border: none;
  text-decoration: none;
  font-weight: normal;
    font-family: 'Brown', sans-serif;
  line-height: normal;
  padding: 10px 20px;
  font-size: 16px;
  color: rgba(255,255,255,1);
  cursor: pointer;
  text-transform: uppercase;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

div.button > a:hover,
input[type=submit]:hover,
button[type=submit]:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
    background-color: rgba(246,229,69,1);
    color: rgba(29,42,91,1);
  }

/*-- BUTTON COLOURS --*/

  /*-- BUTTONS: LIGHT BACKGROUNDS --*/

.bg-white div.button > a,
.bg-white input[type=submit],
.bg-white button[type=submit],
.bg-light div.button > a,
.bg-light input[type=submit],
.bg-light button[type=submit],
.overlay .bg-white div.button > a,
.overlay .bg-white input[type=submit],
.overlay .bg-white button[type=submit],
.overlay .bg-light div.button > a,
.overlay .bg-light input[type=submit],
.overlay .bg-light button[type=submit]{
    background-color: rgba(76,184,255,1);
    color: rgba(255,255,255,1);
}

.bg-white div.button > a:hover,
.bg-white input[type=submit]:hover,
.bg-white button[type=submit]:hover,
.bg-light div.button > a:hover,
.bg-light input[type=submit]:hover,
.bg-light button[type=submit]:hover,
.overlay .bg-white div.button > a:hover,
.overlay .bg-white input[type=submit]:hover,
.overlay .bg-white button[type=submit]:hover,
.overlay .bg-light div.button > a:hover,
.overlay .bg-light input[type=submit]:hover,
.overlay .bg-light button[type=submit]:hover{
    background-color: rgba(246,229,69,1);
    color: rgba(29,42,91,1);
}

  /*-- BUTTONS: DARK BACKGROUNDS --*/

.bg-dark div.button > a,
.bg-dark input[type=submit],
.bg-dark button[type=submit],
.bg-black div.button > a,
.bg-black input[type=submit],
.bg-black button[type=submit],
.overlay .bg-dark div.button > a,
.overlay .bg-dark input[type=submit],
.overlay .bg-dark button[type=submit],
.overlay .bg-black div.button > a,
.overlay .bg-black input[type=submit],
.overlay .bg-black button[type=submit]{
    background-color: rgba(76,184,255,1);
    color: rgba(255,255,255,1);
}

.bg-dark div.button > a:hover,
.bg-dark input[type=submit]:hover,
.bg-dark button[type=submit]:hover,
.bg-black div.button > a:hover,
.bg-black input[type=submit]:hover,
.bg-black button[type=submit]:hover,
.overlay .bg-dark div.button > a:hover,
.overlay .bg-dark input[type=submit]:hover,
.overlay .bg-dark button[type=submit]:hover,
.overlay .bg-black div.button > a:hover,
.overlay .bg-black input[type=submit]:hover,
.overlay .bg-black button[type=submit]:hover{
    background-color: rgba(246,229,69,1);
    color: rgba(29,42,91,1);
}

  /*-- BUTTONS: COLOURFUL BACKGROUNDS --*/

.bg-brand div.button > a,
.bg-brand input[type=submit],
.bg-brand button[type=submit],
.bg-highlight div.button > a,
.bg-highlight input[type=submit],
.bg-highlight button[type=submit],
.overlay .bg-brand div.button > a,
.overlay .bg-brand input[type=submit],
.overlay .bg-brand button[type=submit],
.overlay .bg-highlight div.button > a,
.overlay .bg-highlight input[type=submit],
.overlay .bg-highlight button[type=submit]{
    background-color: rgba(255,255,255,1);
    color: rgba(76,184,255,1);
}

.bg-brand div.button > a:hover,
.bg-brand input[type=submit]:hover,
.bg-brand button[type=submit]:hover,
.bg-highlight div.button > a:hover,
.bg-highlight input[type=submit]:hover,
.bg-highlight button[type=submit]:hover,
.overlay .bg-brand div.button > a:hover,
.overlay .bg-brand input[type=submit]:hover,
.overlay .bg-brand button[type=submit]:hover,
.overlay .bg-highlight div.button > a:hover,
.overlay .bg-highlight input[type=submit]:hover,
.overlay .bg-highlight button[type=submit]:hover{
    background-color: rgba(29,42,91,1);
    color: rgba(246,229,69,1);
}

/*-- BUTTON GROUPS --*/

ul.button-group{
    text-align: inherit;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

ul.button-group > li{
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

ul.button-group > li > .button{
    margin-top: 0;
}

/*------------------------------
COLOURS
------------------------------*/

/*-- GREEN --*/

.bg-green{
    background-color: rgba(143,219,67,1);
    color: rgba(255,255,255,1);
}

/*-- PINK --*/

.bg-pink{
    background-color: rgba(246,42,91,1);
    color: rgba(255,255,255,1);
}

/*-- PURPLE --*/

.bg-purple{
    background-color: rgba(186,88,211,1);
    color: rgba(255,255,255,1);
}

/*-- RED --*/

.bg-red{
    background-color: rgba(243,31,28,1);
    color: rgba(255,255,255,1);
}


/*-- DARK --*/

.bg-dark{
    background-color: rgba(29,42,91,1);
    color: rgba(255,255,255,1);
}

.bg-dark.opacity-10{
    background-color: rgba(29,42,91,0.1);
}

.bg-dark.opacity-20{
    background-color: rgba(29,42,91,0.2);
}

.bg-dark.opacity-30{
    background-color: rgba(29,42,91,0.3);
}

.bg-dark.opacity-40{
    background-color: rgba(29,42,91,0.4);
}

.bg-dark.opacity-50{
    background-color: rgba(29,42,91,0.5);
}

.bg-dark.opacity-60{
    background-color: rgba(29,42,91,0.6);
}

.bg-dark.opacity-70{
    background-color: rgba(29,42,91,0.7);
}

.bg-dark.opacity-80{
    background-color: rgba(29,42,91,0.8);
}

.bg-dark.opacity-90{
    background-color: rgba(29,42,91,0.9);
}

.bg-dark.opacity-100{
    background-color: rgba(29,42,91,1);
}

/*-- LIGHT --*/

.bg-light{
    background-color: rgba(228,244,255,1);
    color: rgba(29,42,91,1);
}

.bg-light.opacity-10{
    background-color: rgba(228,244,255,0.1);
}

.bg-light.opacity-20{
    background-color: rgba(228,244,255,0.2);
}

.bg-light.opacity-30{
    background-color: rgba(228,244,255,0.3);
}

.bg-light.opacity-40{
    background-color: rgba(228,244,255,0.4);
}

.bg-light.opacity-50{
    background-color: rgba(228,244,255,0.5);
}

.bg-light.opacity-60{
    background-color: rgba(228,244,255,0.6);
}

.bg-light.opacity-70{
    background-color: rgba(228,244,255,0.7);
}

.bg-light.opacity-80{
    background-color: rgba(228,244,255,0.8);
}

.bg-light.opacity-90{
    background-color: rgba(228,244,255,0.9);
}

.bg-light.opacity-100{
    background-color: rgba(228,244,255,1);
}

/*-- BRAND --*/

.bg-brand{
    background-color: rgba(76,184,255,1);
    color: rgba(255,255,255,1);
}

.bg-brand.opacity-10{
  background-color: rgba(76,184,255,0.1);
}

.bg-brand.opacity-20{
  background-color: rgba(76,184,255,0.2);
}

.bg-brand.opacity-30{
  background-color: rgba(76,184,255,0.3);
}

.bg-brand.opacity-40{
  background-color: rgba(76,184,255,0.4);
}

.bg-brand.opacity-50{
  background-color: rgba(76,184,255,0.5);
}

.bg-brand.opacity-60{
  background-color: rgba(76,184,255,0.6);
}

.bg-brand.opacity-70{
  background-color: rgba(76,184,255,0.7);
}

.bg-brand.opacity-80{
  background-color: rgba(76,184,255,0.8);
}

.bg-brand.opacity-90{
  background-color: rgba(76,184,255,0.9);
}

.bg-brand.opacity-100{
  background-color: rgba(76,184,255,1);
}

/*-- HIGHLIGHT --*/

.bg-highlight{
  background-color: rgba(246,229,69,1);
  color: rgba(29,42,91,1);
}

.bg-highlight.opacity-10{
  background-color: rgba(246,229,69,0.1);
}

.bg-highlight.opacity-20{
  background-color: rgba(246,229,69,0.2);
}

.bg-highlight.opacity-30{
  background-color: rgba(246,229,69,0.3);
}

.bg-highlight.opacity-40{
  background-color: rgba(246,229,69,0.4);
}

.bg-highlight.opacity-50{
  background-color: rgba(246,229,69,0.5);
}

.bg-highlight.opacity-60{
  background-color: rgba(246,229,69,0.6);
}

.bg-highlight.opacity-70{
  background-color: rgba(246,229,69,0.7);
}

.bg-highlight.opacity-80{
  background-color: rgba(246,229,69,0.8);
}

.bg-highlight.opacity-90{
  background-color: rgba(246,229,69,0.9);
}

.bg-highlight.opacity-100{
  background-color: rgba(246,229,69,1);
}

/*-- WHITE --*/

.bg-white{
  background-color: rgba(255,255,255,1);
  color: rgba(29,42,91,1);
}

.bg-white.opacity-10{
  background-color: rgba(255,255,255,0.1);
}

.bg-white.opacity-20{
  background-color: rgba(255,255,255,0.2);
}

.bg-white.opacity-30{
  background-color: rgba(255,255,255,0.3);
}

.bg-white.opacity-40{
  background-color: rgba(255,255,255,0.4);
}

.bg-white.opacity-50{
  background-color: rgba(255,255,255,0.5);
}

.bg-white.opacity-60{
  background-color: rgba(255,255,255,0.6);
}

.bg-white.opacity-70{
  background-color: rgba(255,255,255,0.7);
}

.bg-white.opacity-80{
  background-color: rgba(255,255,255,0.8);
}

.bg-white.opacity-90{
  background-color: rgba(255,255,255,0.9);
}

.bg-white.opacity-100{
  background-color: rgba(255,255,255,1);
}

/*-- BLACK --*/

.bg-black{
  background-color: rgba(0,0,0,1);
  color: rgba(255,255,255,1);
}

.bg-black.opacity-10{
  background-color: rgba(0,0,0,0.1);
}

.bg-black.opacity-20{
  background-color: rgba(0,0,0,0.2);
}

.bg-black.opacity-30{
  background-color: rgba(0,0,0,0.3);
}

.bg-black.opacity-40{
  background-color: rgba(0,0,0,0.4);
}

.bg-black.opacity-50{
  background-color: rgba(0,0,0,0.5);
}

.bg-black.opacity-60{
  background-color: rgba(0,0,0,0.6);
}

.bg-black.opacity-70{
  background-color: rgba(0,0,0,0.7);
}

.bg-black.opacity-80{
  background-color: rgba(0,0,0,0.8);
}

.bg-black.opacity-90{
  background-color: rgba(0,0,0,0.9);
}

.bg-black.opacity-100{
  background-color: rgba(0,0,0,1);
}

/*------------------------------
IMAGES
------------------------------*/

img {
  max-width:100%;
  vertical-align:bottom;
}

main .image{
  position: relative;
  margin-bottom: 60px;
}

main .image img{
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
}

/*-- CAPTIONS --*/

.image .caption{
  position: absolute;
  padding: 15px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.5);
  color: rgba(255,255,255,1);
}

.image .caption > .paragraph{
  margin-bottom: 0;
}

.image .caption > .paragraph > p{
  margin: 0;
}

/*------------------------------
VIDEOS
------------------------------*/

main .video{
  display: block;
  padding-top: 56.25%;
  position: relative;
  margin-bottom: 60px;
}

main .video > iframe{
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*------------------------------
FORMS
------------------------------*/
.woocommerce  .select2-container {
    vertical-align: top
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:rgba(29,42,91,1) transparent transparent transparent !important;}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__placeholder{color:rgba(29,42,91,1) !important;}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{height:40px !important;}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:40px !important;}
.woocommerce .select2-container .select2-selection--single,
.woocommerce .select2-container--default .select2-selection--single,
input[type="time"],
input[type="date"],
input[type="number"],
input[type="text"],
input[type="password"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select{
  font-family: 'Brown', sans-serif;
  display: block;
  border: 1px solid rgba(211,211,211,1);
  height: 40px;
  width: 100%;
  background-image: none;
  background-color: rgba(255,255,255,1);
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
  outline: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

input[type="time"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="range"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
textarea:focus,
select:focus{
  outline:0;
  box-shadow: 0 0 5px rgba(76,184,255,1);
  border: 1px solid rgba(76,184,255,1);
}

textarea{
    padding: 10px;
    height: 120px;
    line-height: normal;
    display: block;
    box-shadow: none;
}

.checkbox input{
  display: inline-block;
  margin-right: 5px;
}

.checkbox{
  margin-bottom: 25px;
}


.chosen-container{

}

.chosen-container > a.chosen-single{
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-image: none;
  background-color: rgba(255,255,255,1);
  border: 1px solid rgba(211,211,211,1);
}

.chosen-container > a.chosen-single > span{
  line-height: 40px;
}

.chosen-container > a.chosen-single > div{

}

.chosen-container > a.chosen-single > div > b{

}

.chosen-container > .chosen-drop{

}

.chosen-container > .chosen-drop > .chosen-search{

}

.chosen-container > .chosen-drop > ul.chosen-results{

}

.chosen-container > .chosen-drop > ul.chosen-results > li{
  
}


.form{
  margin: 0 auto;
  width: 100%;
  display: block;
}

.form .form-row{
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  clear: left;
  font-size: 0;
}

.form .form-row.one{

}

.form .form-row.two,
.form .form-row.three,
.form .form-row.four{
  margin-left: -30px;
}

.form .form-row > .form-data{
  text-align: left;
  font-size: 16px;
}

.form .form-row.two > .form-data,
.form .form-row.three > .form-data,
.form .form-row.four > .form-data{
  float: left;
  padding-left: 30px;
}

.form .form-row.one > .form-data{
  width: 100%;
}

.form .form-row.two > .form-data{
  width: 50%;
}

.form .form-row.three > .form-data{
  width: 33.3333%;
}

.form .form-row.four > .form-data{
  width: 25%;
}

.form .form-row > .form-data > .form-label{
  margin-bottom: 5px;
}

.form .form-row > .form-data > .form-label > label{

}

.form .form-row > .form-data > .form-input{

}




.shortcode .wpcf7 .wpcf7-form .form-row{
    text-align: left;
    padding: 0;
    margin: 0;
    margin-left: -15px;
    padding-bottom: 15px;
    font-size: 0;
}

.shortcode .wpcf7 .wpcf7-form .form-row > .form-label,
.shortcode .wpcf7 .wpcf7-form .form-row > .form-field{
    width:100%;
    display:inline-block;
    font-size: 16px;
    padding-left: 15px;
}

.shortcode .wpcf7 .wpcf7-form .form-row > .form-label > label{
    display:block;
    margin-bottom: 5px;
}

.shortcode .wpcf7 .wpcf7-form .form-row > .form-field.half{
    width:50%;
}

.shortcode .wpcf7 .wpcf7-form .form-row > .form-field label{
    margin-top: 5px;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.shortcode .wpcf7 .wpcf7-form .form-row > .form-field p{
    margin: 0;
    margin-bottom: 10px;
    font-size: 0.8em;
}



.range{
  font-size: 0;
  white-space: nowrap;
}

.range > .separator,
.range > .option{
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
}

.range > .option{

}

.range > .separator{
  opacity: 0.5;
  margin: 0 10px;
}

.range > .separator > p{
  display: block;
  line-height: 40px;
  margin: 0;
}

.tickbox{
  position: relative;
}

.tickbox > label{
  display: block;
  line-height: 40px;
  padding-right: 25px;
}

.tickbox > input[type="checkbox"]{
  position: absolute;
  top: 50%;
  margin-top: -6.5px;
  right: 0;
  z-index: 1;
}

/*-- CONTACT FORM 7 --*/

.shortcode div.wpcf7-response-output {
  max-width: 900px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  color: rgba(29,42,91,1);
  background-color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.shortcode div.wpcf7-mail-sent-ok {
  background-color: rgba(106,191,168,0.5);
  border-color: rgba(76,184,255,1);
}

.shortcode div.wpcf7-mail-sent-ng,
.shortcode div.wpcf7-aborted {
  background-color: rgba(76,184,255,0.5);
  border-color: rgba(76,184,255,1);
}

.shortcode div.wpcf7-spam-blocked,
.shortcode div.wpcf7-validation-errors,
.shortcode div.wpcf7-acceptance-missing{
  background-color: rgba(246,229,69,0.5);
  border-color: rgba(246,229,69,1);
}

.shortcode .wpcf7-form-control-wrap {
    display: block;
}

.shortcode .wpcf7-not-valid{
  border-color: rgba(76,184,255,1);
}

.shortcode span.wpcf7-not-valid-tip {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  background-color: rgba(76,184,255,0.85);
  border: 1px solid rgba(76,184,255,1);
  color: rgba(255,255,255,1);
  font-size: 0.6em;
  position: absolute;
  top: -5px;
  right: -10px;
}

/*-- ACCEPTANCE CHECKBOXES --*/

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

span.wpcf7-list-item > label {
  position: relative;
  line-height: normal;
}

span.wpcf7-list-item > label > input{
  position: absolute;
  top: 2.5px;
  left: 0;
  z-index: 1;
}

span.wpcf7-list-item > label > span.wpcf7-list-item-label{
  display: block;
  line-height: 20px;
  padding-left: 20px;
}

/*------------------------------
COLUMNS
------------------------------*/

.columns{
  position: relative;
  width: auto;
  margin-left: -60px;
  padding-bottom:10px;
}

.columns > .column{
  display: block;
  float: left;
  padding-left: 60px;
  position:relative;
}

.columns > .column > div:last-child{
  margin-bottom: 0 !important;
}

.columns.one > .column{
  width: 100%;
}

.columns.two > .column{
  width: 50%;
}

.columns.three > .column{
  width: 33.3333%;
}

.columns.four > .column{
  width: 25%;
}

.columns.five > .column{
  width: 20%;
}

/*------------------------------
PAGINATION
------------------------------*/

.pagination{
    text-align: center;
    font-size: 0;
    margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination > ul{
    display: block;
    text-align: center;
    border: none;
    margin: 0;
    font-size: 0;
}

.woocommerce nav.woocommerce-pagination > ul > li{
    border: none;
    display: inline-block;
    float: none;
    overflow: hidden;
    font-size: 16px;
}

.pagination > span,
.pagination > a,
.woocommerce nav.woocommerce-pagination > ul > li > a,
.woocommerce nav.woocommerce-pagination > ul > li > span{
    display: inline-block;
    text-align: center;
    background-color: transparent;
    color: rgba(76,184,255,1);
    margin: 0 2.5px;
    padding: 0 5px;
    border: 1px solid rgba(76,184,255,1);
    text-decoration: none;
    line-height: 25px;
    font-size: 16px;
    font-weight: 400;
    min-width: 27px;
}

.pagination > span.current,
.woocommerce nav.woocommerce-pagination > ul > li > span.current{
  background-color: rgba(246,229,69,1);
  border-color: rgba(246,229,69,1);
  color: rgba(255,255,255,1);
}

.pagination > a,
.woocommerce nav.woocommerce-pagination > ul > li > a{

}

.pagination > a:hover,
.woocommerce nav.woocommerce-pagination ul > li > a:hover{
    background-color: rgba(255,255,255,1);
    color: rgba(246,229,69,1);
    border-color: rgba(246,229,69,1);
}




/*------------------------------
HEADER
------------------------------*/

header.website-header{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1051;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}

.scrolled header.website-header{
  position: fixed;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.33);
  box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.33);
}

.sidr-animating header.website-header,
.sidr-open header.website-header,
.sidr-animating.scrolled header.website-header,
.sidr-open.scrolled header.website-header{
  position: fixed;
  left: -260px;
  right: 260px;
}

.sidr-animating.sidr-open header.website-header{
  left: 0;
  right: 0;
}

/*-- HEADER TOP --*/

header.website-header > .header-top{

}

header.website-header > .header-top > .overlay{

}

/*-- HEADER BODY --*/

header.website-header > .header-body{

}

header.website-header > .header-body > .overlay{
  padding: 0 30px;
}

header.website-header > .header-body > .overlay > .left{
  max-width: 450px;
}

header.website-header > .header-body > .overlay > .right{
  width: calc(100% - 450px);
}

/*-- LOGO --*/

h2#logo{
  display: block;
  position: relative;
  width: 420px;
  height: 100px;
  margin: 0;
  margin-bottom: -15px;
  padding: 0;
  line-height: 0;
  font-size: 0;
  vertical-align: top;
  margin-right: 30px;
  z-index: 102;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}

h2#logo > a{
  display: block;
  width: 100%;
  height: 100px;
  background-image: url('../img/logo_2022.png');
  background-position: left center;
  vertical-align: top;
}

.christmas h2#logo > a{
  background-image: url('../img/logo_xmas.png');
}

/*------------------------------
NAVIGATION
------------------------------*/

.main-navigation{
    display: block;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    padding: 30px 0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

.main-navigation > nav{
    display: inline-block;
    vertical-align: top;
}

.main-navigation > nav > ul{
    text-align: left;
}
.top-navigation > nav > ul > li{
    position: relative;
    z-index:500;
}
.main-navigation > nav > ul > li{
    position: relative;
    margin-right: 30px;
}
.main-navigation > nav > ul > li:last-child{
    margin-right: 0;
}
.main-navigation nav > ul > li > a{
    display: block;
    font-family: 'Brown', sans-serif;
    color: rgba(255,255,255,1);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    padding: 0;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
    border-bottom: 2px solid transparent;
}

.main-navigation > nav > ul > li.current-menu-item > a,
.main-navigation > nav > ul > li.current-menu-ancestor > a{
    border-bottom: 2px solid rgba(246,229,69,1);
}

.main-navigation > nav > ul > li.sfHover > a,
.main-navigation > nav > ul > li > a:hover{
    color: rgba(246,229,69,1);
}

/*-- DROPDOWN --*/

.top-navigation > nav > ul > li > ul,
.main-navigation > nav > ul > li > ul{
    display: none;
    list-style: none;
    padding: 5px;
    margin: 0;
    position: absolute;
    text-align: left;
    top: 60px;
    left: -15px;
    background-color: rgba(29,42,91,0.9);
    z-index: 20;
}

.top-navigation > nav > ul > li > ul{
    top: 40px;
    background-color: rgba(76,184,255,1);
}

.scrolled .main-navigation > nav > ul > li > ul{
}

.top-navigation > nav > ul > li > ul:after,
.main-navigation > nav > ul > li > ul:after {
    bottom: 100%;
    left: 40px;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(29,42,91,0);
    border-bottom-color: rgba(29,42,91,0.9);
    border-width: 10px;
    margin-left: -10px;
}

.top-navigation > nav > ul > li > ul:after{border-bottom-color: rgba(76,184,255,1);}
.top-navigation > nav > ul > li > ul > li,
.main-navigation > nav > ul > li > ul > li{
    position: relative;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.top-navigation > nav > ul > li > ul > li:last-child,
.main-navigation > nav > ul > li > ul > li:last-child{
    border-bottom: none;
}

.top-navigation > nav > ul > li > ul > li > a,
.main-navigation > nav > ul > li > ul > li > a{
    display: block;
    color: rgba(255,255,255,1);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 0 10px;
    white-space: nowrap;
    line-height: 40px;
}

.top-navigation > nav > ul > li > ul > li > a{
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}

.top-navigation > nav > ul > li > ul > li.sfHover > a,
.main-navigation > nav > ul > li > ul > li.sfHover > a,
.top-navigation > nav > ul > li > ul > li > a:hover,
.main-navigation > nav > ul > li > ul > li > a:hover{
    background-color: rgba(246,229,69,1);
    color: rgba(29,42,91,1);
}

.top-navigation > nav > ul > li > ul > li > a:hover{
    background-color: rgba(29,42,91,0.9);
}

/*-- THIRD TIER --*/

.top-navigation > nav > ul > li > ul > li > ul,
.main-navigation > nav > ul > li > ul > li > ul{
    list-style: none;
    padding: 5px;
    margin: 0;
    position: absolute;
    text-align: left;
    top: -5px;
    left: calc(100% + 10px);
    background-color: rgba(246,229,69,0.9);
}

.top-navigation > nav > ul > li > ul > li > ul:after,
.main-navigation > nav > ul > li > ul > li > ul:after {
    right: 100%;
    top: 25px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(246,229,69,0);
    border-right-color: rgba(246,229,69,0.9);
    border-width: 10px;
    margin-top: -10px;
}

.top-navigation > nav > ul > li > ul > li > ul > li,
.main-navigation > nav > ul > li > ul > li > ul > li{
    position: relative;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.top-navigation > nav > ul > li > ul > li > ul > li:last-child,
.main-navigation > nav > ul > li > ul > li > ul > li:last-child{
    border-bottom: none;
}

.top-navigation > nav > ul > li > ul > li > ul > li > a,
.main-navigation > nav > ul > li > ul > li > ul > li > a{
    display: block;
    color: rgba(255,255,255,1);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 0 10px;
    white-space: nowrap;
    line-height: 40px;
}

.top-navigation > nav > ul > li > ul > li > ul > li.sfHover > a,
.main-navigation > nav > ul > li > ul > li > ul > li.sfHover > a,
.top-navigation > nav > ul > li > ul > li > ul > li > a:hover,
.main-navigation > nav > ul > li > ul > li > ul > li > a:hover{
    background-color: rgba(246,229,69,1);
    color: rgba(255,255,255,1);
}

/*-- FOURTH TIER --*/

.top-navigation > nav > ul > li > ul > li > ul > li > ul,
.main-navigation > nav > ul > li > ul > li > ul > li > ul{
    display: none !important;
}

/*------------------------------
TOP NAVIGATION
------------------------------*/

.top-navigation{
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: none;
    text-align: right;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

.top-navigation > nav{
    display: inline-block;
    vertical-align: top;
}

.top-navigation > nav > ul{
    text-align: left;
}

.top-navigation > nav > ul > li{
    position: relative;
    margin-right: 20px;
}

.top-navigation > nav > ul > li:last-child{
    margin-right: 0;
}

.top-navigation nav > ul > li > a{
    display: block;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 0.75em;
}

.top-navigation nav > ul > li > a > i{
  display: block;
  float: left;
  margin-right: 5px;
  width: 20px;
  height: 40px;
}

/*-- NAV BUTTONS --*/

.top-navigation nav > ul > li.nav-button{
  margin: 0;
}

.top-navigation nav > ul > li.nav-button > a{
  padding: 0 25px;
}

/*-- BASKET --*/


.top-navigation nav > ul > li.basket{

}

.top-navigation nav > ul > li.basket > a{
  font-weight: 700;
}

.top-navigation nav > ul > li.basket > a > .count{
  display: inline-block;
  background-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,1);
  line-height: 30px;
  margin: 5px 0;
  margin-left: 5px;
  padding: 0 12.5px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}


/*-- ICONS --*/

.top-navigation nav > ul > li.bin > a > i{
  background-image: url('../img/_white/icon_bin.png');
}

.top-navigation nav > ul > li.cart > a > i,
.top-navigation nav > ul > li.basket > a > i{
  background-image: url('../img/_white/icon_cart.png');
}

.top-navigation nav > ul > li.close > a > i{
  background-image: url('../img/_white/icon_close.png');
}

.top-navigation nav > ul > li.date > a > i{
  background-image: url('../img/_white/icon_date.png');
}

.top-navigation nav > ul > li.desktop > a > i{
  background-image: url('../img/_white/icon_desktop.png');
}

.top-navigation nav > ul > li.email > a > i{
  background-image: url('../img/_white/icon_email.png');
}

.top-navigation nav > ul > li.external > a > i{
  background-image: url('../img/_white/icon_external.png');
}

.top-navigation nav > ul > li.laptop > a > i{
  background-image: url('../img/_white/icon_laptop.png');
}

.top-navigation nav > ul > li.location > a > i{
  background-image: url('../img/_white/icon_location.png');
}

.top-navigation nav > ul > li.locked > a > i{
  background-image: url('../img/_white/icon_locked.png');
}

.top-navigation nav > ul > li.login > a > i{
  background-image: url('../img/_white/icon_login.png');
}

.top-navigation nav > ul > li.minus > a > i{
  background-image: url('../img/_white/icon_minus.png');
}

.top-navigation nav > ul > li.mobile > a > i{
  background-image: url('../img/_white/icon_mobile.png');
}

.top-navigation nav > ul > li.plus > a > i{
  background-image: url('../img/_white/icon_plus.png');
}

.top-navigation nav > ul > li.rss > a > i{
  background-image: url('../img/_white/icon_rss.png');
}

.top-navigation nav > ul > li.search > a > i{
  background-image: url('../img/_white/icon_search.png');
}

.top-navigation nav > ul > li.telephone > a > i{
  background-image: url('../img/_white/icon_telephone.png');
}

.top-navigation nav > ul > li.unlocked > a > i{
  background-image: url('../img/_white/icon_unlocked.png');
}

.top-navigation nav > ul > li.user > a > i{
  background-image: url('../img/_white/icon_user.png');
}

.top-navigation nav > ul > li.website > a > i{
  background-image: url('../img/_white/icon_website.png');
}

/*-- LIGHT BACKGROUNDS --*/

.top-navigation nav > ul > li.bg-highlight.bin > a > i{
  background-image: url('../img/_dark/icon_bin.png');
}

.top-navigation nav > ul > li.bg-highlight.cart > a > i,
.top-navigation nav > ul > li.bg-highlight.basket > a > i{
  background-image: url('../img/_dark/icon_cart.png');
}

.top-navigation nav > ul > li.bg-highlight.close > a > i{
  background-image: url('../img/_dark/icon_close.png');
}

.top-navigation nav > ul > li.bg-highlight.date > a > i{
  background-image: url('../img/_dark/icon_date.png');
}

.top-navigation nav > ul > li.bg-highlight.desktop > a > i{
  background-image: url('../img/_dark/icon_desktop.png');
}

.top-navigation nav > ul > li.bg-highlight.email > a > i{
  background-image: url('../img/_dark/icon_email.png');
}

.top-navigation nav > ul > li.bg-highlight.external > a > i{
  background-image: url('../img/_dark/icon_external.png');
}

.top-navigation nav > ul > li.bg-highlight.laptop > a > i{
  background-image: url('../img/_dark/icon_laptop.png');
}

.top-navigation nav > ul > li.bg-highlight.location > a > i{
  background-image: url('../img/_dark/icon_location.png');
}

.top-navigation nav > ul > li.bg-highlight.locked > a > i{
  background-image: url('../img/_dark/icon_locked.png');
}

.top-navigation nav > ul > li.bg-highlight.login > a > i{
  background-image: url('../img/_dark/icon_login.png');
}

.top-navigation nav > ul > li.bg-highlight.minus > a > i{
  background-image: url('../img/_dark/icon_minus.png');
}

.top-navigation nav > ul > li.bg-highlight.mobile > a > i{
  background-image: url('../img/_dark/icon_mobile.png');
}

.top-navigation nav > ul > li.bg-highlight.plus > a > i{
  background-image: url('../img/_dark/icon_plus.png');
}

.top-navigation nav > ul > li.bg-highlight.rss > a > i{
  background-image: url('../img/_dark/icon_rss.png');
}

.top-navigation nav > ul > li.bg-highlight.search > a > i{
  background-image: url('../img/_dark/icon_search.png');
}

.top-navigation nav > ul > li.bg-highlight.telephone > a > i{
  background-image: url('../img/_dark/icon_telephone.png');
}

.top-navigation nav > ul > li.bg-highlight.unlocked > a > i{
  background-image: url('../img/_dark/icon_unlocked.png');
}

.top-navigation nav > ul > li.bg-highlight.user > a > i{
  background-image: url('../img/_dark/icon_user.png');
}

.top-navigation nav > ul > li.bg-highlight.website > a > i{
  background-image: url('../img/_dark/icon_website.png');
}

/*------------------------------
MEGA NAVIGATION
------------------------------*/

.mega-navigation{
    display: block;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

@media (max-width: 1540px){

  .header-mega{
      display: none;
  }

}

.mega-navigation > nav{
    display: inline-block;
    vertical-align: top;
}

.mega-navigation > nav > ul{
  position: unset;
  text-align: left;
}

.mega-navigation > nav > ul > li{
  z-index: 500;
  position: unset;
  margin-right: 30px;
}

.mega-navigation > nav > ul > li:last-child{
    margin-right: 0;
}

.mega-navigation nav > ul > li > a{
    display: block;
    font-family: 'Brown', sans-serif;
    color: rgba(255,255,255,1);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    padding: 0;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
    border-bottom: 2px solid transparent;
}

.mega-navigation > nav > ul > li.current-menu-item > a,
.mega-navigation > nav > ul > li.current-menu-ancestor > a{
    border-bottom: 2px solid rgba(246,229,69,1);
}

.mega-navigation > nav > ul > li.sfHover > a,
.mega-navigation > nav > ul > li > a:hover{
    color: rgba(246,229,69,1);
}

/*-- DROPDOWN --*/

.mega-navigation > nav > ul > li > ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    gap: 60px;
    list-style: none;
    padding: 10px 30px 15px 30px;
    margin: 0;
    position: absolute;
    text-align: left;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(29,42,91,0.9);
    z-index: 20;
}

.mega-navigation > nav > ul > li > ul:after {
    bottom: 100%;
    left: 40px;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(29,42,91,0);
    border-bottom-color: rgba(29,42,91,0.9);
    border-width: 10px;
    margin-left: -10px;
}

.mega-navigation > nav > ul > li > ul > li{
    position: relative;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.mega-navigation > nav > ul > li > ul > li > a{
    display: block;
    color: rgba(255,255,255,1);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
}

.mega-navigation > nav > ul > li > ul > li.sfHover > a,
.mega-navigation > nav > ul > li > ul > li > a:hover{
    color: rgba(246,229,69,1);
}

/*-- THIRD TIER --*/

.mega-navigation > nav > ul > li > ul > li > ul{
    display: block !important;
    list-style: none;
    position: relative;
    text-align: left;
    padding: 0;
}

.mega-navigation > nav > ul > li > ul > li > ul > li{
    position: relative;
    padding: 0;
    margin: 0;
    margin-bottom: 7.5px;
}

.mega-navigation > nav > ul > li > ul > li > ul > li:last-child{
    margin-bottom: 0;
}

.mega-navigation > nav > ul > li > ul > li > ul > li > a{
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
}

.mega-navigation > nav > ul > li > ul > li > ul > li.sfHover > a,
.mega-navigation > nav > ul > li > ul > li > ul > li > a:hover{
    color: rgba(255,255,255,1);
}

/*-- FOURTH TIER --*/

.mega-navigation > nav > ul > li > ul > li > ul > li > ul{
    display: none !important;
}

/*------------------------------
MOBILE NAVIGATION
------------------------------*/

.mobile-nav{
    display: none;
    text-align: right;
    padding: 30px 0;
    font-size: 0;
}

.hamburger{
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.hamburger span{
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color:  rgba(255,255,255,1);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 7px;
}

.hamburger span:nth-child(2) {
    top: 19px;
}

.hamburger span:nth-child(3) {
    top: 31px;
}

.sidr-open .hamburger span:nth-child(1),
.mm-opening .hamburger span:nth-child(1){
    top: 19px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.sidr-open .hamburger span:nth-child(2),
.mm-opening .hamburger span:nth-child(2){
    opacity: 0;
    left: -80px;
}

.sidr-open .hamburger span:nth-child(3),
.mm-opening .hamburger span:nth-child(3){
    top: 19px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/*------------------------------
SIDR
------------------------------*/

.sidr{
    background-color: rgba(29,42,91,1);
    color: rgba(255,255,255,1);
}

.sidr > .sidr-inner{
    padding: 30px;
    text-align: left;
}

.sidr > .sidr-inner:nth-child(2){
    padding: 20px 30px 50px 30px;
}

/*-- TOP LEVEL --*/

.sidr > .sidr-inner > ul{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidr > .sidr-inner > ul > li{
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align:left;
}
.sidr > .sidr-inner > ul > li:last-child{
  /*border-bottom:0;*/
}

.sidr > .sidr-inner > ul > li > a{
  display: block;
  color: rgba(255,255,255,1);
    font-size: 16px;
    padding: 10px 0;
}

.sidr > .sidr-inner > ul > li > a:hover{
  color: rgba(76,184,255,1)
}

/*-- SECOND LEVEL --*/

.sidr > .sidr-inner > ul > li > ul{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 7.5px;
}

.sidr > .sidr-inner > ul > li > ul > li{
    display: block;
    margin: 0;
    padding: 0;
    padding-left: 15px;
}

.sidr > .sidr-inner > ul > li > ul > li > a{
    display: block;
    font-size: 16px;
    padding: 7.5px 0;
  color: rgba(255,255,255,0.75);
}

.sidr > .sidr-inner > ul > li > ul > li > a:hover{
  color: rgba(76,184,255,0.75)
}

/*-- THIRD LEVEL --*/

.sidr > .sidr-inner > ul > li > ul > li > ul{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidr > .sidr-inner > ul > li > ul > li > ul > li{
    display: block;
    margin: 0;
    padding: 0;
    padding-left: 15px;
}

.sidr > .sidr-inner > ul > li > ul > li > ul > li > a{
    display: block;
    font-size: 16px;
    padding: 7.5px 0;
  color: rgba(255,255,255,0.5);
}

.sidr > .sidr-inner > ul > li > ul > li > ul > li > a:hover{
  color: rgba(76,184,255,0.5)
}

/*-- FOURTH LEVEL --*/

.sidr > .sidr-inner > ul > li > ul > li > ul > li > ul{
    display: none;
}

/*-- SEARCH --*/

.top-navigation .search-form{
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
}

.top-navigation .search-form > form{
    position: relative;
}

.top-navigation .search-form > form > .search-input{
    display: block;
    color: rgba(255,255,255,1);
    background-color: transparent;
    text-decoration: none;
    font-weight: 400;
    font-size: 13.5px;
    padding: 0;
    white-space: nowrap;
    height: 40px;
    border: none;
    outline: 0;
    max-width: 120px;
    text-align: right;
    padding-right: 25px;
}

.top-navigation .search-form > form > .search-input::placeholder{
    color: rgba(76,184,255,1);
    opacity: 1;
}

.top-navigation .search-form > form > .search-input:-ms-input-placeholder{
    color: rgba(76,184,255,1);
    opacity: 1;
}

.top-navigation .search-form > form > .search-input::-ms-input-placeholder{
    color: rgba(76,184,255,1);
    opacity: 1;
}

.top-navigation .search-form > form > .search-input:focus{
    outline: 0;
    box-shadow: 0 0 0 transparent;
}

.top-navigation .search-form > form > .search-submit{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    text-align: left;
    text-indent: -1000px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background-color: transparent;
    background-image: url('../img/_highlight/icon_search.png');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
}

.top-navigation .search-form > form > .search-submit:hover{
    background-image: url('../img/_brand/icon_search.png');
}

/*------------------------------
ARROWS
------------------------------*/

.arrow{
  font-size: 0;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.arrow > a{
  opacity: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.arrow > a:hover{
  opacity: 0.5;
}

.arrow.down{
  position: absolute;
  bottom: 80px;
  left: calc(50% - 45px);
  z-index:105;
}

.arrow.down > a{
  width: 90px;
  height: 50px;
  background-image: url('../img/_white/chevron_down.png');
  z-index:10;
}

.arrow.up{
    position: fixed;
    bottom: 20px;
    right: -70px;
    z-index: 502;
    opacity:0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
}

.scrolled .arrow.up{
    display:block;
    opacity:1;
    right: 95px;
}

.arrow.up > a{
    background-color: rgba(246,229,69,1);
    border:1px solid rgba(246,229,69,1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-image: url('../img/_brand/chevron_up.png');
    background-size:70%;
    background-position: center;
    background-repeat: no-repeat;
}

.arrow.up > a:hover{
    background-image: url('../img/_white/chevron_up.png');
    border:1px solid rgba(76,184,255,1);
    background-color: rgba(76,184,255,1);
    opacity: 1;
}

/*------------------------------
FOOTER
------------------------------*/

footer{

}

footer > .overlay{
    padding: 40px 0;
}

/*-- FOOTER NAVIGATION --*/

footer .footer-navigation{
  margin-bottom: 30px;
}

footer .footer-navigation > nav{

}

footer .footer-navigation > nav > ul{

}

footer .footer-navigation > nav > ul > li{
  margin-right: 30px;
}

footer .footer-navigation > nav > ul > li:last-child{
  margin-right: 0;
}

footer .footer-navigation > nav > ul > li > a{
  display: block;
  line-height: 20px;
  font-size: 0.85em;
}

/*-- CONTACTS --*/

footer .contacts{
  margin-bottom: 30px;
}

footer .contacts > ul{
  
}

footer .contacts > ul > li{
  margin-right: 30px;
}

footer .contacts > ul > li:last-child{
  margin-right: 0;
}

footer .contacts > ul > li > a{
  display: block;
  position: relative;
  line-height: 20px;
  font-size: 0.85em;
}

footer .contacts > ul > li > a > i{
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}


footer .contacts > ul > li.bin > a > i{
  background-image: url('../img/_highlight/icon_bin.png');
}

footer .contacts > ul > li.cart > a > i{
  background-image: url('../img/_highlight/icon_cart.png');
}

footer .contacts > ul > li.close > a > i{
  background-image: url('../img/_highlight/icon_close.png');
}

footer .contacts > ul > li.date > a > i{
  background-image: url('../img/_highlight/icon_date.png');
}

footer .contacts > ul > li.desktop > a > i{
  background-image: url('../img/_highlight/icon_desktop.png');
}

footer .contacts > ul > li.email > a > i{
  background-image: url('../img/_highlight/icon_email.png');
}

footer .contacts > ul > li.external > a > i{
  background-image: url('../img/_highlight/icon_external.png');
}

footer .contacts > ul > li.laptop > a > i{
  background-image: url('../img/_highlight/icon_laptop.png');
}

footer .contacts > ul > li.location > a > i{
  background-image: url('../img/_highlight/icon_location.png');
}

footer .contacts > ul > li.locked > a > i{
  background-image: url('../img/_highlight/icon_locked.png');
}

footer .contacts > ul > li.login > a > i{
  background-image: url('../img/_highlight/icon_login.png');
}

footer .contacts > ul > li.minus > a > i{
  background-image: url('../img/_highlight/icon_minus.png');
}

footer .contacts > ul > li.mobile > a > i{
  background-image: url('../img/_highlight/icon_mobile.png');
}

footer .contacts > ul > li.plus > a > i{
  background-image: url('../img/_highlight/icon_plus.png');
}

footer .contacts > ul > li.rss > a > i{
  background-image: url('../img/_highlight/icon_rss.png');
}

footer .contacts > ul > li.search > a > i{
  background-image: url('../img/_highlight/icon_search.png');
}

footer .contacts > ul > li.telephone > a > i{
  background-image: url('../img/_highlight/icon_telephone.png');
}

footer .contacts > ul > li.unlocked > a > i{
  background-image: url('../img/_highlight/icon_unlocked.png');
}

footer .contacts > ul > li.user > a > i{
  background-image: url('../img/_highlight/icon_user.png');
}

footer .contacts > ul > li.website > a > i{
  background-image: url('../img/_highlight/icon_website.png');
}

/*-- ADDRESSS --*/

footer .address{
  color: rgba(255,255,255,0.75);
  font-size: 0.85em;
  margin-bottom: 30px;
}

footer .address > address{
  
}

footer .address > address > p{
  margin: 0;
}

/*-- DISCLAIMER --*/

footer .disclaimer{
  font-size: 0.75em;
  color: rgba(255,255,255,0.5);
}

footer .disclaimer > p{
  margin: 0 0 15px 0;
}

footer .disclaimer > p:last-child{
  margin: 0;
}

/*-- SOCIAL LINKS --*/

footer .social-links{
  margin-bottom: 30px;
}

.social-links{

}

.social-links > ul{

}

.social-links > ul > li{
    margin-right: 5px;
}

.social-links > ul > li:last-child{
    margin-right: 0;
}

.social-links > ul > li > a{
    display: block;
}

.social-links > ul > li > a > i{
    width: 35px;
    height: 35px;
}

/*-- FACEBOOK --*/

.social-links > ul > li.facebook > a > i{
    background-image: url('../img/_highlight/social_facebook_circle.png');
}

.social-links > ul > li.facebook > a:hover > i{
    background-image: url('../img/_white/social_facebook_circle.png');
}

/*-- GOOGLE+ --*/

.social-links > ul > li.google > a > i{
    background-image: url('../img/_highlight/social_google_circle.png');
}

.social-links > ul > li.google > a:hover > i{
    background-image: url('../img/_white/social_google_circle.png');
}

/*-- INSTAGRAM --*/

.social-links > ul > li.instagram > a > i{
    background-image: url('../img/_highlight/social_instagram_circle.png');
}

.social-links > ul > li.instagram > a:hover > i{
    background-image: url('../img/_white/social_instagram_circle.png');
}

/*-- LINKED IN --*/

.social-links > ul > li.linkedin > a > i{
    background-image: url('../img/_highlight/social_linkedin_circle.png');
}

.social-links > ul > li.linkedin > a:hover > i{
    background-image: url('../img/_white/social_linkedin_circle.png');
}

/*-- PINTEREST --*/

.social-links > ul > li.pinterest > a > i{
    background-image: url('../img/_highlight/social_pinterest_circle.png');
}

.social-links > ul > li.pinterest > a:hover > i{
    background-image: url('../img/_white/social_pinterest_circle.png');
}

/*-- SLACK --*/

.social-links > ul > li.slack > a > i{
    background-image: url('../img/_highlight/social_slack_circle.png');
}

.social-links > ul > li.slack > a:hover > i{
    background-image: url('../img/_white/social_slack_circle.png');
}

/*-- SNAPCHAT --*/

.social-links > ul > li.snapchat > a > i{
    background-image: url('../img/_highlight/social_snapchat_circle.png');
}

.social-links > ul > li.snapchat > a:hover > i{
    background-image: url('../img/_white/social_snapchat_circle.png');
}


/*-- TWITTER --*/

.social-links > ul > li.twitter > a > i{
    background-image: url('../img/_highlight/social_twitter_circle.png');
}

.social-links > ul > li.twitter > a:hover > i{
    background-image: url('../img/_white/social_twitter_circle.png');
}

/*-- VIMEO --*/

.social-links > ul > li.vimeo > a > i{
    background-image: url('../img/_highlight/social_vimeo_circle.png');
}

.social-links > ul > li.vimeo > a:hover > i{
    background-image: url('../img/_white/social_vimeo_circle.png');
}

/*-- WHATS APP --*/

.social-links > ul > li.whatsapp > a > i{
    background-image: url('../img/_highlight/social_whatsapp_circle.png');
}

.social-links > ul > li.whatsapp > a:hover > i{
    background-image: url('../img/_white/social_whatsapp_circle.png');
}

/*-- YOUTUBE --*/

.social-links > ul > li.youtube > a > i{
    background-image: url('../img/_highlight/social_youtube_circle.png');
}

.social-links > ul > li.youtube > a:hover > i{
    background-image: url('../img/_white/social_youtube_circle.png');
}

/*-- TELEPHONE --*/

.social-links > ul > li.telephone > a > i{
    background-image: url('../img/_highlight/icon_telephone_circle.png');
}

.social-links > ul > li.telephone > a:hover > i{
    background-image: url('../img/_white/icon_telephone_circle.png');
}

/*-- EMAIL --*/

.social-links > ul > li.email > a > i{
    background-image: url('../img/_highlight/icon_email_circle.png');
}

.social-links > ul > li.email > a:hover > i{
    background-image: url('../img/_white/icon_email_circle.png');
}

/*-- EMAIL --*/

.social-links > ul > li.tiktok > a > i{
    background-image: url('../img/_highlight/social_tiktok_circle.png');
}

.social-links > ul > li.tiktok > a:hover > i{
    background-image: url('../img/_white/social_tiktok_circle.png');
}

/*------------------------------
WIDGETS
------------------------------*/

.widgets{

}

.widgets > div{
    display: inline-block;
    margin-right: 10px;
}

.widgets > div:last-child{
    margin-right: 0;
}

.widgets > div h3,
.widgets > div label{
    display: none;
}

/*------------------------------
MAP
------------------------------*/

.map:not(.map-section){
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 60px;
}

/*------------------------------
SHORTCODE
------------------------------*/

.shortcode{
    margin-bottom: 60px;
}

/*------------------------------
SLIDESHOW
------------------------------*/

/*-- SLICK DEFAULTS --*/

.slick-slider{
    position: relative;
}

.slick-slider.slick-dotted{
    padding-bottom: 50px;
}

.slick-slider > .slick-list{

}

.slick-slider > .slick-list > .slick-track{

}

.slick-slider > .slick-list > .slick-track > .slick-slide{

}

/*-- SPECIFICS --*/

.slick-slideshow,
.cycle-slideshow{
    height: 100%;
}

.slick-slideshow.slick-dotted {
  padding-bottom: 0;
}

.slick-slideshow > .slick-list{
    height: 100%;
}

.slick-slideshow > .slick-list > .slick-track{
    height: 100%;
}

.slick-slideshow > .slick-list > .slick-track > .slick-slide,
.cycle-slideshow > .slide{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.slick-slideshow > .slick-list > .slick-track > .slick-slide > div{
    height: 100%;
}

.slick-slideshow > .slick-list > .slick-track > .slick-slide > div > .slide{
    height: 100%;
}



/*-- SLIDER ARROWS --*/

.slideshow-arrows{

}

.slideshow-arrow,
.slick-arrow{
    display: block;
    position: absolute;
    width: 50px;
    height: 90px;
    top: 50%;
    margin-top: -45px;
    border: none;
    outline: none;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    font-size: 0;
    cursor: pointer;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    z-index: 100;
}

/*-- PREV ARROW --*/

.slideshow-arrow.slideshow-prev,
.slick-arrow.slick-prev{
    left: 15px;
    background-image: url('../img/_white/chevron_left.png');
}

.slideshow-arrow.slideshow-prev:hover,
.slick-arrow.slick-prev:hover{
    background-image: url('../img/_brand/chevron_left.png');
}

/*-- PREV ARROW - DARK BACKGROUNDS --*/

.bg-dark .slideshow-arrow.slideshow-prev,
.bg-dark .slick-arrow.slick-prev,
.bg-black .slideshow-arrow.slideshow-prev,
.bg-black .slick-arrow.slick-prev,
.bg-brand .slideshow-arrow.slideshow-prev,
.bg-brand .slick-arrow.slick-prev,
.bg-highlight .slideshow-arrow.slideshow-prev,
.bg-highlight .slick-arrow.slick-prev{
    background-image: url('../img/_white/chevron_left.png');
}

.bg-dark .slideshow-arrow.slideshow-prev:hover,
.bg-dark .slick-arrow.slick-prev:hover,
.bg-black .slideshow-arrow.slideshow-prev:hover,
.bg-black .slick-arrow.slick-prev:hover,
.bg-highlight .slideshow-arrow.slideshow-prev:hover,
.bg-highlight .slick-arrow.slick-prev:hover{
    background-image: url('../img/_brand/chevron_left.png');
}

.bg-brand .slideshow-arrow.slideshow-prev:hover,
.bg-brand .slick-arrow.slick-prev:hover{
    background-image: url('../img/_highlight/chevron_left.png');
}

/*-- PREV ARROW - LIGHT BACKGROUNDS --*/

.bg-white .slideshow-arrow.slideshow-prev,
.bg-white .slick-arrow.slick-prev,
.bg-light .slideshow-arrow.slideshow-prev,
.bg-light .slick-arrow.slick-prev{
    background-image: url('../img/_brand/chevron_left.png');
}

.bg-white .slideshow-arrow.slideshow-prev:hover,
.bg-white .slick-arrow.slick-prev:hover,
.bg-light .slideshow-arrow.slideshow-prev:hover,
.bg-light .slick-arrow.slick-prev:hover{
    background-image: url('../img/_highlight/chevron_left.png');
}

/*-- NEXT ARROW --*/

.slideshow-arrow.slideshow-next,
.slick-arrow.slick-next{
    right: 15px;
    background-image: url('../img/_white/chevron_right.png');
}

.slideshow-arrow.slideshow-next:hover,
.slick-arrow.slick-next:hover{
    background-image: url('../img/_brand/chevron_right.png');
}

/*-- NEXT ARROW - DARK BACKGROUNDS --*/

.bg-dark .slideshow-arrow.slideshow-next,
.bg-dark .slick-arrow.slick-next,
.bg-black .slideshow-arrow.slideshow-next,
.bg-black .slick-arrow.slick-next,
.bg-brand .slideshow-arrow.slideshow-next,
.bg-brand .slick-arrow.slick-next,
.bg-highlight .slideshow-arrow.slideshow-next,
.bg-highlight .slick-arrow.slick-next{
    background-image: url('../img/_white/chevron_right.png');
}

.bg-dark .slideshow-arrow.slideshow-next:hover,
.bg-dark .slick-arrow.slick-next:hover,
.bg-black .slideshow-arrow.slideshow-next:hover,
.bg-black .slick-arrow.slick-next:hover,
.bg-highlight .slideshow-arrow.slideshow-next:hover,
.bg-highlight .slick-arrow.slick-next:hover{
    background-image: url('../img/_brand/chevron_right.png');
}

.bg-brand .slideshow-arrow.slideshow-next:hover,
.bg-brand .slick-arrow.slick-next:hover{
    background-image: url('../img/_highlight/chevron_right.png');
}

/*-- NEXT ARROW - LIGHT BACKGROUNDS --*/

.bg-white .slideshow-arrow.slideshow-next,
.bg-white .slick-arrow.slick-next,
.bg-light .slideshow-arrow.slideshow-next,
.bg-light .slick-arrow.slick-next{
    background-image: url('../img/_brand/chevron_right.png');
}

.bg-white .slideshow-arrow.slideshow-next:hover,
.bg-white .slick-arrow.slick-next:hover,
.bg-light .slideshow-arrow.slideshow-next:hover,
.bg-light .slick-arrow.slick-next:hover{
    background-image: url('../img/_highlight/chevron_right.png');
}

/*-- SLIDER PAGER --*/

.slideshow-pager,
.slick-slider > ul.slick-dots{
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    list-style: none;
    font-size: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    z-index: 101;
}

.slick-slider > ul.slick-dots > li{
    display: inline-block;
    position: relative;
    font-size: 16px;
    margin: 0 5px;
    padding: 0;
    line-height: normal;
    vertical-align: top;
}

.slideshow-pager > span,
.slick-slider > ul.slick-dots > li > button{
    display: block;
    width: 15px;
    height: 15px;
    border: none;
    outline: none;
    background-image: url('../img/_brand/pager.png');
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    font-size: 0;
    cursor: pointer;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

.slideshow-pager > span:hover,
.slick-slider > ul.slick-dots > li > button:hover{
    background-image: url('../img/_highlight/pager.png');
}

.slideshow-pager > span{
    display: inline-block;
    position: relative;
    font-size: 16px;
    margin: 0 5px;
    padding: 0;
    line-height: normal;
    vertical-align: top;
}

.slideshow-pager > span.cycle-pager-active,
.slick-slider > ul.slick-dots > li.slick-active > button{
    background-image: url('../img/_brand/pager_active.png');
}

.slideshow-pager > span.cycle-pager-active:hover,
.slick-slider > ul.slick-dots > li.slick-active > button:hover{
    background-image: url('../img/_highlight/pager_active.png');
}

/*-- PAGER - DARK BACKGROUNDS --*/

.bg-dark .slideshow-pager > span,
.bg-dark .slick-slider > ul.slick-dots > li > button,
.bg-black .slideshow-pager > span,
.bg-black .slick-slider > ul.slick-dots > li > button,
.bg-brand .slideshow-pager > span,
.bg-brand .slick-slider > ul.slick-dots > li > button,
.bg-highlight .slideshow-pager > span,
.bg-highlight .slick-slider > ul.slick-dots > li > button{
    background-image: url('../img/_white/pager.png');
}

.bg-dark .slideshow-pager > span:hover,
.bg-dark .slick-slider > ul.slick-dots > li > button:hover,
.bg-black .slideshow-pager > span:hover,
.bg-black .slick-slider > ul.slick-dots > li > button:hover,
.bg-highlight .slideshow-pager > span:hover,
.bg-highlight .slick-slider > ul.slick-dots > li > button:hover{
    background-image: url('../img/_brand/pager.png');
}

.bg-brand .slideshow-pager > span:hover,
.bg-brand .slick-slider > ul.slick-dots > li > button:hover{
    background-image: url('../img/_highlight/pager.png');
}

.bg-dark .slideshow-pager > span.cycle-pager-active,
.bg-dark .slick-slider > ul.slick-dots > li.slick-active > button,
.bg-black .slideshow-pager > span.cycle-pager-active,
.bg-black .slick-slider > ul.slick-dots > li.slick-active > button,
.bg-brand .slideshow-pager > span.cycle-pager-active,
.bg-brand .slick-slider > ul.slick-dots > li.slick-active > button,
.bg-highlight .slideshow-pager > span.cycle-pager-active,
.bg-highlight .slick-slider > ul.slick-dots > li.slick-active > button{
    background-image: url('../img/_white/pager_active.png');
}

.bg-dark .slideshow-pager > span.cycle-pager-active:hover,
.bg-dark .slick-slider > ul.slick-dots > li.slick-active > button:hover,
.bg-black .slideshow-pager > span.cycle-pager-active:hover,
.bg-black .slick-slider > ul.slick-dots > li.slick-active > button:hover,
.bg-highlight .slideshow-pager > span.cycle-pager-active:hover,
.bg-highlight .slick-slider > ul.slick-dots > li.slick-active > button:hover{
    background-image: url('../img/_brand/pager_active.png');
}

.bg-brand .slideshow-pager > span.cycle-pager-active:hover,
.bg-brand .slick-slider > ul.slick-dots > li.slick-active > button:hover{
    background-image: url('../img/_highlight/pager_active.png');
}

/*-- PAGER - LIGHT BACKGROUNDS --*/

.bg-light .slideshow-pager > span,
.bg-light .slick-slider > ul.slick-dots > li > button,
.bg-white .slideshow-pager > span,
.bg-white .slick-slider > ul.slick-dots > li > button{
    background-image: url('../img/_brand/pager.png');
}

.bg-light .slideshow-pager > span:hover,
.bg-light .slick-slider > ul.slick-dots > li > button:hover,
.bg-white .slideshow-pager > span:hover,
.bg-white .slick-slider > ul.slick-dots > li > button:hover{
    background-image: url('../img/_highlight/pager.png');
}

.bg-light .slideshow-pager > span.cycle-pager-active,
.bg-light .slick-slider > ul.slick-dots > li.slick-active > button,
.bg-white .slideshow-pager > span.cycle-pager-active,
.bg-white .slick-slider > ul.slick-dots > li.slick-active > button{
    background-image: url('../img/_brand/pager_active.png');
}

.bg-light .slideshow-pager > span.cycle-pager-active:hover,
.bg-light .slick-slider > ul.slick-dots > li.slick-active > button:hover,
.bg-white .slideshow-pager > span.cycle-pager-active:hover,
.bg-white .slick-slider > ul.slick-dots > li.slick-active > button:hover{
    background-image: url('../img/_highlight/pager_active.png');
}

/*------------------------------
RATINGS
------------------------------*/

.ratings{
  display: block;
  position: relative;
  font-size: 0;
  padding: 0;
  margin: 20px 0;
  line-height: 0;
  height: 20px;
}

.ratings > .rating{
  display: block;
  width: 100%;
  height: 100%;
}

.ratings > .rating.rating-0{
  background-image: url('../img/_highlight/rating_0.0.png');
}

.ratings > .rating.rating-0-5{
  background-image: url('../img/_highlight/rating_0.5.png');
}

.ratings > .rating.rating-1{
  background-image: url('../img/_highlight/rating_1.0.png');
}

.ratings > .rating.rating-1-5{
  background-image: url('../img/_highlight/rating_1.5.png');
}

.ratings > .rating.rating-2{
  background-image: url('../img/_highlight/rating_2.0.png');
}

.ratings > .rating.rating-2-5{
  background-image: url('../img/_highlight/rating_2.5.png');
}

.ratings > .rating.rating-3{
  background-image: url('../img/_highlight/rating_3.0.png');
}

.ratings > .rating.rating-3-5{
  background-image: url('../img/_highlight/rating_3.5.png');
}

.ratings > .rating.rating-4{
  background-image: url('../img/_highlight/rating_4.0.png');
}

.ratings > .rating.rating-4-5{
  background-image: url('../img/_highlight/rating_4.5.png');
}

.ratings > .rating.rating-5{
  background-image: url('../img/_highlight/rating_5.0.png');
}

/*-- RATING - BACKGROUND COLOURS --*/

.bg-black .ratings > .rating.rating-0,
.bg-dark .ratings > .rating.rating-0,
.bg-brand .ratings > .rating.rating-0,
.bg-light .ratings > .rating.rating-0,
.bg-white .ratings > .rating.rating-0{
  background-image: url('../img/_highlight/rating_0.0.png');
}

.bg-black .ratings > .rating.rating-0-5,
.bg-dark .ratings > .rating.rating-0-5,
.bg-brand .ratings > .rating.rating-0-5,
.bg-light .ratings > .rating.rating-0-5,
.bg-white .ratings > .rating.rating-0-5{
  background-image: url('../img/_highlight/rating_0.5.png');
}

.bg-black .ratings > .rating.rating-1,
.bg-dark .ratings > .rating.rating-1,
.bg-brand .ratings > .rating.rating-1,
.bg-light .ratings > .rating.rating-1,
.bg-white .ratings > .rating.rating-1{
  background-image: url('../img/_highlight/rating_1.0.png');
}

.bg-black .ratings > .rating.rating-1-5,
.bg-dark .ratings > .rating.rating-1-5,
.bg-brand .ratings > .rating.rating-1-5,
.bg-light .ratings > .rating.rating-1-5,
.bg-white .ratings > .rating.rating-1-5{
  background-image: url('../img/_highlight/rating_1.5.png');
}

.bg-black .ratings > .rating.rating-2,
.bg-dark .ratings > .rating.rating-2,
.bg-brand .ratings > .rating.rating-2,
.bg-light .ratings > .rating.rating-2,
.bg-white .ratings > .rating.rating-2{
  background-image: url('../img/_highlight/rating_2.0.png');
}

.bg-black .ratings > .rating.rating-2-5,
.bg-dark .ratings > .rating.rating-2-5,
.bg-brand .ratings > .rating.rating-2-5,
.bg-light .ratings > .rating.rating-2-5,
.bg-white .ratings > .rating.rating-2-5{
  background-image: url('../img/_highlight/rating_2.5.png');
}

.bg-black .ratings > .rating.rating-3,
.bg-dark .ratings > .rating.rating-3,
.bg-brand .ratings > .rating.rating-3,
.bg-light .ratings > .rating.rating-3,
.bg-white .ratings > .rating.rating-3{
  background-image: url('../img/_highlight/rating_3.0.png');
}

.bg-black .ratings > .rating.rating-3-5,
.bg-dark .ratings > .rating.rating-3-5,
.bg-brand .ratings > .rating.rating-3-5,
.bg-light .ratings > .rating.rating-3-5,
.bg-white .ratings > .rating.rating-3-5{
  background-image: url('../img/_highlight/rating_3.5.png');
}

.bg-black .ratings > .rating.rating-4,
.bg-dark .ratings > .rating.rating-4,
.bg-brand .ratings > .rating.rating-4,
.bg-light .ratings > .rating.rating-4,
.bg-white .ratings > .rating.rating-4{
  background-image: url('../img/_highlight/rating_4.0.png');
}

.bg-black .ratings > .rating.rating-4-5,
.bg-dark .ratings > .rating.rating-4-5,
.bg-brand .ratings > .rating.rating-4-5,
.bg-light .ratings > .rating.rating-4-5,
.bg-white .ratings > .rating.rating-4-5{
  background-image: url('../img/_highlight/rating_4.5.png');
}

.bg-black .ratings > .rating.rating-5,
.bg-dark .ratings > .rating.rating-5,
.bg-brand .ratings > .rating.rating-5,
.bg-light .ratings > .rating.rating-5,
.bg-white .ratings > .rating.rating-5{
  background-image: url('../img/_highlight/rating_5.0.png');
}

/*-- RATING - HIGHLIGHT BACKGROUND --*/

.bg-highlight .ratings > .rating.rating-0{
  background-image: url('../img/_brand/rating_0.0.png');
}

.bg-highlight .ratings > .rating.rating-0-5{
  background-image: url('../img/_brand/rating_0.5.png');
}

.bg-highlight .ratings > .rating.rating-1{
  background-image: url('../img/_brand/rating_1.0.png');
}

.bg-highlight .ratings > .rating.rating-1-5{
  background-image: url('../img/_brand/rating_1.5.png');
}

.bg-highlight .ratings > .rating.rating-2{
  background-image: url('../img/_brand/rating_2.0.png');
}

.bg-highlight .ratings > .rating.rating-2-5{
  background-image: url('../img/_brand/rating_2.5.png');
}

.bg-highlight .ratings > .rating.rating-3{
  background-image: url('../img/_brand/rating_3.0.png');
}

.bg-highlight .ratings > .rating.rating-3-5{
  background-image: url('../img/_brand/rating_3.5.png');
}

.bg-highlight .ratings > .rating.rating-4{
  background-image: url('../img/_brand/rating_4.0.png');
}

.bg-highlight .ratings > .rating.rating-4-5{
  background-image: url('../img/_brand/rating_4.5.png');
}

.bg-highlight .ratings > .rating.rating-5{
  background-image: url('../img/_brand/rating_5.0.png');
}

/*------------------------------
COMMENTS
------------------------------*/

.comments{

}

.comments > ul{

}

.comments > ul > li{

}

.comment-body{
  position: relative;
  padding-left: 120px;
}

.comment-body > .comment-author{
  position: absolute;
  top: 0;
  left: 0;
}

.comment-body > .comment-author > img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.comment-body > .comment-content{
  display: block;
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  min-height: 96px;
}

.comment-body > .comment-content:after {
  right: 100%;
  top: 35px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255,255,255,0);
  border-right-color: rgba(255,255,255,1);
  border-width: 10px;
  margin-top: -10px;
}

.comment-body > .comment-content > .comment-text{
  margin-bottom: 15px;
}

.comment-body > .comment-content > .comment-text p:first-of-type{
  margin-top: 0;
}

.comment-body > .comment-content > .comment-text p:last-of-type{
  margin-bottom: 0;
}

.comment-body > .comment-content > .comment-meta{
  display: block;
  padding-top: 15px;
  border-top: 1px dotted rgba(0,0,0,0.1);
}

.comment-body > .comment-content > .comment-meta > p{
  display: block;
  margin: 0;
  font-size: 0.8em;
}

/*------------------------------
ARTICLES
------------------------------*/

.articles{

}

.articles > article{

}

.articles > article > .article{

}

.articles > article > .article > .article-image{

}

.articles > article > .article > .article-details{

}

.articles > article > .article > .article-details > .article-info{

}

/*-- GRID --*/

.articles.grid{
    margin-left: -30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

.articles.grid article{
    flex: 0 1 33.3333%;
    padding-left: 30px;
    margin-bottom: 30px;
}

.articles.grid article > .article{
    height: 100%;
}

.articles.grid article > .article > .article-image{

}

.articles.grid article > .article > .article-details{
    padding: 30px;
}

.articles.grid article > .article > .article-details > .article-info{

}

/*-- LIST --*/

.articles.list{

}

.articles.list article{
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.articles.list article:last-child{
    margin-bottom: 0;
}

.articles.list article > .article{
    background-color: transparent !important;
    position: relative;
}

.articles.list article > .article > .article-image {
    display: block;
    position: absolute;
    width: 130px;
    height: 130px;
    right: 0;
}

.articles.list article > .article > .article-image > a{
  display: block;
    width: 100%;
    height: 100%;
}

.articles.list article > .article > .article-image > a > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.articles.list article > .article > .article-details{
  min-height: 130px;
  padding-right: 150px;
}

.articles.grid article > .article > .article-details > .article-info{

}

/*------------------------------
SECTIONS
------------------------------*/

section{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*-- INTRO SECTION --*/

.intro{
  padding: 50px 0;
  position: relative;
}

.intro.intro-bottom{
  padding-bottom: 100px;
}

.intro > .content-container > *:first-of-type{
  margin-top: 0;
}

.intro > .content-container > *:last-of-type{
  margin-bottom: 0;
}


/*-- STANDARD SECTION --*/

section.section{

}

section.section .overlay,
section.drawer-section .overlay{
    padding-top: 50px;
    padding-bottom: 50px;
}

/*-- TOOLS SECTION --*/

section.tools .overlay{
    padding-top: 30px;
    padding-bottom: 30px;
}

.woocommerce-demo-store section.tools .overlay{
    padding-top: 80px;
}

section.tools h1{
  margin: 0;
}

section.tools p{
  margin: 0;
}

section.tools p.woocommerce-result-count{
  font-size: 0.85em;
  margin-top: 5px;
  margin-bottom: 0;
}

/*-- IMAGE SECTION --*/

section.image-section{
  height: 640px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.mobile-device section.image-section{
  background-attachment: scroll;
}

/*-- MAP SECTION --*/

section.map-section{
  height: 640px;

}

/*-- HEADER SECTION --*/

section.header{

}

section.header.fullscreen{
  min-height: 640px;
}

section.header .overlay{
  padding-top: 120px;
  padding-bottom: 120px;
}

/*-- BANNER HEADER --*/

section.header.banner-header{
    position: relative;
    z-index: 2;
}

section.header.banner-header .overlay{

}

/*-- SLIDESHOW HEADER --*/

section.header.slideshow-header{

}

/*-- VIDEO HEADER --*/

section.header.video-header{
    overflow: hidden;
}

section.header.video-header > .video{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

section.header.video-header > .overlay{
    position: relative;
    z-index: 1;
}

/*------------------------------
HEADER OVERLAY
------------------------------*/

.header-caption{

}

.align-center > .header-caption{
  margin-left: auto;
  margin-right: auto;
}

.align-left > .header-caption{
  margin-left: 0;
  margin-right: auto;
}

.align-right > .header-caption{
  margin-left: auto;
  margin-right: 0;
}

.header-caption > .header-caption-block{
  display: block;
}

.header-caption > .header-caption-block > div{
  display: inline-block;
  padding: 20px; 
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header-caption > .header-caption-block > .header-caption-heading{
  transform: rotate(1.5deg);
}

.header-caption > .header-caption-block > .header-caption-heading:hover{
  transform: rotate(-1.5deg);
}

.header-caption > .header-caption-block > .header-caption-heading > h1{
  margin: 0;
}

.header-caption > .header-caption-block > .header-caption-subheading{
  transform: rotate(-1.5deg);
}

.header-caption > .header-caption-block > .header-caption-subheading:hover{
  transform: rotate(1.5deg);
}

.header-caption > .header-caption-block > .header-caption-subheading > h2{
  margin: 0;
}

.header-caption > .header-caption-block > .header-caption-content{
  transform: rotate(0.5deg);
}

.header-caption > .header-caption-block > .header-caption-content:hover{
  transform: rotate(-0.5deg);
}

.header-caption > .header-caption-block > .header-caption-content > .paragraph{
  margin: 0;
}

.header-caption > .header-caption-block > .header-caption-content > .paragraph > p:first-of-type{
    margin-top: 0;
}

.header-caption > .header-caption-block > .header-caption-content > .paragraph > p:last-of-type{
    margin-bottom: 0;
}

.header-caption > .header-caption-block > .header-caption-buttons{
  display: block;
  padding: 0;
}

.header-caption > .header-caption-block > .header-caption-buttons > ul.button-group{
  margin-top: 0;
  margin-bottom: 0;
}

.header-caption > .header-caption-block > .header-caption-buttons > ul.button-group > li {
  margin-top: 0;
  margin-bottom: 0;
}

.header-caption > .header-caption-text,
.header-caption > .header-caption-buttons{
  margin-top: 30px;
}

/*------------------------------
BANNER
------------------------------*/

.banner-section{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;

}

.banner-section.text-on-left{
    flex-direction: row-reverse;
}

.banner-section.text-on-right{
    flex-direction: row;
}

.banner-section > .banner-image,
.banner-section > .banner-text{
    order: 0;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 50%;
}

.banner-section > .banner-image{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner-section > .banner-text{
    position: relative;
}

.banner-section > .banner-text > .overlay{
    position: relative;
    z-index: 2;
}

.banner-section > .banner-text > .overlay > .banner-text-container{
    margin: 0 auto;
    max-width: 450px;
    padding: 0 30px;
    height:100%;
}

.banner-section.text-on-right > .banner-text > .overlay > .banner-text-container{

}

.banner-section.text-on-left > .banner-text > .overlay > .banner-text-container{

}

/*---------------------------------
CTA
----------------------------------*/

.cta{
    margin: 50px auto;
    padding: 50px 40px;
}

.cta > *:first-of-type{
  margin-top: 0;
}

.cta > *:last-of-type{
  margin-bottom: 0;
}

/*---------------------------------
ACCREDITAIONS
----------------------------------*/

.accreditations{
  margin: 30px 0;
}

.accreditations > ul{

}

.accreditations > ul > li{
  margin-right: 30px;
}

.accreditations > ul > li:last-child{
  margin-right: 0;
}

.accreditations > ul > li > span{

}

/*---------------------------------
ITEMS
----------------------------------*/

.items{
  display: block;
  margin-left: -60px;
  font-size: 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

.items > .item{
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  padding-left: 60px;
  margin-bottom: 60px
}

.items.one > .item{
  width: 100%;
}

.items.one > .item:nth-last-child(1){
  margin-bottom: 0;
}

.items.two > .item{
  width: 50%;
}

.items.two > .item:nth-last-child(1),
.items.two > .item:nth-last-child(2){
  margin-bottom: 0;
}

.items.three > .item{
  width: 33.3333%;
}

.items.three > .item:nth-last-child(1),
.items.three > .item:nth-last-child(2),
.items.three > .item:nth-last-child(3){
  margin-bottom: 0;
}

.items.four > .item{
  width: 25%;
}

.items.four > .item:nth-last-child(1),
.items.four > .item:nth-last-child(2),
.items.four > .item:nth-last-child(3),
.items.four > .item:nth-last-child(4){
  margin-bottom: 0;
}

.items.five > .item{
  width: 20%;
}

.items.five > .item:nth-last-child(1),
.items.five > .item:nth-last-child(2),
.items.five > .item:nth-last-child(3),
.items.five > .item:nth-last-child(4),
.items.five > .item:nth-last-child(5){
  margin-bottom: 0;
}

.items.six > .item{
  width: 16.6666%;
}

.items.six > .item:nth-last-child(1),
.items.six > .item:nth-last-child(2),
.items.six > .item:nth-last-child(3),
.items.six > .item:nth-last-child(4),
.items.six > .item:nth-last-child(5),
.items.six > .item:nth-last-child(6){
  margin-bottom: 0;
}

/*---------------------------------
FEATURES
----------------------------------*/

.features{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  margin-left: -30px;
}

.features > .feature{
  position: relative;
  order: 0;
  flex-grow: 0;
  flex-shrink: 1;
  padding-left: 30px;
  margin-bottom: 30px !important;
  text-align: center;
}

.features > .feature > .feature-content{
  width: 100%;
  height: 100%;
  padding: 30px;
}

.features > .feature > .feature-content .image{
  margin-bottom: 30px;
}

.features > .feature > .feature-content > a > h3{
  margin-top: 0;
}


/*---------------------------------
ICONS
----------------------------------*/

.icons{
    margin-bottom:0;
}

.icons > .icon{
  text-align: center;
}

.icons > .icon > .icon-content{

}

.icons > .icon > .icon-content .image{
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.icons.circles > .icon > .icon-content .image{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/*---------------------------------
STATS
----------------------------------*/

.stats{

}

.stats > .stat{
  position: relative;
  text-align: center;
}

.stats > .stat > .stat-content{

}

.stats > .stat > .stat-content h3{
  font-size: 72px;
  margin: 0;
  margin-bottom: 10px;
}

.stats > .stat > .stat-content h4{
  margin: 0;
}

/*------------------------------
IMAGE WITH TEXT
------------------------------*/

.image-with-text{
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}

.image-with-text > .image{
  width: calc(60% - 30px);
  margin-bottom: 0;
}

.image-with-text > .text{
  width: calc(40% - 30px);
}

/*------------------------------
TEXT WITH QUOTE
------------------------------*/

.text-with-quote{
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}

.text-with-quote > .quote{
  width: calc(45% - 30px);
  margin-bottom: 0;
}

.text-with-quote > .text{
  width: calc(55% - 30px);
}

/*------------------------------
LIGHTBOX
------------------------------*/

.lightbox{
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
}

.lightbox > .lightbox-outer{
    overflow-y: auto;
    height: 100%;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
}

.lightbox.revealed{
  display: block;
  opacity: 1;
}

.lightbox-controls{
  padding: 30px 30px 0 30px;
}

.lightbox-controls > ul{
  text-align: right !important;
}

.lightbox-controls > ul > li{
  font-size: 16px;
}

.lightbox-controls > ul > li > p{
  display: block;
  margin: 0;
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
}

.lightbox-controls > ul > li > a{
  display: block;
  width: 40px;
  height: 30px;
}

.lightbox-controls > ul > li.prev,
.lightbox-controls > ul > li.next,
.lightbox-controls > ul > li.close{
  font-size: 0;
}

.lightbox-controls > ul > li.prev > a{
    background-image: url('../img/_brand/arrow_left.png');
}

.lightbox-controls > ul > li.prev > a:hover{
    background-image: url('../img/_highlight/arrow_left.png');
}

.lightbox-controls > ul > li.next > a{
    background-image: url('../img/_brand/arrow_right.png');
}

.lightbox-controls > ul > li.next > a:hover{
    background-image: url('../img/_highlight/arrow_right.png');
}

.lightbox-controls > ul > li.close{
    margin-left: 40px;
}

.lightbox-controls > ul > li.close > a{
  width: 30px;
  background-image: url('../img/_brand/close.png');
}

.lightbox-controls > ul > li.close > a:hover{
  background-image: url('../img/_highlight/close.png');
}

.lightbox-content{
  position: relative;
  padding: 60px;
}

.lightbox-content > .lightbox-side{
  float: left;
  margin-right: 60px;
  width: calc(40% - 60px);
}

.lightbox-content > .lightbox-main{
  float: right;
  text-align: left;
  width: 60%;
}

.lightbox-content .contact-details{
    margin-bottom: 0;
    text-align: left;
}

.lightbox-content .contact-details > ul{
    text-align: left;
}

.lightbox-content .social-media{
  margin-top: 20px;
}


/*------------------------------
PROFILES
------------------------------*/

.profiles{

}

.profiles > .profile{

}

.profiles > .profile > .profile-content{
  margin: 0 auto;
  max-width: 340px;
  text-align: center;
}

.profiles > .profile > .profile-content > .squarify{
}

.profiles > .profile > .profile-content > .squarify > .squarify-content{
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
  opacity: 0;
}

.profiles > .profile > .profile-content > .squarify:hover > .squarify-content{
  opacity: 1;
}

.profiles > .profile > .profile-content > h2{
  margin-top: 20px;
  margin-bottom: 10px;
}

/*------------------------------
CONTACT DETAILS
------------------------------*/

.contact-details{
  margin-bottom: 30px;
}

.contact-details > ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details > ul > li{
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
}

.contact-details > ul > li:last-child{
  margin-bottom: 0;
}

.contact-details > ul > li > a{
  display: block;
  line-height: 20px;
}

.contact-details > ul > li > address{
  margin: 0;
  font-style: normal;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.contact-details > ul > li > address > p{
  margin: 0;
}

.contact-details > ul > li > address,
.contact-details > ul > li > a{
  padding-left: 30px;
}

.contact-details > ul > li i{
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.sidr-class-desktop i,
.contact-details > ul > li.desktop i{
    background-image: url('../img/_brand/icon_desktop.png');
}

.sidr-class-laptop i,
.contact-details > ul > li.laptop i{
    background-image: url('../img/_brand/icon_laptop.png');
}

.sidr-class-address i,
.sidr-class-location i,
.contact-details > ul > li.address i,
.contact-details > ul > li.location i{
    background-image: url('../img/_brand/icon_location.png');
}

.sidr-class-website i,
.contact-details > ul > li.website i{
    background-image: url('../img/_brand/icon_website.png');
}

.sidr-class-telephone i,
.contact-details > ul > li.telephone i{
    background-image: url('../img/_brand/icon_telephone.png');
}

.sidr-class-email i,
.contact-details > ul > li.email i{
    background-image: url('../img/_brand/icon_email.png');
}

.sidr-class-mobile i,
.contact-details > ul > li.mobile i{
    background-image: url('../img/_brand/icon_mobile.png');
}

/*------------------------------
SOCIAL MEDIA
------------------------------*/

.social-media{

}

.social-media > ul{
  text-align: left;
}

.social-media > ul > li{
  margin-right: 10px;
}

.social-media > ul > li:last-child{
  margin-right: 0;
}

.social-media > ul > li > a{
  width: 35px;
  height: 35px;
}

.social-media > ul > li.facebook > a{
    background-image: url('../img/social/white/facebook.png');
}

.social-media > ul > li.google > a{
    background-image: url('../img/social/white/google.png');
}

.social-media > ul > li.instagram > a{
    background-image: url('../img/social/white/instagram.png');
}

.social-media > ul > li.linkedin > a{
    background-image: url('../img/social/white/linkedin.png');
}

.social-media > ul > li.pinterest > a{
    background-image: url('../img/social/white/pinterest.png');
}

.social-media > ul > li.slack > a{
    background-image: url('../img/social/white/slack.png');
}

.social-media > ul > li.snapchat > a{
    background-image: url('../img/social/white/snapchat.png');
}

.social-media > ul > li.twitter > a{
    background-image: url('../img/social/white/twitter.png');
}

.social-media > ul > li.vimeo > a{
    background-image: url('../img/social/white/vimeo.png');
}

.social-media > ul > li.whatsapp > a{
    background-image: url('../img/social/white/whatsapp.png');
}

.social-media > ul > li.youtube > a{
    background-image: url('../img/social/white/youtube.png');
}

.social-media > ul > li.desktop > a{
    background-image: url('../img/_brand/icon_desktop.png');
}

.social-media > ul > li.email > a{
    background-image: url('../img/_brand/icon_email.png');
}

.social-media > ul > li.external > a{
    background-image: url('../img/_brand/icon_external.png');
}

.social-media > ul > li.laptop > a{
    background-image: url('../img/_brand/icon_laptop.png');
}

.social-media > ul > li.location > a{
    background-image: url('../img/_brand/icon_location.png');
}

.social-media > ul > li.mobile > a{
    background-image: url('../img/_brand/icon_mobile.png');
}

.social-media > ul > li.rss > a{
    background-image: url('../img/_brand/icon_rss.png');
}

.social-media > ul > li.telephone > a{
    background-image: url('../img/_brand/icon_telephone.png');
}

.social-media > ul > li.user > a{
    background-image: url('../img/_brand/icon_user.png');
}

.social-media > ul > li.website > a{
    background-image: url('../img/_brand/icon_website.png');
}

/*------------------------------
GALLERY
------------------------------*/

.gallery{
  margin-bottom: 60px;
}

.gallery > ul{
  margin-left: -15px;
}

.gallery > ul > li{
  width: 25%;
  padding-left: 15px;
  margin-bottom: 15px;
}

.gallery > ul > li > a{
  display: block;
}

.gallery > ul > li > a > img{
  display: block;
  width: 100%;
}

/*-- LIGHTBOX --*/

#slb_viewer_wrap .slb_theme_slb_default .slb_data_title,
#slb_viewer_wrap .slb_theme_slb_default .slb_group_status{
    font-family: inherit !important;
    font-size: 16px !important;
}

/*------------------------------
BREADCRUMBS
------------------------------*/

.breadcrumb{
  display: block;
  text-transform: uppercase;
  line-height: 40px;
  font-size: 0.75em;
  padding: 0 20px;
}

.breadcrumb p{
  margin: 0;
}


/*------------------------------
COLLAPSIBLE MENUS
------------------------------*/

ul.collapsible{

}

ul.collapsible li{

}

ul.collapsible li > div{
  display: block;
  position: relative;
}

ul.collapsible li > div > a{
  display: block;
  width: calc(100% - 30px);
}

ul.collapsible li > div > i{
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 28px;
  background-image: url('../img/_white/chevron_down.png');
  cursor: pointer;
}

ul.collapsible li > div > i:hover{
  background-image: url('../img/_highlight/chevron_down.png');
}

ul.collapsible li.expanded > div > i{
  background-image: url('../img/_white/chevron_up.png');
}

ul.collapsible li.expanded > div > i:hover{
  background-image: url('../img/_highlight/chevron_up.png');
}

ul.collapsible li > div > ul{
  height: 1px;
  margin-top: -1px;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul.collapsible li.expanded > div > ul{
  opacity: 1;
  height: auto;
  margin-top: 0px;
}

/*------------------------------
TABLES
------------------------------*/

.paragraph table:not(.woocommerce-product-attributes){
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  background: rgba(255,255,255,1);
  border: 1px solid rgba(29,42,91,1);
  margin-bottom: 20px;
}

.paragraph table:not(.woocommerce-product-attributes) td,
.paragraph table:not(.woocommerce-product-attributes) th{
  padding: 10px 15px;
}

.paragraph table:not(.woocommerce-product-attributes) thead th,
.paragraph table:not(.woocommerce-product-attributes) tbody th{
  background-color: rgba(29,42,91,0.75);
  color: rgba(255,255,255,1);
  border-left: 1px solid rgba(29,42,91,1);
}

.paragraph table:not(.woocommerce-product-attributes) thead th{
  border-bottom: 1px solid rgba(29,42,91,1);
}

.paragraph table:not(.woocommerce-product-attributes) thead th:first-child,
.paragraph table:not(.woocommerce-product-attributes) tbody th:first-child{
  border: none;
}

.paragraph table:not(.woocommerce-product-attributes) tbody td{
  color: rgba(29,42,91,1);
  border-left: 1px solid rgba(29,42,91,0.5);
  border-bottom: 1px solid rgba(29,42,91,0.25);
  font-weight: normal;
}

.paragraph table:not(.woocommerce-product-attributes) tbody tr:nth-child(even) td {
  background: rgba(228,244,255,0.5)
}

.paragraph table:not(.woocommerce-product-attributes) tbody tr td:first-child{
  border-left: 1px solid rgba(29,42,91,1);
}

.paragraph table:not(.woocommerce-product-attributes) tbody tr td:last-child{
  border-right: 1px solid rgba(29,42,91,1);
}

.paragraph table:not(.woocommerce-product-attributes) tbody tr:last-child td{
  border-bottom: 1px solid rgba(29,42,91,1);
}

.findaproduct-section > .overlay,
.productsearch-section > .overlay{
  background-image: url('../img/brand/illustrations-bg_yellow.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.mobile-device .findaproduct-section > .overlay,
.mobile-device .productsearch-section > .overlay{
  background-attachment: scroll;
}

.productsearch-section .product-search-widget{
  margin-bottom: 30px;
}

/*------------------------------
SUB CATEGORIES
------------------------------*/


.category-widgets > .widget_product_categories > ul.product-categories{

}

.category-widgets > .widget_product_categories > ul.product-categories > li{
  display: none;
}

.category-widgets > .widget_product_categories > ul.product-categories > li.cat-parent,
.category-widgets > .widget_product_categories > ul.product-categories > li.current-cat-parent{
  display: block;
}


/*------------------------------
FIND A PRODUCT
------------------------------*/

.find-a-product-widget{

}

.find-a-product-widget > div{
  
}

.find-a-product-widget > div > h3{
  display: none;
}

.find-a-product-widget > div > form{
  
}

.find-a-product-widget > div > form > ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: flex-start;
  font-size: 0;
}

.find-a-product-widget > div > form > ul > li{
  order: 0;
  font-size: 16px;
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: auto;
  padding: 0 10px;
}

.find-a-product-widget > div > form > ul > li > h4{
  text-transform: uppercase;
  font-weight: bold;
}

.find-a-product-widget > div > form > ul > li.sf-field-taxonomy-product_cat,
.find-a-product-widget > div > form > ul > li.sf-field-taxonomy-product_brand{
  width: calc(50% - 120px);
}

.find-a-product-widget > div > form > ul > li.sf-field-post-meta-_price{
  width: 240px;
  margin-bottom: 30px;
}

.find-a-product-widget > div > form > ul > li > input[type=submit]{
  background-color: rgba(29,42,91,1);
  color: rgba(246,229,69,1);
}

.find-a-product-widget > div > form > ul > li > input[type=submit]:hover{
  background-color: rgba(76,184,255,1);
  color: rgba(255,255,255,1);
}

.find-a-product-widget .chosen-container{
  width: 100% !important;
}

a.search-filter-reset{
  display: inline-block;
    background-color: rgba(255,255,255,1);
    color: rgba(76,184,255,1);
    border: none;
    text-decoration: none;
    font-weight: normal;
    font-family: 'Brown', sans-serif;
    line-height: normal;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    border-radius: 21px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a.search-filter-reset:hover{
  background-color: rgba(29,42,91,1);
  color: rgba(246,229,69,1);
}

/*------------------------------
MOBILE PRODUCT SEARCH
------------------------------*/

.mobile-product-search{
  display: none;
}

.mobile-product-search > .overlay{
  padding: 20px 0;
}

.shop-widgets > div {
    padding-bottom: 30px;
}

/*------------------------------
MOBILE SUB CATEGORIES
------------------------------*/

.mobile-category-widget > .button{
  margin-top: 20px;
}

.mobile-product-search .widget_product_categories > h3{
  margin-bottom: 7.5px;
}

.mobile-product-search .widget_product_categories > ul.product-categories{
  font-size: 0;
}

.mobile-product-search .widget_product_categories > ul.product-categories ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-product-search .widget_product_categories > ul.product-categories li{
  display: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}

.mobile-product-search .widget_product_categories > ul.product-categories a{
  display: none;
  margin: 0;
  padding: 0;
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat-parent,
.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat,
.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat-siblings{
  display: inline-block;
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat.cat-parent > a{
  display: none;
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat ul{
  display: inline-block;
  margin: 0;
  padding: 0;
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat li{
  display: inline-block;
  padding: 0;
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat a,
.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat-siblings a{
  display: inline-block;
  background-color: rgba(29,42,91,1);
  color: rgba(255,255,255,1);
  padding: 7.5px 15px;
  text-transform: uppercase;
  font-size: 14px;
  margin: 2.5px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat a:hover,
.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat-siblings a:hover,
.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat > a:hover{
  background-color: rgba(76,184,255,1);
  color: rgba(255,255,255,1);
}

.mobile-product-search .widget_product_categories > ul.product-categories li.current-cat > a{
  color: rgba(29,42,91,1);
  background-color: rgba(255,255,255,1);
}


.woocommerce-products-compare-content{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 30px;
}

.warranty_info > b{
  display: block;
  margin-bottom: 10px;
}

.store-instruction{
  clear: both;
  margin-top: 30px;
}

/*------------------------------
STOCK TABLE
------------------------------*/

.stock-table .dt-buttons,
.stock-table .dataTables_length,
.stock-table .dataTables_filter{
  vertical-align: top;
}

.stock-table .dataTables_length{
  margin-left: 15px;
}

.stock-table .dataTables_length > label > select,
.stock-table .dataTables_filter > label > input{
  display: inline-block;
  width: auto;
}

/*------------------------------
RESPONSIVENESS
------------------------------*/

@media (max-width: 1400px){

  footer > .overlay{
      padding: 40px 0 120px 0;
  }

  .breadcrumb {
      display: none;
  }

}

@media (max-width: 1360px){

  .slick-arrow{
    display: none !important;
  }

}

@media (max-width: 1310px){

  .main-navigation > nav > ul > li {
    margin-right: 20px;
  }

}

@media (max-width: 1300px){

  .find-a-product-widget > div > form > ul > li.sf-field-taxonomy-product_cat,
  .find-a-product-widget > div > form > ul > li.sf-field-taxonomy-product_brand,
  .find-a-product-widget > div > form > ul > li.sf-field-post-meta-_price{
      width: 100%;
  }

  .find-a-product-widget > div > form > ul > li.sf-field-post-meta-_price > div{
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
  }

  .find-a-product-widget > div > form > ul > li > h4{
    text-align: center;
  }

  .find-a-product-widget > div > form > ul > li {
      padding: 0;
      padding-bottom: 20px;
  }

}

@media (max-width: 1250px){

  .main-navigation > nav > ul > li {
    margin-right: 15px;
  }

}

@media (max-width: 1230px){

    .main-navigation {
        display: none;
    }

    .mobile-nav {
        display: inline-block;
    }

    header.website-header > .header-body > .overlay > .right{
        width: 40px;
    }

    header.website-header > .header-body > .overlay > .left{
        width: calc(100% - 70px);
        max-width: none;
    }

    h2#logo {
      width: 100%;
      margin: 0;
    }

}

@media (max-width: 1100px){

  .columns.five > .column{
    width: 33.3333%;
  }

  .items.five > .item{
    width: 33.3333%;
  }

}

@media (max-width: 1040px){


  .lightbox-content {
    padding: 30px;
  }

  .lightbox-content > .lightbox-side {
      margin-right: 30px;
      width: calc(40% - 30px);
  }

}

@media (max-width: 1020px){

  .columns.four > .column{
    width: 50%;
  }

  .items.four > .item{
    width: 50%;
  }



  .panel-content-container,
  section.section .overlay,
  section.drawer-section .overlay{
      padding-top: 30px;
      padding-bottom: 30px;
  }

  section.tools .overlay{
      padding-top: 25px;
      padding-bottom: 25px;
  }

  section.header .overlay{
      padding-top: 100px;
      padding-bottom: 100px;
  }

}

@media (max-width: 1000px){

  .panels.two > .panel,
  .header .panels.two > .panel.text-panel,
  .header .panels.two > .panel.image-panel,
  .header.fullscreen .panels.two > .panel.text-panel,
  .header.fullscreen .panels.two > .panel.image-panel{
    order: 1;
    flex-basis: 100%;
    width: 100%;
  }

  .header .panels > .panel.image-panel > .frame{
    margin-bottom: 0;
  }

  .header .panels > .panel.text-panel{
    text-align: center;
  }

}

@media (max-width: 960px){

    .columns.three,
    .columns.five{
      margin-left: 0;
    }

    .columns.three > .column,
    .columns.five > .column{
      padding-left: 0;
      float: none;
      width: auto;
    }

    .columns.three > .column:nth-child(1),
    .columns.three > .column:nth-child(2),
    .columns.five > .column:nth-child(1),
    .columns.five > .column:nth-child(2),
    .columns.five > .column:nth-child(3),
    .columns.five > .column:nth-child(4){
      margin-bottom: 30px;
    }

    .columns.three > br.clear,
    .columns.five > br.clear{
      display: none;
    }

    .items.three,
    .items.five{
      margin-left: 0;
    }

    .items.three > .item,
    .items.five > .item{
      width: 100%;
      padding-left: 0;
    }

    .items.five > .item:nth-last-child(2),
    .items.five > .item:nth-last-child(3),
    .items.five > .item:nth-last-child(4),
    .items.five > .item:nth-last-child(5){
        margin-bottom: 60px;
    }

    .items.three > .item:nth-last-child(2),
    .items.three > .item:nth-last-child(3){
        margin-bottom: 60px;
    }

    .articles.grid {
        margin-left: 0;
    }

    .articles.grid > article {
        flex: 0 1 100%;
        padding-left: 0;
    }

    section.tools .overlay{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    section.header .overlay{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .team-section > .team-member {
        display: block;
    }

    .team-section > .team-member > .team-member-text,
    .team-section > .team-member > .team-member-image{
        width: auto;
    }

    .team-section > .team-member > .team-member-image{
        height: 0;
        padding-top: 60%;
        background-position: center top;
    }

    .team-section > .team-member > .team-member-text > .overlay > .team-member-text-container {
        max-width: none;
        text-align: center;
    }

    section.image-section{
        height: 360px;
    }

    .header-caption {
      max-width: none;
    }

  .slideshow-arrows {
    display: none;
  }


  .mobile-product-search{
    display: block;
  }

}

@media (max-width: 860px){


    .columns.two,
    .columns.four{
      margin-left: 0;
    }

    .columns.two > .column,
    .columns.four > .column{
      padding-left: 0;
      float: none;
      width: auto;
    }

    .columns.two > .column:nth-child(1),
    .columns.four > .column:nth-child(1),
    .columns.four > .column:nth-child(2),
    .columns.four > .column:nth-child(3){
      margin-bottom: 30px;
    }

    .columns.two > br.clear,
    .columns.four > br.clear{
      display: none;
    }

    .items.two,
    .items.four{
      margin-left: 0;
    }

    .items.two > .item,
    .items.four > .item{
      width: 100%;
      padding-left: 0;
    }

    .items.four > .item:nth-last-child(2),
    .items.four > .item:nth-last-child(3),
    .items.four > .item:nth-last-child(4){
        margin-bottom: 60px;
    }

    .items.two > .item:nth-last-child(2){
        margin-bottom: 60px;
    }

    .gallery > ul > li {
      width: 50%;
    }

  .banner-section > .banner-text::before {
      display: none;
  }

  .banner-section {
    display: block;
  }

  .banner-section > .banner-image,
  .banner-section > .banner-text{
    width: 100%;
  }

  .banner-section > .banner-image{
    height: 0;
    padding-top: 50%;
  }

  .banner-section > .banner-text > .overlay > .banner-text-container{
    text-align: center;
    max-width: none;
    margin: 0;
    padding: 0 30px;
  }

  .banner-section > .banner-text > .overlay > .banner-text-container ul.horizontal{
    text-align: center;
  }


.text-with-quote > .quote,
.text-with-quote > .text{
    float: none;
    width: auto;
    text-align: center;
}

.text-with-quote > .quote{
  margin-bottom: 30px;
}

.text-with-quote > br.clear{
  display: none;
}

.lightbox-content > .lightbox-side,
.lightbox-content > .lightbox-main{
    float: none;
    margin: 0;
    width: auto;
}

.lightbox-content > br.clear{
  display: none;
}

.lightbox-content > .lightbox-side > .squarify{
  margin: 0 auto;
  max-width: 360px;
}

  .lightbox-outer > .content-container{
    padding: 0;
  }

.contact-section .align-left{
  text-align: center;
}

.contact-section .contact-details {
  display: inline-block;
}

.columns.two > .column.align-left,
.columns.two > .column.align-right{
  text-align: center;
}

.contact-details {
    display: inline-block;
}

.social-links > ul.horizontal {
    text-align: center;
}

}

@media (max-width: 740px){

  .image-with-text > .left,
  .image-with-text > .right{
      float: none;
  }

  .image-with-text > .image,
  .image-with-text > .text{
      width: 100%;
      max-width:400px;
      margin:auto;
  }

  .image-with-text > br.clear{
    display: none;
  }

}

@media (max-width: 720px){


  footer .footer-navigation > nav > ul > li {
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
  }

  footer .footer-navigation > nav > ul > li:last-child {
    margin-bottom: 0;
  }

  footer .contacts > ul > li {
      display: block;
      margin-bottom: 15px;
      margin-right: 0;
  }

  footer .contacts > ul > li:last-child {
      margin-bottom: 0;
  }

  footer .contacts > ul > li > a{
    display: inline-block;
  }

  footer .contacts > ul > li > a > i {

  }


}

@media (max-width: 680px){

  .accreditations > ul > li {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .accreditations > ul > li:last-child {
    margin-bottom: 0;
  }

}

@media (max-width: 660px){

  .top-navigation > nav > ul > li {
    margin-right: 10px;
  }

  .top-navigation nav > ul > li.nav-button > a {
    padding: 0 15px;
  }

  .top-navigation > nav > ul > li:not(.basket) > a > i{
    float: none;
    margin: 0;
  }

  .top-navigation > nav > ul > li:not(.basket) > a > span{
    display: none;
  }

  .top-navigation > nav > ul > li.telephone,
  .top-navigation > nav > ul > li.website,
  .top-navigation > nav > ul > li.temail,
  .top-navigation > nav > ul > li.mobile{
    display: none;
  }

}

@media (max-width: 640px){

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
      width: 100%;
      float: none;
      margin: 0 0 2em 0;
  }

}

@media (max-width: 600px){

 .woocommerce a img.alignright {
      float: none;
      margin: 0;
  }

}

@media (max-width: 580px){

    footer > .overlay{
      padding: 40px 0;
    }
}

@media (max-width: 460px){

  .top-navigation > nav > ul > li.telephone {
    display: none;
  }

  .header-top > .overlay > .social-links{
      display: none;
  }

  .header-top > .overlay > .top-navigation{
    float: none;
  }

}


@media (max-width: 380px){

body{
  font-size: 13px;
}

h1{
  font-size: 1.6em;
}

h2{
  font-size: 1.3em;
}

h3{
  font-size: 1.2em;
}

h4{
  font-size: 1.1em;
}

h5{
  font-size: 1em;
}

h6{
  font-size: 1em;
}

}