@charset "UTF-8";
@import url('./animate.css');

@font-face {
  font-family: 'Shinko Sans';
  src: url('/assets/fonts/shinko.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shinko Sans';
  src: url('/assets/fonts/shinko.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



/*
* @section Main Styles
*/

body {
  color: rgb(242, 246, 250);
  font-family: 'Shinko Sans', "Montserrat", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  background: rgb(19, 38, 75);
  line-height: 1.77778;
  max-width: 2050px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

img.circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/*
* @subsection Typography
*/
h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
  color: rgb(242, 246, 250);
  line-height: 1;
  text-transform: uppercase;
  font-family: "Shinko Sans", sans-serif;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.heading-1 a:hover,
.heading-2 a:hover,
.heading-3 a:hover,
.heading-4 a:hover,
.heading-5 a:hover,
.heading-6 a:hover {
  text-decoration: underline;
}

h1,
.heading-1 {
  font-family: "Shinko Sans", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

@media (min-width: 480px) {

  h1,
  .heading-1 {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {

  h1,
  .heading-1 {
    font-size: 40px;
  }
}

h2,
.heading-2 {
  font-family: "Shinko Sans", sans-serif;
  font-size: 35px;
}

h3,
.heading-3 {
  font-family: "Shinko Sans", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.46667;
  font-size: 22px;
}

@media (min-width: 480px) {

  h3,
  .heading-3 {
    font-size: 30px;
  }
}

h4,
.heading-4 {
  font-size: 25px;
}

h5,
.heading-5 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

h6,
.heading-6 {
  font-size: 18px;
}

time {
  display: block;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  text-decoration: none;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:focus,
a:hover {
  outline: none;
  text-decoration: underline;
}

a[href^="tel:"],
a[href^="callto:"] {
  text-decoration: none;
}

a[href^="mailto:"] {
  display: inline-block;
}

a[href^="mailto:"]:hover {
  color: rgb(242, 246, 250);
  text-decoration: underline;
}

.big {
  font-family: "Shinko Sans", sans-serif;
  font-size: 190px;
  letter-spacing: -0.08em;
  line-height: 204px;
}

@media (min-width: 480px) {
  .big {
    font-size: 185px;
  }
}

[class*='fa-']:before {
  font-weight: 400;
  font-family: "FontAwesome";
}

.page {
  overflow: hidden;
  min-height: 500px;
}

.lt-ie9 .page {
  min-width: 1200px;
}

/*
* @subsection Text Styling
*/
.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strike {
  text-decoration: line-through;
}

.upper {
  text-transform: uppercase;
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sbold {
  font-weight: 600;
}

.bold,
strong {
  font-weight: 700;
}

.ubold {
  font-weight: 900;
}

/*
* @section Type System
*/
/*
* @subsection Alignment
*/
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (max-width: 479px) {
  .text-xs-left {
    text-align: left;
  }

  .text-xs-center {
    text-align: center;
  }

  .text-xs-right {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .text-sm-left {
    text-align: left;
  }

  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .text-md-left {
    text-align: left;
  }

  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }
}

@media (max-width: 1199px) {
  .text-lg-left {
    text-align: left;
  }

  .text-lg-center {
    text-align: center;
  }

  .text-lg-right {
    text-align: right;
  }
}

/*
* @subsection Floating
*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (min-width: 480px) {
  .pull-xs-left {
    float: left;
  }

  .pull-xs-none {
    float: none;
  }

  .pull-xs-right {
    float: right;
  }
}

@media (min-width: 768px) {
  .pull-sm-left {
    float: left;
  }

  .pull-sm-none {
    float: none;
  }

  .pull-sm-right {
    float: right;
  }
}

@media (min-width: 768px) {
  .pull-md-left {
    float: left;
  }

  .pull-md-none {
    float: none;
  }

  .pull-md-right {
    float: right;
  }
}

@media (min-width: 1200px) {
  .pull-lg-left {
    float: left;
  }

  .pull-lg-none {
    float: none;
  }

  .pull-lg-right {
    float: right;
  }
}

/*
* @section MainLayout
*/
.inset-1 {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 63px;
  padding-top: 53px;
}

@media (min-width: 992px) {
  .inset-1 {
    padding-top: 186px;
  }
}

@media (min-width: 992px) {
  .inset-1 {
    padding-left: 53px;
  }
}

.page .inset-2 {
  padding-top: 51px;
  padding-right: 20px;
  padding-bottom: 46px;
  padding-left: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page .inset-2 {
    width: 96%;
  }
}

@media (min-width: 1200px) {
  .page .inset-2 {
    width: 100%;
    padding-bottom: 63px;
    padding-left: 30px;
  }
}

*+p {
  margin-top: 45px;
}

*+.btn {
  margin-top: 57px;
}

*+.tg-mailform {
  margin-top: 47px;
}

.terms-list+* {
  margin-top: 129px;
}

h1+* {
  margin-top: 50px;
}

h3+* {
  margin-top: 40px;
}

@media (min-width: 992px) {
  .prefix-1 {
    margin-left: 9px;
  }
}

.prefix-2 {
  padding-top: 30px;
}

@media (min-width: 1200px) {
  .prefix-2 {
    padding-top: 0;
  }
}

@media (min-width: 1800px) {
  .prefix-2 {
    padding-left: 80px;
  }
}

@media (min-width: 992px) {
  .prefix-3 {
    padding-left: 89px;
  }
}

.offset-1 {
  margin-top: 40px;
}

@media (min-width: 992px) {
  .offset-1 {
    margin-top: 440px;
  }
}

.offset-2 {
  margin-top: 36px;
}

@media (min-width: 1200px) {
  .offset-2 {
    margin-top: 14px;
  }
}

.offset-3 {
  margin-top: 80px;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .offset-3 {
    margin-top: 187px;
    margin-bottom: -38px;
  }
}

.offset-4 {
  margin-top: 6px;
}

.offset-5 {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .offset-5 {
    margin-top: -241px;
  }
}

.offset-6 {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .offset-6 {
    margin-top: -133px;
  }
}

.offset-7 {
  margin-top: 35px;
}

.offset-8 {
  margin-top: 14px;
}

.offset-9 {
  margin-top: 40px;
}

@media (min-width: 992px) {
  .offset-9 {
    margin-top: -350px;
  }
}

@media (min-width: 1200px) {
  .offset-9 {
    margin-top: -500px;
  }
}

@media (min-width: 1800px) {
  .offset-9 {
    margin-top: -655px;
  }
}

.offset-10 {
  margin-top: 30px;
}

.offset-11 {
  margin-top: 30px;
}

@media (min-width: 1800px) {
  .offset-11 {
    margin-top: -36px;
  }
}

.offset-12 {
  margin-top: 30px;
}

@media (min-width: 1800px) {
  .offset-12 {
    margin-top: 103px;
  }
}

.offset-13 {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .offset-13 {
    margin-top: -68px;
  }
}

@media (min-width: 1800px) {
  .offset-13 {
    margin-top: -292px;
  }
}

.offset-14 {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .offset-14 {
    margin-top: 151px;
  }
}

.offset-15 {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .offset-15 {
    margin-top: -25px;
  }
}

.offset-16 {
  margin-top: 60px;
}

@media (min-width: 1800px) {
  .offset-16 {
    margin-top: -315px;
  }
}

.offset-17 {
  margin-top: 42px;
}

.offset-18 {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .offset-18 {
    margin-top: -187px;
  }
}

.flow-offset-1>*+* {
  margin-top: 30px;
}

@media (min-width: 480px) {

  html:not(.lt-ie10) .flow-offset-1>.col-xs-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 480px) {

  html:not(.lt-ie10) .flow-offset-1>.col-xs-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-1>.col-xs-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {

  html:not(.lt-ie10) .flow-offset-1>.col-sm-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {

  html:not(.lt-ie10) .flow-offset-1>.col-sm-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-1>.col-sm-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {

  html:not(.lt-ie10) .flow-offset-1>.col-md-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-md-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 992px) {

  html:not(.lt-ie10) .flow-offset-1>.col-md-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-1>.col-md-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-1>.col-md-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-1>.col-md-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-1>.col-md-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-1>.col-md-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {

  html:not(.lt-ie10) .flow-offset-1>.col-lg-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-1>.col-xl-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-1>.col-xl-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-1>.col-xl-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-1>.col-xl-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

.flow-offset-2>*+* {
  margin-top: 60px;
}

@media (min-width: 480px) {

  html:not(.lt-ie10) .flow-offset-2>.col-xs-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 480px) {

  html:not(.lt-ie10) .flow-offset-2>.col-xs-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-2>.col-xs-12:nth-child(n + 2) {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {

  html:not(.lt-ie10) .flow-offset-2>.col-sm-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {

  html:not(.lt-ie10) .flow-offset-2>.col-sm-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-2>.col-sm-12:nth-child(n + 2) {
    margin-top: 60px;
  }
}

@media (min-width: 992px) {

  html:not(.lt-ie10) .flow-offset-2>.col-md-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-md-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 992px) {

  html:not(.lt-ie10) .flow-offset-2>.col-md-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-2>.col-md-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-2>.col-md-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-2>.col-md-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-2>.col-md-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-2>.col-md-12:nth-child(n + 2) {
    margin-top: 60px;
  }
}

@media (min-width: 1200px) {

  html:not(.lt-ie10) .flow-offset-2>.col-lg-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-2>.col-xl-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-12:nth-child(n + 2) {
    margin-top: 60px;
  }
}

@media (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-2>.col-xl-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-2>.col-xl-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-2>.col-xl-12:nth-child(n + 2) {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .flow-offset-3>*+* {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (min-width: 480px) {

  html:not(.lt-ie10) .flow-offset-3>.col-xs-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 991px) and (min-width: 480px) {

  html:not(.lt-ie10) .flow-offset-3>.col-xs-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-3>.col-xs-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {

  html:not(.lt-ie10) .flow-offset-3>.col-sm-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 991px) and (min-width: 768px) {

  html:not(.lt-ie10) .flow-offset-3>.col-sm-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-3>.col-sm-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (min-width: 992px) {

  html:not(.lt-ie10) .flow-offset-3>.col-md-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-md-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 991px) and (min-width: 992px) {

  html:not(.lt-ie10) .flow-offset-3>.col-md-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-3>.col-md-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-3>.col-md-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-3>.col-md-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-3>.col-md-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-3>.col-md-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (min-width: 1200px) {

  html:not(.lt-ie10) .flow-offset-3>.col-lg-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 991px) and (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-3>.col-xl-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-3>.col-xl-1:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-2:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-3:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-4:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-5:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-6:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-7:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-8:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-9:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-10:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-11:nth-child(n),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-12:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 991px) and (min-width: 1800px) {

  html:not(.lt-ie10) .flow-offset-3>.col-xl-1:nth-child(n + 13),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-2:nth-child(n + 7),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-3:nth-child(n + 5),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-4:nth-child(n + 4),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-6:nth-child(n + 3),
  html:not(.lt-ie10) .flow-offset-3>.col-xl-12:nth-child(n + 2) {
    margin-top: 30px;
  }
}

/*
* @subsection Wells
*/
.well-md {
  padding-top: 60px;
}

@media (min-width: 992px) {
  .well-md {
    padding-top: 111px;
  }
}

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

@media (min-width: 992px) {
  .well-lg {
    padding-top: 131px;
  }
}

.well-xl {
  padding-top: 80px;
}

@media (min-width: 992px) {
  .well-xl {
    padding-top: 147px;
  }
}

header .well-xl {
  padding-top: 151px;
  padding-bottom: 151px;
}

@media (min-width: 992px) {
  header .well-xl {
    padding-top: 272px;
  }
}

footer.well-sm {
  padding-top: 62px;
}

/*
* @section Helpers
*/
.line {
  position: relative;
}

.line:after {
  position: absolute;
  content: '';
  right: 13%;
  bottom: 2px;
  height: 2px;
  width: 145px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ffffff61;
}

.line-position-1:after {
  left: 22%;
  top: 2px;
  z-index: 999 !important;
}

.line-position-2 {
  margin-left: 0;
}

.line-position-2:after {
  left: 35%;
  top: -55px;
}

@media (min-width: 992px) {
  .line-position-2 {
    margin-left: 49px;
  }

  .line-position-2:after {
    left: -136px;
    top: 180px;
  }
}

@media (min-width: 1800px) {
  .line-position-2:after {
    left: -136px;
    top: 214px;
  }
}

.line-position-3 {
  padding-left: 0;
}

.line-position-3:after {
  left: 35%;
  top: -55px;
}

@media (min-width: 992px) {
  .line-position-3 {
    padding-left: 55px;
  }

  .line-position-3:after {
    left: -94px;
    top: 145px;
  }
}

@media (min-width: 1800px) {
  .line-position-3:after {
    left: -94px;
    top: 185px;
  }
}

.line-position-4:after {
  left: 35%;
  top: 0;
}

@media (min-width: 480px) {
  .line-position-4:after {
    left: 40%;
  }
}

@media (min-width: 992px) {
  .line-position-4:after {
    left: 47%;
  }
}

h1.line,
h2.line,
h3.line,
h4.line,
h5.line,
h6.line {
  border: none;
  padding-top: 30px;
}

h1.line br,
h2.line br,
h3.line br,
h4.line br,
h5.line br,
h6.line br {
  display: none;
}

@media (min-width: 992px) {

  h1.line,
  h2.line,
  h3.line,
  h4.line,
  h5.line,
  h6.line {
    padding-top: 140px;
  }

  h1.line br,
  h2.line br,
  h3.line br,
  h4.line br,
  h5.line br,
  h6.line br {
    display: inline-block;
  }
}

h1.line:after,
h2.line:after,
h3.line:after,
h4.line:after,
h5.line:after,
h6.line:after {
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  content: '';
  position: absolute;
  height: 2px;
  left: 50%;
  top: 114%;
  width: 145px;
  background-color: rgb(242, 246, 250);
  -moz-transform: rotate(0deg) translate(-50%, 0px);
  -ms-transform: rotate(0deg) translate(-50%, 0px);
  -o-transform: rotate(0deg) translate(-50%, 0px);
  -webkit-transform: rotate(0deg) translate(-50%, 0px);
  transform: rotate(0deg) translate(-50%, 0px);
}

@media (min-width: 480px) {

  h1.line:after,
  h2.line:after,
  h3.line:after,
  h4.line:after,
  h5.line:after,
  h6.line:after {
    top: 110%;
  }
}

@media (min-width: 992px) {

  h1.line:after,
  h2.line:after,
  h3.line:after,
  h4.line:after,
  h5.line:after,
  h6.line:after {
    left: -15px;
    top: 25%;
    -moz-transform: rotate(-45deg) translate(0, 0);
    -ms-transform: rotate(-45deg) translate(0, 0);
    -o-transform: rotate(-45deg) translate(0, 0);
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
  }
}

.border-bottom {
  border-bottom-color: rgb(242, 246, 250);
  border-bottom-width: 2px;
  border-bottom-style: solid;
  padding-bottom: 3px;
}


.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: filter .3s ease;
  transition: filter .3s ease;
  filter: brightness(0.65);
  /* ajusta el valor para más/menos oscuridad */
}

.img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.211);
  pointer-events: none;
}

.img-wrap:hover img {
  filter: brightness(0.8);
}

.display-md-center {
  display: none;
}

@media (min-width: 992px) {
  .display-md-center {
    display: block;
  }
}

.position-1 {
  z-index: 120 !important;
}

.position-2 {
  z-index: 100 !important;
}

.position-3 {
  z-index: 110 !important;
}

.vertical {
  letter-spacing: 0.6em;
  margin-bottom: 50px;
}

@media (max-width: 479px) {
  .vertical {
    font-size: 19px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .vertical {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .vertical {
    white-space: nowrap;
    margin-bottom: 0;
    -moz-transform: rotate(90deg) translate(51%, 20px);
    -ms-transform: rotate(90deg) translate(51%, 20px);
    -o-transform: rotate(90deg) translate(51%, 20px);
    -webkit-transform: rotate(90deg) translate(51%, 20px);
    transform: rotate(90deg) translate(51%, 20px);
  }
}

@media (min-width: 1270px) {
  .vertical {
    -moz-transform: rotate(90deg) translate(51%, 51px);
    -ms-transform: rotate(90deg) translate(51%, 51px);
    -o-transform: rotate(90deg) translate(51%, 51px);
    -webkit-transform: rotate(90deg) translate(51%, 51px);
    transform: rotate(90deg) translate(51%, 51px);
  }
}

.vertical.vertical-variant-2 {
  -moz-transform: rotate(90deg) translate(94%, 0);
  -ms-transform: rotate(90deg) translate(94%, 0);
  -o-transform: rotate(90deg) translate(94%, 0);
  -webkit-transform: rotate(90deg) translate(94%, 0);
  transform: rotate(90deg) translate(94%, 0);
}

@media (max-width: 991px) {
  .vertical.vertical-variant-2 {
    text-align: center;
    -moz-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    -o-transform: rotate(0deg) translate(0, 0);
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
  }
}

@media (min-width: 1200px) {
  .vertical.vertical-variant-2 {
    -moz-transform: rotate(90deg) translate(51%, 51px);
    -ms-transform: rotate(90deg) translate(51%, 51px);
    -o-transform: rotate(90deg) translate(51%, 51px);
    -webkit-transform: rotate(90deg) translate(51%, 51px);
    transform: rotate(90deg) translate(51%, 51px);
  }
}

@media (min-width: 480px) and (max-width: 991px) {
  .vertical.vertical-variant-2 {
    font-size: 24px;
  }
}

@media (max-width: 479px) {
  .vertical.vertical-variant-2 {
    font-size: 16px;
  }
}

.vertical.vertical-variant-3 {
  text-align: center;
  margin-bottom: 50px;
  -moz-transform: rotate(0deg) translate(0, 0);
  -ms-transform: rotate(0deg) translate(0, 0);
  -o-transform: rotate(0deg) translate(0, 0);
  -webkit-transform: rotate(0deg) translate(0, 0);
  transform: rotate(0deg) translate(0, 0);
}

@media (min-width: 480px) and (max-width: 991px) {
  .vertical.vertical-variant-3 {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .vertical.vertical-variant-3 {
    -moz-transform: rotate(90deg) translate(51%, 0px);
    -ms-transform: rotate(90deg) translate(51%, 0px);
    -o-transform: rotate(90deg) translate(51%, 0px);
    -webkit-transform: rotate(90deg) translate(51%, 0px);
    transform: rotate(90deg) translate(51%, 0px);
    text-align: left;
  }
}

@media (min-width: 1270px) {
  .vertical.vertical-variant-3 {
    -moz-transform: rotate(90deg) translate(51%, 51px);
    -ms-transform: rotate(90deg) translate(51%, 51px);
    -o-transform: rotate(90deg) translate(51%, 51px);
    -webkit-transform: rotate(90deg) translate(51%, 51px);
    transform: rotate(90deg) translate(51%, 51px);
  }
}

.vertical.vertical-variant-4 {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .vertical.vertical-variant-4 {
    -moz-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    -o-transform: rotate(0deg) translate(0, 0);
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .vertical.vertical-variant-4 {
    -moz-transform: rotate(90deg) translate(51%, 0px);
    -ms-transform: rotate(90deg) translate(51%, 0px);
    -o-transform: rotate(90deg) translate(51%, 0px);
    -webkit-transform: rotate(90deg) translate(51%, 0px);
    transform: rotate(90deg) translate(51%, 0px);
  }
}

@media (min-width: 1270px) {
  .vertical.vertical-variant-4 {
    -moz-transform: rotate(90deg) translate(51%, 51px);
    -ms-transform: rotate(90deg) translate(51%, 51px);
    -o-transform: rotate(90deg) translate(51%, 51px);
    -webkit-transform: rotate(90deg) translate(51%, 51px);
    transform: rotate(90deg) translate(51%, 51px);
  }
}

/*
* @subsection Backgrounds
*/
.bg-contrast {
  background: rgb(19, 38, 75);
}

.bg-default {
  background: rgb(242, 246, 250);
}

.bg-image-1 {
  background-image: linear-gradient(180deg, rgba(19, 38, 75, 0.65) 0%, rgba(15, 31, 61, 0.75) 50%, rgba(15, 31, 61, 0.85) 100%), url("/assets/page-1_img01.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 1770px auto;
  position: relative;
}

/*
* @section Components
*/
.border {
  display: inline-block;
  border: 2px solid rgb(242, 246, 250);
  width: 100%;
  z-index: 99;
  position: relative;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 1200px) {
  .border.border-skin-1 {
    width: 90%;
  }
}

.animation-closeIn {
  position: relative;
}

.animation-closeIn .wrap {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.animation-closeIn:hover {
  color: rgb(242, 246, 250);
}

.animation-closeIn:before,
.animation-closeIn:after,
.animation-closeIn .wrap:before,
.animation-closeIn .wrap:after {
  content: '';
  position: absolute;
  background: rgb(242, 246, 250);
}

.animation-closeIn:before,
.animation-closeIn:after {
  height: 0;
  width: 5px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.animation-closeIn:before {
  left: -2px;
  top: -2px;
}

.animation-closeIn:after {
  right: -2px;
  bottom: -2px;
}

.animation-closeIn .wrap:before,
.animation-closeIn .wrap:after {
  width: 0;
  height: 5px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.animation-closeIn .wrap:before {
  top: -2px;
  left: -2px;
}

.animation-closeIn .wrap:after {
  bottom: -2px;
  right: -2px;
}

.animation-closeIn:hover:after,
.animation-closeIn:hover:before {
  height: calc(100% + 4px);
}

.animation-closeIn:hover .wrap:before,
.animation-closeIn:hover .wrap:after {
  width: calc(100% + 4px);
}

@media (min-width: 1870px) {

  .animation-closeIn:hover:after,
  .animation-closeIn:hover:before {
    height: calc(100% + 54px);
  }

  .animation-closeIn:hover .wrap:before,
  .animation-closeIn:hover .wrap:after {
    width: calc(100% + 54px);
  }
}

.lt-ie11 .animation-closeIn:hover:after,
.lt-ie11 .animation-closeIn:hover:before {
  height: 0%;
}

.lt-ie11 .animation-closeIn:hover .wrap:before,
.lt-ie11 .animation-closeIn:hover .wrap:after {
  width: 0%;
}

.lt-ie11 .animation-closeIn {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lt-ie11 .animation-closeIn:hover {
  border-color: rgb(242, 246, 250);
}

/*
* @subsection Brand
*/
.brand {
  display: inline-block;
  text-transform: uppercase;
  font-family: "Shinko Sans", sans-serif;
}

.brand:before,
.brand:after {
  display: table;
  content: "";
  line-height: 0;
}

.brand:after {
  clear: both;
}

.brand a:hover {
  text-decoration: inherit;
  color: inherit;
}

.brand__name {
  font-size: 50px;
  line-height: 1;
}

@media (min-width: 992px) {
  .brand__name {
    float: left;
  }
}

.brand__slogan {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  margin-left: 12px;
  margin-top: 3px;
  display: inline-block;
}

@media (min-width: 992px) {
  .brand__slogan {
    float: left;
  }
}

/*
* @subsection Icons
*/
.icon {
  display: inline-block;
  text-align: center;
  line-height: 1;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.icon-round {
  display: inline-block;
  border-radius: 50%;
}

.icon-xs {
  font-size: 12px;
  width: 23px;
  height: 23px;
  line-height: 23px;
}

.icon-sm {
  font-size: 17px;
}

.icon-md {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.icon-xl {
  font-size: 60px;
  width: 126px;
  height: 126px;
  line-height: 118px;
}

.icon-lg {
  font-size: 80px;
}

.icon-contrast {
  color: rgb(19, 38, 75);
}

.fa-twitter:hover {
  background: rgb(35, 55, 100);
}

.fa-google-plus:hover {
  background: rgb(35, 55, 100);
}

.fa-facebook:hover {
  background: rgb(35, 55, 100);
}

.fa-skype:hover {
  background: rgb(35, 55, 100);
}

.fa-pinterest:hover,
.fa-pinterest-square:hover {
  background: rgb(35, 55, 100);
}

/*
* @subsection Buttons
*/
.btn {
  font-family: "Shinko Sans", sans-serif;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  border: 1px solid rgb(101, 135, 200);
  border-bottom-width: 5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: color 0.5s ease-out;
  -o-transition: color 0.5s ease-out;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

.btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(101, 136, 200, 0.5);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -moz-transition: transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out;
  -webkit-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
}

.btn:hover {
  text-decoration: none;
}

.btn:hover:before {
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn-default {
  color: rgb(242, 246, 250);
}

.btn-default:hover {
  color: rgb(0, 0, 0);
}

.btn-sm {
  font-size: 16px;
  line-height: 34px;
}

.btn-md {
  font-size: 14px;
  line-height: 42px;
  padding: 6px 49px;
}

.btn-lg {
  font-size: 14px;
  line-height: 42px;
  padding: 6px 71px;
}

/*
* @subsection Box
*/
/*==================      Box      ======================*/
.box .box__middle,
.box-xs .box__middle,
.box-sm .box__middle,
.box-md .box__middle,
.box-lg .box__middle {
  vertical-align: middle;
}

.box .box__bottom,
.box-xs .box__bottom,
.box-sm .box__bottom,
.box-md .box__bottom,
.box-lg .box__bottom {
  vertical-align: bottom;
}

.box .box_left img,
.box .box_right img {
  max-width: none;
}

.box .box_left,
.box .box_right,
.box .box_cnt {
  padding: 0;
  display: table-cell;
  vertical-align: top;
}

.box .box_left {
  padding-right: 15px;
}

@media (min-width: 480px) {

  .box-xs .box_left img,
  .box-xs .box_right img {
    max-width: none;
  }

  .box-xs .box_left,
  .box-xs .box_right,
  .box-xs .box_cnt {
    display: table-cell;
    vertical-align: top;
    text-align: left;
  }

  .box-xs .box_left {
    padding-right: 22px;
    margin-bottom: 0;
  }

  .box-xs .box_right {
    padding-left: 20px;
  }

  .box-xs-clear .box_left img,
  .box-xs-clear .box_right img {
    max-width: 100%;
  }

  .box-xs-clear .box_left,
  .box-xs-clear .box_right,
  .box-xs-clear .box_cnt {
    padding: 0;
    display: block;
    vertical-align: top;
  }
}

@media (min-width: 768px) {

  .box-sm .box_left img,
  .box-sm .box_right img {
    max-width: none;
  }

  .box-sm {
    text-align: left;
  }

  .box-sm .box_left,
  .box-sm .box_right,
  .box-sm .box_cnt {
    display: table-cell;
    vertical-align: top;
  }

  .box-sm .box_left {
    padding-right: 13px;
    margin-bottom: 0;
  }

  .box-sm .box_right {
    padding-left: 20px;
  }

  .box-sm-clear .box_left img,
  .box-sm-clear .box_right img {
    max-width: 100%;
  }

  .box-sm-clear .box_left,
  .box-sm-clear .box_right,
  .box-sm-clear .box_cnt {
    padding: 0;
    display: block;
    vertical-align: top;
  }
}

@media (min-width: 992px) {

  .box-md .box_left img,
  .box-md .box_right img {
    max-width: none;
  }

  .box-md .box_left,
  .box-md .box_right,
  .box-md .box_cnt {
    display: table-cell;
    vertical-align: top;
    line-height: 22px;
  }

  .box-md .box_left {
    padding-right: 30px;
    margin-bottom: 0;
  }

  .box-md .box_right {
    padding-left: 20px;
  }

  .box-md-clear .box_left img,
  .box-md-clear .box_right img {
    max-width: 100%;
  }

  .box-md-clear .box_left,
  .box-md-clear .box_right,
  .box-md-clear .box_cnt {
    padding: 0;
    display: block;
    vertical-align: top;
  }
}

@media (min-width: 1200px) {

  .box-lg .box_left img,
  .box-lg .box_right img {
    max-width: none;
  }

  .box-lg .box_left,
  .box-lg .box_right,
  .box-lg .box_cnt {
    display: table-cell;
    vertical-align: top;
  }

  .box-lg .box_left {
    padding-right: 13px;
  }

  .box-lg .box_right {
    padding-left: 20px;
  }

  .box-lg-clear .box_left img,
  .box-lg-clear .box_right img {
    max-width: 100%;
  }

  .box-lg-clear .box_left,
  .box-lg-clear .box_right,
  .box-lg-clear .box_cnt {
    padding: 0;
    display: block;
    vertical-align: top;
  }
}

/*
* @subsection List
*/
.list {
  position: relative;
  top: -50px;
}

.list:before,
.list:after {
  display: table;
  content: "";
  line-height: 0;
}

.list:after {
  clear: both;
}

@media (min-width: 1800px) {
  .list {
    margin-top: 0;
    top: 0;
  }
}

.list [class^="col-xl"] {
  margin-top: 50px;
}

@media (min-width: 1800px) {
  .list [class^="col-xl"] {
    margin-top: 0;
  }
}

.list li {
  position: relative;
}

@media (min-width: 1200px) {

  .list li h1,
  .list li h2,
  .list li h3,
  .list li h4,
  .list li h5,
  .list li h6 {
    white-space: nowrap;
  }
}

.list li *+p {
  margin-top: 32px;
}

.list li p+p {
  margin-top: 0;
}

/*
* @subsection Inline list
*/
.inline-list>li {
  display: inline-block;
}

.inline-list *+li {
  margin-left: 7px;
}

/*
* @subsection Marked list
*/
.marked-list {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  padding: 24px 0px;
  color: rgb(19, 38, 75);
}

.marked-list li {
  position: relative;
  font-style: italic;
  padding-left: 32px;
}

.marked-list li a:hover {
  text-decoration: none;
}

.marked-list li:before {
  font-style: normal;
  position: absolute;
  bottom: 1px;
  left: 11px;
  font-family: "FontAwesome";
  font-size: 14px;
  color: inherit;
  content: "";
}

.marked-list li+li {
  margin-top: 15px;
}

/*
* @subsection Thumb
*/
.thumb {
  position: relative;
  overflow: hidden;
}

.thumb img {
  height: auto;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  width: 100%;
}

.thumb_overlay {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(15, 16, 21, 0.3);
  opacity: 0;
}

.lt-ie9 .thumb_overlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.thumb_overlay:before {
  -moz-transition: 0.34s;
  -o-transition: 0.34s;
  -webkit-transition: 0.34s;
  transition: 0.34s;
  content: "";
  font-family: "FontAwesome";
  font-size: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgb(242, 246, 250);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.thumb:hover .thumb_overlay {
  opacity: 1;
}

.lt-ie9 .thumb:hover .thumb_overlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=100);
}

/*
* @subsection Img
*/
.img {
  position: relative;
  border-right: 1px;
  border-bottom: 1px;
  border-style: solid;
  border-color: rgb(19, 38, 75);
  overflow: hidden;
}

.img img {
  min-width: 100%;
  max-width: none;
}

.img .img__caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.img .img__caption:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.img .img__caption .img__caption-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.img .img__caption .img__caption-wrap .btn-md {
  min-width: 240px;
}

.img:hover .img__caption {
  opacity: 1;
}

.img:hover .img__caption:after {
  background-color: rgba(30, 46, 77, 0.8);
}

.mobile .img .img__caption,
.tablet .img .img__caption {
  opacity: 1;
}

.mobile .img .img__caption:after,
.tablet .img .img__caption:after {
  background-color: rgba(30, 46, 77, 0.5);
}

/*
* @subsection Contact info
*/
.contact-info dt,
.contact-info dd {
  display: inline-block;
}

.contact-info dl+dl {
  margin-top: 0px;
}

/*
* @subsection Terms list
*/
.terms-list *+dt {
  margin-top: 128px;
}

.terms-list *+dd {
  margin-top: 47px;
}

/**
* @subsection Superfish
*
* @description Superfish is an enhanced Suckerfish-style menu jQuery plugin.
*
* @author     Joel Birch
* @link https://users.tpg.com.au/j_birch/plugins/superfish/
* @license MIT license - https://opensource.org/licenses/MIT
*/
.sf-menu {
  display: inline-block;
}

.sf-menu:before,
.sf-menu:after {
  display: table;
  content: "";
  line-height: 0;
}

.sf-menu:after {
  clear: both;
}

.sf-menu>li {
  position: relative;
  float: left;
  font-size: 14px;
}

.sf-menu>li+li {
  margin-left: 40px;
}

.sf-menu a {
  display: block;
  letter-spacing: 0.06em;
}

.sf-menu a:hover {
  text-decoration: none;
}

.sf-menu>li>a {
  position: relative;
  color: rgb(242, 246, 250);
  font-family: "Shinko Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  background: none;
  z-index: 1;
  padding-top: 23px;
  padding-bottom: 22px;
}

@media (min-width: 992px) {
  .sf-menu>li>a {
    padding-top: 63px;
    padding-bottom: 62px;
  }
}

.sf-menu>li>a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  right: 50%;
  background-color: rgb(242, 246, 250);
  bottom: 0px;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.sf-menu>li.sfHover>a:before,
.sf-menu>li>a:hover:before {
  left: 0px;
  right: 0px;
}

.sf-menu>li.active>a:before {
  left: 0px;
  right: 0px;
}

.sf-menu ul {
  display: none;
  position: absolute;
  top: 140px;
  left: -55px;
  padding-left: 46px;
  padding-right: 80px;
  padding-bottom: 32px;
  padding-top: 32px;
  text-transform: uppercase;
  background-color: rgb(19, 38, 75);
  z-index: 2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 999;
}

@media (max-width: 1000px) {
  .sf-menu ul {
    top: 55px;
  }
}

.sf-menu ul>li {
  position: relative;
  padding: 4px 10px;
}

.sf-menu ul>li>a {
  text-align: left;
  font-size: 13px;
  color: #797c88;
}

.sf-menu ul>li.sfHover>a,
.sf-menu ul>li>a:hover {
  color: rgb(242, 246, 250);
}

.sf-menu ul ul {
  position: absolute;
  top: -10px;
  left: 101%;
  width: 119px;
  margin-top: 0;
  padding: 10px 0;
  background: rgba(15, 16, 21, 0.6);
  z-index: 4;
}

.sf-menu ul ul>li {
  padding: 3px 10px;
}

.sf-menu>li>.sf-with-ul {
  position: relative;
}

@media (max-width: 767px) {
  .sf-menu {
    display: none;
  }
}

/**
* @subsection   RD Mobile Menu
*
* @description  mobile navbar
*
* @author       Evgeniy Gusarov (Diversant)
* @link         https://cms.devoffice.com/diversant/tg-navbar/
*/
.tg-mobilemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999999;
  text-align: left;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.tg-mobilemenu.active {
  right: 0;
}

.tg-mobilemenu_ul {
  position: fixed;
  top: -56px;
  left: 0;
  bottom: -56px;
  width: 240px;
  padding: 132px 0 76px;
  color: #A5BFD2;
  background: rgb(19, 38, 75);
  font-size: 14px;
  line-height: 20px;
  overflow: auto;
  -webkit-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  -webkit-transform: translateX(-240px);
  transform: translateX(-240px);
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -moz-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.tg-mobilemenu.active .tg-mobilemenu_ul {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.tg-mobilemenu_ul li.active a {
  background: #191a23;
  color: rgb(242, 246, 250);
}

.tg-mobilemenu_ul a {
  display: block;
  padding: 14px 25px 16px;
  text-transform: capitalize;
}

.tg-mobilemenu_ul a:hover {
  background: #191a23;
  color: #A5BFD2;
  text-decoration: none;
}

.tg-mobilemenu_ul a .tg-submenu-toggle {
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -17.5px;
  width: 32px;
  height: 32px;
  font: 400 10px "FontAwesome";
  line-height: 32px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}

.tg-mobilemenu_ul a .tg-submenu-toggle:after {
  content: '\f078';
}

.tg-mobilemenu_ul a .tg-submenu-toggle:hover {
  background: rgb(19, 38, 75);
  color: #A5BFD2;
}

.tg-mobilemenu_ul a.tg-with-ul {
  position: relative;
}

.tg-mobilemenu_ul a.tg-with-ul.active .tg-submenu-toggle {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.tg-mobilemenu_ul ul a {
  padding-left: 40px;
}

.tg-mobilemenu_ul ul ul a {
  padding-left: 60px;
}

.tg-mobilemenu_ul:after {
  content: '';
  display: block;
  height: 20px;
}

.tg-mobilepanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgb(19, 38, 75);
  color: #FFF;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 99999991;
}

.tg-mobilepanel_title {
  position: fixed;
  top: 4px;
  left: 56px;
  right: 56px;
  color: #FFF;
  font-size: 24px;
  line-height: 48px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tg-mobilepanel_toggle {
  position: fixed;
  top: 4px;
  left: 8px;
  width: 48px;
  height: 48px;
}

.tg-mobilepanel_toggle span {
  position: relative;
  display: block;
  margin: auto;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tg-mobilepanel_toggle span:after,
.tg-mobilepanel_toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tg-mobilepanel_toggle span:after {
  top: 8px;
}

.tg-mobilepanel_toggle span:after,
.tg-mobilepanel_toggle span:before,
.tg-mobilepanel_toggle span {
  width: 24px;
  height: 4px;
  background-color: #FFF;
  backface-visibility: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.tg-mobilepanel_toggle span {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.tg-mobilepanel_toggle span:before,
.tg-mobilepanel_toggle span:after {
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
}

.tg-mobilepanel_toggle.active span {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.tg-mobilepanel_toggle.active span:before,
.tg-mobilepanel_toggle.active span:after {
  top: 0;
  width: 15px;
}

.tg-mobilepanel_toggle.active span:before {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}

.tg-mobilepanel_toggle.active span:after {
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}

@media (max-width: 767px) {
  body {
    padding-top: 56px;
  }

  .tg-mobilemenu,
  .tg-mobilepanel {
    display: block;
  }
}

@media (max-width: 359px) {
  .tg-mobilepanel_title {
    font-size: 18px;
  }
}

/*
* @subsection   RD Mail Form
*
* @description  Describes style declarations for RD Mail Form extension
*
* @author       Evgeniy Gusarov
* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a
* @version      1.1.2
*/
.tg-mailform {
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.tg-mailform fieldset {
  border: none;
}

.tg-mailform fieldset>.row+.row {
  margin-top: 30px;
}

.tg-mailform label {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.tg-mailform label input,
.tg-mailform label select {
  height: 60px;
}

.tg-mailform label input,
.tg-mailform label select,
.tg-mailform label textarea {
  display: block;
  width: 100%;
  margin: 0;
  font-family: "Shinko Sans", sans-serif;
  -webkit-appearance: none;
  font-size: 14px;
  padding: 12px 28px;
  line-height: 34px;
  color: rgb(242, 246, 250);
  background: none;
  border: 1px solid rgb(242, 246, 250);
  border-radius: 0;
}

.tg-mailform label input:-moz-placeholder,
.tg-mailform label select:-moz-placeholder,
.tg-mailform label textarea:-moz-placeholder {
  color: rgb(242, 246, 250);
  opacity: 1;
}

.tg-mailform label input::-webkit-input-placeholder,
.tg-mailform label select::-webkit-input-placeholder,
.tg-mailform label textarea::-webkit-input-placeholder {
  color: rgb(242, 246, 250);
  opacity: 1;
}

.tg-mailform label input::-moz-placeholder,
.tg-mailform label select::-moz-placeholder,
.tg-mailform label textarea::-moz-placeholder {
  color: rgb(242, 246, 250);
  opacity: 1;
}

.tg-mailform label input:-ms-input-placeholder,
.tg-mailform label select:-ms-input-placeholder,
.tg-mailform label textarea:-ms-input-placeholder {
  color: rgb(242, 246, 250);
  opacity: 1;
}

.tg-mailform label textarea {
  resize: vertical;
  overflow: auto;
  min-height: 60px;
  height: 263px;
  max-height: 394.5px;
}

@media (min-width: 992px) {
  .tg-mailform label {
    margin-top: 30px;
  }
}

/*
* MF Controls
*/
.mfControls {
  margin-top: 30px;
}

.mfControls button {
  padding-left: 104px;
  padding-right: 104px;
}

@media (max-width: 991px) {
  .mfControls {
    text-align: center;
  }
}

@-ms-keyframes fout {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }

  100% {
    -moz-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

@-o-keyframes fout {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }

  100% {
    -moz-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

@-webkit-keyframes fout {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }

  100% {
    -moz-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

@-moz-keyframes fout {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }

  100% {
    -moz-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

@keyframes fout {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }

  100% {
    -moz-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    -webkit-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
  }
}

/*
* MF Placeholder
*/
.mfPlaceHolder {
  cursor: text;
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 34px;
  color: rgb(242, 246, 250);
  opacity: 1;
  font-family: "Shinko Sans";
  transition: .2s all ease;
}

*:-webkit-autofill~.mfPlaceHolder {
  opacity: 0;
  -moz-transform: translateY(-80%);
  -ms-transform: translateY(-80%);
  -o-transform: translateY(-80%);
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
}

.mfPlaceHolder.state-1 {
  opacity: 0;
  -moz-transform: translateY(-80%);
  -ms-transform: translateY(-80%);
  -o-transform: translateY(-80%);
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
}

/*
* MF Validation
*/
.mfValidation {
  position: absolute;
  top: 0;
  padding-left: 28px;
  right: 7px;
  color: #cc3838;
  font-weight: 400;
  font-size: 9px;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 997;
  transition: .3s all ease;
  cursor: pointer;
}

.mfValidation:hover {
  -moz-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  -o-transform: translateX(-3px);
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}

.mfValidation.show {
  opacity: 1;
  visibility: visible;
}

.mfValidation.hide,
.mfValidation.valid {
  opacity: 0;
  visibility: hidden;
}

/*
* MF Submit
*/
.mfInfo,
.mfProgress {
  position: fixed;
  left: 15px;
  bottom: 15px;
  padding: 17px;
  height: 54px;
  color: #FFF;
  background: #111;
  border-radius: 5px;
  line-height: 20px;
  font-size: 13px;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(83px);
  -ms-transform: translateY(83px);
  -o-transform: translateY(83px);
  -webkit-transform: translateY(83px);
  transform: translateY(83px);
  z-index: 999;
}

.mfInfo .loader,
.mfProgress .loader {
  display: inline-block;
  position: relative;
  margin-right: 16px;
}

.mfInfo .loader,
.mfInfo .loader:before,
.mfInfo .loader:after,
.mfProgress .loader,
.mfProgress .loader:before,
.mfProgress .loader:after {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.mfInfo .loader:before,
.mfInfo .loader:after,
.mfProgress .loader:before,
.mfProgress .loader:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.mfInfo .loader:before,
.mfProgress .loader:before {
  -webkit-animation: mfLoader 1.1s infinite linear;
  -moz-animation: mfLoader 1.1s infinite linear;
  -ms-animation: mfLoader 1.1s infinite linear;
  -o-animation: mfLoader 1.1s infinite linear;
  animation: mfLoader 1.1s infinite linear;
  border: 2px solid #FFF;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
  transition: .3s all ease;
}

.mfInfo .loader:after,
.mfProgress .loader:after {
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  font-family: "FontAwesome";
  font-size: 20px;
  transition: .6s all ease;
  -moz-transform: rotate(-90deg) scale(0);
  -ms-transform: rotate(-90deg) scale(0);
  -o-transform: rotate(-90deg) scale(0);
  -webkit-transform: rotate(-90deg) scale(0);
  transform: rotate(-90deg) scale(0);
}

.mfInfo.fail,
.mfProgress.fail {
  background: #F34234;
}

.mfInfo.fail .loader:after,
.mfProgress.fail .loader:after {
  content: '\f00d';
}

.mfInfo.success,
.mfProgress.success {
  background: #2E7D32;
}

.mfInfo.success .loader:after,
.mfProgress.success .loader:after {
  content: '\f00c';
}

.mfInfo.fail .loader:before,
.mfInfo.success .loader:before,
.mfProgress.fail .loader:before,
.mfProgress.success .loader:before {
  opacity: 0;
  visibility: hidden;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.mfInfo.fail .loader:after,
.mfInfo.success .loader:after,
.mfProgress.fail .loader:after,
.mfProgress.success .loader:after {
  opacity: 1;
  visibility: visible;
  -moz-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  -o-transform: rotate(0deg) scale(1);
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
}

.mfInfo.fail,
.mfInfo.success,
.mfInfo.sending,
.mfProgress.fail,
.mfProgress.success,
.mfProgress.sending {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 768px) {

  .mfInfo,
  .mfProgress {
    bottom: 24px;
    left: 50%;
    -moz-transform: translate(-50%, 83px);
    -ms-transform: translate(-50%, 83px);
    -o-transform: translate(-50%, 83px);
    -webkit-transform: translate(-50%, 83px);
    transform: translate(-50%, 83px);
  }

  .mfInfo.fail,
  .mfInfo.success,
  .mfInfo.sending,
  .mfProgress.fail,
  .mfProgress.success,
  .mfProgress.sending {
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@-ms-keyframes mfLoader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes mfLoader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes mfLoader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes mfLoader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes mfLoader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*
* MF Icon
*/
.mfInput[data-add-icon] input,
.mfInput[data-add-icon] .mfPlaceHolder {
  padding-right: 44px;
}

.mfIcon {
  position: absolute;
  text-align: center;
  top: 18px;
  right: 10px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: rgb(19, 38, 75);
  font: 400 20px/24px "FontAwesome";
}

.mfIcon span:before,
.mfIcon span:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -12px;
  margin-left: -10px;
  transition: .4s all ease-in-out;
}

.mfIcon span:before {
  content: "";
}

.mfIcon span:after {
  content: "";
  -moz-transform: scale(0) rotate(-180deg);
  -ms-transform: scale(0) rotate(-180deg);
  -o-transform: scale(0) rotate(-180deg);
  -webkit-transform: scale(0) rotate(-180deg);
  transform: scale(0) rotate(-180deg);
  -webkit-animation: zoom-out 0.4s ease-in-out 1 forwards;
  -moz-animation: zoom-out 0.4s ease-in-out 1 forwards;
  -ms-animation: zoom-out 0.4s ease-in-out 1 forwards;
  -o-animation: zoom-out 0.4s ease-in-out 1 forwards;
  animation: zoom-out 0.4s ease-in-out 1 forwards;
}

.mfIcon.state-1:after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: rgb(19, 38, 75);
  -webkit-animation: line 1.2s 0.4s infinite;
  -moz-animation: line 1.2s 0.4s infinite;
  -ms-animation: line 1.2s 0.4s infinite;
  -o-animation: line 1.2s 0.4s infinite;
  animation: line 1.2s 0.4s infinite;
}

.mfIcon.state-1 span:before {
  -moz-transform: scale(0) rotate(90deg);
  -ms-transform: scale(0) rotate(90deg);
  -o-transform: scale(0) rotate(90deg);
  -webkit-transform: scale(0) rotate(90deg);
  transform: scale(0) rotate(90deg);
}

.mfIcon.state-1 span:after {
  -moz-transform: scale(1) rotate(-35deg);
  -ms-transform: scale(1) rotate(-35deg);
  -o-transform: scale(1) rotate(-35deg);
  -webkit-transform: scale(1) rotate(-35deg);
  transform: scale(1) rotate(-35deg);
  -webkit-animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
  -moz-animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
  -ms-animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
  -o-animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
  animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
}

.mfIcon.state-2 span:before {
  content: "";
  -moz-transform: scale(0) rotate(90deg);
  -ms-transform: scale(0) rotate(90deg);
  -o-transform: scale(0) rotate(90deg);
  -webkit-transform: scale(0) rotate(90deg);
  transform: scale(0) rotate(90deg);
}

.mfIcon.state-2 span:after {
  -moz-transform: scale(1) rotate(-210deg);
  -ms-transform: scale(1) rotate(-210deg);
  -o-transform: scale(1) rotate(-210deg);
  -webkit-transform: scale(1) rotate(-210deg);
  transform: scale(1) rotate(-210deg);
  -webkit-animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
  -moz-animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
  -ms-animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
  -o-animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
  animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
}

@-ms-keyframes anim-1 {
  0% {
    left: 50%;
  }

  100% {
    left: 90%;
  }
}

@-o-keyframes anim-1 {
  0% {
    left: 50%;
  }

  100% {
    left: 90%;
  }
}

@-webkit-keyframes anim-1 {
  0% {
    left: 50%;
  }

  100% {
    left: 90%;
  }
}

@-moz-keyframes anim-1 {
  0% {
    left: 50%;
  }

  100% {
    left: 90%;
  }
}

@keyframes anim-1 {
  0% {
    left: 50%;
  }

  100% {
    left: 90%;
  }
}

@-ms-keyframes anim-2 {
  0% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  25% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  75% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@-o-keyframes anim-2 {
  0% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  25% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  75% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@-webkit-keyframes anim-2 {
  0% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  25% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  75% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@-moz-keyframes anim-2 {
  0% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  25% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  75% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@keyframes anim-2 {
  0% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  25% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  75% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@-ms-keyframes anim-3 {
  0% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }

  50% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }

  100% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@-o-keyframes anim-3 {
  0% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }

  50% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }

  100% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@-webkit-keyframes anim-3 {
  0% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }

  50% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }

  100% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@-moz-keyframes anim-3 {
  0% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }

  50% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }

  100% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@keyframes anim-3 {
  0% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }

  50% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 90%;
  }

  100% {
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    left: 50%;
  }
}

@-ms-keyframes zoom-out {
  0% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }

  100% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@-o-keyframes zoom-out {
  0% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }

  100% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@-webkit-keyframes zoom-out {
  0% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }

  100% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@-moz-keyframes zoom-out {
  0% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }

  100% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@keyframes zoom-out {
  0% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }

  100% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }
}

@-ms-keyframes zoom-in-state-1 {
  0% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  100% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@-o-keyframes zoom-in-state-1 {
  0% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  100% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@-webkit-keyframes zoom-in-state-1 {
  0% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  100% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@-moz-keyframes zoom-in-state-1 {
  0% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  100% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@keyframes zoom-in-state-1 {
  0% {
    -moz-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  100% {
    -moz-transform: scale(1) rotate(-35deg);
    -ms-transform: scale(1) rotate(-35deg);
    -o-transform: scale(1) rotate(-35deg);
    -webkit-transform: scale(1) rotate(-35deg);
    transform: scale(1) rotate(-35deg);
  }
}

@-ms-keyframes zoom-in-state-2 {
  0% {
    -moz-transform: scale(0) rotate(-35deg);
    -ms-transform: scale(0) rotate(-35deg);
    -o-transform: scale(0) rotate(-35deg);
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }

  100% {
    left: 50%;
    -moz-transform: scale(1) rotate(150deg);
    -ms-transform: scale(1) rotate(150deg);
    -o-transform: scale(1) rotate(150deg);
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@-o-keyframes zoom-in-state-2 {
  0% {
    -moz-transform: scale(0) rotate(-35deg);
    -ms-transform: scale(0) rotate(-35deg);
    -o-transform: scale(0) rotate(-35deg);
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }

  100% {
    left: 50%;
    -moz-transform: scale(1) rotate(150deg);
    -ms-transform: scale(1) rotate(150deg);
    -o-transform: scale(1) rotate(150deg);
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@-webkit-keyframes zoom-in-state-2 {
  0% {
    -moz-transform: scale(0) rotate(-35deg);
    -ms-transform: scale(0) rotate(-35deg);
    -o-transform: scale(0) rotate(-35deg);
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }

  100% {
    left: 50%;
    -moz-transform: scale(1) rotate(150deg);
    -ms-transform: scale(1) rotate(150deg);
    -o-transform: scale(1) rotate(150deg);
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@-moz-keyframes zoom-in-state-2 {
  0% {
    -moz-transform: scale(0) rotate(-35deg);
    -ms-transform: scale(0) rotate(-35deg);
    -o-transform: scale(0) rotate(-35deg);
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }

  100% {
    left: 50%;
    -moz-transform: scale(1) rotate(150deg);
    -ms-transform: scale(1) rotate(150deg);
    -o-transform: scale(1) rotate(150deg);
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@keyframes zoom-in-state-2 {
  0% {
    -moz-transform: scale(0) rotate(-35deg);
    -ms-transform: scale(0) rotate(-35deg);
    -o-transform: scale(0) rotate(-35deg);
    -webkit-transform: scale(0) rotate(-35deg);
    transform: scale(0) rotate(-35deg);
  }

  100% {
    left: 50%;
    -moz-transform: scale(1) rotate(150deg);
    -ms-transform: scale(1) rotate(150deg);
    -o-transform: scale(1) rotate(150deg);
    -webkit-transform: scale(1) rotate(150deg);
    transform: scale(1) rotate(150deg);
  }
}

@-ms-keyframes line {
  0% {
    left: 40%;
  }

  100% {
    left: 40%;
    width: 40%;
  }
}

@-o-keyframes line {
  0% {
    left: 40%;
  }

  100% {
    left: 40%;
    width: 40%;
  }
}

@-webkit-keyframes line {
  0% {
    left: 40%;
  }

  100% {
    left: 40%;
    width: 40%;
  }
}

@-moz-keyframes line {
  0% {
    left: 40%;
  }

  100% {
    left: 40%;
    width: 40%;
  }
}

@keyframes line {
  0% {
    left: 40%;
  }

  100% {
    left: 40%;
    width: 40%;
  }
}

.mfInput input[name='phone']~.mfIcon span:before,
.mfInput select[name='phone']~.mfIcon span:before,
.mfInput textarea[name='phone']~.mfIcon span:before {
  content: "";
}

.mfInput input[name='email']~.mfIcon span:before,
.mfInput select[name='email']~.mfIcon span:before,
.mfInput textarea[name='email']~.mfIcon span:before {
  content: "";
}

.mfInput input[name='name']~.mfIcon span:before,
.mfInput select[name='name']~.mfIcon span:before,
.mfInput textarea[name='name']~.mfIcon span:before {
  content: "";
}

.mfInput input[name='date']~.mfIcon span:before,
.mfInput select[name='date']~.mfIcon span:before,
.mfInput textarea[name='date']~.mfIcon span:before {
  content: "";
}

.mfInput input[name='guests']~.mfIcon span:before,
.mfInput select[name='guests']~.mfIcon span:before,
.mfInput textarea[name='guests']~.mfIcon span:before {
  content: "";
}

.mfInput input[name='message']~.mfIcon,
.mfInput select[name='message']~.mfIcon,
.mfInput textarea[name='message']~.mfIcon {
  display: none;
}

.mfInput input:-webkit-autofill~.mfIcon span:before,
.mfInput textarea:-webkit-autofill~.mfIcon span:before {
  color: #2D2D2D;
}

/*
* MF Select
*/
.mfSelect {
  position: relative;
}

.mfSelect .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 15px;
  max-height: 300px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #888;
  transition: .3s all ease-in-out;
  outline: none;
  -webkit-appearance: none;
  font-weight: inherit;
  line-height: 34px;
  border: 1px solid rgb(242, 246, 250);
  background: rgb(19, 38, 75);
  color: rgb(242, 246, 250);
  border-radius: 0;
  z-index: 1;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.mfSelect .dropdown .option {
  position: relative;
  z-index: 1;
  text-transform: none;
  cursor: pointer;
  padding: 10px 15px;
  overflow: hidden;
  transition: .4s all ease-in-out;
  transition-delay: .2s;
  font-size: 16px;
  line-height: 30px;
}

.mfSelect .dropdown .option.selected {
  background: #040506;
  color: rgb(242, 246, 250);
}

.mfSelect .dropdown .option:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgb(242, 246, 250);
  opacity: 0;
  z-index: -1;
  transition: .4s all ease-in-out;
  -moz-transform: translate(-20%, -50%);
  -ms-transform: translate(-20%, -50%);
  -o-transform: translate(-20%, -50%);
  -webkit-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
}

.mfSelect .dropdown .option:before {
  content: '\f00c';
  position: absolute;
  display: inline-block;
  left: 15px;
  color: rgb(242, 246, 250);
  font: 400 20px "FontAwesome";
  line-height: inherit;
  transition: .4s all ease-in-out;
  -moz-transform: scale(0) rotate(-60deg);
  -ms-transform: scale(0) rotate(-60deg);
  -o-transform: scale(0) rotate(-60deg);
  -webkit-transform: scale(0) rotate(-60deg);
  transform: scale(0) rotate(-60deg);
}

.mfSelect .dropdown .option:hover {
  color: rgb(242, 246, 250);
  padding-left: 40px;
  transition-delay: 0s;
}

.mfSelect .dropdown .option:hover:before {
  transition-delay: .15s;
  -moz-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  -o-transform: scale(1) rotate(0deg);
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.mfSelect .dropdown .option:hover:after {
  width: 500px;
  height: 500px;
  opacity: 1;
}

.mfSelect .dropdown:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 8px 7px;
  border-color: transparent transparent #eee transparent;
}

.mfSelect .dropdown:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #FFF transparent;
}

.mfSelect .value {
  cursor: pointer;
  transition: .4s all ease-in-out;
  font-size: 14px;
  padding: 12px 28px;
  line-height: 34px;
  color: rgb(242, 246, 250);
  background: none;
  border: 1px solid rgb(242, 246, 250);
  border-radius: 0;
}

.mfSelect .value:before,
.mfSelect .value:after {
  position: absolute;
  right: 12px;
  top: 18px;
  width: 24px;
  height: 24px;
  font: 400 20px "FontAwesome";
  line-height: 24px;
  color: rgb(242, 246, 250);
  text-align: center;
  transition: .4s all ease;
}

.mfSelect .value:before {
  content: '\f0c9';
  -moz-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  -o-transform: rotate(0deg) scale(1);
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
}

.mfSelect .value:after {
  content: '\f107';
  font-size: 24px;
  -moz-transform: rotate(-180deg) scale(0);
  -ms-transform: rotate(-180deg) scale(0);
  -o-transform: rotate(-180deg) scale(0);
  -webkit-transform: rotate(-180deg) scale(0);
  transform: rotate(-180deg) scale(0);
}

.mfSelect.show .dropdown {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mfSelect.show .value {
  background: rgb(19, 38, 75);
  color: rgb(242, 246, 250);
}

.mfSelect.show .value:before,
.mfSelect.show .value:after {
  color: rgb(242, 246, 250);
}

.mfSelect.show .value:before {
  -moz-transform: rotate(90deg) scale(0);
  -ms-transform: rotate(90deg) scale(0);
  -o-transform: rotate(90deg) scale(0);
  -webkit-transform: rotate(90deg) scale(0);
  transform: rotate(90deg) scale(0);
}

.mfSelect.show .value:after {
  -moz-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  -o-transform: rotate(0deg) scale(1);
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
}

/*
* MF Datepicker
*/
.mfDatePicker {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 15px;
  padding: 10px 15px;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: .3s all ease-in-out;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: rgb(19, 38, 75);
  color: rgb(19, 38, 75);
  border-radius: 5px;
  border: 1px solid rgb(19, 38, 75);
}

.mfDatePicker:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent rgb(19, 38, 75) transparent;
}

.mfDatePicker table {
  text-align: center;
  border-collapse: separate;
  border-spacing: 3px;
  font-size: 12px;
}

.mfDatePicker table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.mfDatePicker table td {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: .3s all ease;
  border-radius: 50%;
}

.mfDatePicker table td:hover {
  color: rgb(242, 246, 250);
  background: rgb(19, 38, 75);
}

.mfDatePicker table td.dp-offset {
  color: #c6bbba;
}

.mfDatePicker table td.dp-today {
  color: rgb(19, 38, 75);
  background: rgb(242, 246, 250);
}

.mfDatePicker table td.dp-selected {
  color: rgb(242, 246, 250);
  background: rgb(19, 38, 75);
}

.mfDatePicker_title {
  font-size: 16px;
  line-height: 30px;
}

.mfDatePicker_next,
.mfDatePicker_prev {
  font: 400 22px "FontAwesome";
  line-height: inherit;
  text-align: center;
  color: rgb(19, 38, 75);
  cursor: pointer;
}

.mfDatePicker_next:hover,
.mfDatePicker_prev:hover {
  color: rgb(242, 246, 250);
}

.mfDatePicker_panel {
  text-align: center;
  padding: 0 2px;
  line-height: 30px;
}

.mfDatePicker_next {
  float: right;
}

.mfDatePicker_next:before {
  content: '\f105';
}

.mfDatePicker_prev {
  float: left;
}

.mfDatePicker_prev:before {
  content: '\f104';
}

.mfDatePicker_panel+table {
  margin-top: 5px;
}

.mfDatePicker.open {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/**
* @subsection Stuck menu
*/
.stuck_container {
  max-width: 2050px;
  margin-left: auto;
  margin-right: auto;
}

.isStuck {
  background: rgb(19, 38, 75);
  z-index: 999;
}

.isStuck .border-bottom {
  border: none;
}

.isStuck .brand {
  margin-top: 20px;
}

.isStuck .sf-menu>li>a {
  padding-top: 38px;
  padding-bottom: 38px;
}

.isStuck .sf-menu li>ul {
  top: 101px;
  background-color: rgb(19, 38, 75);
}

@media only screen and (max-width: 991px) {
  .isStuck {
    display: none !important;
  }
}

/**
* @subsection   ToTop   
*/
.toTop {
  width: 50px;
  height: 50px;
  font-size: 36px;
  line-height: 44px;
  color: rgb(19, 38, 75);
  background: rgb(242, 246, 250);
  -webkit-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 999;
}

.toTop:hover,
.toTop:active,
.toTop:focus {
  color: rgb(242, 246, 250);
  background: rgb(19, 38, 75);
  text-decoration: none;
}

.toTop:focus {
  color: rgb(19, 38, 75);
  background: rgb(242, 246, 250);
  text-decoration: none;
}

.mobile .toTop,
.tablet .toTop {
  display: none !important;
}

/*
* @section Header
*/
header .brand {
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

header .nav {
  float: right;
}

@media (max-width: 991px) {
  header {
    text-align: center;
  }

  header .brand,
  header .nav {
    float: none;
    display: block;
    width: 100%;
  }

  header .nav {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  header .brand {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  header .brand {
    margin-top: 51px;
  }
}

@media (max-width: 767px) {
  header .nav {
    margin-top: 0;
  }
}

/*
* @section Content
*/
main {
  display: block;
}

/*
* @section Footer
*/
footer {
  padding-top: 145px;
  padding-bottom: 136px;
  line-height: 2.44444;
}

footer .brand {
  display: block;
  margin-right: 0;
}

footer .brand__name {
  font-size: 30px;
}

@media (min-width: 480px) {
  footer .brand {
    margin-right: 20px;
    display: inline-block;
  }

  /* React-based dropdown styles (migrated from Superfish) */
  .react-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
  }

  .react-nav>li {
    position: relative;
  }

  .react-nav a {
    display: inline-block;
    padding: 0.5rem 0.25rem;
  }

  .react-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 12rem;
    background: #fff;
    color: #1e2e4d;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
    z-index: 2000;
  }

  .react-submenu.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .react-submenu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: inherit;
    white-space: nowrap;
  }

  .react-submenu li a:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  /* Mobile: stack nav and show submenu as block */
  @media (max-width: 767px) {
    .react-nav {
      flex-direction: column;
    }

    .react-submenu {
      position: relative;
      top: 0;
      left: 0;
      box-shadow: none;
      transform: none;
      opacity: 1;
      visibility: visible;
      padding-left: 1rem;
      display: none;
    }

    .react-submenu.open {
      display: block;
    }
  }
}

/* Dropdown animation helpers: container + laddered children */
.sf-menu ul {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: opacity, transform;
  pointer-events: none;
}

.sf-menu ul.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sf-menu ul li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: opacity, transform;
}

.sf-menu ul.open li {
  opacity: 1;
  transform: translateY(0);
}

/* ABAV Admin Login Styles */
.abav-login-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f0f4f8, #e1e8ed);
}

.abav-login-card {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  animation: abav-fadeIn 0.6s ease-out;
}

.abav-login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, #13264B, #6587C8);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.abav-login-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.abav-login-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #13264B;
  margin-bottom: 0.5rem;
  text-align: center;
}

.abav-login-subtitle {
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
}

.abav-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abav-login-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.abav-login-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  outline: none;
  color: #0b243f;
  background: white;
}

.abav-login-input:focus {
  border-color: #6587C8;
  box-shadow: 0 0 0 3px rgba(101, 135, 200, 0.1);
}

.abav-login-error {
  padding: 0.75rem 1rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  color: #dc2626;
  font-size: 0.875rem;
}

.abav-login-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #13264B, #6587C8);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  outline: none;
}

.abav-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.abav-login-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.abav-login-loader {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: abav-spin 1s linear infinite;
}

@keyframes abav-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abav-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Admin Panel Styles */
.abav-admin-bg {
  background: #13264B;
  min-height: 100vh;
}

.abav-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.abav-admin-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(242, 246, 250);
}

.abav-admin-button {
  padding: 0.5rem 1rem;
  background: #6587C8;
  color: white;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.abav-admin-button:hover {
  background: #4a6fa8;
}

.abav-admin-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.abav-admin-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px rgba(11, 22, 45, 0.08);
  padding: 1.5rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  border: 1px solid rgba(19, 38, 75, 0.06);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.abav-admin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 22, 45, 0.14);
  filter: saturate(1.03);
}

.abav-admin-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b243f;
  margin-bottom: 0.25rem;
}

.abav-admin-card-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* icon + layout helpers for admin cards */
.abav-admin-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  color: white;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  box-shadow: 0 6px 18px rgba(19, 38, 75, 0.12), inset 0 -6px 12px rgba(255, 255, 255, 0.06);
}

.abav-admin-card-icon svg {
  width: 28px;
  height: 28px;
}

.abav-admin-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.abav-admin-card-cta {
  margin-left: auto;
  color: #13264B;
  font-weight: 600;
}

.abav-admin-card-badge {
  background: rgba(19, 38, 75, 0.08);
  color: #13264B;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.abav-admin-card-sub {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.abav-admin-section {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  /* admin sections sit on a dark global background; ensure readable text */
  color: #0b243f;
}

.abav-admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.abav-admin-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #13264B;
}

.abav-admin-users-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.abav-admin-user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
}

.abav-admin-user-info p {
  margin: 0;
}

.abav-admin-user-info .username {
  font-weight: 500;
}

.abav-admin-user-info .created {
  font-size: 0.875rem;
  color: #6b7280;
}

.abav-admin-user-actions {
  display: flex;
  gap: 0.5rem;
}

.abav-admin-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.abav-admin-project-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  padding: 1rem;
}

.abav-admin-project-title {
  font-weight: 500;
}

.abav-admin-project-status {
  font-size: 0.875rem;
  color: #6b7280;
}

.abav-admin-project-created {
  font-size: 0.875rem;
  color: #6b7280;
}

.abav-admin-project-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.abav-admin-loading {
  text-align: center;
  padding: 1rem;
}


/* ========================================
   IMPROVED ADMIN PANEL STYLES
   ======================================== */

/* Form Container */
.abav-form-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 20px rgba(19, 38, 75, 0.08);
}

.abav-project-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.abav-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.abav-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.abav-form-group.full-width {
  grid-column: 1 / -1;
}

.abav-form-label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.abav-form-label .required {
  color: #ef4444;
  margin-left: 0.25rem;
}

.abav-form-hint {
  font-weight: 400;
  color: #64748b;
  text-transform: none;
  font-size: 0.8125rem;
}

.abav-form-hint-text {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.abav-form-input,
.abav-form-textarea,
.abav-form-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.abav-form-input:focus,
.abav-form-textarea:focus,
.abav-form-select:focus {
  outline: none;
  border-color: #6587C8;
  background: white;
  box-shadow: 0 0 0 3px rgba(101, 135, 200, 0.1);
}

.abav-form-input.error,
.abav-form-textarea.error,
.abav-form-select.error {
  border-color: #ef4444;
}

.abav-form-input[readOnly] {
  background: #e2e8f0;
  cursor: not-allowed;
  color: #64748b;
}

.abav-form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.abav-form-error {
  color: #ef4444;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Dropzone */
.abav-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8fafc;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abav-dropzone:hover {
  border-color: #6587C8;
  background: #eff6ff;
}

.abav-dropzone.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.abav-dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}

.abav-dropzone-content svg {
  color: #6587C8;
}

.abav-dropzone-hint {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.abav-dropzone-small {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8fafc;
  font-size: 0.875rem;
  color: #64748b;
}

.abav-dropzone-small:hover {
  border-color: #6587C8;
  background: #eff6ff;
}

/* Preview Container */
.abav-preview-container {
  position: relative;
  display: inline-block;
}

.abav-preview-image {
  max-width: 200px;
  max-height: 150px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.abav-remove-preview,
.abav-remove-image {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.abav-remove-preview:hover,
.abav-remove-image:hover {
  background: #dc2626;
  transform: scale(1.1);
}

/* Image Grid */
.abav-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.abav-image-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.abav-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abav-image-item-small {
  position: relative;
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.abav-image-item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.abav-sections-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abav-section-item {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  background: #f8fafc;
}

.abav-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.abav-section-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.abav-section-actions {
  display: flex;
  gap: 0.5rem;
}

.abav-section-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abav-section-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.abav-image-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}

.abav-image-chip button {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.abav-image-chip button:hover {
  color: #ef4444;
}

.abav-btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.abav-btn-icon.success {
  background: #10b981;
  color: white;
}

.abav-btn-icon.success:hover {
  background: #059669;
}

.abav-btn-icon.danger {
  background: #ef4444;
  color: white;
}

.abav-btn-icon.danger:hover {
  background: #dc2626;
}

.abav-add-section-btn {
  padding: 0.75rem 1.5rem;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.abav-add-section-btn:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #1e293b;
}

/* Form Actions */
.abav-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 1.5rem;
  border-top: 2px solid #e2e8f0;
}

.abav-btn-preview,
.abav-btn-submit,
.abav-btn-cancel {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.abav-btn-preview {
  background: #f59e0b;
  color: white;
}

.abav-btn-preview:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.abav-btn-submit {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.abav-btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.abav-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.abav-btn-cancel {
  background: #e2e8f0;
  color: #475569;
}

.abav-btn-cancel:hover {
  background: #cbd5e1;
}

.abav-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: abav-spin 0.6s linear infinite;
}

/* Project Cards */
.abav-project-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.abav-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(19, 38, 75, 0.1);
}

.abav-project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  gap: 0.5rem;
}

.abav-project-card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  flex: 1;
}

.abav-project-card-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.abav-project-card-no-image {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #94a3b8;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.abav-project-card-desc {
  padding: 0 1rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.abav-project-card-meta {
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
}

.abav-project-card-actions {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.abav-btn-sm {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
  justify-content: center;
}

.abav-btn-sm.primary {
  background: #3b82f6;
  color: white;
}

.abav-btn-sm.primary:hover {
  background: #2563eb;
}

.abav-btn-sm.warning {
  background: #f59e0b;
  color: white;
}

.abav-btn-sm.warning:hover {
  background: #d97706;
}

.abav-btn-sm.danger {
  background: #ef4444;
  color: white;
}

.abav-btn-sm.danger:hover {
  background: #dc2626;
}

/* Status Badges */
.abav-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.abav-status-published {
  background: #d1fae5;
  color: #065f46;
}

.abav-status-draft {
  background: #fef3c7;
  color: #92400e;
}

.abav-status-archived {
  background: #e5e7eb;
  color: #374151;
}

/* Preview Modal */
.abav-preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: abav-fadeIn 0.2s ease;
}

.abav-preview-modal {
  background: #13264B;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  animation: abav-slideUp 0.3s ease;
}

@keyframes abav-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abav-preview-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(19, 38, 75, 0.8);
}

.abav-preview-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(242, 246, 250);
  margin: 0;
}

.abav-preview-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(242, 246, 250);
  transition: all 0.2s ease;
}

.abav-preview-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.abav-preview-content {
  padding: 2rem;
  overflow-y: auto;
  color: rgb(242, 246, 250);
}

.abav-preview-section {
  margin-bottom: 2rem;
}

.abav-preview-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.abav-preview-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.abav-preview-meta-item strong {
  color: #94a3b8;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.abav-preview-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.abav-preview-section-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #6587C8;
}

.abav-preview-section-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .abav-form-grid {
    grid-template-columns: 1fr;
  }

  .abav-form-actions {
    flex-direction: column;
  }

  .abav-form-actions button {
    width: 100%;
  }

  .abav-admin-projects-grid {
    grid-template-columns: 1fr;
  }

  .abav-preview-modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* ========================================
   PROJECT DETAIL PAGE STYLES
   ======================================== */

.abav-project-detail-page {
  background: linear-gradient(180deg, #13264B 0%, #0f1f3d 100%);
  min-height: 100vh;
}

.abav-project-hero {
  position: relative;
  margin-bottom: 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background slider container */
.abav-project-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Dark overlay for hero background */
.abav-project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(19, 38, 75, 0.75) 0%,
      rgba(15, 31, 61, 0.85) 50%,
      rgba(15, 31, 61, 0.95) 100%);
  z-index: 1;
}

.abav-project-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.abav-project-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgb(242, 246, 250);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.abav-project-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.abav-project-tag {
  background: rgba(101, 135, 200, 0.2);
  color: #a5c0e8;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(101, 135, 200, 0.3);
}

.abav-project-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

.abav-project-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Slider specific styles */
.abav-project-cover.abav-slider {
  position: absolute;
}

.abav-project-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cover Slider Navigation Arrows */
.abav-cover-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.abav-cover-arrow:hover {
  background: rgba(101, 135, 200, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.abav-cover-prev {
  left: 30px;
}

.abav-cover-next {
  right: 30px;
}

/* Cover Counter */
.abav-cover-counter {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 15;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

/* Slide styles for slider */
.abav-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.abav-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slider dots navigation */
.abav-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.abav-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.abav-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.abav-slider-dot.active {
  background: rgba(101, 135, 200, 1);
  width: 32px;
  border-radius: 6px;
}

/* Appearance + 3D wobble animations for gallery items */
.abav-item-appear {
  opacity: 0;
  transform: translateY(14px);
  animation: abav-fade-in 600ms ease forwards var(--abav-delay, 0ms);
  will-change: opacity, transform;
}

.abav-item-appear .abav-gallery-img,
.abav-item-appear img {
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  /* wobble runs once after fade-in (delay matches var) */
  animation: abav-wobble 1200ms cubic-bezier(.2, .8, .2, 1) var(--abav-delay, 0ms) 1;
}

@keyframes abav-fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abav-wobble {
  0% {
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  }

  20% {
    transform: perspective(800px) rotateX(6deg) rotateY(8deg) translateY(-4px);
  }

  45% {
    transform: perspective(800px) rotateX(-5deg) rotateY(-6deg) translateY(0);
  }

  70% {
    transform: perspective(800px) rotateX(3deg) rotateY(4deg) translateY(-2px);
  }

  100% {
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  }
}

.abav-project-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.abav-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.abav-info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(101, 135, 200, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.abav-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6587C8 0%, #4a6fa8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.abav-info-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.abav-info-card p {
  font-size: 1rem;
  color: rgb(242, 246, 250);
  margin: 0;
}

.abav-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.abav-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 999px;
  transition: width 0.6s ease;
}

.abav-project-section {
  margin-bottom: 4rem;
}

.abav-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(242, 246, 250);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.abav-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6587C8 0%, transparent 100%);
  border-radius: 2px;
}

.abav-section-content {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

/* Gallery Section at Bottom */
.abav-gallery-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.abav-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.abav-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
}

.abav-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.abav-gallery-item:hover .abav-gallery-img {
  transform: scale(1.05);
}

.abav-gallery-item:hover .abav-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.abav-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.abav-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.abav-section-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.abav-section-image {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
}

.abav-section-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.abav-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.abav-section-image:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.abav-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
  animation: abav-fadeIn 0.3s ease;
  cursor: zoom-out;
}

.abav-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.abav-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.abav-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.abav-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.abav-loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(101, 135, 200, 0.2);
  border-top-color: #6587C8;
  border-radius: 50%;
  animation: abav-spin 0.8s linear infinite;
}

/* Fullscreen loader overlay centered in viewport */
.abav-loader-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.0);
  /* transparent by default, adjust if needed */
  z-index: 9999;
}

@keyframes abav-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .abav-project-hero {
    min-height: 60vh;
  }

  .abav-project-hero-content {
    padding: 3rem 1.5rem;
  }

  .abav-project-title {
    font-size: 2rem;
  }

  .abav-project-info-grid {
    grid-template-columns: 1fr;
  }

  .abav-image-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .abav-gallery-section {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .abav-section-images {
    grid-template-columns: 1fr;
  }

  .abav-lightbox {
    padding: 1rem;
  }

  .abav-lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  /* Cover slider arrows mobile */
  .abav-cover-arrow {
    width: 44px;
    height: 44px;
  }

  .abav-cover-prev {
    left: 15px;
  }

  .abav-cover-next {
    right: 15px;
  }

  .abav-cover-counter {
    bottom: 20px;
    right: 15px;
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .abav-slider-dots {
    bottom: 20px;
  }
}

/* ========================================
   ENHANCED LOGIN STYLES
   ======================================== */

.abav-login-bg {
  background: linear-gradient(135deg, #0f1f3d 0%, #13264B 50%, #1a3057 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.abav-login-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(101, 135, 200, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.abav-login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.abav-login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(19, 38, 75, 0.3);
  position: relative;
}

.abav-login-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6587C8, #13264B);
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.abav-login-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.abav-login-subtitle {
  color: #64748b;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.abav-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.abav-login-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.abav-login-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease;
  outline: none;
  color: #1e293b;
  background: #f8fafc;
}

.abav-login-input:focus {
  border-color: #6587C8;
  background: white;
  box-shadow: 0 0 0 4px rgba(101, 135, 200, 0.1);
  transform: translateY(-1px);
}

.abav-login-error {
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #fca5a5;
  border-radius: 10px;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.abav-login-error::before {
  content: '⚠';
  font-size: 1.25rem;
}

.abav-login-button {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(19, 38, 75, 0.3);
  outline: none;
  position: relative;
  overflow: hidden;
}

.abav-login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.abav-login-button:hover::before {
  left: 100%;
}

.abav-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19, 38, 75, 0.4);
}

.abav-login-button:active {
  transform: translateY(0);
}

.abav-login-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   ENHANCED ADMIN PANEL STYLES
   ======================================== */

.abav-admin-bg {
  background: linear-gradient(135deg, #0f1f3d 0%, #13264B 50%, #1a3057 100%);
  min-height: 100vh;
  padding-bottom: 4rem;
  position: relative;
}

.abav-admin-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(101, 135, 200, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.abav-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.abav-admin-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6587C8, transparent);
}

.abav-admin-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgb(242, 246, 250);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.abav-admin-button {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #6587C8 0%, #4a6fa8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(101, 135, 200, 0.3);
}

.abav-admin-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(101, 135, 200, 0.4);
}

.abav-admin-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abav-admin-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(19, 38, 75, 0.08);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.abav-admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6587C8, #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.abav-admin-card:hover::before {
  transform: scaleX(1);
}

.abav-admin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.abav-admin-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  color: white;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  box-shadow: 0 8px 24px rgba(19, 38, 75, 0.2), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.abav-admin-card-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6587C8, #13264B);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.abav-admin-card:hover .abav-admin-card-icon::after {
  opacity: 0.5;
}

.abav-admin-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b243f;
  margin: 0;
}

.abav-admin-card-badge {
  background: linear-gradient(135deg, rgba(19, 38, 75, 0.1), rgba(101, 135, 200, 0.15));
  color: #13264B;
  font-weight: 800;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  border: 1px solid rgba(19, 38, 75, 0.15);
}

.abav-admin-card-sub {
  font-size: 0.9375rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.abav-admin-card-cta {
  margin-left: auto;
  color: #6587C8;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.abav-admin-card:hover .abav-admin-card-cta {
  transform: translateX(4px);
}

.abav-admin-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  color: #0b243f;
  animation: fadeInUp 0.5s ease-out;
}

.abav-admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
}

.abav-admin-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #13264B;
  letter-spacing: -0.01em;
}

.abav-admin-loading {
  text-align: center;
  padding: 3rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.abav-admin-loading::before {
  content: '';
  width: 48px;
  height: 48px;
  border: 4px solid rgba(101, 135, 200, 0.2);
  border-top-color: #6587C8;
  border-radius: 50%;
  animation: abav-spin 0.8s linear infinite;
}

/* Enhanced User List */
.abav-admin-users-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abav-admin-user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: #fafbfc;
}

.abav-admin-user-item:hover {
  border-color: #e2e8f0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(4px);
}

.abav-admin-user-info .username {
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.abav-admin-user-info .created {
  font-size: 0.875rem;
  color: #94a3b8;
}

.abav-admin-user-actions {
  display: flex;
  gap: 0.75rem;
}

/* Enhanced Projects Grid */
.abav-admin-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .abav-admin-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .abav-admin-title {
    font-size: 1.5rem;
  }

  .abav-admin-dashboard {
    grid-template-columns: 1fr;
  }

  .abav-admin-card {
    flex-direction: column;
    text-align: center;
  }

  .abav-admin-card-cta {
    margin: 1rem auto 0;
  }

  .abav-login-card {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   ENHANCED FORM STYLES
   ======================================== */

.abav-form-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.abav-form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.abav-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}

.abav-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.abav-form-required {
  color: #ef4444;
  font-size: 0.875rem;
}

.abav-form-input,
.abav-form-textarea,
.abav-form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  outline: none;
  color: #1e293b;
  background: white;
}

.abav-form-input:focus,
.abav-form-textarea:focus,
.abav-form-select:focus {
  border-color: #6587C8;
  box-shadow: 0 0 0 4px rgba(101, 135, 200, 0.1);
  transform: translateY(-1px);
}

.abav-form-input.error,
.abav-form-textarea.error,
.abav-form-select.error {
  border-color: #ef4444;
}

.abav-form-error-message {
  font-size: 0.875rem;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: 8px;
  border: 1px solid #fca5a5;
  font-weight: 500;
}

.abav-form-error-message::before {
  content: '!';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}

.abav-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.abav-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e293b'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* Enhanced Dropzone */
.abav-form-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.abav-form-dropzone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(101, 135, 200, 0.05), rgba(19, 38, 75, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.abav-form-dropzone:hover::before {
  opacity: 1;
}

.abav-form-dropzone:hover {
  border-color: #6587C8;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(101, 135, 200, 0.1);
}

.abav-form-dropzone-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #3b82f6;
  transition: all 0.3s ease;
}

.abav-form-dropzone:hover .abav-form-dropzone-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.abav-form-dropzone-text {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.abav-form-dropzone-subtext {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.abav-form-dropzone.error {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

/* Image Preview Grid */
.abav-form-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.abav-form-image-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abav-form-image-preview:hover {
  border-color: #6587C8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.abav-form-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abav-form-image-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0;
  transform: scale(0.8);
}

.abav-form-image-preview:hover .abav-form-image-remove {
  opacity: 1;
  transform: scale(1);
}

.abav-form-image-remove:hover {
  background: #ef4444;
  transform: scale(1.1);
}

/* Enhanced Sections */
.abav-form-section-container {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.abav-form-section-container:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.abav-form-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.abav-form-section-number {
  font-weight: 700;
  color: #13264B;
  font-size: 1.125rem;
}

.abav-form-section-remove {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
  border: 2px solid #fca5a5;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.abav-form-section-remove:hover {
  background: linear-gradient(135deg, #fecaca, #fca5a5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.abav-form-section-add {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border: 2px dashed #93c5fd;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.abav-form-section-add:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Enhanced Buttons */
.abav-form-actions {
  display: flex;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 2px solid #f1f5f9;
  margin-top: 2rem;
}

.abav-form-button-primary {
  flex: 1;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(19, 38, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.abav-form-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.abav-form-button-primary:hover::before {
  left: 100%;
}

.abav-form-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19, 38, 75, 0.4);
}

.abav-form-button-primary:active {
  transform: translateY(0);
}

.abav-form-button-secondary {
  padding: 1rem 2rem;
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.abav-form-button-secondary:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #475569;
  transform: translateY(-1px);
}

.abav-form-button-preview {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.abav-form-button-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* ========================================
   ENHANCED PROJECT CARDS
   ======================================== */

.abav-project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.abav-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #e2e8f0;
}

.abav-project-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  position: relative;
}

.abav-project-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
}

.abav-project-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abav-project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.abav-project-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b243f;
  margin: 0;
  line-height: 1.4;
}

.abav-project-status {
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.abav-project-status.published {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.abav-project-status.draft {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1px solid #fcd34d;
}

.abav-project-status.archived {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  border: 1px solid #cbd5e1;
}

.abav-project-card-slug {
  font-size: 0.875rem;
  color: #94a3b8;
  font-family: 'Courier New', monospace;
  background: #f8fafc;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

.abav-project-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.abav-project-card-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

.abav-project-action-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.abav-project-action-btn.edit {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.abav-project-action-btn.edit:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.abav-project-action-btn.delete {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.abav-project-action-btn.delete:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* ========================================
   ENHANCED PREVIEW MODAL
   ======================================== */

.abav-preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.abav-preview-content {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  overflow-y: auto;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.abav-preview-header {
  padding: 2rem;
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.abav-preview-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.abav-preview-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.abav-preview-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.abav-preview-body {
  padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .abav-form-row {
    grid-template-columns: 1fr;
  }

  .abav-form-actions {
    flex-direction: column;
  }

  .abav-project-card-actions {
    flex-direction: column;
  }

  .abav-preview-content {
    max-height: 95vh;
    margin: 0.5rem;
  }

  .abav-preview-header {
    padding: 1.5rem;
  }

  .abav-preview-title {
    font-size: 1.25rem;
  }
}

/* ========================================
   UTILITY ANIMATIONS & HELPERS
   ======================================== */

@keyframes abav-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Smooth scrollbar para el modal */
.abav-preview-content::-webkit-scrollbar {
  width: 10px;
}

.abav-preview-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.abav-preview-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6587C8, #13264B);
  border-radius: 10px;
  border: 2px solid #f1f5f9;
}

.abav-preview-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #13264B, #6587C8);
}

/* Focus ring personalizado */
*:focus-visible {
  outline: 2px solid #6587C8;
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* No select para elementos interactivos */
.abav-admin-card,
.abav-project-card,
.abav-admin-button,
.abav-form-button-primary,
.abav-form-button-secondary,
.abav-form-button-preview,
.abav-login-button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Mejoras de accesibilidad para reducir movimiento */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Container principal con padding consistente */
.abav-admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Texto truncado con ellipsis */
.abav-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Shadow personalizada para hover */
.abav-shadow-hover {
  transition: box-shadow 0.3s ease;
}

.abav-shadow-hover:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Badge contador */
.abav-badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Estado de carga para botones */
.abav-button-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.abav-button-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: abav-spin 0.6s linear infinite;
}

/* Empty state */
.abav-empty-state {
  padding: 4rem 2rem;
  text-align: center;
  color: #94a3b8;
}

.abav-empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.abav-empty-state-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.abav-empty-state-description {
  font-size: 0.9375rem;
  color: #94a3b8;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Toast custom styles (react-hot-toast override) */
.abav-toast-success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
  color: #065f46 !important;
  border: 1px solid #6ee7b7 !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2) !important;
}

.abav-toast-error {
  background: linear-gradient(135deg, #fee2e2, #fecaca) !important;
  color: #dc2626 !important;
  border: 1px solid #fca5a5 !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2) !important;
}

/* Skeleton loading para mejor UX */
.abav-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: abav-skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes abav-skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.abav-skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.abav-skeleton-title {
  height: 1.5rem;
  width: 60%;
  margin-bottom: 1rem;
}

.abav-skeleton-card {
  height: 200px;
}

/* Grid auto-responsive mejorado */
.abav-auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

/* Backdrop blur mejorado */
.abav-backdrop-blur {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* Glassmorphism effect */
.abav-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient text utility */
.abav-gradient-text {
  background: linear-gradient(135deg, #13264B 0%, #6587C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Print styles */
@media print {

  .abav-admin-header,
  .abav-admin-button,
  .abav-form-actions,
  .abav-project-action-btn,
  .abav-preview-close {
    display: none !important;
  }

  .abav-admin-bg,
  .abav-admin-section,
  .abav-project-card {
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
  }
}

/* ========================================
   PORTFOLIO GRID - UNIFORM IMAGE SIZES
   ======================================== */

.img {
  position: relative;
  overflow: hidden;
  display: block;
}

.img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.img:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .img img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .img img {
    height: 200px;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.scroll-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.fade-in {
  opacity: 0;
}

.scroll-animate.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
}

.scroll-animate.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
}

.scroll-animate.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
}

.scroll-animate.animate-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ========================================
   SECTION ALTERNATING LAYOUT
   ======================================== */

.abav-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 2rem 0;
}

.abav-section-row.layout-text-left .abav-section-text {
  order: 1;
}

.abav-section-row.layout-text-left .abav-section-media {
  order: 2;
}

.abav-section-row.layout-text-right .abav-section-text {
  order: 2;
}

.abav-section-row.layout-text-right .abav-section-media {
  order: 1;
}

.abav-section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abav-section-text .abav-section-title {
  text-align: left;
}

.abav-section-text .abav-section-title::after {
  left: 0;
}

.abav-section-media {
  position: relative;
}

.abav-section-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
  .abav-section-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .abav-section-row.layout-text-left .abav-section-text,
  .abav-section-row.layout-text-left .abav-section-media,
  .abav-section-row.layout-text-right .abav-section-text,
  .abav-section-row.layout-text-right .abav-section-media {
    order: unset;
  }

  .abav-section-text .abav-section-title {
    text-align: center;
  }

  .abav-section-text .abav-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .abav-section-text .abav-section-content {
    text-align: center;
  }
}

/* ========================================
   SECTION SLIDER
   ======================================== */

.abav-section-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.2);
}

.abav-section-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.abav-section-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abav-section-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.abav-section-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.abav-section-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

/* ========================================
   GALLERY SLIDER (Full Width)
   ======================================== */

.abav-gallery-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.3);
}

.abav-gallery-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.abav-gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  cursor: pointer;
  pointer-events: none;
}

.abav-gallery-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.abav-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abav-gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

.abav-gallery-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.abav-gallery-slider-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 10;
}

/* ========================================
   SLIDER ARROWS
   ======================================== */

.abav-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.abav-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.abav-slider-prev {
  left: 16px;
}

.abav-slider-next {
  right: 16px;
}

@media (max-width: 768px) {
  .abav-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .abav-slider-prev {
    left: 10px;
  }

  .abav-slider-next {
    right: 10px;
  }

  .abav-gallery-slider-container {
    aspect-ratio: 4/3;
  }

  .abav-gallery-slide-caption {
    font-size: 1rem;
    padding: 1.5rem;
  }
}

/* ========================================
   EMAIL SYSTEM STYLES
   ======================================== */

/* Email List */
.abav-email-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.abav-email-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.abav-email-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.abav-email-item.unread {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.abav-email-item.unread .abav-email-sender {
  font-weight: 700;
  color: rgb(242, 246, 250);
}

.abav-email-item.unread::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #3b82f6;
  border-radius: 0 4px 4px 0;
}

.abav-email-item {
  position: relative;
  padding-left: 1.5rem;
}

.abav-email-content {
  flex: 1;
  min-width: 0;
}

.abav-email-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.abav-email-sender {
  font-size: 0.9375rem;
  color: rgba(242, 246, 250, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.abav-email-date {
  font-size: 0.75rem;
  color: rgba(242, 246, 250, 0.5);
  white-space: nowrap;
}

.abav-email-subject {
  font-size: 0.8125rem;
  color: rgba(242, 246, 250, 0.7);
  margin-bottom: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.abav-email-preview {
  font-size: 0.8125rem;
  color: rgba(242, 246, 250, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.abav-email-actions {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.abav-email-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(242, 246, 250, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.abav-email-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(242, 246, 250);
}

.abav-email-action-btn.read:hover {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.abav-email-action-btn.archive:hover {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.abav-email-action-btn.delete:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Email Detail Modal */
.abav-email-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  animation: abav-fadeIn 0.2s ease;
}

.abav-email-modal-content {
  background: #13264B;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  animation: abav-slideUp 0.3s ease;
}

.abav-email-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.abav-email-modal-title {
  flex: 1;
}

.abav-email-modal-title h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(242, 246, 250);
  margin: 0 0 0.5rem 0;
}

.abav-email-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(242, 246, 250, 0.7);
}

.abav-email-modal-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.abav-email-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.abav-email-modal-message {
  color: rgba(242, 246, 250, 0.9);
  line-height: 1.7;
  font-size: 0.9375rem;
  white-space: pre-wrap;
}

.abav-email-modal-footer {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Email Empty State */
.abav-email-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(242, 246, 250, 0.5);
}

.abav-email-empty svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.abav-email-empty p {
  font-size: 1rem;
  margin: 0;
}

/* Email Tabs */
.abav-email-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.abav-email-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(242, 246, 250, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.abav-email-tab:hover {
  color: rgb(242, 246, 250);
  background: rgba(255, 255, 255, 0.05);
}

.abav-email-tab.active {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

/* Badge count */
.abav-email-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: #3b82f6;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .abav-email-item {
    padding: 0.875rem 1rem;
  }

  .abav-email-header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .abav-email-actions {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
  }

  .abav-email-item:hover .abav-email-actions {
    opacity: 1;
  }

  .abav-email-modal-content {
    max-height: 90vh;
    margin: 0.5rem;
  }

  .abav-email-modal-header,
  .abav-email-modal-body,
  .abav-email-modal-footer {
    padding: 1rem 1.25rem;
  }
}

/* ========================================
   INTERNAL MAIL SYSTEM - COMPLETE UI
   ======================================== */

/* Main Layout */
.abav-email-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  min-height: 600px;
}

@media (max-width: 768px) {
  .abav-email-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.abav-email-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.75rem;
}

.abav-email-folder-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.abav-email-folder-btn:hover {
  background: rgba(19, 38, 75, 0.08);
  color: #1e293b;
}

.abav-email-folder-btn.active {
  background: #13264B;
  color: white;
}

.abav-email-folder-btn .abav-email-badge {
  margin-left: auto;
  background: #ef4444;
  font-size: 0.6875rem;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
}

/* Main Email Content Area */
.abav-email-main {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem;
  min-height: 500px;
}

/* Email Container - List + Detail split */
.abav-email-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem;
  height: 100%;
}

@media (max-width: 1024px) {
  .abav-email-container {
    grid-template-columns: 1fr;
  }
}

/* Email List in admin panel */
.abav-email-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 550px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Email Item Row */
.abav-email-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.abav-email-item-content {
  flex: 1;
  min-width: 0;
}

/* Admin panel email items */
.abav-admin-section .abav-email-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.abav-admin-section .abav-email-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.abav-admin-section .abav-email-item.selected {
  background: #eff6ff;
  border-color: #6587C8;
  box-shadow: 0 0 0 2px rgba(101, 135, 200, 0.2);
}

.abav-admin-section .abav-email-item.unread {
  background: #f0f9ff;
  border-left: 3px solid #3b82f6;
}

.abav-admin-section .abav-email-item.unread .abav-email-from {
  font-weight: 700;
  color: #1e293b;
}

.abav-admin-section .abav-email-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.abav-admin-section .abav-email-from {
  font-size: 0.9375rem;
  color: #334155;
  font-weight: 500;
}

.abav-admin-section .abav-email-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.abav-admin-section .abav-email-subject {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.abav-admin-section .abav-email-preview {
  font-size: 0.8125rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Email Tag */
.abav-email-tag {
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.abav-email-tag.contact {
  background: #dbeafe;
  color: #1d4ed8;
}

.abav-email-tag.internal {
  background: #dcfce7;
  color: #16a34a;
}

/* Star Button */
.abav-star-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #cbd5e1;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abav-star-btn:hover {
  color: #fbbf24;
  transform: scale(1.1);
}

.abav-star-btn.starred {
  color: #fbbf24;
}

.abav-star-btn.starred svg {
  fill: #fbbf24;
}

/* Email Detail Panel */
.abav-email-detail {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.abav-email-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.abav-email-detail-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.abav-email-detail-actions {
  display: flex;
  gap: 0.5rem;
}

.abav-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.abav-btn-icon:hover {
  background: #f1f5f9;
  color: #334155;
}

.abav-btn-icon.starred {
  color: #fbbf24;
  background: #fffbeb;
  border-color: #fbbf24;
}

.abav-btn-icon.danger:hover {
  background: #fef2f2;
  color: #ef4444;
  border-color: #fca5a5;
}

.abav-email-detail-meta {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.875rem;
  color: #64748b;
}

.abav-email-detail-meta p {
  margin: 0 0 0.375rem 0;
}

.abav-email-detail-meta p:last-child {
  margin-bottom: 0;
}

.abav-email-detail-meta strong {
  color: #475569;
}

.abav-email-detail-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.7;
  max-height: 300px;
}

.abav-email-detail-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  gap: 0.75rem;
}

/* Replies Thread */
.abav-email-replies {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.abav-email-reply-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.abav-email-reply-item:last-child {
  margin-bottom: 0;
}

.abav-email-reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.abav-email-reply-header strong {
  color: #334155;
}

.abav-email-reply-body {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

/* Compose Modal */
.abav-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.abav-compose-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: abav-slideUp 0.3s ease;
}

.abav-compose-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 16px 16px 0 0;
}

.abav-compose-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.abav-compose-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.abav-compose-close:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.abav-compose-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abav-compose-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.abav-compose-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.abav-compose-select,
.abav-compose-input {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #1e293b;
  background: white;
  transition: all 0.2s ease;
}

.abav-compose-select:focus,
.abav-compose-input:focus {
  outline: none;
  border-color: #6587C8;
  box-shadow: 0 0 0 3px rgba(101, 135, 200, 0.1);
}

.abav-compose-textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #1e293b;
  background: white;
  resize: vertical;
  min-height: 200px;
  font-family: inherit;
  line-height: 1.6;
  transition: all 0.2s ease;
}

.abav-compose-textarea:focus {
  outline: none;
  border-color: #6587C8;
  box-shadow: 0 0 0 3px rgba(101, 135, 200, 0.1);
}

.abav-compose-original {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.abav-compose-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  border-radius: 0 0 16px 16px;
}

/* Animation */
@keyframes abav-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments for email system */
@media (max-width: 768px) {
  .abav-email-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .abav-email-folder-btn {
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-width: auto;
    flex-shrink: 0;
  }

  .abav-email-folder-btn svg {
    margin-bottom: 0.25rem;
  }

  .abav-email-container {
    grid-template-columns: 1fr;
  }

  .abav-email-detail {
    position: fixed;
    inset: 0;
    z-index: 100;
    border-radius: 0;
  }

  .abav-compose-modal {
    max-height: 100vh;
    border-radius: 0;
    max-width: 100%;
  }
}