@import "general.css";    /* General - normalization settings */
@import "arrow.css";      /* Arrow - cursor to neon arrow */
/*@import "parallax.css";       /* Parallax */
@import "error.css";      /* Error 404 */
@import "header.css";     /* Header */
@import "menu.css";       /* Menu - horizontal, vertical */
@import "banner.css";     /* Banners */
@import "timelinev1.css"; /* Vertical TimeLine for content */
@import "footer.css";     /* Footer */

/*===========================================================================*/

/* HMENU::CONTACTS::BEGIN */
.item-page-neon-hmenu-contacts {
    color: #dff8fe;
}
/* HMENU::CONTACTS::END */

#neon-paralax1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* background-image: url('../images/carousel1.jpg');
  height: 200vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;*/
  z-index: -100;
}

/*  #neon-paralax1:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  z-index: 2;
}*/

/*===========================================================================*/

/* CONTENT::BEGIN */
.neon-content {
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    font-size: 12pt;
    line-height: 23px;
    font-family: Verdana,Geneva,sans-serif;
    color: #dff8fe;
    /*overflow: hidden;
    position: relative;*/
}

.neon-content strong {
  color: var(--color1);
}

.neon-content em {
  color: var(--color1);
}

.neon-content em strong {
  color: var(--color2);
}

.neon-content strong em {
  color: var(--color2);
}

/* List configuration :: BEGIN */
.neon-content ul li {
  padding-left: 1em;
  list-style: none;
}

.neon-content ul li::before {
  content: "⦿";
  color: var(--color2);
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-style: normal;
}

.neon-content ul li li {
  padding-left: 1em;
  list-style: none;
}

.neon-content ul li li::before {
  content: "⦾";
  color: var(--color2);
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-style: normal;
}

.neon-content ul li li li {
  padding-left: 1em;
  list-style: none;
}

.neon-content ul li li li::before {
  content: "●";
  color: var(--color2);
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-style: normal;
}

.neon-content ul em {
  color: var(--color-content-main);
}
/* List configuration :: END */

.neon-content p {
  margin-top: 0.7em; 
  margin-bottom: 0.7em;
}

.neon-content h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  color:var(--color1);
}

/* Cards for Service menu :: BEGIN */
.neon-card-text {
  text-align: justify;
}

.neon-card-menu {
  margin-top: 60px;
  color: var(--color-content-main);
}

.neon-card {
  position: relative;
  margin: 30px 10px;
  padding: 20px 15px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(5px);  
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;  
}

.neon-card .neon-card-img {
  position: relative;
  top: -60px;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.neon-card .neon-card-img img {
  max-width: 100%;
  min-width: -webkit-fill-available;
  border-radius: 4px;
}

.neon-card-name {
  height: 60px;
}

.neon-card h2 {
  text-align: center;
  color: var(--color1);
  font-size: 22px;
  font-weight: bold;
  margin-top: -50px;
  vertical-align: middle;
}

.neon-card a {
  text-decoration: none;
}

.neon-card a:hover .neon-card-name h2 {
  color: var(--color2);
}

.neon-card .neon-card-content {
  position: relative;
  height: 10px;
  padding: 10px 15px 5px;
  text-align: center;
  color: #111;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.neon-card:hover .neon-card-content {
  visibility: visible;
  height: auto;
  opacity: 1;
  transition-delay: 0.3s;
}

.neon-card-content p {
  color: var(--color-content-main);
  font-size: 14px;
}
/* Cards for Service menu :: END */

/*.block {
  position: absolute;
  width: 50px;
  height: 100px;
  background: var(--color-bg-main);
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  z-index: 50;
}*/

/* Quote */
.neon-content blockquote {
  padding: 5px 20px;
  margin: 5px 20px;
  font-style: italic;
  font-size: 0.9em;
  color: var(--color3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(5px);  
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Image scale x2 */
.neon-img-scale {
  transition: 1s;
}

.neon-img-scale:hover {
  transform: scale(2.0);
}
/* CONTENT::END */

/*===========================================================================*/

/* MENU:CONTACTS:MAIN-BANNER::BEGIN */
.contacts-banner {
    background: url('../images/banner1-2560x220.jpg') center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    height: 220px;
}

.contacts-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.3);
  z-index: 2;
  height: 220px;
}

/*===========================================================================*/




/* Media Query for mobile devices */
@media (max-width: 1200px) {

}