// =====================================
//  commons.scss
//   |
//   |-> General Settings
//   |-> General Contents
// =====================================



@import "_variables";
@import "css-helpers";



 /**
 * -------------------------------------------------------------------------------
 * ( 01 ) - General Settings
 * -------------------------------------------------------------------------------
 *
 *  This part contains the general settings that you can change like general
 *  font-family, color, headings settings, paragraphs, .. etc.
 *
 * ------
 *
 *  General Basics divided to the following sections:
 *
 *    |
 *    |-->  [ 01 ] - Small Reset
 *    |-->  [ 02 ] - Body
 *    |-->  [ 03 ] - General Links
 *    |-->  [ 04 ] - Headings
 *    |-->  [ 05 ] - Paragraphs
 *    |-->  [ 06 ] - Images
 *    |-->  [ 07 ] - Strong
 *    |-->  [ 08 ] - Texts Highlighting Selection
 *    |-->  [ 09 ] - Text Colored
 *    |-->  [ 10 ] - Form Settings
 *    |-->  [ 11 ] - Page Title
 *    |-->  [ 12 ] - Table
 *    |-->  [ 13 ] - Website Loading
 *
 */




/*  [ 01 ] - Small Reset
=========================== */

body, ul, ol, h1,h2,h3,h4,h5,h6,form,li,p,input,select,legend,textarea,fieldset{ margin:0; padding:0;}


/*  [ 02 ] - Body
==================== */

body {
  width: 100%;
  position: relative;
  // font: 14px/1.5 $body-font;
  font: #{$font-size-base}/#{$line-height-base} $body-font;
  background: #fff;
  color: $body-color;

  @media (max-width: 1400px) {
    // font-size: 16px;
  } // < 1400px width

  @media (max-width: 480px) {
    // font-size: 13px;
  } // < 480px width
}

.font-heading-primary {
  font-family: $heading-font;
}

.font-heading-secondary {
  font-family: $secondary-font;
}

#full-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  background-color: #fff;
}

html {
  &.scroll-lock {
    overflow: hidden;
  }
}

  

/* Custom Default Content Width */
@media (min-width: 1200px) {
  .container {
    // width: 960px;
  }
}

@media (min-width: 1440px) {
  .container {
    width: 1300px;
  }
}


/* Space between Bootstrap columns */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-left: 15px;
  padding-right: 15px;
}


/* Removing last element margin bottom in column */
[class*="col-"] {
  p,
  .img-preview,
  .video-preview,
  .entry,
  .list,
  .connect-box {
    &:last-child {
      margin-bottom: 0;
    }
  }
}


/* Including GothamRounded Font */
@font-face {
  font-family: 'GothamRounded';
  src: url(../fonts/GothamRounded/GothamRounded-Light.otf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'GothamRounded';
  src: url(../fonts/GothamRounded/GothamRounded-Book.otf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GothamRounded';
  src: url(../fonts/GothamRounded/GothamRounded-Medium.otf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GothamRounded';
  src: url(../fonts/GothamRounded/GothamRounded-Bold.otf);
  font-weight: 700;
  font-style: normal;
}



/*  [ 03 ] - General Links
============================= */

a,
a img {
  outline: none !important;
  border: none;
}

a {
  text-decoration: none;
  color: $theme-color-1;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
  color: $dark-color;
}

a:focus {
  color: $theme-color-1;
  text-decoration: none;
}

p a {
  // border-bottom: 1px dotted transparent;
}

p a:hover {
  text-decoration: underline;
}

a.colored {
  &:hover {
    color: $dark-color;
  }
}


/*  [ 04 ] - Headings
======================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: $heading-font;
  font-weight: 500;
  line-height: $line-height-heading;
  color: $heading-color;

  &.capitalized {
    text-transform: capitalize !important;
  }

  a {
    text-decoration: none;
    color: $dark-color;
    transition: all 0.15s;

    &:hover {
      color: $theme-color-1;
    }
  } 
}

h4,
h5,
h6 { 
  margin-bottom: 12px;
  font-weight: 500;
}

h1 { font-size: $font-size-h1 }
h2 { font-size: $font-size-h2 }
h3 { font-size: $font-size-h3 }
h4 { font-size: $font-size-h4 }
h5 { font-size: $font-size-h5 }
h6 { font-size: $font-size-h6 }

.text-white {
  h1,h2,h3,h4,h5,h6 { color: #fff; }
}

@media (max-width: 1400px) {
  h1 {
    font-size: $font-size-h1 * 0.9;
  }

  h2 {
    font-size: $font-size-h2 * 0.9;
  }

  h3 {
    font-size: $font-size-h3 * 0.9;
  }

  h4 {
    font-size: $font-size-h4 * 0.9;
  }

  h5 {
    font-size: $font-size-h5 * 0.9;
  }

  h6 {
    font-size: $font-size-h6 * 0.9;
  }
} // < 1400px width


@media (max-width: 480px) {
  h1 {
    font-size: $font-size-h1 * 0.7;
  }

  h2 {
    font-size: $font-size-h2 * 0.7;
  }

  h3 {
    font-size: $font-size-h3 * 0.7;
  }

  h4 {
    font-size: $font-size-h4 * 0.7;
  }

  h5 {
    font-size: $font-size-h5 * 0.7;
  }

  h6 {
    font-size: $font-size-h6 * 0.7;
  }
} // < 480px width


/*  [ 05 ] - Paragraphs
========================== */

p {
  margin-bottom: 22px;
}

.dark p {
  color: #fff;
}


/*  [ 06 ] - Images
====================== */

img {
  max-width: 100%;
}


/*  [ 07 ] - Strong
====================== */

strong {
  color: $dark-color;
  font-weight: 600;
}


/*  [ 08 ] - Texts Highlighting Selection
============================================ */

::-moz-selection{
  background: $highlight-bg-color;
  color: $highlight-color;
}

::selection {
  background: $highlight-bg-color;
  color: $highlight-color;
}


/*  [ 09 ] - Text Colored
============================ */

.colored {
  color: $theme-color-1;
}


/*  [ 10 ] - Form Settings
============================ */

form {
  position: relative;
  font-family: $heading-font !important;

  [class*="col-"]:last-child .form-group:last-child {
    overflow: hidden;
    margin-bottom: 0 !important;
  }
}

form {
  .form-group {
    position: relative;
    margin-bottom: 0;

    & + .form-group {
      margin-top: 22px;
    }    
  }

  &.form-inline {
    .form-group + .form-group {
      margin-top: 0;
    }
  }
}

input,
input.form-control,
textarea,
textarea.form-control,
select,
select.form-control {
  padding: 0 15px;
  width: 100%;
  height: 45px;
  line-height: 46px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.2s;
  background-color: #fff;
  color: $dark-color;

  .rounded & {
    border-radius: 999px;
  }

  .form-h-50 & {
    height: 50px;
    line-height: 51px;
  }

  .style-2 & {
    border-color: #f1f1f1;
    background-color: #f1f1f1;
  }
}

textarea,
textarea.form-control {
  height: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 27px !important;
  border-radius: 5px;
  resize: vertical;
}

input:focus,
input.form-control:focus,
textarea:focus,
textarea.form-control:focus,
select:focus,
select.form-control:focus {
  box-shadow: none;
  border-color: $theme-color-2;
  background: #fff;
  color: $theme-color-1;

  .style-2 & {
    border-color: $theme-color-2;
    background-color: #fff;
  }
}

button:focus,
button.form-control:focus {
  box-shadow: none;
  border-color: transparent;    
}


.field-icon {
  position: absolute;
  top: 22px;
  left: 30px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-size: 0;
}

.field-icon + input[type="text"],
.field-icon + input[type="email"],
.field-icon + textarea {
  text-indent: 45px;
}

.form-inline .form-control {
  width: 100%;
}

abbr {
  cursor: help;
}

label {
  vertical-align: top;
  margin-bottom: 0;
  // display: inline;
  color: $dark-color;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 8px;
}

label.error {
  display: block;
  margin: 5px 0 0;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: #f33;
}

input.error,
textarea.error,
select.error {
  &,
  &:focus {
    box-shadow: inset 0 0 0 2px #f33;
    // border-color: #f33;
    background: #fff;    
  }
}

input[type="submit"],
input[type="submit"].form-control,
button[type="submit"],
button[type="submit"].form-control {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 40px;
  margin-top: 0; // 5px
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border: none;
  // background-color: $theme-color-1;
  border-radius: 5px;
  transition: all 0.2s;
  width: auto;
  color: #fff !important;
  background-color: $theme-color-1;
  // @extend .color-bg-gradient;
  // @extend .color-border-gradient;

  &.form-h-50 {
    height: 50px;
    line-height: 51px;
  }

  &.rounded {
    border-radius: 999px;
  }

  @media (max-width: 480px) {
    padding: 0 30px;
    height: 37px;
    line-height: 37px;
    font-size: 12px;
  } // < 480px width

  &:not(.btn) {
    box-shadow: none;
  }
  
  &.icon {
    display: flex;
    align-items: center;
    padding: 0;
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 5px;

    .form-h-50 & {
      height: 50px;
      width: 50px;
    }
  }
}

.form-inline .form-control[type="submit"] {
  width: auto;
  margin-top: 0;
}

input[type="submit"]:hover,
input[type="submit"].form-control:hover,
button[type="submit"]:hover,
button[type="submit"].form-control:hover {
  background-color: $theme-color-4;
}

input[type="submit"]:focus,
input[type="submit"].form-control:focus {
  box-shadow: none;
  // background: $theme-color-1;
}





/**
 * -------------------------------------------------------------------------------
 * ( 02 ) - General Contents
 * -------------------------------------------------------------------------------
 *
 *  This part contains the basic general contents like box preview, image  
 *  preview, flat section .. etc.
 *
 * ------
 *
 *  General Contents divided to the following sections:
 *
 *    |
 *    |-->  [ 01 ] - Section Flat
 *    |-->  [ 02 ] - Image BG
 *    |-->  [ 03 ] - Slider Image BG
 *    |-->  [ 04 ] - Image Preview
 *    |-->  [ 05 ] - Box Info
 *    |-->  [ 06 ] - Divider Space
 *    |-->  [ 07 ] - Magnific Popup
 *    |-->  [ 08 ] - Icons
 *    |-->  [ 09 ] - Buttons
 *    |-->  [ 10 ] - Social Icons
 *    |-->  [ 11 ] - Scroll Top Icon
 *
 */


/*  [ 01 ] - Section Flat
=========================== */

.section-flat {
  width: 100%;
  position: relative;

 .section-content {
    width: 100%;
    padding: 130px 0 130px;
    position: relative;
    clear: both;
    // background: #fff;

    @media (max-width: 480px) {
      // padding: 50px 0;
    } // < 480px width

    & > .container-fluid {
      padding: 0;
    }
  }
}

/* Section Title */
.section-title {
  margin-bottom: 60px;

  h2 {
    margin-bottom: 0;
    font-family: $secondary-font;
  }
  
  &.text-white {
    h1 {
      color: #fff;
    }

    p {
      opacity: 0.6;
      color: #fff;
    }
  }

  .col-md-8 & {
    &.text-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      
      h2 {
        width: 80%;

        @media (max-width: 768px) {
          width: 100%;
        } // < 768px width
      }

      p {
        width: 75%;

        @media (max-width: 768px) {
          width: 100%;
        } // < 768px width
      }
    }
  }
}

/* Section Parallax */
.section-parallax {
  width: 100%;
  position: relative;
  background-color: #ccc;
  background-position: center center;
  background-size: cover;
  // background-attachment: fixed;
  background-repeat: no-repeat;

 .section-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 140px 0;
    z-index: 2;

    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .bg-element {
    position: absolute;
    width: 100%;
    height: 100%;
    background: no-repeat top center / cover;

    & + img {
      display: none;
    }
  }
}

@media (max-width: 768px) {
  .section-parallax {
    > .bg-element {
      background-position: initial !important;
    }
  }
} // < 768px width




/*  [ 02 ] - Image BG
======================= */

.img-bg {
  overflow: hidden;
  position: relative;
  display: block;
  height: 330px; // default height
  border-radius: 4px;
  background: no-repeat center / cover;
  background-color: #ddd;
  transition: all 0.5s;

  .bg-element {
    position: absolute;
    width: 100%;
    height: 100%;
    background: no-repeat top center / cover;
    transition: all 0.4s ease;
  }

  > a {
    position: relative;
    // z-index: 1; // when box-img as link
    display: block;
    height: 100%;

    img {
      display: block;
    }
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 1px);
    height: 100%;
    background-color: rgba(0,0,0,0.75);

    &,
    .overlay-inner {
      // opacity: 0;
      // visibility: hidden;     
      transition: all 0.3s ease;
    }

    .overlay-inner {
      display: flex;
      flex-direction: column;
      align-items: flex-start; // vertically center, flex-start or flex-end
      justify-content: flex-start; // horizontally center, flex-start or flex-end
      width: 100%;
      height: 100%;
      padding: 30px;
      transition: all 0.2s 0.2s;

      > * {
        position: relative;
        z-index: 10;
      }

      .sub-title {
        color: $theme-color-1;
        position: relative;
        text-transform: uppercase;
        font-weight: 400;
      }

      h1, h2, h3, h4, h5, h6 {
        color: #fff;

        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }
}


/*  [ 03 ] - Slider Image BG
============================== */

.slider-img-bg {
  .bg-element {
    position: absolute;
    width: 100%;
    height: 100%;
    background: no-repeat top center / cover;
    transition: all 0.4s ease;
  }

  .slide {
    > img {
      display: none;
    }
  }
}


/*  [ 04 ] - Image Preview
============================ */

.img-preview {
  // margin-bottom: 40px;
  // background: #ddd;
  position: relative;

  img {
    max-width: 100%;
  }
}



/*  [ 05 ] - Box Info
======================= */

.box-info {
  position: relative;
  // overflow: hidden;

  &.text-white {
    color: #fff;

    p {
      color: rgba(255,255,255,0.5);
    }
  }

  .box-icon {
    float: left;
    margin: 0 20px 0 0;
    // padding-left: 1px;

    img {
      margin-top: 6px;
    }

    i {
      margin-top: 1px;
    }
  }

  .box-content {
    h5 {
      margin-bottom: 18px;
    }
  }
}

@media (min-width: 992px) {
  &.reversed {
    .box-icon {
      float: right;
      margin-left: 20px;
      margin-right: 0;
    }

    .box-content {
      text-align: right;
    }
  }
} // > 992px width




/*  [ 06 ] - Divider Space
============================ */

[class*="divider-"] { // :not([class*="divider-container"])
  display: block;
  overflow: hidden;
  clear: both;  
}

.divider-140 { height: 140px; }
.divider-130 { height: 130px; }
.divider-120 { height: 120px; }
.divider-110 { height: 110px; }
.divider-100 { height: 100px; }
.divider-90 { height: 90px; }
.divider-80 { height: 80px; }
.divider-70 { height: 70px; }
.divider-60 { height: 60px; }
.divider-50 { height: 50px; }
.divider-40 { height: 40px; }
.divider-30 { height: 30px; }
.divider-20 { height: 20px; }
.divider-10 { height: 10px; }

@media (max-width: 992px) {
  [class*="divider-"] {
    &.divider-md- {
      &0 { height: 0; }
      &10 { height: 10px; }
      &20 { height: 20px; }
      &30 { height: 30px; }
      &40 { height: 40px; }
      &50 { height: 50px; }
      &60 { height: 60px; }
      &70 { height: 70px; }
      &80 { height: 80px; }
      &90 { height: 90px; }
      &100 { height: 100px; }
      &110 { height: 110px; }
      &120 { height: 120px; }
      &130 { height: 130px; }
      &140 { height: 140px; }
    }
  }
} // < 992px width

@media (max-width: 768px) {
  [class*="divider-"] {
    &.divider-sm- {
      &0 { height: 0; }
      &10 { height: 10px; }
      &20 { height: 20px; }
      &30 { height: 30px; }
      &40 { height: 40px; }
      &50 { height: 50px; }
      &60 { height: 60px; }
      &70 { height: 70px; }
      &80 { height: 80px; }
      &90 { height: 90px; }
      &100 { height: 100px; }
      &110 { height: 110px; }
      &120 { height: 120px; }
      &130 { height: 130px; }
      &140 { height: 140px; }
    }
  }
} // < 768px width

@media (max-width: 480px) {
  [class*="divider-"] {
    &.divider-xs- {
      &0 { height: 0; }
      &10 { height: 10px; }
      &20 { height: 20px; }
      &30 { height: 30px; }
      &40 { height: 40px; }
      &50 { height: 50px; }
      &60 { height: 60px; }
      &70 { height: 70px; }
      &80 { height: 80px; }
      &90 { height: 90px; }
      &100 { height: 100px; }
      &110 { height: 110px; }
      &120 { height: 120px; }
      &130 { height: 130px; }
      &140 { height: 140px; }
    }
  }
} // < 480px width



/*  [ 07 ] - Magnific Popup
============================= */

/* Popup Fade Effect */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}


/*  [ 08 ] - Icons
==================== */

.icon {
  position: relative;
  display: flex;
  // text-align: center;
  align-items: flex-start;  // verically center, flex-start or flex-end
  justify-content: center;  // horizontally center, flex-start or flex-end 

  i,
  img {
    display: block;
  }

  img {
    max-width: 100%;
    max-height: 100%;
  }

  /* Sizes */
  &.x5 {
    width: 70px;
    height: 70px;
    font-size: 70px;
  }

  /* Colors */
  &.white i { color: #fff; }

  /* Spaced */
  &.spaced {
    align-items: center; // vertically center, flex-start or flex-end 
    padding: 10px;
    border-radius: 4px;

    /* Sizes */
    $icon-spaced-w-h-x5: 70px;

    &.x5 {
      width: $icon-spaced-w-h-x5;
      height: $icon-spaced-w-h-x5;
      font-size: $icon-spaced-w-h-x5 / 2.5;
    }

    /* Rounded */
    &.rounded {
      border-radius: 100%;
    }

    /* Colors */
    &.colorful-bg {
      background-color: $theme-color-1;
      // color: $theme-color-1;
    }
  }
}


/*  [ 09 ] - Buttons
====================== */

.btn {
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 35px;
  font-size: 14px;
  line-height: $line-height-base;
  border-radius: 3px;
  font-weight: 500;
  // text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  border: 2px solid;
  box-shadow: 0px 8px 8px rgba(#000, 0.05);
  font-family: $heading-font;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  // transition: color 0.2s, background 0.2s, border-color 0.2s !important;

  button#{&} {
    box-shadow: none;
  }

  &.rounded {
    border-radius: 999px;
  }

  &.with-icon {
    &.medium {
      i {
        margin-left: 8px;
        font-size: 16px;
      }
    }

    &.small {
      i {
        margin-left: 6px;
        font-size: 14px;
      }
    }
  }

  /* Sizes */
  &.x-small {
    padding: 5px 16px;
    font-size: 12px;
  }

  &.small {
    padding: 7px 20px;
    font-size: 14px;
  }

  &.medium {
    padding: 11px 30px;
    font-size: 16px;

    @media (max-width: 480px) {
      padding: 8px 20px;
      font-size: 12px;
    } // < 480px width
  }

  &.large {
    padding: 10px 35px;
    font-size: 18px;
    border-width: 3px;

    @media (max-width: 1400px) {
      // padding: 10px 30px;
      // font-size: 18px;
    } // < 1400px width

    @media (max-width: 480px) {
      padding: 8px 25px;
      font-size: 14px;
    } // < 480px width
  }

  &.x-large {
    padding: 18px 40px;
    font-size: 24px;
    border-width: 3px;

    @media (max-width: 480px) {
      padding: 10px 25px;
      font-size: 12px;
    } // < 480px width
  }

  &.xx-large {
    padding: 18px 57px;
    font-size: 20px;
    border-width: 3px;
  }

  &:hover {

  }

  /* Styles */
  &.colorful,
  &.hover-colorful:hover {
    background-color: $theme-color-2;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    border-color: $theme-color-2;
    // box-shadow: 0 3px 14px 4px rgba($theme-color-1,0.22);
  }

  &.colorful-transparent,
  &.hover-colorful-transparent:hover {
    background-color: transparent;
    color: $theme-color-1;
    text-shadow: none;
    border-color: $theme-color-1;
    // box-shadow: 0 3px 14px 4px rgba($theme-color-1,0.22);
  }

  &.colorful-2,
  &.hover-colorful-2:hover {
    background-color: darken($theme-color-1, 6%);
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    border-color: darken($theme-color-1, 6%);
    // box-shadow: 0 3px 14px 4px rgba($theme-color-1,0.22);
  }

  &.white,
  &.hover-white:hover {
    background: #fff;
    color: $dark-color;
    text-shadow: none;
    border-color: #fff;
  }

  &.grey,
  &.hover-grey:hover {
    background: #eee;
    color: $dark-color;
    text-shadow: none;
    border-color: #eee;
  }
  
  &.dark,
  &.hover-dark:hover {
    background: $dark-color;
    color: #fff;
    text-shadow: none;
    border-color: $dark-color;
  }

  &.colorful-darken,
  &.hover-colorful-darken:hover {
    background-color: $theme-color-2;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    border-color: $theme-color-2;
    // box-shadow: 0 3px 14px 4px rgba(darken($theme-color-1, 3%),0.22);
  }

  &.gradient-1 {
    border: none;
    color: #fff;
    @include bgGradient($theme-color-1, $theme-color-2, 235deg);
    // @include btnShadow(#a6a5a5, 0.34);

    &::before {
      @include bgGradient($theme-color-2, $theme-color-1, 190deg);
    }

    &:hover {
      // @include btnShadow(#a6a5a5, 0.3, $param-3: 10px);
    }
  }

  &.gradient-2 {
    border: none;
    color: #fff;
    @include bgGradient(#ef8405, #ff991f, 90deg);
    @include btnShadow(#a6a5a5, 0.34);

    &::before {
      @include bgGradient(#ff991f, #ef8405, 0deg);
    }

    &:hover {
      @include btnShadow(#a6a5a5, 0.6, $param-3: 10px);
    }
  }

  &[class*="gradient-"] {
    &:hover {
      &::before {
        opacity: 1;
      }
    }
    
    &::before {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: all 0.2s;
    }
  }

  // Move Animation
  &.move-top {
    transform: translateY(0);

    &:hover {
      transform: translateY(-3px);
    }
  }
}


@media (max-width: 480px) {
    .btn {
      &.xx-large {
        padding: 6px 45px;
        font-size: 20px;
      }
    }
} // < 480px width
  


/*  [ 10 ] - Social Icons
=========================== */

/* Social Icons */
.social-icons {
  list-style: none;
  position: relative;
  margin-bottom: -5px;
  font-size: 0;

  li {
    display: inline-block;
    margin-bottom: 5px;

    + li {
      margin-left: 5px;
    }

    a {
      display: block;
      position: relative;
      overflow: hidden;
      text-align: center;
      background: transparent;
      border-radius: 3px;
      transition: all 0.3s ease;

      &:hover {
        // opacity: 0.7;
      }

      i {
        position: relative;
        top: 50%;
        display: block;
        margin: 0 auto;
        transform: translateY(-50%);
        
        &::before {
          transition: all 0.2s;
        }

        &:first-child {}

        &:first-child,
        &:last-child {
          display: flex;
          align-items: center;
          justify-content: center;
        }

        &:last-child {
          opacity: 0;
        }
      }
    }
  }

  /* Sizes */
  &.x4 {
    li {
      a {
        width: 40px;
        height: 40px;
        font-size: 15px;
      }

      i {

        &:first-child,
        &:last-child {
          width: 26px;
          height: 26px;
        }
      }
    }
  }

  &.x5 {
    li {
      a {
        width: 50px;
        height: 50px;
        font-size: 18px;
      }

      i {

        &:first-child,
        &:last-child {
          width: 36px;
          height: 36px;
        }
      }
    }
  }

  &.icon-only {
    li + li {
      margin-left: 2px;
    }

    &.x4 {
      li a {
        width: 30px;
        height: 30px;
      }
    }

    &.x5 {
      li a {
        width: 40px;
        height: 40px;
      }
    }
  }

  &.rounded {
    a {
      border-radius: 999px;
    }
  }


  /* Colors */
  &.white li a,
  &.grey li a,
  &.hover-colorful li a:hover {
    background: transparent;
  }

  &.grey li a i:first-child {
    color: #ccc;
  }

  &.white li a i:first-child {
    color: #fff;
  }

  &.dark li a i:first-child {
    color: $dark-color;
  }

  &.hover-colorful li a i:last-child,
  &.hover-colorful:not(.animated) li a:hover i:first-child {
    color: $theme-color-1;
  }

  &.hover-white li a i:last-child,
  &.hover-white:not(.animated) li a:hover i:first-child {
    color: #fff;
  }

  &.white-bg a {
    background-color: #fff;

    & i:first-child {
      color: $dark-color;
    }
  }

  &.white-transparent-bg a {
    background-color: #fff;
    border: 1px solid #eee;

    & i:first-child {
      color: $dark-color;
    }
  }

&.hover-white-bg a:hover {
  background-color: #fff !important;

  & i:first-child {
    color: #000;
  }
}

&.hover-dark-bg a:hover {
    background-color: $dark-color !important;

    & i:first-child {
      color: #fff;
    }
  }

  &.hover-colorful-bg a:hover {
    background-color: #14bfff;
    border-color: #14bfff;

    & i:first-child {
      color: #fff;
    }
  }

  &.colorful-bg {
    li a i:first-child {
      color: #fff;
    }

    li a {
      &.si-facebook {
        background-color: #3b5999;
      }

      &.si-twitter {
        background-color: #55acee;
      }

      &.si-instagramorange {
        background-color: #f77737;
      }

      &.si-linkedin {
        background-color: #007bb5;
      }
    }
  }
}

/*  [ 11 ] - Scroll Top Icon
============================== */

.scroll-top-icon {
  width: 30px;
  height: 30px;
  line-height: 29px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  border-radius: 2px;
  background-color: #333;
  // text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  position: fixed;
  bottom: -50px;
  right: 40px;
  z-index: 15;
  // box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1);

  &.show {
    bottom: 40px;
  }

  &:hover {
    background-color: #3a3a3a;
    color: #fff;
    // bottom: 22px;
  }

  &:focus {
    // background-color: $theme-color-1;
    color: #fff;
  }
}

@media (max-width: 768px) {
  .scroll-top-icon {
    display: none !important;
  }
} // < 992px width
  


/*  [ 11 ] - Page Title
========================= */

#page-title {
  position: relative;
  background-color: #fafafa;

  #page-title-wrap {
    padding: 60px 0;
    position: relative;
    z-index: 1;
  }

  .container,
  .row,
  [class*="col-"] {
    height: 100%;
  }

  > h2 {
    margin-bottom: 6px;
  }
  
  h4 {
    margin: 15px 0 0;
  }

  > h5 {
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 0;
    font-family: $body-font;
    font-size: 18px;
    display: none;
  }
}

/* Breadcrumb */
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 30px 0;
  font-size: 16px;
  font-weight: 600;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
  } // < 768px width

  li {
    display: flex;
    align-items: flex-start;

    & + li::before {
      content: "\f077"; // \00a0
      font-family: "Font Awesome 5 Free";
      padding: 0 8px;
      font-weight: 700;
      font-size: 14px;
      position: relative;
      top: 1px;
      color: #aaa;
      transform: rotate(90deg);

      @media (max-width: 768px) {
        margin-left: -6px;
      } // < 768px width
    }
    
    &.active {
      color: $dark-color;
    }
  }

  a {
    color: $theme-color-1;

    

    &:hover {
      color: $dark-color;
    }
  }

  i {

  }
}

@media (max-width: 768px) {
  .breadcrumb {
    // flex-direction: column;
  }
} // < 768px width


/*  [ 12 ] - Tables
===================== */

table {
  width: 100%;
//   text-align: left;
border: 1px solid #ddd;

  h5 {
    margin-bottom: 0;
  }

  thead {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    // text-transform: uppercase;
    color: $dark-color;
    
    th {
      padding: 15px 20px;
      text-align: left;
      font-weight: 600;

      & + th {
        border-left: 1px solid #ddd;
      }

      &:first-child {
        // padding-right: 0;
      }

      &:last-child {

      }
    }
  }

  tbody {
    color: $dark-color;

    tr {
      background: #fff;
      
      & + tr {
        border-top: 1px solid #ddd;
      }
      
      &:nth-child(even) {
        // background: #fafafa;
      }
    }
    
    td {
      padding: 25px 20px;
      font-size: 14px;
      // border-right: 1px solid #ddd;

      & + td {
        border-left: 1px solid #ddd;
      }

      &:first-child {

      }
    }
  }
}


/*  [ 13 ] - Website Loading
============================== */

#website-loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  text-align: center;
  background: #fff;
  display: none;

  .logo-loader {
    margin-bottom: 60px;
    height: 70px;
    transition: none;
  }

  .loader {

  }
}

.la-ball-pulse {
  color: $theme-color-1 !important;
  /*margin: auto;*/
  display: inline-block !important;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-pulse,
.la-ball-pulse>div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-pulse {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-pulse.la-dark {
  color: #333;
}

.la-ball-pulse>div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-pulse {
  width: 54px;
  height: 18px;
}

.la-ball-pulse>div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}

.la-ball-pulse>div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}

.la-ball-pulse>div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}

.la-ball-pulse>div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  -webkit-animation: ball-pulse 1s ease infinite;
  -moz-animation: ball-pulse 1s ease infinite;
  -o-animation: ball-pulse 1s ease infinite;
  animation: ball-pulse 1s ease infinite;
}

.la-ball-pulse.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-pulse.la-sm>div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-pulse.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-pulse.la-2x>div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-pulse.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-pulse.la-3x>div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-pulse {

  0%,
  60%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    opacity: .1;
    -webkit-transform: scale(.01);
    transform: scale(.01);
  }
}

@-moz-keyframes ball-pulse {

  0%,
  60%,
  100% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  30% {
    opacity: .1;
    -moz-transform: scale(.01);
    transform: scale(.01);
  }
}

@-o-keyframes ball-pulse {

  0%,
  60%,
  100% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  30% {
    opacity: .1;
    -o-transform: scale(.01);
    transform: scale(.01);
  }
}

@keyframes ball-pulse {

  0%,
  60%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  30% {
    opacity: .1;
    -webkit-transform: scale(.01);
    -moz-transform: scale(.01);
    -o-transform: scale(.01);
    transform: scale(.01);
  }
}



// Imports ( Rest imports )
// ==================================

@import "helpers-placeholders";

// ==================================
