/*
Theme Name: Brand Brick 
Author: Brand Brick Team
Description: A modern custom WordPress theme built for brands and businesses.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: brandbrick
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

:root {
  --ink: #0b0c0f;
  --ink-2: #15171d;
  --muted: #6f7480;
  --line: #e8e8eb;
  --orange: #ff3d00;
  --orange-2: #ff6a00;
  --gold: #ffb000;
  --paper: #ffffff;
  --soft: #fff5ef;
  --success: #1a8f5b;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(9, 11, 17, 0.14);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.section {
  padding: 96px 0;
}

.section-title {
  max-width: 760px;
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 61, 0, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 61, 0, 0.32);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 17, 22, 0.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  width: 95px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  border: 0;
  background: #f4f4f6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 24%,
      rgba(255, 109, 0, 0.28),
      transparent 28%),
    radial-gradient(circle at 68% 70%, rgba(255, 61, 0, 0.22), transparent 30%),
    linear-gradient(140deg, #07080b 0%, #11131a 58%, #1b0a04 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
  padding: 86px 0;
}

.hero h1 {
  font-size: clamp(3.1rem, 6.5vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: -0.062em;
  margin: 18px 0 24px;
  max-width: 760px;
}

.hero h1 span {
  background: linear-gradient(90deg, #ff4a0a, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 650px;
  color: #c8cad1;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  padding: 9px 13px;
  border-radius: 999px;
  color: #e7e7ea;
  font-size: 0.85rem;
}

.cinema-stage {
  position: relative;
  min-height: 470px;
  border-radius: 34px;
  background: linear-gradient(160deg, #171920, #090a0d);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cinema-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 300px;
  left: -50px;
  top: 60px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 161, 0, 0.72),
      rgba(255, 61, 0, 0.05));
  clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 52%);
  filter: blur(2px);
  opacity: 0.86;
}

.screen {
  position: absolute;
  right: 46px;
  top: 66px;
  width: 63%;
  height: 235px;
  border: 12px solid #f5f5f7;
  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 184, 0, 0.95),
      transparent 28%),
    linear-gradient(140deg, #ff3d00, #ff7b00 44%, #120802 45%);
  box-shadow: 0 0 46px rgba(255, 106, 0, 0.36);
  transform: perspective(700px) rotateY(-7deg);
}

.screen::after {
  content: "YOUR BRAND\A ON THE BIG SCREEN";
  white-space: pre;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.seat-row {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 7px;
}

.seat {
  height: 72px;
  flex: 1;
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(#2f333d, #14161b);
  border-top: 4px solid #444955;
}

.floating-card {
  position: absolute;
  left: 24px;
  bottom: 112px;
  width: 210px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.27);
}

.floating-card strong {
  display: block;
  font-size: 1.02rem;
}

.floating-card small {
  color: var(--muted);
}

.network-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.network-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
}

.network-copy {
  font-weight: 800;
}

.network-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.network-badges img:first-child {
    width: 220px;
    object-fit: contain;
}
.network-badges img:last-child {
    max-width: 60px;
}
.network-badge {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.02em;
  background: #fff;
}

.network-badge:nth-child(2) {
  color: #d9231e;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(20, 21, 26, 0.11);
  border-color: #f4b39d;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .arrow {
  margin-top: 20px;
  color: var(--orange);
  font-weight: 800;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.dark-section .section-copy {
  color: #b7bac4;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.step {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
}

.step-num {
  font-size: 0.8rem;
  color: #ff8f66;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step h3 {
  font-size: 1.18rem;
  margin: 12px 0 8px;
}

.step p {
  margin: 0;
  color: #b8bbc4;
  font-size: 0.94rem;
}

.reach-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.map-card {
  min-height: 470px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 93, 0, 0.3), transparent 25%),
    linear-gradient(145deg, #fff6f0, #f6f6f8);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "INDIA";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(4.2rem, 9vw, 7.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  color: rgba(16, 18, 23, 0.05);
}

.dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 61, 0, 0.13);
}

.dot::after {
  content: attr(data-city);
  position: absolute;
  left: 24px;
  top: -7px;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.d1  { left: 12%; top: 10%; }
.d2  { left: 24%; top: 18%; }
.d3  { left: 38%; top: 12%; }
.d4  { left: 52%; top: 61%; }
.d5  { left: 68%; top: 14%; }

.d6  { left: 18%; top: 32%; }
.d7  { left: 34%; top: 38%; }
.d8  { left: 50%; top: 30%; }
.d9  { left: 66%; top: 36%; }
.d10 { left: 63%; top: 22%; }

.d11 { left: 10%; top: 52%; }
.d12 { left: 26%; top: 70%; }
.d13 { left: 42%; top: 54%; }
.d14 { left: 58%; top: 66%; }
.d15 { left: 74%; top: 58%; }

.d16 { left: 16%; top: 80%; }
.d17 { left: 34%; top: 88%; }
.d18 { left: 52%; top: 82%; }
.d19 { left: 68%; top: 90%; }
.d20 { left: 77%; top: 76%; }

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f8f0;
  color: var(--success);
  font-weight: 900;
  flex: 0 0 auto;
}

.check strong {
  display: block;
}

.check span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.contact-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}
a.contact-chip:hover:last-child {
    color: #25D366;
    background-color: transparent;
}

a.contact-chip:last-child {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}
.office-list {
  display: grid;
  gap: 16px;
}

.office-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.office-item span {
  display: block;
  color: #aeb1ba;
  font-size: 0.9rem;
  line-height: 1.5;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.industry {
  padding: 20px;
  border-radius: 17px;
  background: #f7f7f9;
  border: 1px solid transparent;
  font-weight: 800;
}

.industry:hover {
  background: var(--soft);
  border-color: #ffd1c1;
  color: #aa2e0b;
}

.movie-wrap {
  background: linear-gradient(145deg, #150b07, #08090c);
  color: #fff;
  border-radius: 34px;
  padding: 54px;
  position: relative;
  overflow: hidden;
}

.movie-wrap::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 93, 0, 0.38), transparent 68%);
}

.movie-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.movie-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.movie-card {
  min-height: 260px;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.movie-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 60%);
}

.movie-card:nth-child(1) {
  background: linear-gradient(145deg, #ff3d00, #401006);
}

.movie-card:nth-child(2) {
  background: linear-gradient(145deg, #1d4ed8, #06122e);
}

.movie-card:nth-child(3) {
  background: linear-gradient(145deg, #a6174f, #2d0619);
}

.movie-card span {
  position: relative;
  z-index: 2;
}

.movie-card small {
  display: block;
  color: #d6d7db;
  font-weight: 600;
  margin-top: 4px;
}

.disclaimer {
  font-size: 0.78rem;
  color: #aeb1ba;
  margin-top: 18px;
}

.lead-section {
  background: linear-gradient(180deg, #fff, #fff7f2);
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.lead-card p {
  padding: 0;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1/-1;
}

label {
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-card p label {
  display: inline-block;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dfe1e6;
  border-radius: 13px;
  min-height: 50px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 61, 0, 0.1);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

.success-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #eaf8f1;
  color: #126942;
  font-weight: 700;
}

.faq {
  max-width: 860px;
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 850;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-q span:last-child {
  transition: transform 0.2s;
}

.faq-item.open .faq-q span:last-child {
  transform: rotate(45deg);
}

footer {
  background: #08090c;
  color: #fff;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.6fr 0.7fr 1.65fr;
  gap: 34px;
}

.footer-logo {
  width: 120px;
  opacity: 0.95;
}

footer p,
footer a {
  color: #aeb1ba;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 13px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8e929c;
  font-size: 0.84rem;
}

@media (max-width: 980px) {

  .nav-links,
  .nav-actions .btn-outline {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu {
    display: none;
    padding: 0 20px 20px;
    background: #fff;
  }

  .mobile-menu.open {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 12px 4px;
    font-weight: 750;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .reach-grid,
  .movie-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cinema-stage {
    min-height: 430px;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .nav {
    height: 70px;
  }

  .brand-logo {
    width: 70px;
  }

  .hero-grid {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .cinema-stage {
    min-height: 360px;
  }

  .screen {
    right: 23px;
    top: 52px;
    width: 70%;
    height: 190px;
    border-width: 8px;
  }

  .screen::after {
    font-size: 1.3rem;
  }

  .floating-card {
    left: 14px;
    bottom: 96px;
    width: 175px;
    padding: 14px;
  }

  .seat-row {
    bottom: 18px;
  }

  .seat {
    height: 54px;
  }

  .network-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cards-3,
  .process,
  .movie-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .movie-wrap {
    padding: 32px 22px;
  }

  .movie-card {
    min-height: 180px;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
  }

  .map-card {
    min-height: 390px;
  }
}








/* Main container */
.glass-social {
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 999999;
}


/* Hide checkbox */
#glass-social-toggle {
    display:none;
}


/* Main floating button */
.glass-toggle {

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    cursor:pointer;

    color:#fff;

    font-size:26px;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.3);

    box-shadow:
    0 10px 30px rgba(0,0,0,.35);

    transition:.4s ease;
}


.glass-toggle i {
    transition:.4s;
}


#glass-social-toggle:checked + .glass-toggle i {
    transform:rotate(45deg);
}



/* Social icons container */

.glass-icons {

    position:absolute;

    right:5px;

    bottom:75px;


    display:flex;

    flex-direction:column;

    gap:15px;


    opacity:0;

    visibility:hidden;


    transform:translateY(30px);


    transition:.4s ease;

}


/* Open animation */

#glass-social-toggle:checked ~ .glass-icons {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/* Social buttons */

.glass-icons a {

    width:50px;

    height:50px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    color:#fff !important;


    font-size:23px;


    text-decoration:none;


    border:1px solid rgba(255,255,255,.35);


    box-shadow:
    0 8px 25px rgba(0,0,0,.3);


    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);


    transition:.3s ease;

}



.glass-icons a:hover {

    transform:
    scale(1.15)
    translateX(-8px);

}



/* Social colors */

.icon-fa-facebook-f {

    background:#1877f2 !important;

}


.icon-fa-instagram {

    background:
    linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af
    ) !important;

}


.icon-fa-youtube {

    background:#ff0000 !important;

}


.icon-fa-linkedin-in {

     background:#0a66c2 !important;

}


.icon-fa-x-twitter {

    background:#000 !important;

}




/* Icon visibility */

.glass-icons i {

    display:block;

    color:#fff !important;

    opacity:1 !important;

}



/* Mobile */

@media(max-width:768px){

    .glass-social {

        right:15px;

        bottom:20px;

    }


    .glass-toggle {

        width:55px;

        height:55px;

    }


    .glass-icons a {

        width:45px;

        height:45px;

        font-size:20px;

    }

}