/*------------------------------------------------------------------
[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

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

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;
}



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

9. Backgrounds and color Schemes

------------------------------------------------------------------*/
.bg-img {
    background-size: cover;
    background-position: center;
}

.bg-fixed{
    background-attachment: fixed;
}

.bg-repeat{
    background-repeat: repeat!important;
    background-size: inherit;
}

.bg-black{
    background-color: #1c1d1d;
}

.bg-black00{
    background-color: #101010;
}
.bg-black-01{
    background-color: #2B2B2B;
}
.bg-black-02{
    background-color: #363636;
}

.bg-black-03{
    background-color: #121212;
    color: #FAFAFA;
}

.bg-black00,
.bg-black-01,
.bg-black-03,
.bg-black
{
    color:#fff;
}

.bg-black00 a,
.bg-black-01 a,
.bg-black-03 a,
.bg-black a{
    color:#fff;
}

.hr,
.bg-black00 .hr,
.bg-black-01 .hr,
.bg-black-03 .hr,
.bg-black .hr
{
    background-color: rgba(162, 153, 153, 0.68);
}

.bg-white {
    background-color: #fff;
}
.bg-white{
    color: #161616;
}

.bg-white .hr,
.bg-skin .hr{
    background-color: rgba(203, 203, 203, 0.5);
}
.bg-grey{
    background-color: rgba(240, 240, 240, 0.27);
    color: #333;
}
.bg-grey-01{
    background-color: #F7F7F7;
    color: #333;
}
.bg-grey-01 .color-primary,
.bg-grey .color-primary{
    color: #999
}
.bg-blue{
    background-color: #1F4BA4;
}
.bg-orange{
    background-color: #FF5252;
}
.bg-green{
    background-color: #4FB19A;
}
.bg-pink{
    background-color: #FBEBEC;
}
.bg-blue-01{
    background-color: #DCE1E7;
}
.bg-gold{
    background-color: #b69853;

}
.bghover{
    /*background easing for hover*/
    transition: background 0.2s linear;
}

.bghoverimg .hoverimg{
    opacity: 0;
    background-size: cover;
    transition: opacity 0.9s ease;

}
.bghoverimg:hover .hoverimg{
    /*background easing for hover*/
    opacity: 1;
    transition: opacity 0.9s ease;

}
.bghover-blue:hover{
    background-color: #1F4BA4;
    color: #fff;
}
.bghover-orange:hover{
    background-color: #FF5252;
    color: #fff;
}
.bghover-green:hover{
    background-color: #4FB19A;
    color: #fff;
}
.bghover-pink:hover{
    background-color: #FBEBEC;
    color: #fff;
}
.bghover-blue-01:hover{
    background-color: #70B9B5;
    color: #fff;
}
.bghover-gold:hover{
    background-color: #B0966C;


}

.bghover-grey:hover{
    background-color: #F0F0F0;
    color: #ddd;

}


.color-primary{
    color: #828080;
}
.bg-black00 .color-primary,
.bg-black-01 .color-primary,
.bg-black-03 .color-primary,
.bg-black .color-primary
{
    color: rgb(165, 163, 163);
}


.color-gold{
    color: #b69853;
}
.color-white,
.bg-black00 ,
.bg-black-01 ,
.bg-black-03 ,
.bg-black  {
    color: #fff;
}
.color-white .color-primary{
    color: rgba(255, 255, 255, 0.82);
}
.color-black .color-primary{
    color: rgba(34, 34, 34, 0.6)
}
.color-grey{
    color: #B6B6B6;
}

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

10. Ken Burns Effect

------------------------------------------------------------------*/
/*
used in demo-wedding
*/

.burns-effect {
    -webkit-backface-visibility: hidden;
}
.burns-effect .bg-img {
    animation: kenBurns 55s ease-out infinite alternate;
    -webkit-animation: kenBurns 55s ease-out infinite alternate;
}
@keyframes kenBurns {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    to {
        transform: scale(1.4);
        -webkit-transform: scale(1.4);
    }
}
@-webkit-keyframes kenBurns {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    to {
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
    }
}
.burns-effect .absolute{
    height: 100%;
    width: 100%;
    top:0;
}

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

11. Parallax

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

.parallax-content{
    position: relative;
    height: 100%;
    width: 100%;
    top:0;
    left: 0;
    z-index: 0;
    background-position: 0 0;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
}
section[data-bottom-top],
header[data-bottom-top],
div[data-top-bottom]{background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
}

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

12. Local Full width BG Video

------------------------------------------------------------------*/
/*!---------- 27. VIDEO ----------*/
iframe {
  border: none;
}
.player ,.localBgvid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .player,.localBgvid {
    display: none;
  }
}
.vid-bg .bg-img {
  z-index: 0;
}
video {
 max-width: 100%;
}
.vid-bg video {
  max-width: 1000000px;
}
.vid-bg .absolute {
  z-index: 3;
  height:  100%;
  width: 100%;
  top: 0;
  left: 0;
}

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

13. Other Utility Classes

------------------------------------------------------------------*/
.tagline {
	width: 186px;
	margin:136px 0 -167px 0;
}
@media all and (max-width: 767px) {
	.tagline {
	width: 124px;
	margin:80px 0 -126px 0;
	}
  }

.anima-bg {
	background-image: url(../img/bg.jpg);
	background-size: 100%;
}

@media all and (max-width: 767px) {
	.anima-bg {
	background-image: url(../img/bg_sm.jpg);
	}
  }

.borderOne {
	border-top:solid 1px #CCC;
	width:50px;
	margin:-100px auto 100px;
}

@media all and (max-width: 767px) {
	.borderOne {
	border-top:solid 1px #CCC;
	width:30px;
	margin:-50px auto 50px;
	}
  }
  
.borderTwo {
	border-top:solid 1px #CCC;
	width:50px;
	margin:90px auto;
}

@media all and (max-width: 767px) {
	.borderTwo {
	border-top:solid 1px #CCC;
	width:30px;
	margin:60px auto;
	}
  }


.btn-circle-t {
  width: 50px;
  height: 50px;
  padding: 7px 14px;
  font-size: 24px;
  border-radius: 25px;
  margin: 0 10px 0px 10px;
 }


.btn-circle-f {
  width: 50px;
  height: 50px;
  padding: 7px 20px;
  font-size: 24px;
  border-radius: 25px;
  margin: 0 10px 0px 10px;
 }
 

.logoAnimation {
	position: relative;
	width: 90%;
	margin: 0 auto;
}

.animagica-png {
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
}


::-moz-selection {
    background-color: rgba(120, 189, 223, 0.41);
    color: #fff

}

::selection {
    background-color: rgba(120, 189, 223, 0.41);
    color: #fff
}
.vertical-align-m{vertical-align:middle}
/*overflows*/
.overflow-hidden{
    overflow: hidden;
}
.overflow-y{
    overflow-x:hidden;
}

.overflow-x{
    overflow-y:hidden;
}
/*absolute classes*/
.absolute{
    position: absolute;
}
.absolute-cover{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0
}
.absolute-bottom{
    bottom:10px;position:absolute;width:100%;
}
.absolute-bottom-0{
    bottom:0px;position:absolute;width:100%;
}

.absolute-top-bottom{
    top:70%;position:absolute;width:100%;
    z-index: 0;
}
.instafeed{
    float: left;
    width: 100%;

}
/*testimonial image thumb*/
img.img-50 {
    width: 50px;
    height: 50px;
}
ul.bullets {
    list-style: inside;
    padding-left: 0;
}

.list-style-none{
    list-style: none;
}

.list-style-none li{
    list-style-type:none;
}
/*for creating borders*/
.b-all{
    border:1px solid;
}
.b-left{
    border-left: 1px solid;
}
.b-right{
    border-right: 1px solid;
}
.b-top{
    border-top:1px solid;
}
.b-bottom{
    border-bottom: 1px solid;
}
.b-lr{
    border-left: 1px solid;
    border-right: 1px solid;
}
.b-tb{
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.b-dashed{
    border-style: dashed;
}

.border-grey{
    border-color: #f0f0f0;
}


.cursor-pointer{
    cursor: pointer;
}
.inline{
    display: inline-block;
}

/*masonry item fix*/
.masonry_item{
    overflow: hidden;
    margin: 0;
}

/*Alert */
.alert{
    border-radius: 0;
}
.modal-content{
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(229, 229, 229, 0.51);
}

.hr{
    height: 1px;
    clear: both;
}
.hr-20{
    width: 20%;

}
.hr-light{
    height: 1px;
}