/*------------------------------------------------------------------
[Table of contents]

  1. HTML AN BODY FIXTURES
  2. Headings and Typographic Classes / .title, .uppercase etc
  3. Line heights and Letter spacing
  4. Navigation Menus
  5. Responsive paddings & Margins
  6. Containers and Alignments Tweaks
  7. Overlays
  8. Buttons , inputs and form elements
  9. Backgrounds and color Schemes
  10. Ken Burns Effect
  11. Parallax
  12. Local Full width BG Video
  13. Other Utility Classes
------------------------------------------------------------------*/
/*#####################[   B   E   G  I  N   ]###################*/

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

1 HTML AN BODY FIXTURES

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

html,body,header,section,div{
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    outline: 0
}
a:hover,
a:focus {
    color: unset;
    text-decoration: none;
    opacity: 1;
}

img{
    max-width: 100%;
}

body.pace-running{
    overflow: hidden!important;
}
body.pace-done{
    overflow: auto;
    /* overflow-x: hidden; */
}

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

5. Responsive paddings & Margins

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

.padd-top-xxs {
    padding-top:16px
}

.padd-bottom-xxs {
    padding-bottom:16px;
}
.padd-top-xs {
    padding-top:26px
}

.padd-bottom-xs {
    padding-bottom:26px
}

.padd-top-sm {
    padding-top:35px;
}
.padd-bottom-sm {
    padding-bottom:35px;
}

.padd-top-md {
    padding-top:48px;
}
.padd-bottom-md {
    padding-bottom:48px;
}

.padd-top-lg {
    padding-top:68px;
}
.padd-bottom-lg {
    padding-bottom:68px;
}

.padd-top-2x {
    padding-top:104px;
}
.padd-bottom-2x {
    padding-bottom:104px;
}

.padd-top-3x  {
    padding-top:150px;
}
.padd-bottom-3x {
    padding-bottom:150px;
}

.padd-top-4x {
    padding-top:184px;
}
.padd-bottom-4x {
    padding-bottom:184px;
}

.padd-top-5x  {
    padding-top:240px;
}
.padd-bottom-5x {
    padding-bottom:240px;
}


@media (max-width: 767px) {
    html,body,.text-right,.text-left {
        text-align:center
    }

    .padd-top-xs  {
        padding-top:16px;
    }
    .padd-bottom-xs {
        padding-bottom:16px;
    }


    .padd-top-sm {
        padding-top:20px;
    }
    .padd-bottom-sm {
        padding-bottom:20px;
    }

    .padd-top-md  {
        padding-top:32px
    }
    .padd-bottom-md {
        padding-bottom:32px
    }

    .padd-top-lg {
        padding-top:41px
    }
    .padd-bottom-lg {
        padding-bottom:41px
    }

    .padd-top-2x {
        padding-top:72px
    }
    .padd-bottom-2x {
        padding-bottom:72px
    }

    .padd-top-3x {
        padding-top:80px
    }
    .padd-bottom-3x {
        padding-bottom:80px
    }

    .padd-top-4x  {
        padding-top:96px
    }
    .padd-bottom-4x {
        padding-bottom:96px
    }

    .padd-top-5x  {
        padding-top:128px;
    }
    .padd-bottom-5x {
        padding-bottom:128px;
    }
}

.no-padding {
    padding:0
}
.no-margin{
    margin: 0;
}
.m-auto{
    margin: auto;
}
.no-margin-tb{
    margin-top: 0;
    margin-bottom: 0;
}

.margin-top-xs{
    margin-top: 10px;
}
.margin-top-md{
    margin-top: 20px;
}
.m-left-5{
    margin-left: 5px;
}
.m-right-5{
    margin-right: 5px;
}
.m-left-10{
    margin-left: 10px;
}
.m-right-10{
    margin-right: 10px;
}

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

6. Containers, Alignments Tweaks & Gutters

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

/* Heights */
.full-height {
    height: 100%;
}
.full-height-portfolio{
    height: 100%;/*this is for portfolio background-images*/
}
.height-50 {
    height: 50%;
    min-height: 300px;
}

.height-vh100{
    height: 100vh;
}

.height-vh75{
    height: 75vh;
}

.height-vh50{
    height: 50vh;
}

.height-vh40{
    height: 40vh;
    min-height: 200px;
}
.height-vh30{
    height: 30vh;
    min-height: 150px;
}
.height-vw50{
    height: 50vw;
}

.height-vw35{
    height: 35vw;
}
.full-width{
    width:100%;
}
.inner {
    width:70%;
    margin:0 auto;
    padding:0
}

@media only screen and (max-width: 959px) {
    .inner {
        width:90%
    }
}
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 400px) {
    .inner {
        width:100%
    }
}

.v-align {
    position:relative;
    top:0;
    right:0;
    height:100%;
    bottom:0;
    left:0;
    display:table;
    width:100%
}


.v-align > .h-align {
    height:100%;
    width:100%;
    display:table-cell;
    vertical-align: middle;
    text-align: center;
}
.v-middle{
    vertical-align: middle!important;
}
.v-top{
    vertical-align: top!important;
}
.v-bottom{
    vertical-align: bottom!important;
}
.h-center{
    text-align:center!important;
}
.h-left{
    text-align:left!important;
}
.h-right{
    text-align:right!important;
}

.h-align {
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    display:inline-block;
    text-align: center;
}

/*V-ALign*/
.v-align-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: row;
    -webkit-flex-direction: row;
}
@media all and (max-width: 990px) {
    .v-align-flex {
        display: block !important;
    }
}
.v-align-flex-column {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: initial;
    -webkit-flex-direction: initial;
}
.disable-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media all and (max-width: 990px) {
    .v-align-children {
        display: block !important;
    }
}

.gutter{
    padding: 20px 40px;
}
.gutter-02{
    padding: 40px 100px;
}

.gutter-03{
    padding:0 5% ;
}
.gutter-04{
    padding: 20px 40px;
}
.gutter-05{
    padding: 40px;
}
.gutter-06{
    padding:0 8%;
}
.gutter-07{
    padding: 40px 120px;
}
@media (max-width: 768px) {
    .gutter{
        padding: 0px;
    }
.gutter-06{
    padding:0;
}
}

@media all and (max-width: 756px) {
    .gutter-02,.gutter-07{
        padding: 8px;
    }
    .gutter-03{
        padding: 0;
    }
    .gutter-04{
        padding: 15px;
    }
}

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

7. Overlays

------------------------------------------------------------------*/
.overlay{
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.3);
    overflow: hidden;
}
.overlay-gradient {
    height: 100%;
    width: 100%;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE0MTAxMSIgc3RvcC1vcGFjaXR5PSIwLjgiLz4KICAgIDxzdG9wIG9mZnNldD0iNTklIiBzdG9wLWNvbG9yPSIjMTQxMDExIiBzdG9wLW9wYWNpdHk9IjAuMjgiLz4KICAgIDxzdG9wIG9mZnNldD0iODQlIiBzdG9wLWNvbG9yPSIjMTQxMDExIiBzdG9wLW9wYWNpdHk9IjAuMDkiLz4KICAgIDxzdG9wIG9mZnNldD0iOTklIiBzdG9wLWNvbG9yPSIjMTQxMDExIiBzdG9wLW9wYWNpdHk9IjAuMDEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(left,rgba(20,16,17,.8) 0,rgba(20,16,17,.28) 59%,rgba(20,16,17,.09) 84%,rgba(20,16,17,.01) 99%,rgba(255,255,255,0) 100%);
    background:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(20,16,17,.8)),color-stop(59%,rgba(20,16,17,.28)),color-stop(84%,rgba(20,16,17,.09)),color-stop(99%,rgba(20,16,17,.01)),color-stop(100%,rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left,rgba(20,16,17,.8) 0,rgba(20,16,17,.28) 59%,rgba(20,16,17,.09) 84%,rgba(20,16,17,.01) 99%,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left,rgba(20,16,17,.8) 0,rgba(20,16,17,.28) 59%,rgba(20,16,17,.09) 84%,rgba(20,16,17,.01) 99%,rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left,rgba(20,16,17,.8) 0,rgba(20,16,17,.28) 59%,rgba(20,16,17,.09) 84%,rgba(20,16,17,.01) 99%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,rgba(20,16,17,.8) 0,rgba(20,16,17,.28) 59%,rgba(20,16,17,.09) 84%,rgba(20,16,17,.01) 99%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc141011', endColorstr='#00ffffff', GradientType=1 );
}

.overlay-shade {
    background-image: linear-gradient(to bottom,transparent 0,#000 130%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#ff000000', GradientType=0)
}
/*------------------------------------------------------------------

8. Buttons , inputs and form elements

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

.btn {

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

    letter-spacing: 4px;

    padding: 10px 32px;

    transition: all 0.3s cubic-bezier(0.25, 0.57, 0.46, 0.88);

    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.57, 0.46, 0.88);

    -ms-transition: all 0.3s cubic-bezier(0.25, 0.57, 0.46, 0.88);

    -moz-transition: all 0.3s cubic-bezier(0.25, 0.57, 0.46, 0.88);

    font-size: 12px;
    
    font-weight: 400;

    opacity: 1 !important;
    text-transform: uppercase;
    border-radius: 0;
}
.btn-primary {
    color: #fff;
    background-color: #0A0A0A;
    border-color: #171515;
}
.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #252627;
    border-color: #020202;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus ,.btn.focus, .btn:focus, .btn:hover
{
    outline: none!important;
}

.btn.btn-lg{
    min-width: 170px;
    letter-spacing: 2px;
    padding: 20px 42px;
}

.btn-pill{
    border-radius: 40px!important;
}

.btn-black
{
    color: #FFF !important;
    background-color: #1c1d1d;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-black-border{

    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #161616;
    color: #161616;
    background-color: transparent;
}
.btn-black-border:hover{

    color: #FFF;
    background-color: #1c1d1d;
}
.btn-black:hover {
    background: #4D4E4D;
    color: #fff!important;
}

.btn-white{
    background-color: #fff;
    color: #f5dc3e!important;
}
.btn-white:hover{
    border: 1px solid #fff;
    background-color: #f5dc3e;
    color: #fff!important;
}
.btn-white-border {
    border: 1px solid #CCC;
    color: #CCC !important;
    border-radius: 24px;
    background-color: transparent;
    text-transform: uppercase;
}
.btn-white-border:hover {
    background-color: #CCC;
    color: #000 !important;
}
/* Input Field */
.input-field {
    display: block;
    width: 100%;
    border: none;
    font-size: 14px;
    padding: 12px 12px;
    border-radius: 0;
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 0px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 0px 1px rgba(0,0,0,.075);
    min-height: 54px;
}
.input-field:focus {
    border: unset;
    outline: 0;
    -webkit-box-shadow: inset 0 0px 1px rgba(0,0,0,.075);    box-shadow: inset 0 0px 1px rgba(0,0,0,.075);
    box-shadow:inset 0 0px 1px rgba(0,0,0,.075);    box-shadow: inset 0 0px 1px rgba(0,0,0,.075);
}

/*
switch checkbox
*/
.toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

input.toggle + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 2px;
  width: 60px;
  height: 30px;
  background-color: #dddddd;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.toggle + label:before, input.toggle + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
input.toggle + label:before {
  right: 1px;
  background-color: #f1f1f1;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}
input.toggle + label:after {
  width: 28px;
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: margin 0.4s;
  -moz-transition: margin 0.4s;
  -o-transition: margin 0.4s;
  transition: margin 0.4s;
}
input.toggle:checked + label:before {
  background-color: #1C1D1D;
}
input.toggle:checked + label:after {
  margin-left: 30px;
}
input.toggle:disabled + label {
    cursor: not-allowed!important;
}
input.toggle:disabled + label:before{
    opacity: 0.6
}
input.toggle:disabled + label:after{
    background-color: #f1f1f1;
}

/*
Range Slider
*/
input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    /*fix for FF unable to apply focus style bug */
    border: 1px solid transparent;
    /*required for proper track sizing in FF*/
    width: 300px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #161616;
    margin-top: -4px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

input[type=range]::-moz-range-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #161616;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid transparent;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 300px;
    height: 5px;
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;
    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #161616;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}

/*
Radio
 */
.radio {
  padding-left: 20px; 
}
.radio label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    font-weight: 700;
}
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 19px;
    height: 19px;
    left: 0px;
    margin-left: -19px;
    margin-top: 4px;
    border: 1px solid #c7c7c1;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 15px;
    height: 15px;
    left: 3px;
    top: 6px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
}
.radio input[type="radio"]:focus + label::before {
    outline:none;
}
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1); }
    .radio input[type='radio']:checked + label {
    color: #000;
}

/*Accordion */
.panel-group .panel {
    margin-bottom: 0;
    border-radius: 0;
}

.video-icon {
    border-radius: 64px;
    border: 3px solid #fff;
    display: inline-block;
    height: 84px;
    width: 84px;
    line-height: 68px;
}
.video-icon:before {
    content: "";
    display: inline-block;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    height: 0;
    margin-left: 7px;
    width: 0;
    margin-top: 30px;
}

/* Video PLay*/
.video-icon-border {
    border-radius: 64px;
    border: 3px solid #fff;
    display: inline-block;
    height: 64px;
    width: 64px;
    text-align: center;
}
.video-icon-border .icon {
    display: inline-block;
    font-size: 25px;
    margin-left: 3px;
    padding-top: 18px;
}

.video-fill-icon > div {
    padding: 21px;
}
.video-fill-icon span.font-montserrat  {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
}