/* Preload images */
body:after {
  content: url(/public/images/close.png) url(/public/images/loading.gif) url(/public/images/prev.png) url(/public/images/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: alpha(opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 0 8px 8px 0;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/public/images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/public/images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/public/images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/public/images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/*==========================================================================
****************************************************************************
                                                                           *
    Title: Basket Camp                                                     *
    Author: Jamel Interactive                                              *
    File: main.less                                                        *
                                                                           *
****************************************************************************
============================================================================

    1. IMPORTS

    2. COMMON
        2.1 Containers / Miscellaneous
        2.2 Header
        2.3 Navigation
        2.4 Footer

    3. MODULES
        3.1 Image + text row
        3.2 3-columns text
        3.3 Rotator
        3.4 Side image
        3.5 Static text
        3.6 Form controls
        3.7 File
        3.8 Gallery
        3.8 Galleries
        3.9 Map
        3.10 Trainer
        3.11 Base
        3.12 Partners
        3.13 Contact form
		3.14 Overlay
		3.15 Map

    4. RWD
        4.1 Breakpoints

****************************************************************************
==========================================================================*/
/* 1. IMPORTS
----------------------------------------------------------------------------
==========================================================================*/
/*==========================================================================
****************************************************************************
                                                                           *
    Title: Basket Camp                                                     *
    Author: Jamel Interactive                                              *
    File: mixins.less                                                      *
                                                                           *
****************************************************************************
============================================================================

    Mixins

****************************************************************************
==========================================================================*/
/*==========================================================================
****************************************************************************
                                                                           *
    Title: Basket Camp                                                     *
    Author: Jamel Interactive                                              *
    File: variables.less                                                   *
                                                                           *
****************************************************************************
============================================================================

    Variables

****************************************************************************
==========================================================================*/
/*==========================================================================
****************************************************************************
                                                                           *
    Title: Basket Camp                                                     *
    Author: Jamel Interactive                                              *
    File: fonts.less                                                       *
                                                                           *
****************************************************************************
============================================================================

    FONTS

    Sizes notation:

    100 - Thin
    200 - Extra Light
    300 - Light
    400 - Regular
    500 - Medium
    600 - Semi Bold
    700 - Bold
    800 - Extra-Bold
    900 - Ultra Bold

****************************************************************************
==========================================================================*/
@font-face {
  font-family: Factoria;
  src: url(04e8a3db69c6af215f095983d48d192d.eot);
  src: url(04e8a3db69c6af215f095983d48d192d.eot?#iefix) format('embedded-opentype'), url(4bdd886be3a0419e3623550f6840ddd1.woff2) format('woff2'), url(6b60862525562d10e48e1953d1b12f5d.woff) format('woff'), url(8122b2f26939c7a9a009b12cf02ee490.ttf) format('truetype'), url(df96369fd6f9d1065655075f386e0ff5.svg#Factoria-Bold) format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url(95338796836d5bf126e9e665e8181ca9.eot);
  src: url(95338796836d5bf126e9e665e8181ca9.eot?#iefix) format('embedded-opentype'), url(e70e69aae853b4f1da3d78e35ddbc734.woff2) format('woff2'), url(f1ef52011526e4fca66602ef34a61ef4.woff) format('woff'), url(6e36ee20e84b661f7404c3897dbb47b1.ttf) format('truetype'), url(cbb471f1c3c5fd9b728110661e50fb7b.svg#ProximaNova-Regular) format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url(18bce04a954fa9b5af7da4dcca9e3a00.eot);
  src: url(18bce04a954fa9b5af7da4dcca9e3a00.eot?#iefix) format('embedded-opentype'), url(5bb06d662288cff8cc961847a4eee432.woff2) format('woff2'), url(9003d13f3ee7a7ce7d3ad89cce8f97d6.woff) format('woff'), url(6e1a5e52a7b190d20cadf9cc50ec4066.ttf) format('truetype'), url(a2cca22a23f6f715beb1a19e650f722f.svg#ProximaNova-SemiBold) format('svg');
  font-weight: 600;
  font-style: normal;
}
/*==========================================================================
****************************************************************************
                                                                           *
    Title: Basket Camp                                                     *
    Author: Jamel Interactive                                              *
    File: reset.less                                                       *
                                                                           *
****************************************************************************
============================================================================

    1. Reset
    2. Normalize

****************************************************************************
==========================================================================*/
/* 1. Reset
--------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
sup {
  vertical-align: super;
  font-size: 80%;
}
sub {
  vertical-align: sub;
  font-size: 80%;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
*:after,
*:before {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-text-size-adjust: none;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -moz-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -ms-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
input[type=text],
input[type=password],
input[type=submit],
input[type=datetime],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type=text],
input[type=password],
input[type=datetime],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
textarea {
  background: #fff;
}
/* 2. Normalize
------------------------------------------------------------------------------*/
body {
  font-family: 'Proxima Nova', Arial, Helvetica, sans-serif;
  font-size: 87.5%;
  line-height: 1.78571429;
  font-weight: 400;
  color: #444;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
hr {
  display: none;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
del {
  text-decoration: line-through;
}
th,
td {
  vertical-align: top;
}
th {
  font-weight: normal;
  text-align: left;
}
address,
cite,
dfn {
  font-style: normal;
}
abbr,
acronym {
  border-bottom: 1px dotted #999;
  cursor: help;
}
input,
textarea,
select {
  font: 400 12px 'Proxima Nova', Arial, Helvetica, sans-serif;
  color: #999;
}
textarea {
  overflow: auto;
  resize: none;
}
a {
  text-decoration: none;
  color: #ff9b50;
  cursor: pointer;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEX///+nxBvIAAAAAXRSTlMAQObYZgAAAApJREFUeF5jYAAAAAIAAd6ej78AAAAASUVORK5CYII=);
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
img {
  -ms-interpolation-mode: bicubic;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEX///+nxBvIAAAAAXRSTlMAQObYZgAAAApJREFUeF5jYAAAAAIAAd6ej78AAAAASUVORK5CYII=);
}
*::-webkit-input-placeholder {
  opacity: 1;
}
*:-moz-placeholder {
  opacity: 1;
}
*::-moz-placeholder {
  opacity: 1;
}
*:-ms-input-placeholder {
  opacity: 1;
}
.date_selector,
.date_selector * {
  width: auto;
  height: auto;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
}
.date_selector {
  background: #fff;
  border: 1px solid #999;
  padding: 5px;
  margin: 5px 0 0 0;
  position: absolute;
  z-index: 100000;
  display: none;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.date_selector_ieframe {
  position: absolute;
  z-index: 99999;
  display: none;
}
.date_selector .nav {
  width: 17.5em;
  font: 12px/20px 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.date_selector .month_nav,
.date_selector .year_nav {
  margin: 0 0 3px 0;
  padding: 0;
  display: block;
  position: relative;
  text-align: center;
}
.date_selector .month_nav {
  float: left;
  width: 55%;
}
.date_selector .year_nav {
  float: right;
  width: 35%;
  margin-right: -8px;
}
.date_selector .button {
  display: block;
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  color: #003C78;
  text-align: center;
  overflow: hidden;
  border: 1px solid #eeeff0;
  cursor: pointer;
  font: 12px/18px 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.date_selector .button:hover,
.date_selector .button.hover {
  background: none;
  color: #003C78;
  cursor: pointer;
  border-color: #d2d5d8;
}
.date_selector .prev {
  left: 0;
}
.date_selector .next {
  right: 0;
}
.date_selector table {
  border-spacing: 0;
  border-collapse: collapse;
  clear: both;
  font: 12px/20px 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.date_selector th,
.date_selector td {
  width: 2.5em;
  height: 2em;
  padding: 0;
  text-align: center;
  color: black;
}
.date_selector td {
  border: 1px solid #d2d5d8;
  line-height: 2em;
  text-align: center;
  white-space: nowrap;
  color: #ff9b50;
  background: white;
}
.date_selector td.today {
  background: #eeeff0;
}
.date_selector td.unselected_month {
  color: #ccc;
}
.date_selector td.selectable_day {
  cursor: pointer;
}
.date_selector td.selected {
  background: #ff9b50;
  color: #fff;
  font: 12px/2em 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.date_selector td.selectable_day:hover,
.date_selector td.selectable_day.hover {
  background: #ff9b50;
  color: #fff;
}
/* 2. COMMON
----------------------------------------------------------------------------
==========================================================================*/
/* 2.1 Containers / Miscellaneous
--------------------------------------------------------------------------*/
#container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#main {
  max-width: 1180px;
  margin: 0 auto;
  zoom: 1;
  padding: 0 30px;
}
#main:after {
  content: '';
  display: block;
  clear: both;
}
.btn {
  font: 400 12px/20px 'Proxima Nova', Helvetica, Arial, sans-serif;
  display: inline-block;
  padding: 10px 15px 9px;
  border: solid 1px #ff9b50;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  min-width: 248px;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  cursor: pointer;
  color: #ff9b50;
}
.btn:hover {
  background: #ff9b50;
  color: #fff;
}
.right-arrow,
.txt-3-cols p::after {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIBAMAAAA2IaO4AAAAIVBMVEUAAAD/bAD/bgD/bQD/bgD/bQD/bgD/bgD/bQD/bQD/bAB0yrLgAAAAC3RSTlMA2j3mqlEvIImBYXKJKk4AAAAjSURBVAjXY2BgUWBgcGIyZWBIDEhewMAuyS4BJsBcsARYCQBmLgUhMwBpyQAAAABJRU5ErkJggg==') no-repeat;
}
.section-header {
  padding-bottom: 40px;
  font: 700 30px/1 Factoria, 'Thimes New Roman', Georgia, serif;
  color: #1b1b1b;
}
.cols {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.cols .col {
  display: table-cell;
  vertical-align: top;
}
.cols .col.narrow {
  width: 42.37288136%;
}
.cols .col.wide ~ .narrow {
  padding-left: 120px;
}
.cols .block {
  padding-bottom: 150px;
}
.page-header {
  font: 700 40px/1 Factoria, 'Thimes New Roman', Georgia, serif;
  color: #ff9b50;
  text-transform: uppercase;
  margin: 30px 0 55px;
  padding-bottom: 25px;
  position: relative;
}
.page-header:after {
  content: '';
  width: 120px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.no-results {
  font: 14px/20px 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-bottom: 100px;
}
.social-icons {
  position: absolute;
  right: 0;
  top: 150px;
}
.social-icons a {
  width: 32px;
  height: 32px;
  display: block;
  text-indent: -999999px;
  margin-top: 5px;
}
.social-icons a.ico-1 {
  background: url('/public/images/instagram.png') no-repeat;
}
.social-icons a.ico-2 {
  background: url('/public/images/snapchat.png') no-repeat;
}
.registration-btn {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #ff9b50;
  color: #fff;
}
/* 2.2 Header
--------------------------------------------------------------------------*/
.header {
  position: relative;
  min-height: 138px;
  padding-bottom: 50px;
}
.header .logo {
  width: 120px;
  height: 103px;
  position: absolute;
  left: 50%;
  top: 35px;
  margin-left: -45px;
  background: url('/public/images/logo.png') no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  text-indent: -999999px;
  font-size: none;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header #toggle-navigation {
  position: absolute;
  left: -999999px;
  opacity: 0;
}
/* 2.3 Navigation
--------------------------------------------------------------------------*/
.navigation {
  font: 400 12px/1.67 'Proxima Nova', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding-top: 80px;
}
.navigation ul {
  float: left;
}
.navigation ul:last-child {
  float: right;
}
.navigation li {
  float: left;
  margin: 0 30px;
}
.navigation li:first-child {
  margin-left: 0;
}
.navigation li:last-child {
  margin-right: 0;
}
.navigation li.current a {
  color: #ff9b50;
}
.navigation a {
  color: #1b1b1b;
}
/* 2.4 Footer
--------------------------------------------------------------------------*/
.footer {
  padding: 100px 0 100px 300px;
  position: relative;
}
.footer img {
  position: absolute;
  left: 0;
  top: 80px;
}
.footer .footer-logos {
  float: right;
  margin-top: -25px;
}
.footer .footer-logos img {
  position: inherit;
  margin-left: 20px;
  width: auto;
  height: auto;
}
.footer ul {
  zoom: 1;
  font: 400 11px/1.82 'Proxima Nova', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding-bottom: 50px;
}
.footer ul:after {
  content: '';
  display: block;
  clear: both;
}
.footer li {
  float: left;
  padding-right: 50px;
}
.footer li a {
  color: #999;
}
.footer li.current a {
  color: #ff9b50;
}
.footer .copy {
  font: 400 11px/1.82 'Proxima Nova', Helvetica, Arial, sans-serif;
  color: #999;
  float: left;
}
/* 3. MODULES
----------------------------------------------------------------------------
==========================================================================*/
/* 3.1 Image + text row
--------------------------------------------------------------------------*/
.img-txt-row {
  position: relative;
  display: table;
  width: 100%;
  table-layout: fixed;
  padding-bottom: 50px;
  direction: rtl;
}
.img-txt-row .img {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.img-txt-row img {
  float: right;
  width: 100%;
}
.img-txt-row .content {
  width: 50%;
  max-width: 500px;
  display: table-cell;
  vertical-align: middle;
  direction: ltr;
}
.img-txt-row h3 {
  font: 700 40px/1 Factoria, 'Thimes New Roman', Georgia, serif;
  color: #1b1b1b;
  text-transform: uppercase;
  padding-bottom: 50px;
  max-width: 480px;
}
.img-txt-row.right {
  direction: ltr;
}
.img-txt-row p {
  padding-bottom: 50px;
  max-width: 480px;
}
.img-txt-row.img-big {
  padding-bottom: 100px;
}
.img-txt-row.img-big .img {
  width: 70%;
}
.img-txt-row.img-big img {
  width: 142.858%;
  margin: 0 -15%;
}
.img-txt-row.img-big .content {
  width: 30%;
}
.img-txt-row.bg {
  background: #ff9b50;
  color: #fff;
  padding-bottom: 0;
  margin: 0 0 100px;
}
.img-txt-row.bg h3 {
  color: #fff;
}
.img-txt-row.bg .img {
  vertical-align: bottom;
}
.img-txt-row.bg .img img {
  max-height: 600px;
  max-width: 100%;
  width: auto;
  display: block;
  float: none;
  margin: 0 auto;
}
.img-txt-row.bg .btn {
  border-color: #fff;
  color: #fff;
}
.img-txt-row.bg .btn:hover {
  color: #ff9b50;
  background: #fff;
}
.img-txt-row.bg .content {
  padding: 80px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.img-txt-row ~ .img-txt-row.bg {
  margin-top: 50px;
}
/* 3.2 3-columns text
--------------------------------------------------------------------------*/
.txt-3-cols {
  zoom: 1;
  padding-bottom: 50px;
  margin: 0 -40px;
}
.txt-3-cols:after {
  content: '';
  display: block;
  clear: both;
}
.txt-3-cols .col {
  width: 33.33333333%;
  float: left;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.txt-3-cols h4 {
  font: 700 30px/1 Factoria, 'Thimes New Roman', Georgia, serif;
  padding-bottom: 45px;
  color: #1b1b1b;
}
.txt-3-cols p::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  left: 5px;
}
.txt-3-cols .btn {
  margin-top: 40px;
}
/* 3.3 Rotator
--------------------------------------------------------------------------*/
.rotator {
  position: relative;
}
.rotator .slide {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
}
.rotator .slide.current {
  display: block;
}
.rotator .pager {
  position: absolute;
  right: -100px;
  top: 50%;
  margin-top: -50px;
}
.rotator .pager span {
  width: 10px;
  height: 10px;
  display: block;
  margin-top: 10px;
  background: #eee;
  -webkit-border-top-right-radius: 50%;
  -webkit-border-bottom-right-radius: 50%;
  -webkit-border-bottom-left-radius: 50%;
  -webkit-border-top-left-radius: 50%;
  -moz-border-radius-topright: 50%;
  -moz-border-radius-bottomright: 50%;
  -moz-border-radius-bottomleft: 50%;
  -moz-border-radius-topleft: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  cursor: pointer;
}
.rotator .pager span.current {
  background: #ff9b50;
  cursor: default;
}
/* 3.4 Side image
--------------------------------------------------------------------------*/
.side-img {
  padding: 70px 0 50px;
}
.side-img img {
  display: block;
  width: 100%;
}
/* 3.5 Static text
--------------------------------------------------------------------------*/
.static-text {
  font: 400 18px/1.64 'Proxima Nova', Helvetica, Arial, sans-serif;
  color: #363636;
  text-align: left;
}
.static-text a:hover {
  text-decoration: underline;
}
.static-text b,
.static-text strong {
  color: #ff9b50;
}
.static-text ul li {
  position: relative;
  padding-left: 1.5em;
}
.static-text ul li:before {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 10px;
  background: #ff9b50;
  -webkit-border-top-right-radius: 50%;
  -webkit-border-bottom-right-radius: 50%;
  -webkit-border-bottom-left-radius: 50%;
  -webkit-border-top-left-radius: 50%;
  -moz-border-radius-topright: 50%;
  -moz-border-radius-bottomright: 50%;
  -moz-border-radius-bottomleft: 50%;
  -moz-border-radius-topleft: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.static-text img {
  max-width: 100%;
  height: auto;
}
.static-text ol {
  margin-left: 1.5em;
}
.static-text ol li {
  list-style-type: none;
  counter-increment: list;
  position: relative;
}
.static-text ol li:before {
  content: counter(list) ".";
  position: absolute;
  left: -1.5em;
  width: 1.5em;
  top: 0;
  text-align: left;
}
.static-text ol li:nth-of-type(n + 10) {
  padding-left: 6px;
}
.static-text ol li:nth-of-type(n + 100) {
  padding-left: 12px;
}
.static-text ol li:nth-of-type(n + 1000) {
  padding-left: 18px;
}
.static-text ol li:nth-of-type(n + 10000) {
  padding-left: 24px;
}
.static-text ol li:nth-of-type(n + 100000) {
  padding-left: 30px;
}
.static-text h1 {
  font: 700 36px/1.35 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.static-text h2 {
  font: 700 32px/1.35 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.static-text h3 {
  font: 700 26px/1.35 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.static-text h4 {
  font: 700 22px/1.35 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.static-text h5 {
  font: 700 18px/1.35 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.static-text table {
  width: 100%;
  overflow: hidden;
}
.static-text table th {
  font: 18px/120% 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding: 13px 20px;
  background: #eef1f8;
  border: solid 1px #eef1f8;
}
.static-text table th:last-child {
  text-align: right;
}
.static-text table td {
  border: solid 1px #eef1f8;
  padding: 13px 20px;
}
.static-text table td:last-child {
  text-align: right;
}
.static-text .table-wrapper {
  position: relative;
}
.static-text .table-wrapper:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #eef1f8;
}
.static-text .table-wrapper:after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #eef1f8;
}
.static-text .table-wrapper-inner {
  overflow-x: auto;
}
.static-text p {
  padding-bottom: 10px;
}
/* 3.6 Form controls
--------------------------------------------------------------------------*/
form {
  padding-bottom: 100px;
}
form .row {
  zoom: 1;
  padding-bottom: 22px;
}
form .row:after {
  content: '';
  display: block;
  clear: both;
}
form input[type="text"],
form textarea,
form select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font: 500 14px/20px 'Proxima Nova', Helvetica, Arial, sans-serif;
  color: #999;
  border: solid 1px #ececec;
  padding: 10px 17px;
  float: left;
  width: 100%;
}
form textarea {
  height: 150px;
  width: 100%;
}
form textarea:focus {
  color: #999;
}
form .col {
  width: 50%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form .col:last-child {
  padding-left: 15px;
}
form .col:first-child {
  padding-right: 15px;
  padding-left: 0;
}
form select {
  height: 42px;
  padding: 0 17px;
}
form .btn {
  width: auto;
  min-width: 215px;
  float: right;
}
form label {
  display: block;
  font-size: 12px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
form .error {
  color: #ff9b50;
  display: block;
  padding-top: 5px;
}
form .major-error {
  display: block;
  padding: 30px;
  border: solid 1px #ff9b50;
  margin-bottom: 50px;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.success-info {
  font-size: 18px;
  padding-bottom: 50px;
}
/* 3.7 File
--------------------------------------------------------------------------*/
.file-row {
  position: relative;
  font: 400 17px/1.3 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-bottom: 20px;
  padding-right: 400px;
}
.file-row + :not(.file-row) {
  padding-top: 20px;
}
.file-row a {
  color: #444;
  padding: 3px 0 0 32px;
  display: inline-block;
  -webkit-transition: color 0s ease;
  -moz-transition: color 0s ease;
  -ms-transition: color 0s ease;
  -o-transition: color 0s ease;
  transition: color 0s ease;
}
.file-row a:hover {
  color: #ff9b50;
}
.file-row a:hover .title {
  text-decoration: underline;
}
.file-row img {
  position: absolute;
  left: 0;
  top: 0;
}
.file-row .info {
  color: #c4c4c4;
  text-transform: uppercase;
}
.files {
  position: relative;
  padding-bottom: 100px;
  min-height: 250px;
}
.files .side-img {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
}
/* 3.8 Gallery
--------------------------------------------------------------------------*/
.gallery {
  display: table;
  table-layout: fixed;
  padding-bottom: 100px;
}
.gallery .full {
  width: 700px;
  display: table-cell;
  vertical-align: top;
}
.gallery .full .wrap {
  position: relative;
}
.gallery .full .wrap:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border: solid 10px #ff9b50;
  z-index: 3;
}
.gallery .full .wrap:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 10px;
  left: 10px;
  bottom: 10px;
  border: solid 17px #fff;
  z-index: 3;
}
.gallery .full .wrap img {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 27px;
}
.gallery .full .prev {
  position: absolute;
  left: 27px;
  top: 38px;
  width: 7px;
  height: 28px;
  background: url('/public/images/arrows.png') 0 0 no-repeat;
  display: none;
}
.gallery .full .next {
  position: absolute;
  right: 27px;
  top: 38px;
  width: 7px;
  height: 28px;
  background: url('/public/images/arrows.png') -8px 0 no-repeat;
  display: none;
}
.gallery .full .thumbs {
  position: relative;
  padding-top: 20px;
}
.gallery .full .list {
  width: 602px;
  overflow: hidden;
  margin: 0 auto;
}
.gallery .full .list ul {
  display: table;
  table-layout: fixed;
}
.gallery .full .list li {
  display: table-cell;
}
.gallery .full .list img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
  display: block;
}
.gallery .full .list .square {
  width: 78px;
  height: 64px;
  overflow: hidden;
  background: #f1f1f1;
  position: relative;
  margin: 0 4px;
}
.gallery .full .list .square:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border: solid 2px #ff9b50;
  z-index: 3;
}
.gallery .full .list .square:after {
  content: '';
  position: absolute;
  right: 2px;
  top: 2px;
  left: 2px;
  bottom: 2px;
  border: solid 3px #fff;
  z-index: 3;
}
.gallery .full .list .img {
  position: absolute;
  top: 50%;
  margin-top: -5000px;
  height: 10000px;
  left: 0;
  width: 100%;
  display: table;
}
.gallery .full .list .center {
  display: table-cell;
  vertical-align: middle;
}
.gallery .desc {
  display: table-cell;
  padding-left: 100px;
  vertical-align: top;
}
/* 3.8 Galleries
--------------------------------------------------------------------------*/
.galleries {
  margin: 0 -10px;
}
.galleries li {
  float: left;
  width: 25%;
  height: 25%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px 30px;
  font: 700 17px/1.2 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.galleries li:nth-of-type(4n + 1) {
  clear: both;
}
.galleries li a {
  display: block;
}
.galleries li a:hover .hover {
  opacity: 1;
}
.galleries img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
  display: block;
}
.galleries .square {
  position: relative;
  padding-bottom: 74.5%;
  overflow: hidden;
  background: #f1f1f1;
  margin-bottom: 20px;
}
.galleries .square:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border: solid 10px #ff9b50;
  z-index: 3;
}
.galleries .square:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 10px;
  left: 10px;
  bottom: 10px;
  border: solid 5px #fff;
  z-index: 3;
}
.galleries .img {
  position: absolute;
  top: 50%;
  margin-top: -5000px;
  height: 10000px;
  left: 0;
  width: 100%;
  display: table;
}
.galleries .center {
  display: table-cell;
  vertical-align: middle;
}
.galleries .hover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 107, 0, 0.8);
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.galleries .hover span {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -55px;
  right: 0;
  color: #fff;
  padding: 50px 40px 0;
  font: 700 30px/1 'Proxima Nova', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.galleries .hover span:before {
  content: '';
  width: 58px;
  height: 38px;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -29px;
  background: url('/public/images/eye-ico.png') no-repeat;
}
.galleries span {
  color: #333;
  padding-right: 10px;
}
.galleries .more {
  clear: both;
  text-align: center;
  padding: 50px 0 100px;
}
.galleries .more .loading {
  text-indent: -999999px;
  background: url('/public/images/ajax-loader.gif') center center no-repeat;
}
/* 3.9 Map
--------------------------------------------------------------------------*/
.map {
  margin-bottom: 100px;
}
/* 3.10 Trainer
--------------------------------------------------------------------------*/
.trainer {
  display: table;
  table-layout: fixed;
  padding-bottom: 130px;
}
.trainer .basic {
  display: table-cell;
  width: 400px;
  vertical-align: top;
}
.trainer .basic img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.trainer .basic .name {
  color: #fff;
  background: #ff9b50;
  padding: 25px 30px;
  margin-bottom: 30px;
}
.trainer .basic .name h2 {
  font: 700 30px/1 Factoria, 'Thimes New Roman', Georgia, serif;
}
.trainer .basic .name span {
  display: block;
  font: 400 20px/1 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-top: 3px;
}
.trainer .desc {
  display: table-cell;
  padding-left: 100px;
  vertical-align: top;
}
/* 3.11 Base
--------------------------------------------------------------------------*/
.base {
  display: table;
  table-layout: fixed;
  padding-bottom: 130px;
}
.base .basic {
  display: table-cell;
  width: 400px;
  vertical-align: top;
}
.base .basic .images {
  margin: 30px -15px 0;
  position: relative;
}
.base .basic .images img {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 15px;
  display: none;
  left: 0;
  top: 0;
}
.base .basic .images img.current {
  display: block;
}
.base .basic .name {
  color: #fff;
  background: #ff9b50;
  padding: 25px 30px;
}
.base .basic .name h2 {
  font: 700 25px/1 Factoria, 'Thimes New Roman', Georgia, serif;
}
.base .basic .name span {
  display: block;
  font: 400 17px/1.2 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-top: 10px;
}
.base .basic .address {
  color: #fff;
  background: #ec6401;
  padding: 25px 30px;
  font: 400 17px/1.2 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.base .desc {
  display: table-cell;
  padding-left: 100px;
  vertical-align: top;
}
/* 3.12 Partners
--------------------------------------------------------------------------*/
.partners {
  margin: 0 -110px 25px;
  zoom: 1;
}
.partners:after {
  content: '';
  display: block;
  clear: both;
}
.partner {
  float: left;
  width: 50%;
  padding: 0 110px 75px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.partner:nth-of-type(odd) {
  clear: both;
}
.partner img {
  display: block;
  width: 100%;
  border: solid 1px #e1e1e1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 45px;
}
.partner h2 {
  font: 700 21px/1.3 'Proxima Nova', Helvetica, Arial, sans-serif;
  color: #ff9b50;
  padding-bottom: 40px;
}
/* 3.13 Contact form
--------------------------------------------------------------------------*/
.contact-form {
  zoom: 1;
  margin-bottom: 100px;
}
.contact-form:after {
  content: '';
  display: block;
  clear: both;
}
.contact-form .info {
  float: left;
  width: 50%;
}
.contact-form .info h3 {
  font: 700 17px/1.3 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-bottom: 10px;
}
.contact-form .info h4 {
  font: 700 25px/1.3 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-bottom: 10px;
  color: #ff9b50;
  margin-top: 15px;
}
.contact-form .info p {
  font: 400 17px/1.3 'Proxima Nova', Helvetica, Arial, sans-serif;
  padding-bottom: 45px;
  max-width: 325px;
}
.contact-form .info img {
  display: block;
  margin-bottom: 30px;
}
.contact-form .info .contact-option {
  position: relative;
  padding-left: 50px;
  padding-bottom: 20px;
}
.contact-form .info .contact-option .label {
  position: absolute;
  left: 0;
  top: -3px;
  font: 700 46px/1 'Proxima Nova', Helvetica, Arial, sans-serif;
  color: #000;
  width: 40px;
  text-align: right;
  -webkit-transform: scale(0.7, 1);
  -moz-transform: scale(0.7, 1);
  -ms-transform: scale(0.7, 1);
  -o-transform: scale(0.7, 1);
  transform: scale(0.7, 1);
}
.contact-form .info .contact-option a {
  font: 700 40px/1 'Proxima Nova', Helvetica, Arial, sans-serif;
  display: inline-block;
  margin-bottom: 5px;
}
.contact-form .info .contact-option a.small {
  font-size: 25px;
  margin-top: 5px;
}
.contact-form .info .contact-option .desc {
  display: block;
  font: 400 15px/1 'Proxima Nova', Helvetica, Arial, sans-serif;
}
.contact-form .form {
  float: left;
  width: 50%;
}
.contact-form .static-text {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 80px;
}
.contact-form option:first-child {
  display: none;
}
/* 3.14 Overlay
--------------------------------------------------------------------------*/
.overlay-wrapper {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.5s;
}
.overlay-wrapper .overlay-content {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.overlay-wrapper .overlay-content a {
  margin: 50px;
}
/* 3.15 Map
--------------------------------------------------------------------------*/
.map-container {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}
.map-container .map-canvas {
  display: block;
  height: 280px;
  overflow: hidden !important;
  position: relative !important;
  -webkit-transform: scale(1.00001);
  -moz-transform: scale(1.00001);
  -ms-transform: scale(1.00001);
  -o-transform: scale(1.00001);
  transform: scale(1.00001);
}
/* 4. RWD
----------------------------------------------------------------------------
==========================================================================*/
/* 4.1 Breakpoints
--------------------------------------------------------------------------*/
@media only screen and (max-width: 1450px) {
  .rotator .pager {
    right: auto;
    width: 100%;
    bottom: 50px;
    top: auto;
    margin: 0;
    text-align: center;
  }
  .rotator .pager span {
    display: inline-block;
    margin: 0 5px;
  }
}
@media only screen and (max-width: 1250px) {
  .footer li {
    padding-right: 40px;
  }
  .footer li:last-child {
    padding-right: 0;
  }
  .gallery .full {
    display: block;
    width: 100%;
  }
  .gallery .desc {
    display: block;
    padding-left: 0;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 1150px) {
  .footer {
    padding-left: 250px;
  }
  .footer img {
    width: 180px;
    top: 90px;
  }
  .footer ul {
    padding-bottom: 40px;
  }
  .footer li {
    padding-right: 30px;
  }
  .navigation ul:last-child {
    padding-right: 0;
  }
  .navigation li {
    margin: 0 20px;
  }
  .header .logo {
    margin-left: -50px;
  }
}
@media only screen and (max-width: 1023px) {
  .rotator .pager {
    bottom: 30px;
  }
  .navigation {
    position: absolute;
    z-index: 10;
    background: #ff9b50;
    padding: 15px 0;
    left: -20px;
    right: -20px;
    top: 0;
    width: auto;
    display: none;
  }
  .navigation ul,
  .navigation ul:last-child {
    float: none;
  }
  .navigation li {
    float: none;
    padding: 0;
    margin: 0;
  }
  .navigation li.current a {
    color: #fff;
  }
  .navigation a {
    color: #fff;
    display: block;
    padding: 8px 25px;
  }
  .header {
    padding-bottom: 70px;
  }
  .header .logo {
    top: 30px;
  }
  .header #toggle-navigation {
    position: fixed;
    top: 0;
  }
  .header #toggle-navigation:checked ~ .toggle span,
  .header #toggle-navigation:checked ~ .toggle span:before,
  .header #toggle-navigation:checked ~ .toggle span:after {
    background-color: #fff;
  }
  .header #toggle-navigation:checked ~ .toggle ~ .navigation {
    display: block;
  }
  .header .toggle {
    position: absolute;
    right: -5px;
    top: -8px;
    margin: 30px 0 0 0;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    z-index: 11;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header .toggle span {
    width: 30px;
    height: 5px;
    background: #ff9b50;
    left: 50%;
    top: 50%;
    margin: -3px 0 0 -15px;
    position: absolute;
    -webkit-border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topright: 2px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    -moz-border-radius-topleft: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }
  .header .toggle span:before {
    content: '';
    width: 30px;
    height: 5px;
    background: #ff9b50;
    left: 0;
    top: 9px;
    position: absolute;
    -webkit-border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topright: 2px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    -moz-border-radius-topleft: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }
  .header .toggle span:after {
    content: '';
    width: 30px;
    height: 5px;
    background: #ff9b50;
    left: 0;
    top: -9px;
    position: absolute;
    -webkit-border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topright: 2px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    -moz-border-radius-topleft: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }
  .footer ul {
    padding-bottom: 30px;
  }
  .footer li {
    width: 25%;
    padding-right: 0;
  }
  .img-txt-row h3 {
    font-size: 32px;
    padding-bottom: 30px;
  }
  .img-txt-row p {
    padding-bottom: 30px;
  }
  .img-txt-row.img-big .img {
    width: 40%;
  }
  .img-txt-row.bg .img {
    display: none;
  }
  .txt-3-cols {
    margin: 0 -20px;
  }
  .txt-3-cols h4 {
    padding-bottom: 30px;
    font-size: 24px;
  }
  .txt-3-cols .col {
    padding: 0 20px;
  }
  .page-header {
    margin: 0 0 30px;
  }
  .galleries li {
    width: 33.33333333%;
  }
  .galleries li:nth-of-type(4n + 1) {
    clear: none;
  }
  .galleries li:nth-of-type(3n + 1) {
    clear: both;
  }
  .trainer .basic,
  .base .basic {
    width: 200px;
  }
  .trainer .basic .name h2,
  .base .basic .name h2 {
    font-size: 18px;
  }
  .trainer .basic .name span,
  .base .basic .name span {
    font-size: 14px;
  }
  .trainer .basic .address,
  .base .basic .address {
    font-size: 14px;
  }
  .trainer .desc,
  .base .desc {
    padding-left: 50px;
  }
  .file-row {
    padding-right: 0;
  }
  .files {
    min-height: 0;
    padding-bottom: 50px;
  }
  .files .side-img {
    display: none;
  }
  .partners {
    margin: 0 -50px 25px;
  }
  .partner {
    padding: 0 50px 75px;
  }
  .registration-btn {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .footer .footer-logos {
    width: 100%;
    margin-top: 20px;
  }
  .footer .footer-logos img:first-of-type {
    margin-left: 0px;
  }
  .galleries .hover span {
    font-size: 20px;
    margin-top: -45px;
  }
  .contact-form {
    margin-bottom: 40px;
  }
  .contact-form .info {
    width: 100%;
    float: none;
  }
  .contact-form .info p {
    max-width: none;
  }
  .contact-form .form {
    width: 100%;
    float: none;
  }
  .contact-form .static-text {
    padding-left: 0;
  }
  .txt-3-cols {
    margin: 0;
    padding: 0;
  }
  .txt-3-cols .col {
    float: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 50px;
    max-width: 320px;
  }
}
@media only screen and (max-width: 750px) {
  .rotator .pager {
    bottom: 20px;
  }
  #main {
    padding: 0 20px;
  }
  .header {
    min-height: 72px;
  }
  .header .logo {
    top: 20px;
    width: 84px;
    height: 72.1px;
    margin-left: -42px;
  }
  .header .toggle {
    margin-top: 20px;
  }
  .img-txt-row.img-big {
    padding-bottom: 70px;
  }
  .img-txt-row.img-big .img,
  .img-txt-row.right .img,
  .img-txt-row .img {
    display: block;
    width: 100%;
    padding-bottom: 30px;
  }
  .img-txt-row.img-big .img img,
  .img-txt-row.right .img img,
  .img-txt-row .img img {
    float: none;
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }
  .img-txt-row.img-big .content,
  .img-txt-row.right .content,
  .img-txt-row .content {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .img-txt-row.img-big img {
    width: 100%;
    margin: 0;
  }
  .img-txt-row.bg {
    margin-bottom: 50px;
  }
  .img-txt-row.bg .img {
    display: none;
  }
  .img-txt-row.bg .content {
    padding: 50px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .img-txt-row ~ .img-txt-row.bg {
    margin-top: 0;
  }
  .section-header {
    text-align: center;
    padding-bottom: 20px;
  }
  .footer {
    padding-left: 130px;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .footer ul {
    padding-bottom: 15px;
  }
  .footer img {
    width: 100px;
    top: 50px;
  }
  .trainer,
  .base {
    padding-bottom: 50px;
  }
  .trainer .basic,
  .base .basic {
    width: 100%;
    display: block;
    padding-bottom: 30px;
  }
  .trainer .basic .name h2,
  .base .basic .name h2 {
    font-size: 30px;
  }
  .trainer .basic .name span,
  .base .basic .name span {
    font-size: 20px;
  }
  .trainer .basic .address,
  .base .basic .address {
    font-size: 20px;
  }
  .trainer .desc,
  .base .desc {
    padding-left: 0;
    display: block;
  }
  .gallery .full .list {
    width: 516px;
  }
  .partners {
    margin: 0 -20px 0;
  }
  .partner {
    padding: 0 20px 50px;
  }
  .social-icons {
    top: 100px;
  }
}
@media only screen and (max-width: 650px) {
  .gallery .full .list {
    width: 430px;
  }
  .partners {
    margin: 0;
  }
  .partner {
    padding: 0 0 50px;
    clear: both;
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 600px) {
  .footer {
    border-top: solid 1px #ccc;
    padding: 30px 0;
    margin-top: 30px;
  }
  .footer img {
    display: none;
  }
  .footer ul {
    display: none;
  }
  .footer .copy {
    text-align: center;
  }
  .galleries li {
    width: 50%;
  }
  .galleries li:nth-of-type(3n + 1) {
    clear: none;
  }
  .galleries li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 570px) {
  .gallery .full .list {
    width: 344px;
  }
}
@media only screen and (max-width: 480px) {
  .gallery .full .list {
    width: 258px;
  }
  .contact-form .info .contact-option a {
    font-size: 30px;
  }
  .contact-form .info img {
    width: 100%;
  }
  form .col {
    padding: 0 0 20px !important;
    width: 100%;
  }
  form .row {
    padding-bottom: 0;
  }
  form .btn {
    margin-top: 20px;
  }
  .social-icons {
    display: none;
  }
}
@media only screen and (max-width: 450px) and (min-width: 351px) {
  .galleries .hover span {
    font-size: 16px;
    margin-top: -27px;
    padding-top: 25px;
  }
  .galleries .hover span:before {
    width: 29px;
    height: 19px;
    margin-left: -14.5px;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
  }
}
@media only screen and (max-width: 380px) {
  .gallery .full .list {
    width: 172px;
  }
}
@media only screen and (max-width: 350px) {
  .btn {
    min-width: 0;
    display: block;
    margin: 0 auto;
    max-width: 240px;
  }
  .galleries li {
    width: 100%;
    clear: both !important;
  }
  .registration-btn {
    display: none;
  }
}
