/*------------------------------------------------------------------
OC UTILITY 1.0 // 11/03/2016 // NS

[Table of contents]

	0. Custom // something only for this project
	1. Headings and Typographic Classes // .title, .uppercase etc
	2. Line heights and Letter spacing
	3. Margins & Paddings
	4. Responsive paddings & Margins
	5. Containers and Alignments Tweaks
	6. Buttons , inputs and form elements
	7. Mobile // show & hide on mobile
	8. Other Utility Classes
------------------------------------------------------------------*/

/*#####################[   B   E   G  I  N   ]###################*/

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

0 Custom // something only for this project

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

/* PUT HERE */

.font-family{
    font-family: /* PROJECT FONT */;
}


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

1 Headings and Typographic Classes / .title, .uppercase etc

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

h1,h2,h3,h4,h5,h6{

    line-height: 1.3;

}
h1{
    font-size: 56px;

}


/* h2 {
    font-size: 40px;

} */
h3 {
    font-size: 32px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 16px;

    font-weight: 400;
}
h6 {
    font-size: 12px;

    font-weight: 700;
}

.big {
    font-size: 72px;
}

.big2x {
    font-size: 100px;
}

.big3x {
    font-size: 130px;
}

.text-lg {
    font-size: 25px;
}
.text-md {
    font-size: 18px;
}
.text-sm {
    font-size: 16px;
}
.text-xs {
    font-size: 12px;
}
.text-xxs {
    font-size: 10px;
    line-height: 1.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.text-left{
    text-align:left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

@media only screen and (max-width: 486px) {
    .text-lg {
        font-size: 20px;
    }
    h2 {
        font-size: 26px !important;
    }
    .slider-caption h2 {
        letter-spacing: 0px !important;
    }
}
@media all and (max-width: 767px) {
    h1 {
        font-size: 32px !important;
    }
    h2 {
        font-size: 26px !important;

    }
    h3 {
        font-size: 24px !important;

    }
    h4 {
        font-size: 18px;

    }
    h5 {
        font-size: 16px !important;

        font-weight: 400;
    }
    .big {
        font-size: 56px !important;
    }
    .big2x {
        font-size: 52px!important;
    }

    .big3x {
        font-size: 90px;
    }
    .slider-caption h2 {
        letter-spacing: 0px !important;
    }
}

/*
! Tip: used for applying title font for sections
*/

.title {
    font-family: inherit;
    word-break: break-word;
}
.uppercase{
    text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}
.lowercase{
    text-transform: lowercase;
}
/*
for icons
*/
.i-16{
    font-size: 16px;
}

.i-24{
    font-size: 24px;
}
.i-32{
    font-size: 32px;
}

.bold {
    font-weight: bold;
}
.light,
.thin{
    font-weight: 300!important;
}
.pull-left{
    float: left!important;
}
.pull-none{
    float: none!important;
}
.pull-right{
    float: right!important;
}

@media all and (max-width: 756px) {
    .xs-text-left{
        text-align:left;
    }
    .xs-text-center{
        text-align: center;
    }
    .xs-text-right{
        text-align: right;
    }
    .xs-pull-left{
        float: left!important;
    }
    .xs-pull-none{
        float: none!important;
    }
    .xs-pull-right{
        float: right!important;
    }
}
/*------------------------------------------------------------------

2. Line Heights & letterspacing

------------------------------------------------------------------*/
.line-height-1 {
    line-height: 1;
}

.line-height-2 {
    line-height:1.3
}

.line-height-3 {
    line-height:1.4
}

.line-height-4 {
    line-height:1.5
}

.line-height-5 {
    line-height:1.6
}

.line-height-6 {
    line-height:1.7
}

.line-height-7 {
    line-height:1.8
}
.line-height-8{
    line-height:1.9
}
.line-height-9{
    line-height:2
}

@media screen and (max-width: 568px) {
    .line-height-1 {
        line-height:1
    }

    .line-height-2 {
        line-height:1.1
    }

    .line-height-3 {
        line-height:1.2
    }

    .line-height-4 {
        line-height:1.3
    }

    .line-height-5 {
        line-height:1.4
    }
    .line-height-6 {
        line-height:1.5
    }
    .line-height-7 {
        line-height:1.6
    }
    .line-height-8{
        line-height:1.7
    }
    .line-height-9{
        line-height:1.8
    }
}
.letter-spacing-1{
    letter-spacing: 1px;
    margin-left: -1px;
}
.letter-spacing-2{
    letter-spacing: 2px;
    margin-left: -2px;
}
.letter-spacing-3{
    letter-spacing: 3px;
    margin-left: -3px;
}
.letter-spacing-4{
    letter-spacing: 4px;
    margin-left: -4px;
}
.letter-spacing-5{
    letter-spacing: 5px;
    margin-left: -5px;
}
.letter-spacing-6{
    letter-spacing: 6px;
    margin-left: -6px;
}

.letter-spacing-7{
    letter-spacing: 7px;
    margin-left: -7px;
}

.letter-spacing-8{
    letter-spacing: 8px;
    margin-left: -8px;
}

.letter-spacing-9{
    letter-spacing: 9px;
    margin-left: -9px;
}
/*------------------------------------------------------------------

3. Margins & Paddings

------------------------------------------------------------------*/
.mt-0 {
  margin-top: 0!important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px  !important;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px  !important;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mb-0 {
  margin-bottom: 0!important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.pt-0 {
  padding-top: 0!important;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pb-0 {
  padding-bottom: 0!important;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

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

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

@media only screen and (max-width:1200px) {
  .mt-lg-0 {
    margin-top: 0!important;
  }

  .mt-lg-10 {
    margin-top: 10px;
  }

  .mt-lg-20 {
    margin-top: 20px;
  }

  .mt-lg-30 {
    margin-top: 30px;
  }

  .mt-lg-40 {
    margin-top: 40px;
  }

  .mt-lg-50 {
    margin-top: 50px;
  }

  .mt-lg-60 {
    margin-top: 60px;
  }

  .mt-lg-70 {
    margin-top: 70px;
  }

  .mt-lg-80 {
    margin-top: 80px;
  }

  .mt-lg-90 {
    margin-top: 90px;
  }

  .mt-lg-100 {
    margin-top: 100px;
  }

  .mt-lg-110 {
    margin-top: 110px;
  }

  .mt-lg-120 {
    margin-top: 120px;
  }

  .mt-lg-130 {
    margin-top: 130px;
  }

  .mt-lg-140 {
    margin-top: 140px;
  }

  .mb-lg-0 {
    margin-bottom: 0!important;
  }

  .mb-lg-10 {
    margin-bottom: 10px;
  }

  .mb-lg-20 {
    margin-bottom: 20px;
  }

  .mb-lg-30 {
    margin-bottom: 30px;
  }

  .mb-lg-40 {
    margin-bottom: 40px;
  }

  .mb-lg-50 {
    margin-bottom: 50px;
  }

  .mb-lg-60 {
    margin-bottom: 60px;
  }

  .mb-lg-70 {
    margin-bottom: 70px;
  }

  .mb-lg-80 {
    margin-bottom: 80px;
  }

  .mb-lg-90 {
    margin-bottom: 90px;
  }

  .mb-lg-100 {
    margin-bottom: 100px;
  }

  .mb-lg-110 {
    margin-bottom: 110px;
  }

  .mb-lg-120 {
    margin-bottom: 120px;
  }

  .mb-lg-130 {
    margin-bottom: 130px;
  }

  .mb-lg-140 {
    margin-bottom: 140px;
  }

  .pt-lg-0 {
    padding-top: 0!important;
  }

  .pt-lg-10 {
    padding-top: 10px;
  }

  .pt-lg-20 {
    padding-top: 20px;
  }

  .pt-lg-30 {
    padding-top: 30px;
  }

  .pt-lg-40 {
    padding-top: 40px;
  }

  .pt-lg-50 {
    padding-top: 50px;
  }

  .pt-lg-60 {
    padding-top: 60px;
  }

  .pt-lg-70 {
    padding-top: 70px;
  }

  .pt-lg-80 {
    padding-top: 80px;
  }

  .pt-lg-90 {
    padding-top: 90px;
  }

  .pt-lg-100 {
    padding-top: 100px;
  }

  .pt-lg-110 {
    padding-top: 110px;
  }

  .pt-lg-120 {
    padding-top: 120px;
  }

  .pt-lg-130 {
    padding-top: 130px;
  }

  .pt-lg-140 {
    padding-top: 140px;
  }

  .pb-lg-0 {
    padding-bottom: 0!important;
  }

  .pb-lg-10 {
    padding-bottom: 10px;
  }

  .pb-lg-20 {
    padding-bottom: 20px;
  }

  .pb-lg-30 {
    padding-bottom: 30px;
  }

  .pb-lg-40 {
    padding-bottom: 40px;
  }

  .pb-lg-50 {
    padding-bottom: 50px;
  }

  .pb-lg-60 {
    padding-bottom: 60px;
  }

  .pb-lg-70 {
    padding-bottom: 70px;
  }

  .pb-lg-80 {
    padding-bottom: 80px;
  }

  .pb-lg-90 {
    padding-bottom: 90px;
  }

  .pb-lg-100 {
    padding-bottom: 100px;
  }

  .pb-lg-110 {
    padding-bottom: 110px;
  }

  .pb-lg-120 {
    padding-bottom: 120px;
  }

  .pb-lg-130 {
    padding-bottom: 130px;
  }

  .pb-lg-140 {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width:1024px) {
  .mt-md-0 {
    margin-top: 0!important;
  }

  .mt-md-10 {
    margin-top: 10px;
  }

  .mt-md-20 {
    margin-top: 20px;
  }

  .mt-md-30 {
    margin-top: 30px;
  }

  .mt-md-40 {
    margin-top: 40px;
  }

  .mt-md-50 {
    margin-top: 50px;
  }

  .mt-md-60 {
    margin-top: 60px;
  }

  .mt-md-70 {
    margin-top: 70px;
  }

  .mt-md-80 {
    margin-top: 80px;
  }

  .mt-md-90 {
    margin-top: 90px;
  }

  .mt-md-100 {
    margin-top: 100px;
  }

  .mt-md-110 {
    margin-top: 110px;
  }

  .mt-md-120 {
    margin-top: 120px;
  }

  .mt-md-130 {
    margin-top: 130px;
  }

  .mt-md-140 {
    margin-top: 140px;
  }

  .mb-md-0 {
    margin-bottom: 0!important;
  }

  .mb-md-10 {
    margin-bottom: 10px;
  }

  .mb-md-20 {
    margin-bottom: 20px;
  }

  .mb-md-30 {
    margin-bottom: 30px;
  }

  .mb-md-40 {
    margin-bottom: 40px;
  }

  .mb-md-50 {
    margin-bottom: 50px;
  }

  .mb-md-60 {
    margin-bottom: 60px;
  }

  .mb-md-70 {
    margin-bottom: 70px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .mb-md-90 {
    margin-bottom: 90px;
  }

  .mb-md-100 {
    margin-bottom: 100px;
  }

  .mb-md-110 {
    margin-bottom: 110px;
  }

  .mb-md-120 {
    margin-bottom: 120px;
  }

  .mb-md-130 {
    margin-bottom: 130px;
  }

  .mb-md-140 {
    margin-bottom: 140px;
  }

  .pt-md-0 {
    padding-top: 0!important;
  }

  .pt-md-10 {
    padding-top: 10px;
  }

  .pt-md-20 {
    padding-top: 20px;
  }

  .pt-md-30 {
    padding-top: 30px;
  }

  .pt-md-40 {
    padding-top: 40px;
  }

  .pt-md-50 {
    padding-top: 50px;
  }

  .pt-md-60 {
    padding-top: 60px;
  }

  .pt-md-70 {
    padding-top: 70px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pt-md-90 {
    padding-top: 90px;
  }

  .pt-md-100 {
    padding-top: 100px;
  }

  .pt-md-110 {
    padding-top: 110px;
  }

  .pt-md-120 {
    padding-top: 120px;
  }

  .pt-md-130 {
    padding-top: 130px;
  }

  .pt-md-140 {
    padding-top: 140px;
  }

  .pb-md-0 {
    padding-bottom: 0!important;
  }

  .pb-md-10 {
    padding-bottom: 10px;
  }

  .pb-md-20 {
    padding-bottom: 20px;
  }

  .pb-md-30 {
    padding-bottom: 30px;
  }

  .pb-md-40 {
    padding-bottom: 40px;
  }

  .pb-md-50 {
    padding-bottom: 50px;
  }

  .pb-md-60 {
    padding-bottom: 60px;
  }

  .pb-md-70 {
    padding-bottom: 70px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pb-md-90 {
    padding-bottom: 90px;
  }

  .pb-md-100 {
    padding-bottom: 100px;
  }

  .pb-md-110 {
    padding-bottom: 110px;
  }

  .pb-md-120 {
    padding-bottom: 120px;
  }

  .pb-md-130 {
    padding-bottom: 130px;
  }

  .pb-md-140 {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width:768px) {
  .mt-sm-0 {
    margin-top: 0!important;
  }

  .mt-sm-10 {
    margin-top: 10px;
  }

  .mt-sm-20 {
    margin-top: 20px;
  }

  .mt-sm-30 {
    margin-top: 30px;
  }

  .mt-sm-40 {
    margin-top: 40px;
  }

  .mt-sm-50 {
    margin-top: 50px;
  }

  .mt-sm-60 {
    margin-top: 60px;
  }

  .mt-sm-70 {
    margin-top: 70px;
  }

  .mt-sm-80 {
    margin-top: 80px;
  }

  .mt-sm-90 {
    margin-top: 90px;
  }

  .mt-sm-100 {
    margin-top: 100px;
  }

  .mt-sm-110 {
    margin-top: 110px;
  }

  .mt-sm-120 {
    margin-top: 120px;
  }

  .mt-sm-130 {
    margin-top: 130px;
  }

  .mt-sm-140 {
    margin-top: 140px;
  }

  .mb-sm-0 {
    margin-bottom: 0!important;
  }

  .mb-sm-10 {
    margin-bottom: 10px;
  }

  .mb-sm-20 {
    margin-bottom: 20px;
  }

  .mb-sm-30 {
    margin-bottom: 30px;
  }

  .mb-sm-40 {
    margin-bottom: 40px;
  }

  .mb-sm-50 {
    margin-bottom: 50px;
  }

  .mb-sm-60 {
    margin-bottom: 60px;
  }

  .mb-sm-70 {
    margin-bottom: 70px;
  }

  .mb-sm-80 {
    margin-bottom: 80px;
  }

  .mb-sm-90 {
    margin-bottom: 90px;
  }

  .mb-sm-100 {
    margin-bottom: 100px;
  }

  .mb-sm-110 {
    margin-bottom: 110px;
  }

  .mb-sm-120 {
    margin-bottom: 120px;
  }

  .mb-sm-130 {
    margin-bottom: 130px;
  }

  .mb-sm-140 {
    margin-bottom: 140px;
  }

  .pt-sm-0 {
    padding-top: 0!important;
  }

  .pt-sm-10 {
    padding-top: 10px;
  }

  .pt-sm-20 {
    padding-top: 20px;
  }

  .pt-sm-30 {
    padding-top: 30px;
  }

  .pt-sm-40 {
    padding-top: 40px;
  }

  .pt-sm-50 {
    padding-top: 50px;
  }

  .pt-sm-60 {
    padding-top: 60px;
  }

  .pt-sm-70 {
    padding-top: 70px;
  }

  .pt-sm-80 {
    padding-top: 80px;
  }

  .pt-sm-90 {
    padding-top: 90px;
  }

  .pt-sm-100 {
    padding-top: 100px;
  }

  .pt-sm-110 {
    padding-top: 110px;
  }

  .pt-sm-120 {
    padding-top: 120px;
  }

  .pt-sm-130 {
    padding-top: 130px;
  }

  .pt-sm-140 {
    padding-top: 140px;
  }

  .pb-sm-0 {
    padding-bottom: 0!important;
  }

  .pb-sm-10 {
    padding-bottom: 10px;
  }

  .pb-sm-20 {
    padding-bottom: 20px;
  }

  .pb-sm-30 {
    padding-bottom: 30px;
  }

  .pb-sm-40 {
    padding-bottom: 40px;
  }

  .pb-sm-50 {
    padding-bottom: 50px;
  }

  .pb-sm-60 {
    padding-bottom: 60px;
  }

  .pb-sm-70 {
    padding-bottom: 70px;
  }

  .pb-sm-80 {
    padding-bottom: 80px;
  }

  .pb-sm-90 {
    padding-bottom: 90px;
  }

  .pb-sm-100 {
    padding-bottom: 100px;
  }

  .pb-sm-110 {
    padding-bottom: 110px;
  }

  .pb-sm-120 {
    padding-bottom: 120px;
  }

  .pb-sm-130 {
    padding-bottom: 130px;
  }

  .pb-sm-140 {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width:767px) {
  .mt-xs-0 {
    margin-top: 0!important;
  }

  .mt-xs-10 {
    margin-top: 10px;
  }

  .mt-xs-20 {
    margin-top: 20px;
  }

  .mt-xs-30 {
    margin-top: 30px;
  }

  .mt-xs-40 {
    margin-top: 40px;
  }

  .mt-xs-50 {
    margin-top: 50px;
  }

  .mt-xs-60 {
    margin-top: 60px;
  }

  .mt-xs-70 {
    margin-top: 70px;
  }

  .mt-xs-80 {
    margin-top: 80px;
  }

  .mt-xs-90 {
    margin-top: 90px;
  }

  .mt-xs-100 {
    margin-top: 100px;
  }

  .mt-xs-110 {
    margin-top: 110px;
  }

  .mt-xs-120 {
    margin-top: 120px;
  }

  .mt-xs-130 {
    margin-top: 130px;
  }

  .mt-xs-140 {
    margin-top: 140px;
  }

  .mb-xs-0 {
    margin-bottom: 0!important;
  }

  .mb-xs-10 {
    margin-bottom: 10px;
  }

  .mb-xs-20 {
    margin-bottom: 20px;
  }

  .mb-xs-30 {
    margin-bottom: 30px;
  }

  .mb-xs-40 {
    margin-bottom: 40px;
  }

  .mb-xs-50 {
    margin-bottom: 50px;
  }

  .mb-xs-60 {
    margin-bottom: 60px;
  }

  .mb-xs-70 {
    margin-bottom: 70px;
  }

  .mb-xs-80 {
    margin-bottom: 80px;
  }

  .mb-xs-90 {
    margin-bottom: 90px;
  }

  .mb-xs-100 {
    margin-bottom: 100px;
  }

  .mb-xs-110 {
    margin-bottom: 110px;
  }

  .mb-xs-120 {
    margin-bottom: 120px;
  }

  .mb-xs-130 {
    margin-bottom: 130px;
  }

  .mb-xs-140 {
    margin-bottom: 140px;
  }

  .pt-xs-0 {
    padding-top: 0!important;
  }

  .pt-xs-10 {
    padding-top: 10px;
  }

  .pt-xs-20 {
    padding-top: 20px;
  }

  .pt-xs-30 {
    padding-top: 30px;
  }

  .pt-xs-40 {
    padding-top: 40px;
  }

  .pt-xs-50 {
    padding-top: 50px;
  }

  .pt-xs-60 {
    padding-top: 60px;
  }

  .pt-xs-70 {
    padding-top: 70px;
  }

  .pt-xs-80 {
    padding-top: 80px;
  }

  .pt-xs-90 {
    padding-top: 90px;
  }

  .pt-xs-100 {
    padding-top: 100px;
  }

  .pt-xs-110 {
    padding-top: 110px;
  }

  .pt-xs-120 {
    padding-top: 120px;
  }

  .pt-xs-130 {
    padding-top: 130px;
  }

  .pt-xs-140 {
    padding-top: 140px;
  }

  .pb-xs-0 {
    padding-bottom: 0!important;
  }

  .pb-xs-10 {
    padding-bottom: 10px;
  }

  .pb-xs-20 {
    padding-bottom: 20px;
  }

  .pb-xs-30 {
    padding-bottom: 30px;
  }

  .pb-xs-40 {
    padding-bottom: 40px;
  }

  .pb-xs-50 {
    padding-bottom: 50px;
  }

  .pb-xs-60 {
    padding-bottom: 60px;
  }

  .pb-xs-70 {
    padding-bottom: 70px;
  }

  .pb-xs-80 {
    padding-bottom: 80px;
  }

  .pb-xs-90 {
    padding-bottom: 90px;
  }

  .pb-xs-100 {
    padding-bottom: 100px;
  }

  .pb-xs-110 {
    padding-bottom: 110px;
  }

  .pb-xs-120 {
    padding-bottom: 120px;
  }

  .pb-xs-130 {
    padding-bottom: 130px;
  }

  .pb-xs-140 {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width:480px) {
  .mt-xxs-0 {
    margin-top: 0!important;
  }

  .mt-xxs-10 {
    margin-top: 10px;
  }

  .mt-xxs-20 {
    margin-top: 20px;
  }

  .mt-xxs-30 {
    margin-top: 30px;
  }

  .mt-xxs-40 {
    margin-top: 40px;
  }

  .mt-xxs-50 {
    margin-top: 50px;
  }

  .mt-xxs-60 {
    margin-top: 60px;
  }

  .mt-xxs-70 {
    margin-top: 70px;
  }

  .mt-xxs-80 {
    margin-top: 80px;
  }

  .mt-xxs-90 {
    margin-top: 90px;
  }

  .mt-xxs-100 {
    margin-top: 100px;
  }

  .mt-xxs-110 {
    margin-top: 110px;
  }

  .mt-xxs-120 {
    margin-top: 120px;
  }

  .mt-xxs-130 {
    margin-top: 130px;
  }

  .mt-xxs-140 {
    margin-top: 140px;
  }

  .mb-xxs-0 {
    margin-bottom: 0!important;
  }

  .mb-xxs-10 {
    margin-bottom: 10px;
  }

  .mb-xxs-20 {
    margin-bottom: 20px;
  }

  .mb-xxs-30 {
    margin-bottom: 30px;
  }

  .mb-xxs-40 {
    margin-bottom: 40px;
  }

  .mb-xxs-50 {
    margin-bottom: 50px;
  }

  .mb-xxs-60 {
    margin-bottom: 60px;
  }

  .mb-xxs-70 {
    margin-bottom: 70px;
  }

  .mb-xxs-80 {
    margin-bottom: 80px;
  }

  .mb-xxs-90 {
    margin-bottom: 90px;
  }

  .mb-xxs-100 {
    margin-bottom: 100px;
  }

  .mb-xxs-110 {
    margin-bottom: 110px;
  }

  .mb-xxs-120 {
    margin-bottom: 120px;
  }

  .mb-xxs-130 {
    margin-bottom: 130px;
  }

  .mb-xxs-140 {
    margin-bottom: 140px;
  }

  .pt-xxs-0 {
    padding-top: 0!important;
  }

  .pt-xxs-10 {
    padding-top: 10px;
  }

  .pt-xxs-20 {
    padding-top: 20px;
  }

  .pt-xxs-30 {
    padding-top: 30px;
  }

  .pt-xxs-40 {
    padding-top: 40px;
  }

  .pt-xxs-50 {
    padding-top: 50px;
  }

  .pt-xxs-60 {
    padding-top: 60px;
  }

  .pt-xxs-70 {
    padding-top: 70px;
  }

  .pt-xxs-80 {
    padding-top: 80px;
  }

  .pt-xxs-90 {
    padding-top: 90px;
  }

  .pt-xxs-100 {
    padding-top: 100px;
  }

  .pt-xxs-110 {
    padding-top: 110px;
  }

  .pt-xxs-120 {
    padding-top: 120px;
  }

  .pt-xxs-130 {
    padding-top: 130px;
  }

  .pt-xxs-140 {
    padding-top: 140px;
  }

  .pb-xxs-0 {
    padding-bottom: 0!important;
  }

  .pb-xxs-10 {
    padding-bottom: 10px;
  }

  .pb-xxs-20 {
    padding-bottom: 20px;
  }

  .pb-xxs-30 {
    padding-bottom: 30px;
  }

  .pb-xxs-40 {
    padding-bottom: 40px;
  }

  .pb-xxs-50 {
    padding-bottom: 50px;
  }

  .pb-xxs-60 {
    padding-bottom: 60px;
  }

  .pb-xxs-70 {
    padding-bottom: 70px;
  }

  .pb-xxs-80 {
    padding-bottom: 80px;
  }

  .pb-xxs-90 {
    padding-bottom: 90px;
  }

  .pb-xxs-100 {
    padding-bottom: 100px;
  }

  .pb-xxs-110 {
    padding-bottom: 110px;
  }

  .pb-xxs-120 {
    padding-bottom: 120px;
  }

  .pb-xxs-130 {
    padding-bottom: 130px;
  }

  .pb-xxs-140 {
    padding-bottom: 140px;
  }
}

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

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

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

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


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

6. Buttons , inputs and form elements

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

.btn {

    font-family: inherit;

    letter-spacing: 1px;

    padding: 12px 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: 11px;

    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: #161616!important;
}
.btn-white:hover{
    background-color: #333;
    color: #fff!important;
}
.btn-white-border {
    border: 2px solid #FFF;
    color: #FFF !important;
    border-radius: 0;
    background-color: transparent;
    text-transform: uppercase;
}
.btn-white-border:hover {
    background-color: #FFF;
    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;
}

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

7. Mobile // show & hide on mobile

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

.mobile-show{
	display:none;
}
.mobile-hide{
	display:block;
}

@media (max-width: 768px) {
	.mobile-show{
		display:block;
	}
	.mobile-hide{
		display:none;
	}
}

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

8. Other Utility Classes

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

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

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

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