/* --------------------------------------------------
  swp.css - SmartWebPros CSS Framework
  Author: SmartWebPros Team
  Description: Lightweight, Bootstrap-inspired CSS framework with "swp-style" prefix
-------------------------------------------------- */

/* --------------------------------------------------
    1. CSS Variables (Colors, Spacing)
  -------------------------------------------------- */
:root {
  --swp-primary: #007bff;
  --swp-secondary: #6c757d;
  --swp-success: #28a745;
  --swp-danger: #dc3545;
  --swp-white: #ffffff;
  --swp-black: #000000;
  --swp-gray-light: #f8f9fa;
  --swp-spacing: 1rem;
}

/* --------------------------------------------------
    2. Grid System (12-column layout)
  -------------------------------------------------- */
/* Container system */
.swp-style-container {
  /* width: 100%; */
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .swp-style-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .swp-style-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .swp-style-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .swp-style-container {
    max-width: 1140px;
  }
}

.swp-style-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Row */
.swp-style-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Columns - common properties */
.swp-style-col,
.swp-style-col-1,
.swp-style-col-2,
.swp-style-col-3,
.swp-style-col-4,
.swp-style-col-5,
.swp-style-col-6,
.swp-style-col-7,
.swp-style-col-8,
.swp-style-col-9,
.swp-style-col-10,
.swp-style-col-11,
.swp-style-col-12,
.swp-style-col-auto,
.swp-style-col-sm-1,
.swp-style-col-sm-2,
.swp-style-col-sm-3,
.swp-style-col-sm-4,
.swp-style-col-sm-5,
.swp-style-col-sm-6,
.swp-style-col-sm-7,
.swp-style-col-sm-8,
.swp-style-col-sm-9,
.swp-style-col-sm-10,
.swp-style-col-sm-11,
.swp-style-col-sm-12,
.swp-style-col-sm-auto,
.swp-style-col-md-1,
.swp-style-col-md-2,
.swp-style-col-md-3,
.swp-style-col-md-4,
.swp-style-col-md-5,
.swp-style-col-md-6,
.swp-style-col-md-7,
.swp-style-col-md-8,
.swp-style-col-md-9,
.swp-style-col-md-10,
.swp-style-col-md-11,
.swp-style-col-md-12,
.swp-style-col-md-auto,
.swp-style-col-lg-1,
.swp-style-col-lg-2,
.swp-style-col-lg-3,
.swp-style-col-lg-4,
.swp-style-col-lg-5,
.swp-style-col-lg-6,
.swp-style-col-lg-7,
.swp-style-col-lg-8,
.swp-style-col-lg-9,
.swp-style-col-lg-10,
.swp-style-col-lg-11,
.swp-style-col-lg-12,
.swp-style-col-lg-auto,
.swp-style-col-xl-1,
.swp-style-col-xl-2,
.swp-style-col-xl-3,
.swp-style-col-xl-4,
.swp-style-col-xl-5,
.swp-style-col-xl-6,
.swp-style-col-xl-7,
.swp-style-col-xl-8,
.swp-style-col-xl-9,
.swp-style-col-xl-10,
.swp-style-col-xl-11,
.swp-style-col-xl-12,
.swp-style-col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* Extra small columns (default) */
.swp-style-col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.swp-style-col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.swp-style-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.swp-style-col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.swp-style-col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.swp-style-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.swp-style-col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.swp-style-col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.swp-style-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.swp-style-col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.swp-style-col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.swp-style-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.swp-style-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

/* Small columns (sm) */
@media (min-width: 576px) {
  .swp-style-col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .swp-style-col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .swp-style-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .swp-style-col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .swp-style-col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .swp-style-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .swp-style-col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .swp-style-col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .swp-style-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .swp-style-col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .swp-style-col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .swp-style-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .swp-style-col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

/* Medium columns (md) */
@media (min-width: 768px) {
  .swp-style-col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .swp-style-col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .swp-style-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .swp-style-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .swp-style-col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .swp-style-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .swp-style-col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .swp-style-col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .swp-style-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .swp-style-col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .swp-style-col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .swp-style-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .swp-style-col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

/* Large columns (lg) */
@media (min-width: 992px) {
  .swp-style-col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .swp-style-col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .swp-style-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .swp-style-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .swp-style-col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .swp-style-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .swp-style-col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .swp-style-col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .swp-style-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .swp-style-col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .swp-style-col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .swp-style-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .swp-style-col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

/* Extra large columns (xl) */
@media (min-width: 1200px) {
  .swp-style-col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .swp-style-col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .swp-style-col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .swp-style-col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .swp-style-col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .swp-style-col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .swp-style-col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .swp-style-col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .swp-style-col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .swp-style-col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .swp-style-col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .swp-style-col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .swp-style-col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

/* Offsets */
.swp-style-offset-1 {
  margin-left: 8.333333%;
}
.swp-style-offset-2 {
  margin-left: 16.666667%;
}
.swp-style-offset-3 {
  margin-left: 25%;
}
.swp-style-offset-4 {
  margin-left: 33.333333%;
}
.swp-style-offset-5 {
  margin-left: 41.666667%;
}
.swp-style-offset-6 {
  margin-left: 50%;
}
.swp-style-offset-7 {
  margin-left: 58.333333%;
}
.swp-style-offset-8 {
  margin-left: 66.666667%;
}
.swp-style-offset-9 {
  margin-left: 75%;
}
.swp-style-offset-10 {
  margin-left: 83.333333%;
}
.swp-style-offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .swp-style-offset-sm-0 {
    margin-left: 0;
  }
  .swp-style-offset-sm-1 {
    margin-left: 8.333333%;
  }
  .swp-style-offset-sm-2 {
    margin-left: 16.666667%;
  }
  .swp-style-offset-sm-3 {
    margin-left: 25%;
  }
  .swp-style-offset-sm-4 {
    margin-left: 33.333333%;
  }
  .swp-style-offset-sm-5 {
    margin-left: 41.666667%;
  }
  .swp-style-offset-sm-6 {
    margin-left: 50%;
  }
  .swp-style-offset-sm-7 {
    margin-left: 58.333333%;
  }
  .swp-style-offset-sm-8 {
    margin-left: 66.666667%;
  }
  .swp-style-offset-sm-9 {
    margin-left: 75%;
  }
  .swp-style-offset-sm-10 {
    margin-left: 83.333333%;
  }
  .swp-style-offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .swp-style-offset-md-0 {
    margin-left: 0;
  }
  .swp-style-offset-md-1 {
    margin-left: 8.333333%;
  }
  .swp-style-offset-md-2 {
    margin-left: 16.666667%;
  }
  .swp-style-offset-md-3 {
    margin-left: 25%;
  }
  .swp-style-offset-md-4 {
    margin-left: 33.333333%;
  }
  .swp-style-offset-md-5 {
    margin-left: 41.666667%;
  }
  .swp-style-offset-md-6 {
    margin-left: 50%;
  }
  .swp-style-offset-md-7 {
    margin-left: 58.333333%;
  }
  .swp-style-offset-md-8 {
    margin-left: 66.666667%;
  }
  .swp-style-offset-md-9 {
    margin-left: 75%;
  }
  .swp-style-offset-md-10 {
    margin-left: 83.333333%;
  }
  .swp-style-offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .swp-style-offset-lg-0 {
    margin-left: 0;
  }
  .swp-style-offset-lg-1 {
    margin-left: 8.333333%;
  }
  .swp-style-offset-lg-2 {
    margin-left: 16.666667%;
  }
  .swp-style-offset-lg-3 {
    margin-left: 25%;
  }
  .swp-style-offset-lg-4 {
    margin-left: 33.333333%;
  }
  .swp-style-offset-lg-5 {
    margin-left: 41.666667%;
  }
  .swp-style-offset-lg-6 {
    margin-left: 50%;
  }
  .swp-style-offset-lg-7 {
    margin-left: 58.333333%;
  }
  .swp-style-offset-lg-8 {
    margin-left: 66.666667%;
  }
  .swp-style-offset-lg-9 {
    margin-left: 75%;
  }
  .swp-style-offset-lg-10 {
    margin-left: 83.333333%;
  }
  .swp-style-offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .swp-style-offset-xl-0 {
    margin-left: 0;
  }
  .swp-style-offset-xl-1 {
    margin-left: 8.333333%;
  }
  .swp-style-offset-xl-2 {
    margin-left: 16.666667%;
  }
  .swp-style-offset-xl-3 {
    margin-left: 25%;
  }
  .swp-style-offset-xl-4 {
    margin-left: 33.333333%;
  }
  .swp-style-offset-xl-5 {
    margin-left: 41.666667%;
  }
  .swp-style-offset-xl-6 {
    margin-left: 50%;
  }
  .swp-style-offset-xl-7 {
    margin-left: 58.333333%;
  }
  .swp-style-offset-xl-8 {
    margin-left: 66.666667%;
  }
  .swp-style-offset-xl-9 {
    margin-left: 75%;
  }
  .swp-style-offset-xl-10 {
    margin-left: 83.333333%;
  }
  .swp-style-offset-xl-11 {
    margin-left: 91.666667%;
  }
}

/* Ordering */
.swp-style-order-first {
  order: -1;
}
.swp-style-order-last {
  order: 13;
}
.swp-style-order-0 {
  order: 0;
}
.swp-style-order-1 {
  order: 1;
}
.swp-style-order-2 {
  order: 2;
}
.swp-style-order-3 {
  order: 3;
}
.swp-style-order-4 {
  order: 4;
}
.swp-style-order-5 {
  order: 5;
}
.swp-style-order-6 {
  order: 6;
}
.swp-style-order-7 {
  order: 7;
}
.swp-style-order-8 {
  order: 8;
}
.swp-style-order-9 {
  order: 9;
}
.swp-style-order-10 {
  order: 10;
}
.swp-style-order-11 {
  order: 11;
}
.swp-style-order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .swp-style-order-sm-first {
    order: -1;
  }
  .swp-style-order-sm-last {
    order: 13;
  }
  .swp-style-order-sm-0 {
    order: 0;
  }
  .swp-style-order-sm-1 {
    order: 1;
  }
  .swp-style-order-sm-2 {
    order: 2;
  }
  .swp-style-order-sm-3 {
    order: 3;
  }
  .swp-style-order-sm-4 {
    order: 4;
  }
  .swp-style-order-sm-5 {
    order: 5;
  }
  .swp-style-order-sm-6 {
    order: 6;
  }
  .swp-style-order-sm-7 {
    order: 7;
  }
  .swp-style-order-sm-8 {
    order: 8;
  }
  .swp-style-order-sm-9 {
    order: 9;
  }
  .swp-style-order-sm-10 {
    order: 10;
  }
  .swp-style-order-sm-11 {
    order: 11;
  }
  .swp-style-order-sm-12 {
    order: 12;
  }
}

@media (min-width: 768px) {
  .swp-style-order-md-first {
    order: -1;
  }
  .swp-style-order-md-last {
    order: 13;
  }
  .swp-style-order-md-0 {
    order: 0;
  }
  .swp-style-order-md-1 {
    order: 1;
  }
  .swp-style-order-md-2 {
    order: 2;
  }
  .swp-style-order-md-3 {
    order: 3;
  }
  .swp-style-order-md-4 {
    order: 4;
  }
  .swp-style-order-md-5 {
    order: 5;
  }
  .swp-style-order-md-6 {
    order: 6;
  }
  .swp-style-order-md-7 {
    order: 7;
  }
  .swp-style-order-md-8 {
    order: 8;
  }
  .swp-style-order-md-9 {
    order: 9;
  }
  .swp-style-order-md-10 {
    order: 10;
  }
  .swp-style-order-md-11 {
    order: 11;
  }
  .swp-style-order-md-12 {
    order: 12;
  }
}

@media (min-width: 992px) {
  .swp-style-order-lg-first {
    order: -1;
  }
  .swp-style-order-lg-last {
    order: 13;
  }
  .swp-style-order-lg-0 {
    order: 0;
  }
  .swp-style-order-lg-1 {
    order: 1;
  }
  .swp-style-order-lg-2 {
    order: 2;
  }
  .swp-style-order-lg-3 {
    order: 3;
  }
  .swp-style-order-lg-4 {
    order: 4;
  }
  .swp-style-order-lg-5 {
    order: 5;
  }
  .swp-style-order-lg-6 {
    order: 6;
  }
  .swp-style-order-lg-7 {
    order: 7;
  }
  .swp-style-order-lg-8 {
    order: 8;
  }
  .swp-style-order-lg-9 {
    order: 9;
  }
  .swp-style-order-lg-10 {
    order: 10;
  }
  .swp-style-order-lg-11 {
    order: 11;
  }
  .swp-style-order-lg-12 {
    order: 12;
  }
}

@media (min-width: 1200px) {
  .swp-style-order-xl-first {
    order: -1;
  }
  .swp-style-order-xl-last {
    order: 13;
  }
  .swp-style-order-xl-0 {
    order: 0;
  }
  .swp-style-order-xl-1 {
    order: 1;
  }
  .swp-style-order-xl-2 {
    order: 2;
  }
  .swp-style-order-xl-3 {
    order: 3;
  }
  .swp-style-order-xl-4 {
    order: 4;
  }
  .swp-style-order-xl-5 {
    order: 5;
  }
  .swp-style-order-xl-6 {
    order: 6;
  }
  .swp-style-order-xl-7 {
    order: 7;
  }
  .swp-style-order-xl-8 {
    order: 8;
  }
  .swp-style-order-xl-9 {
    order: 9;
  }
  .swp-style-order-xl-10 {
    order: 10;
  }
  .swp-style-order-xl-11 {
    order: 11;
  }
  .swp-style-order-xl-12 {
    order: 12;
  }
}

/* Alignment - rows */
.swp-style-align-items-start {
  align-items: flex-start;
}
.swp-style-align-items-center {
  align-items: center;
}
.swp-style-align-items-end {
  align-items: flex-end;
}

/* Alignment - columns */
.swp-style-align-self-start {
  align-self: flex-start;
}
.swp-style-align-self-center {
  align-self: center;
}
.swp-style-align-self-end {
  align-self: flex-end;
}

/* Justification */
.swp-style-justify-content-start {
  justify-content: flex-start;
}
.swp-style-justify-content-center {
  justify-content: center;
}
.swp-style-justify-content-end {
  justify-content: flex-end;
}
.swp-style-justify-content-around {
  justify-content: space-around;
}
.swp-style-justify-content-between {
  justify-content: space-between;
}

/* No gutters */
.swp-style-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.swp-style-no-gutters > [class^="swp-col-"],
.swp-style-no-gutters > [class*=" swp-col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Visibility classes */
.swp-style-visible {
  visibility: visible !important;
}

.swp-style-invisible {
  visibility: hidden !important;
}

/* Responsive visibility */
.swp-style-visible-xs,
.swp-style-visible-sm,
.swp-style-visible-md,
.swp-style-visible-lg,
.swp-style-visible-xl {
  display: none !important;
}

@media (max-width: 575.98px) {
  .swp-style-visible-xs {
    display: block !important;
  }
  table.swp-style-visible-xs {
    display: table !important;
  }
  tr.swp-style-visible-xs {
    display: table-row !important;
  }
  th.swp-style-visible-xs,
  td.swp-style-visible-xs {
    display: table-cell !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .swp-style-visible-sm {
    display: block !important;
  }
  table.swp-style-visible-sm {
    display: table !important;
  }
  tr.swp-style-visible-sm {
    display: table-row !important;
  }
  th.swp-style-visible-sm,
  td.swp-style-visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .swp-style-visible-md {
    display: block !important;
  }
  table.swp-style-visible-md {
    display: table !important;
  }
  tr.swp-style-visible-md {
    display: table-row !important;
  }
  th.swp-style-visible-md,
  td.swp-style-visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .swp-style-visible-lg {
    display: block !important;
  }
  table.swp-style-visible-lg {
    display: table !important;
  }
  tr.swp-style-visible-lg {
    display: table-row !important;
  }
  th.swp-style-visible-lg,
  td.swp-style-visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .swp-style-visible-xl {
    display: block !important;
  }
  table.swp-style-visible-xl {
    display: table !important;
  }
  tr.swp-style-visible-xl {
    display: table-row !important;
  }
  th.swp-style-visible-xl,
  td.swp-style-visible-xl {
    display: table-cell !important;
  }
}

/* Responsive hiding */
@media (max-width: 575.98px) {
  .swp-style-hidden-xs {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .swp-style-hidden-sm {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .swp-style-hidden-md {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .swp-style-hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .swp-style-hidden-xl {
    display: none !important;
  }
}

/* Print visibility */
@media print {
  .swp-style-visible-print {
    display: block !important;
  }
  table.swp-style-visible-print {
    display: table !important;
  }
  tr.swp-style-visible-print {
    display: table-row !important;
  }
  th.swp-style-visible-print,
  td.swp-style-visible-print {
    display: table-cell !important;
  }
}

@media print {
  .swp-style-hidden-print {
    display: none !important;
  }
}

/* --------------------------------------------------
    3. Margin & Padding Utilities
  -------------------------------------------------- */
/* =============================================
   Spacing Utilities (Margin & Padding)
   Prefix: swp-m-* (margin), swp-p-* (padding)
   ============================================= */

:root {
  --swp-spacer-1: 0.25rem; /* 4px  */
  --swp-spacer-2: 0.5rem; /* 8px  */
  --swp-spacer-3: 1rem; /* 16px */
  --swp-spacer-4: 1.5rem; /* 24px */
  --swp-spacer-5: 3rem; /* 48px */
}

/* Margin & Padding Helpers */
.swp-style-m-auto {
  margin: auto !important;
}
.swp-style-mt-auto {
  margin-top: auto !important;
}
.swp-style-mb-auto {
  margin-bottom: auto !important;
}
.swp-style-ml-auto {
  margin-left: auto !important;
}
.swp-style-mr-auto {
  margin-right: auto !important;
}
.swp-style-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.swp-style-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* Margin Utilities */
.swp-style-m-0 {
  margin: 0 !important;
}
.swp-style-m-1 {
  margin: var(--swp-spacer-1) !important;
}
.swp-style-m-2 {
  margin: var(--swp-spacer-2) !important;
}
.swp-style-m-3 {
  margin: var(--swp-spacer-3) !important;
}
.swp-style-m-4 {
  margin: var(--swp-spacer-4) !important;
}
.swp-style-m-5 {
  margin: var(--swp-spacer-5) !important;
}

/* Margin Top */
.swp-style-mt-0 {
  margin-top: 0 !important;
}
.swp-style-mt-1 {
  margin-top: var(--swp-spacer-1) !important;
}
.swp-style-mt-2 {
  margin-top: var(--swp-spacer-2) !important;
}
.swp-style-mt-3 {
  margin-top: var(--swp-spacer-3) !important;
}
.swp-style-mt-4 {
  margin-top: var(--swp-spacer-4) !important;
}
.swp-style-mt-5 {
  margin-top: var(--swp-spacer-5) !important;
}

/* Margin Bottom */
.swp-style-mb-0 {
  margin-bottom: 0 !important;
}
.swp-style-mb-1 {
  margin-bottom: var(--swp-spacer-1) !important;
}
.swp-style-mb-2 {
  margin-bottom: var(--swp-spacer-2) !important;
}
.swp-style-mb-3 {
  margin-bottom: var(--swp-spacer-3) !important;
}
.swp-style-mb-4 {
  margin-bottom: var(--swp-spacer-4) !important;
}
.swp-style-mb-5 {
  margin-bottom: var(--swp-spacer-5) !important;
}

/* Margin Left */
.swp-style-ml-0 {
  margin-left: 0 !important;
}
.swp-style-ml-1 {
  margin-left: var(--swp-spacer-1) !important;
}
.swp-style-ml-2 {
  margin-left: var(--swp-spacer-2) !important;
}
.swp-style-ml-3 {
  margin-left: var(--swp-spacer-3) !important;
}
.swp-style-ml-4 {
  margin-left: var(--swp-spacer-4) !important;
}
.swp-style-ml-5 {
  margin-left: var(--swp-spacer-5) !important;
}

/* Margin Right */
.swp-style-mr-0 {
  margin-right: 0 !important;
}
.swp-style-mr-1 {
  margin-right: var(--swp-spacer-1) !important;
}
.swp-style-mr-2 {
  margin-right: var(--swp-spacer-2) !important;
}
.swp-style-mr-3 {
  margin-right: var(--swp-spacer-3) !important;
}
.swp-style-mr-4 {
  margin-right: var(--swp-spacer-4) !important;
}
.swp-style-mr-5 {
  margin-right: var(--swp-spacer-5) !important;
}

/* Margin X-Axis (left & right) */
.swp-style-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.swp-style-mx-1 {
  margin-left: var(--swp-spacer-1) !important;
  margin-right: var(--swp-spacer-1) !important;
}
.swp-style-mx-2 {
  margin-left: var(--swp-spacer-2) !important;
  margin-right: var(--swp-spacer-2) !important;
}
.swp-style-mx-3 {
  margin-left: var(--swp-spacer-3) !important;
  margin-right: var(--swp-spacer-3) !important;
}
.swp-style-mx-4 {
  margin-left: var(--swp-spacer-4) !important;
  margin-right: var(--swp-spacer-4) !important;
}
.swp-style-mx-5 {
  margin-left: var(--swp-spacer-5) !important;
  margin-right: var(--swp-spacer-5) !important;
}

/* Margin Y-Axis (top & bottom) */
.swp-style-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.swp-style-my-1 {
  margin-top: var(--swp-spacer-1) !important;
  margin-bottom: var(--swp-spacer-1) !important;
}
.swp-style-my-2 {
  margin-top: var(--swp-spacer-2) !important;
  margin-bottom: var(--swp-spacer-2) !important;
}
.swp-style-my-3 {
  margin-top: var(--swp-spacer-3) !important;
  margin-bottom: var(--swp-spacer-3) !important;
}
.swp-style-my-4 {
  margin-top: var(--swp-spacer-4) !important;
  margin-bottom: var(--swp-spacer-4) !important;
}
.swp-style-my-5 {
  margin-top: var(--swp-spacer-5) !important;
  margin-bottom: var(--swp-spacer-5) !important;
}

/* Padding Utilities */
.swp-style-p-0 {
  padding: 0 !important;
}
.swp-style-p-1 {
  padding: var(--swp-spacer-1) !important;
}
.swp-style-p-2 {
  padding: var(--swp-spacer-2) !important;
}
.swp-style-p-3 {
  padding: var(--swp-spacer-3) !important;
}
.swp-style-p-4 {
  padding: var(--swp-spacer-4) !important;
}
.swp-style-p-5 {
  padding: var(--swp-spacer-5) !important;
}

/* Padding Top */
.swp-style-pt-0 {
  padding-top: 0 !important;
}
.swp-style-pt-1 {
  padding-top: var(--swp-spacer-1) !important;
}
.swp-style-pt-2 {
  padding-top: var(--swp-spacer-2) !important;
}
.swp-style-pt-3 {
  padding-top: var(--swp-spacer-3) !important;
}
.swp-style-pt-4 {
  padding-top: var(--swp-spacer-4) !important;
}
.swp-style-pt-5 {
  padding-top: var(--swp-spacer-5) !important;
}

/* Padding Bottom */
.swp-style-pb-0 {
  padding-bottom: 0 !important;
}
.swp-style-pb-1 {
  padding-bottom: var(--swp-spacer-1) !important;
}
.swp-style-pb-2 {
  padding-bottom: var(--swp-spacer-2) !important;
}
.swp-style-pb-3 {
  padding-bottom: var(--swp-spacer-3) !important;
}
.swp-style-pb-4 {
  padding-bottom: var(--swp-spacer-4) !important;
}
.swp-style-pb-5 {
  padding-bottom: var(--swp-spacer-5) !important;
}

/* Padding Left */
.swp-style-pl-0 {
  padding-left: 0 !important;
}
.swp-style-pl-1 {
  padding-left: var(--swp-spacer-1) !important;
}
.swp-style-pl-2 {
  padding-left: var(--swp-spacer-2) !important;
}
.swp-style-pl-3 {
  padding-left: var(--swp-spacer-3) !important;
}
.swp-style-pl-4 {
  padding-left: var(--swp-spacer-4) !important;
}
.swp-style-pl-5 {
  padding-left: var(--swp-spacer-5) !important;
}

/* Padding Right */
.swp-style-pr-0 {
  padding-right: 0 !important;
}
.swp-style-pr-1 {
  padding-right: var(--swp-spacer-1) !important;
}
.swp-style-pr-2 {
  padding-right: var(--swp-spacer-2) !important;
}
.swp-style-pr-3 {
  padding-right: var(--swp-spacer-3) !important;
}
.swp-style-pr-4 {
  padding-right: var(--swp-spacer-4) !important;
}
.swp-style-pr-5 {
  padding-right: var(--swp-spacer-5) !important;
}

/* Padding X-Axis (left & right) */
.swp-style-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.swp-style-px-1 {
  padding-left: var(--swp-spacer-1) !important;
  padding-right: var(--swp-spacer-1) !important;
}
.swp-style-px-2 {
  padding-left: var(--swp-spacer-2) !important;
  padding-right: var(--swp-spacer-2) !important;
}
.swp-style-px-3 {
  padding-left: var(--swp-spacer-3) !important;
  padding-right: var(--swp-spacer-3) !important;
}
.swp-style-px-4 {
  padding-left: var(--swp-spacer-4) !important;
  padding-right: var(--swp-spacer-4) !important;
}
.swp-style-px-5 {
  padding-left: var(--swp-spacer-5) !important;
  padding-right: var(--swp-spacer-5) !important;
}

/* Padding Y-Axis (top & bottom) */
.swp-style-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.swp-style-py-1 {
  padding-top: var(--swp-spacer-1) !important;
  padding-bottom: var(--swp-spacer-1) !important;
}
.swp-style-py-2 {
  padding-top: var(--swp-spacer-2) !important;
  padding-bottom: var(--swp-spacer-2) !important;
}
.swp-style-py-3 {
  padding-top: var(--swp-spacer-3) !important;
  padding-bottom: var(--swp-spacer-3) !important;
}
.swp-style-py-4 {
  padding-top: var(--swp-spacer-4) !important;
  padding-bottom: var(--swp-spacer-4) !important;
}
.swp-style-py-5 {
  padding-top: var(--swp-spacer-5) !important;
  padding-bottom: var(--swp-spacer-5) !important;
}

/* =============================================
     Responsive Spacing (sm, md, lg, xl)
     Example: swp-m-sm-2, swp-p-lg-4
     ============================================= */

/* SM Breakpoint (≥576px) */
@media (min-width: 576px) {
  .swp-style-m-sm-0 {
    margin: 0 !important;
  }
  .swp-style-m-sm-1 {
    margin: var(--swp-spacer-1) !important;
  }
  .swp-style-m-sm-2 {
    margin: var(--swp-spacer-2) !important;
  }
  .swp-style-m-sm-3 {
    margin: var(--swp-spacer-3) !important;
  }
  .swp-style-m-sm-4 {
    margin: var(--swp-spacer-4) !important;
  }
  .swp-style-m-sm-5 {
    margin: var(--swp-spacer-5) !important;
  }

  .swp-style-p-sm-0 {
    padding: 0 !important;
  }
  .swp-style-p-sm-1 {
    padding: var(--swp-spacer-1) !important;
  }
  .swp-style-p-sm-2 {
    padding: var(--swp-spacer-2) !important;
  }
  .swp-style-p-sm-3 {
    padding: var(--swp-spacer-3) !important;
  }
  .swp-style-p-sm-4 {
    padding: var(--swp-spacer-4) !important;
  }
  .swp-style-p-sm-5 {
    padding: var(--swp-spacer-5) !important;
  }

  /* Add more directional classes (mt-sm-*, px-sm-*, etc.) as needed */
}

/* MD Breakpoint (≥768px) */
@media (min-width: 768px) {
  .swp-style-m-md-0 {
    margin: 0 !important;
  }
  .swp-style-m-md-1 {
    margin: var(--swp-spacer-1) !important;
  }
  .swp-style-m-md-2 {
    margin: var(--swp-spacer-2) !important;
  }
  .swp-style-m-md-3 {
    margin: var(--swp-spacer-3) !important;
  }
  .swp-style-m-md-4 {
    margin: var(--swp-spacer-4) !important;
  }
  .swp-style-m-md-5 {
    margin: var(--swp-spacer-5) !important;
  }

  .swp-style-p-md-0 {
    padding: 0 !important;
  }
  .swp-style-p-md-1 {
    padding: var(--swp-spacer-1) !important;
  }
  .swp-style-p-md-2 {
    padding: var(--swp-spacer-2) !important;
  }
  .swp-style-p-md-3 {
    padding: var(--swp-spacer-3) !important;
  }
  .swp-style-p-md-4 {
    padding: var(--swp-spacer-4) !important;
  }
  .swp-style-p-md-5 {
    padding: var(--swp-spacer-5) !important;
  }
}

/* LG Breakpoint (≥992px) */
@media (min-width: 992px) {
  .swp-style-m-lg-0 {
    margin: 0 !important;
  }
  .swp-style-m-lg-1 {
    margin: var(--swp-spacer-1) !important;
  }
  .swp-style-m-lg-2 {
    margin: var(--swp-spacer-2) !important;
  }
  .swp-style-m-lg-3 {
    margin: var(--swp-spacer-3) !important;
  }
  .swp-style-m-lg-4 {
    margin: var(--swp-spacer-4) !important;
  }
  .swp-style-m-lg-5 {
    margin: var(--swp-spacer-5) !important;
  }

  .swp-style-p-lg-0 {
    padding: 0 !important;
  }
  .swp-style-p-lg-1 {
    padding: var(--swp-spacer-1) !important;
  }
  .swp-style-p-lg-2 {
    padding: var(--swp-spacer-2) !important;
  }
  .swp-style-p-lg-3 {
    padding: var(--swp-spacer-3) !important;
  }
  .swp-style-p-lg-4 {
    padding: var(--swp-spacer-4) !important;
  }
  .swp-style-p-lg-5 {
    padding: var(--swp-spacer-5) !important;
  }
}

/* XL Breakpoint (≥1200px) */
@media (min-width: 1200px) {
  .swp-style-m-xl-0 {
    margin: 0 !important;
  }
  .swp-style-m-xl-1 {
    margin: var(--swp-spacer-1) !important;
  }
  .swp-style-m-xl-2 {
    margin: var(--swp-spacer-2) !important;
  }
  .swp-style-m-xl-3 {
    margin: var(--swp-spacer-3) !important;
  }
  .swp-style-m-xl-4 {
    margin: var(--swp-spacer-4) !important;
  }
  .swp-style-m-xl-5 {
    margin: var(--swp-spacer-5) !important;
  }

  .swp-style-p-xl-0 {
    padding: 0 !important;
  }
  .swp-style-p-xl-1 {
    padding: var(--swp-spacer-1) !important;
  }
  .swp-style-p-xl-2 {
    padding: var(--swp-spacer-2) !important;
  }
  .swp-style-p-xl-3 {
    padding: var(--swp-spacer-3) !important;
  }
  .swp-style-p-xl-4 {
    padding: var(--swp-spacer-4) !important;
  }
  .swp-style-p-xl-5 {
    padding: var(--swp-spacer-5) !important;
  }
}

/* --------------------------------------------------
    4. Flexbox Utilities
  -------------------------------------------------- */
/* =============================================
   Flexbox Utilities (Prefix: swp-flex-*)
   ============================================= */

/* Flex Containers */
.swp-style-d-flex {
  display: flex !important;
}
.swp-style-d-inline-flex {
  display: inline-flex !important;
}

/* Flex Direction */
.swp-style-flex-row {
  flex-direction: row !important;
}
.swp-style-flex-row-reverse {
  flex-direction: row-reverse !important;
}
.swp-style-flex-column {
  flex-direction: column !important;
}
.swp-style-flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* Flex Wrap */
.swp-style-flex-wrap {
  flex-wrap: wrap !important;
}
.swp-style-flex-nowrap {
  flex-wrap: nowrap !important;
}
.swp-style-flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* Justify Content */
.swp-style-justify-content-start {
  justify-content: flex-start !important;
}
.swp-style-justify-content-end {
  justify-content: flex-end !important;
}
.swp-style-justify-content-center {
  justify-content: center !important;
}
.swp-style-justify-content-between {
  justify-content: space-between !important;
}
.swp-style-justify-content-around {
  justify-content: space-around !important;
}
.swp-style-justify-content-evenly {
  justify-content: space-evenly !important;
}

/* Align Items */
.swp-style-align-items-start {
  align-items: flex-start !important;
}
.swp-style-align-items-end {
  align-items: flex-end !important;
}
.swp-style-align-items-center {
  align-items: center !important;
}
.swp-style-align-items-baseline {
  align-items: baseline !important;
}
.swp-style-align-items-stretch {
  align-items: stretch !important;
}

/* Align Self */
.swp-style-align-self-auto {
  align-self: auto !important;
}
.swp-style-align-self-start {
  align-self: flex-start !important;
}
.swp-style-align-self-end {
  align-self: flex-end !important;
}
.swp-style-align-self-center {
  align-self: center !important;
}
.swp-style-align-self-baseline {
  align-self: baseline !important;
}
.swp-style-align-self-stretch {
  align-self: stretch !important;
}

/* Flex Grow & Shrink */
.swp-style-flex-fill {
  flex: 1 1 auto !important;
}
.swp-style-flex-grow-0 {
  flex-grow: 0 !important;
}
.swp-style-flex-grow-1 {
  flex-grow: 1 !important;
}
.swp-style-flex-shrink-0 {
  flex-shrink: 0 !important;
}
.swp-style-flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* Order */
.swp-style-order-first {
  order: -1 !important;
}
.swp-style-order-0 {
  order: 0 !important;
}
.swp-style-order-1 {
  order: 1 !important;
}
.swp-style-order-2 {
  order: 2 !important;
}
.swp-style-order-3 {
  order: 3 !important;
}
.swp-style-order-4 {
  order: 4 !important;
}
.swp-style-order-5 {
  order: 5 !important;
}
.swp-style-order-last {
  order: 6 !important;
}

/* =============================================
   Responsive Flex Utilities
   (Example: swp-flex-sm-column, swp-justify-lg-center)
   ============================================= */

/* SM Breakpoint (≥576px) */
@media (min-width: 576px) {
  .swp-style-d-sm-flex {
    display: flex !important;
  }
  .swp-style-d-sm-inline-flex {
    display: inline-flex !important;
  }
  .swp-style-flex-sm-row {
    flex-direction: row !important;
  }
  .swp-style-flex-sm-column {
    flex-direction: column !important;
  }
  .swp-style-flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .swp-style-flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .swp-style-justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .swp-style-justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .swp-style-justify-content-sm-center {
    justify-content: center !important;
  }
  .swp-style-align-items-sm-start {
    align-items: flex-start !important;
  }
  .swp-style-align-items-sm-end {
    align-items: flex-end !important;
  }
  .swp-style-align-items-sm-center {
    align-items: center !important;
  }
}

/* MD Breakpoint (≥768px) */
@media (min-width: 768px) {
  .swp-style-d-md-flex {
    display: flex !important;
  }
  .swp-style-d-md-inline-flex {
    display: inline-flex !important;
  }
  .swp-style-flex-md-row {
    flex-direction: row !important;
  }
  .swp-style-flex-md-column {
    flex-direction: column !important;
  }
  .swp-style-flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .swp-style-flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .swp-style-justify-content-md-start {
    justify-content: flex-start !important;
  }
  .swp-style-justify-content-md-end {
    justify-content: flex-end !important;
  }
  .swp-style-justify-content-md-center {
    justify-content: center !important;
  }
  .swp-style-align-items-md-start {
    align-items: flex-start !important;
  }
  .swp-style-align-items-md-end {
    align-items: flex-end !important;
  }
  .swp-style-align-items-md-center {
    align-items: center !important;
  }
}

/* LG Breakpoint (≥992px) */
@media (min-width: 992px) {
  .swp-style-d-lg-flex {
    display: flex !important;
  }
  .swp-style-d-lg-inline-flex {
    display: inline-flex !important;
  }
  .swp-style-flex-lg-row {
    flex-direction: row !important;
  }
  .swp-style-flex-lg-column {
    flex-direction: column !important;
  }
  .swp-style-flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .swp-style-flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .swp-style-justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .swp-style-justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .swp-style-justify-content-lg-center {
    justify-content: center !important;
  }
  .swp-style-align-items-lg-start {
    align-items: flex-start !important;
  }
  .swp-style-align-items-lg-end {
    align-items: flex-end !important;
  }
  .swp-style-align-items-lg-center {
    align-items: center !important;
  }
}

/* XL Breakpoint (≥1200px) */
@media (min-width: 1200px) {
  .swp-style-d-xl-flex {
    display: flex !important;
  }
  .swp-style-d-xl-inline-flex {
    display: inline-flex !important;
  }
  .swp-style-flex-xl-row {
    flex-direction: row !important;
  }
  .swp-style-flex-xl-column {
    flex-direction: column !important;
  }
  .swp-style-flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .swp-style-flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .swp-style-justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .swp-style-justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .swp-style-justify-content-xl-center {
    justify-content: center !important;
  }
  .swp-style-align-items-xl-start {
    align-items: flex-start !important;
  }
  .swp-style-align-items-xl-end {
    align-items: flex-end !important;
  }
  .swp-style-align-items-xl-center {
    align-items: center !important;
  }
}

/* --------------------------------------------------
    Typography Utilities
  -------------------------------------------------- */

/* Text Alignment */
.swp-style-text-left {
  text-align: left !important;
}
.swp-style-text-center {
  text-align: center !important;
}
.swp-style-text-right {
  text-align: right !important;
}

/* Font Weight */
.swp-style-font-light {
  font-weight: 300 !important;
}
.swp-style-font-normal {
  font-weight: 400 !important;
}
.swp-style-font-bold {
  font-weight: 700 !important;
}

/* Text Transformation */
.swp-style-text-lowercase {
  text-transform: lowercase !important;
}
.swp-style-text-uppercase {
  text-transform: uppercase !important;
}
.swp-style-text-capitalize {
  text-transform: capitalize !important;
}

/* Text Colors */
.swp-style-text-primary {
  color: var(--swp-primary) !important;
}
.swp-style-text-secondary {
  color: var(--swp-secondary) !important;
}
.swp-style-text-success {
  color: var(--swp-success) !important;
}
.swp-style-text-white {
  color: #fff !important;
}
.swp-style-text-black {
  color: #000 !important;
}
/* Add more colors as needed */

/* Responsive Text Alignment */
@media (min-width: 768px) {
  .swp-style-text-md-center {
    text-align: center !important;
  }
}

/* --------------------------------------------------
    Background Utilities
  -------------------------------------------------- */

/* Background Colors */
.swp-style-light-grey-bg {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Box Shadows */
.swp-style-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.swp-style-shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.swp-style-shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.swp-style-shadow-none {
  box-shadow: none !important;
}

/* Borders */
.swp-style-border {
  border: 1px solid #dee2e6 !important;
}
.swp-style-border-top {
  border-top: 1px solid #dee2e6 !important;
}

.swp-style-border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.swp-style-border-0 {
  border: 0 !important;
}

/* Border Radius */
.swp-style-rounded {
  border-radius: 0.5rem !important;
}
.swp-style-rounded-top {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}
.swp-style-rounded-circle {
  border-radius: 50% !important;
}

/* --------------------------------------------------
    Overflow & Position Utilities
  -------------------------------------------------- */

/* Overflow */
.swp-style-overflow-auto {
  overflow: auto !important;
}
.swp-style-overflow-hidden {
  overflow: hidden !important;
}

/* Position */
.swp-style-position-static {
  position: static !important;
}
.swp-style-position-relative {
  position: relative !important;
}
.swp-style-position-absolute {
  position: absolute !important;
}
.swp-style-position-fixed {
  position: fixed !important;
}
.swp-style-position-sticky {
  position: sticky !important;
}

/* Position Placement */
.swp-style-top-0 {
  top: 0 !important;
}
.swp-style-bottom-0 {
  bottom: 0 !important;
}
.swp-style-start-0 {
  left: 0 !important;
}
.swp-style-end-0 {
  right: 0 !important;
}

/* --------------------------------------------------
    Sizing Utilities
  -------------------------------------------------- */

/* Width */
.swp-style-w-25 {
  width: 25% !important;
}
.swp-style-w-50 {
  width: 50% !important;
}
.swp-style-w-75 {
  width: 75% !important;
}
.swp-style-w-100 {
  width: 100% !important;
}
.swp-style-w-auto {
  width: auto !important;
}

/* Height */
.swp-style-h-25 {
  height: 25% !important;
}
.swp-style-h-50 {
  height: 50% !important;
}
.swp-style-h-75 {
  height: 75% !important;
}
.swp-style-h-100 {
  height: 100% !important;
}
.swp-style-h-auto {
  height: auto !important;
}

/* --------------------------------------------------
    Display Utilities
  -------------------------------------------------- */

/* Display */
.swp-style-d-none {
  display: none !important;
}
.swp-style-d-inline {
  display: inline !important;
}
.swp-style-d-inline-block {
  display: inline-block !important;
}
.swp-style-d-block {
  display: block !important;
}
.swp-style-d-table {
  display: table !important;
}
.swp-style-d-table-cell {
  display: table-cell !important;
}

/* Responsive Display */
@media (min-width: 768px) {
  .swp-style-d-md-none {
    display: none !important;
  }
  .swp-style-d-md-block {
    display: block !important;
  }
}

/* --------------------------------------------------
    Card Utilities
  -------------------------------------------------- */

/* Card Container */
.swp-style-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

/* Card Body (main content) */
.swp-style-card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

/* Card Titles */
.swp-style-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Card Subtitles */
.swp-style-card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
  color: #6c757d;
}

/* Card Text */
.swp-style-card-text:last-child {
  margin-bottom: 0;
}

/* Card Header */
.swp-style-card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Card Footer */
.swp-style-card-footer {
  padding: 0.75rem 1.25rem;
}

/* Card Images */
.swp-style-card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.swp-style-card-img-bottom {
  width: 100%;
  border-bottom-left-radius: calc(0.25rem - 1px);
  border-bottom-right-radius: calc(0.25rem - 1px);
}

/* --------------------------------------------------
    Accordion Utilities
  -------------------------------------------------- */

/* Accordion Container */
.swp-style-accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family: system-ui, sans-serif;
}

/* Accordion Item */
.swp-style-accordion-item {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Accordion Header */
.swp-style-accordion-header {
  margin: 0;
}

/* Accordion Button */
.swp-style-accordion-button {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: #333;
  background-color: #f8f9fa;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.swp-style-accordion-button:hover {
  background-color: #e9ecef;
}

/* Arrow Icon */
.swp-style-accordion-button::after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  transform: rotate(270deg);
}

.swp-style-accordion-button[aria-expanded="true"]::after {
  transform: rotate(0deg);
}

/* Accordion Collapse */
.swp-style-accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: none;
}

.swp-style-accordion-collapse.show {
  max-height: 500px; /* Should be big enough for most content */
  display: block;
}

/* Accordion Body */
.swp-style-accordion-body {
  padding: 20px 24px;
  line-height: 1.6;
  color: #555;
}
/* --------------------------------------------------
Simple vanilla JS implementation of accordion
document.addEventListener("DOMContentLoaded", function () {
    const buttons = document.querySelectorAll(".swp-style-accordion-button");

    buttons.forEach((button) => {
      button.addEventListener("click", function () {
        const targetId = this.getAttribute("aria-controls");
        const target = document.getElementById(targetId);

        const isExpanded = this.getAttribute("aria-expanded") === "true";

        // Close all other accordions
        document
          .querySelectorAll(".swp-style-accordion-collapse")
          .forEach((section) => {
            section.classList.remove("show");
            section.previousElementSibling
              .querySelector("button")
              .classList.add("collapsed");
            section.previousElementSibling
              .querySelector("button")
              .setAttribute("aria-expanded", "false");
          });

        if (!isExpanded) {
          target.classList.add("show");
          this.classList.remove("collapsed");
          this.setAttribute("aria-expanded", "true");
        }
      });
    });
  });
-------------------------------------------------- */

/* --------------------------------------------------
    Button Utilities
-------------------------------------------------- */
/* Base Button */
.swp-style-btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

/* Button Variants */
.swp-style-btn-primary {
  color: #fff;
  background-color: var(--swp-primary);
  border-color: var(--swp-primary);
}

.swp-style-btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.swp-style-btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}

.swp-style-btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
}

/* Gaps */

/* =============================================
   SWP Gap Utilities (for Flexbox/Grid layouts)
   ============================================= */

/* Base Gap Classes */
.swp-style-gap-0 {
  gap: 0 !important;
}
.swp-style-gap-1 {
  gap: 0.25rem !important;
} /* 4px */
.swp-style-gap-2 {
  gap: 0.5rem !important;
} /* 8px */
.swp-style-gap-3 {
  gap: 1rem !important;
} /* 16px */
.swp-style-gap-4 {
  gap: 1.5rem !important;
} /* 24px */
.swp-style-gap-5 {
  gap: 3rem !important;
} /* 48px */

/* Column Gap (horizontal spacing) */
.swp-style-column-gap-0 {
  column-gap: 0 !important;
}
.swp-style-column-gap-1 {
  column-gap: 0.25rem !important;
}
.swp-style-column-gap-2 {
  column-gap: 0.5rem !important;
}
.swp-style-column-gap-3 {
  column-gap: 1rem !important;
}
.swp-style-column-gap-4 {
  column-gap: 1.5rem !important;
}
.swp-style-column-gap-5 {
  column-gap: 3rem !important;
}

/* Row Gap (vertical spacing) */
.swp-style-row-gap-0 {
  row-gap: 0 !important;
}
.swp-style-row-gap-1 {
  row-gap: 0.25rem !important;
}
.swp-style-row-gap-2 {
  row-gap: 0.5rem !important;
}
.swp-style-row-gap-3 {
  row-gap: 1rem !important;
}
.swp-style-row-gap-4 {
  row-gap: 1.5rem !important;
}
.swp-style-row-gap-5 {
  row-gap: 3rem !important;
}

/* =============================================
   Responsive Gap Utilities
   Example: swp-style-gap-md-3, swp-style-row-gap-xl-2
   ============================================= */

/* Small (sm) breakpoint */
@media (min-width: 576px) {
  .swp-style-gap-sm-0 {
    gap: 0 !important;
  }
  .swp-style-gap-sm-1 {
    gap: 0.25rem !important;
  }
  .swp-style-gap-sm-2 {
    gap: 0.5rem !important;
  }
  .swp-style-gap-sm-3 {
    gap: 1rem !important;
  }
  .swp-style-gap-sm-4 {
    gap: 1.5rem !important;
  }
  .swp-style-gap-sm-5 {
    gap: 3rem !important;
  }
}

/* Medium (md) breakpoint */
@media (min-width: 768px) {
  .swp-style-gap-md-0 {
    gap: 0 !important;
  }
  .swp-style-gap-md-1 {
    gap: 0.25rem !important;
  }
  .swp-style-gap-md-2 {
    gap: 0.5rem !important;
  }
  .swp-style-gap-md-3 {
    gap: 1rem !important;
  }
  .swp-style-gap-md-4 {
    gap: 1.5rem !important;
  }
  .swp-style-gap-md-5 {
    gap: 3rem !important;
  }
}

/* Large (lg) breakpoint */
@media (min-width: 992px) {
  .swp-style-gap-lg-0 {
    gap: 0 !important;
  }
  .swp-style-gap-lg-1 {
    gap: 0.25rem !important;
  }
  .swp-style-stylegap-lg-2 {
    gap: 0.5rem !important;
  }
  .swp-style-gap-lg-3 {
    gap: 1rem !important;
  }
  .swp-style-gap-lg-4 {
    gap: 1.5rem !important;
  }
  .swp-style-gap-lg-5 {
    gap: 3rem !important;
  }
}

/* Extra Large (xl) breakpoint */
@media (min-width: 1200px) {
  .swp-style-gap-xl-0 {
    gap: 0 !important;
  }
  .swp-style-gap-xl-1 {
    gap: 0.25rem !important;
  }
  .swp-style-gap-xl-2 {
    gap: 0.5rem !important;
  }
  .swp-style-gap-xl-3 {
    gap: 1rem !important;
  }
  .swp-style-gap-xl-4 {
    gap: 1.5rem !important;
  }
  .swp-style-gap-xl-5 {
    gap: 3rem !important;
  }
}

/* =============================================
   SWP List Style Utilities
   ============================================= */

/* Base List Reset */
.swp-style-list-none {
  list-style: none !important;
  padding-left: 0 !important;
}

/* List Style Types */
.swp-style-disc {
  list-style-type: disc !important;
}
.swp-style-circle {
  list-style-type: circle !important;
}
.swp-style-square {
  list-style-type: square !important;
}
.swp-style-decimal {
  list-style-type: decimal !important;
}
.swp-style-decimal-leading-zero {
  list-style-type: decimal-leading-zero !important;
}
.swp-style-lower-roman {
  list-style-type: lower-roman !important;
}
.swp-style-upper-roman {
  list-style-type: upper-roman !important;
}
.swp-style-lower-alpha {
  list-style-type: lower-alpha !important;
}
.swp-style-upper-alpha {
  list-style-type: upper-alpha !important;
}

/* List Position */
.swp-style-inside {
  list-style-position: inside !important;
}
.swp-style-outside {
  list-style-position: outside !important;
}

/* Custom List Markers */
.swp-style-checkmark {
  list-style: none !important;
  padding-left: 1.5rem !important;
}
.swp-style-checkmark li::before {
  content: "✓";
  margin-left: -1.5rem;
  width: 1.5rem;
  display: inline-block;
  color: green;
}

.swp-style-arrow {
  list-style: none !important;
  padding-left: 1.5rem !important;
}
.swp-style-arrow li::before {
  content: "→";
  margin-left: -1.5rem;
  width: 1.5rem;
  display: inline-block;
  color: blue;
}

/* List Spacing */
.swp-style-list-spaced li {
  margin-bottom: 0.5rem !important;
}
.swp-style-list-tight li {
  margin-bottom: 0 !important;
}

/* Inline Lists */
.swp-style-inline {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  list-style: none !important;
  padding-left: 0 !important;
}

/* =============================================
   SWP Bread Crumbs
   ============================================= */
.swp-style-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

/* Breadcrumb Items */
.swp-style-breadcrumb-item {
  display: flex;
  align-items: center;
}

/* Separator (/) between items */
.swp-style-breadcrumb-item + .swp-style-breadcrumb-item::before {
  content: "/";
  display: inline-block;
  padding: 0 0.5rem;
  color: #6c757d;
}

/* Active Item (current page) */
.swp-style-breadcrumb-item.active {
  color: #6c757d;
  pointer-events: none;
}

/* Link Style */
.swp-style-breadcrumb-item a {
  color: #0d6efd;
  text-decoration: none;
}
.swp-style-breadcrumb-item a:hover {
  text-decoration: underline;
}

/*  --------------------------------------------------
    Navbar Utilities
-------------------------------------------------- */

/* Navbar Container */
.swp-style-navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Navbar Brand */
.swp-style-navbar-brand {
  display: inline-block;
  padding: 0.25rem 0;
  margin-right: 2rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s ease;
}

.swp-style-navbar-brand:hover {
  color: #1a73e8;
}

/* Navbar Toggler (Mobile) */
.swp-style-navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000 !important;
}

.swp-style-navbar-toggler:hover {
  background-color: #f5f5f5;
}

/* Navbar Navigation */
.swp-style-navbar-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Nav Items */
.swp-style-nav-item {
  position: relative;
  margin: 0.25rem 0;
}

/* Nav Links */
.swp-style-nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #4a5568;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.swp-style-nav-link:hover {
  color: #1a73e8;
  background-color: #f0f7ff;
}

.swp-style-nav-link.swp-style-active {
  color: #1a73e8;
  background-color: #f0f7ff;
}

/* Dropdown Menu */
.swp-style-dropdown-menu {
  position: static;
  width: 100%;
  padding: 0.5rem 0;
  margin: 0;
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  list-style: none;
}

/* Desktop Styles */
@media (min-width: 992px) {
  .swp-style-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Hover animation properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    display: block !important; /* Force display block */
  }

  .swp-style-nav-item.swp-style-dropdown:hover .swp-style-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile Behavior */
@media (max-width: 991.98px) {
  .swp-style-dropdown-menu {
    display: none;
  }

  .swp-style-nav-item.swp-style-show .swp-style-dropdown-menu {
    display: block;
  }
}

/* Show dropdown when parent has .swp-style-show */
.swp-style-nav-item.swp-style-show .swp-style-dropdown-menu {
  display: block;
}

/* Dropdown Items */
.swp-style-dropdown-item {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.2s ease;
}

.swp-style-dropdown-item:hover {
  color: #1a73e8;
  background-color: #f0f7ff;
}

/* Mobile Menu Animation */
.swp-style-navbar-collapse {
  display: none;
  width: 100%;
  overflow: visible;
  transition: height 0.3s ease;
}

.swp-style-navbar-collapse.swp-style-show {
  display: block;
}

/* Desktop Styles */
@media (min-width: 992px) {
  .swp-style-navbar {
    flex-wrap: nowrap;
    padding: 0.75rem 2rem;
  }

  .swp-style-navbar-toggler {
    display: none;
  }

  .swp-style-navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .swp-style-nav-item {
    margin: 0 0.25rem;
  }

  .swp-style-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .swp-style-navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
}

/* Base Nav */
.swp-style-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border-bottom: none;
}

/* Tabs */
.swp-style-nav-tabs {
  border-bottom: 2px solid #e2e8f0;
}

.swp-style-nav-tabs .swp-style-nav-link {
  padding: 0.75rem 1.5rem;
  margin-bottom: -2px;
  border: none;
  border-bottom: 2px solid transparent;
  color: #718096;
  font-weight: 500;
  transition: all 0.2s ease;
}

.swp-style-nav-tabs .swp-style-nav-link:hover {
  border-bottom-color: #cbd5e0;
  color: #4a5568;
}

.swp-style-nav-tabs .swp-style-nav-link.swp-style-active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
  background-color: transparent;
}

/* Pills */
.swp-style-nav-pills .swp-style-nav-link {
  padding: 0.5rem 1.25rem;
  margin: 0 0.25rem;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.2s ease;
}

.swp-style-nav-pills .swp-style-nav-link:hover {
  background-color: #edf2f7;
}

.swp-style-nav-pills .swp-style-nav-link.swp-style-active {
  color: #ffffff;
  background-color: #1a73e8;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* Desktop Dropdown Hover Behavior */
@media (min-width: 992px) {
  .swp-style-nav-item.swp-style-dropdown:hover .swp-style-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .swp-style-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    margin-top: 0px;
  }

  .swp-style-nav-item.swp-style-dropdown:hover .swp-style-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile Dropdown Click Behavior (unchanged) */
@media (max-width: 991.98px) {
  .swp-style-dropdown-menu {
    display: none;
  }

  .swp-style-nav-item.swp-style-show .swp-style-dropdown-menu {
    display: block;
  }
}

/* Sample Nav */
/* 
<nav class="swp-style-navbar swp-style-navbar-expand-lg">
      <a class="swp-style-navbar-brand" href="/"><img src="/wp-content/uploads/2012/06/cropped-logo-1.png" style="max-width: 90%"/></a>

      <button class="swp-style-navbar-toggler" data-target="#mainNav">
        <span class="swp-style-navbar-toggler-icon">☰</span>
      </button>

      <div class="swp-style-navbar-collapse" id="mainNav">
        <ul class="swp-style-navbar-nav swp-style-justify-content-end">
          <li class="swp-style-nav-item swp-style-dropdown">
            <a class="swp-style-nav-link">About Us</a>
            <ul class="swp-style-dropdown-menu">
              <li><a class="swp-style-dropdown-item" href="/about-us_security-london-ontario/">Company Profile</a></li>
            </ul>
          </li>
          <li class="swp-style-nav-item swp-style-dropdown">
            <a class="swp-style-nav-link" href="/security-guard-services/">Security Guard Services</a>
            <ul class="swp-style-dropdown-menu">
              <li><a class="swp-style-dropdown-item" href="/security-services/apartment-lobby-security/">Apartment Building & Lobby Security</a></li>
            </ul>
          </li>
          <li class="swp-style-nav-item swp-style-dropdown">
            <a class="swp-style-nav-link" href="/security-guard-company/">Security Guard Company</a>
            <ul class="swp-style-dropdown-menu">
              <li><a class="swp-style-dropdown-item" href="/security-guard-company/training/">Security Guard Certification</a></li>
            </ul>
          </li>
          <li class="swp-style-nav-item ">
            <a class="swp-style-nav-link" href="/online-application/">Employment</a>
          </li>
          <li class="swp-style-nav-item ">
            <a class="swp-style-nav-link" href="/contact-us/" title="Contact">Contact Us</a>
          </li>
          <li class="swp-style-nav-item ">
            <a class="swp-style-nav-link" href="tel:519-933-7544" title="Contact">519-933-7544</a>
          </li>
        </ul>
      </div>
    </nav>

    <script>
      // Improved dropdown handling
      document.addEventListener('DOMContentLoaded', function () {
        // Mobile menu toggle
        const toggler = document.querySelector('.swp-style-navbar-toggler');
        if (toggler) {
          toggler.addEventListener('click', function () {
            const target = document.querySelector(this.getAttribute('data-target'));
            target.classList.toggle('swp-style-show');
          });
        }

        // Handle dropdowns
        const dropdowns = document.querySelectorAll('.swp-style-nav-item.swp-style-dropdown');

        dropdowns.forEach(item => {
          const link = item.querySelector('.swp-style-nav-link');

          // Click handler for mobile
          link.addEventListener('click', function (e) {
            if (window.innerWidth < 992) {
              e.preventDefault();
              item.classList.toggle('swp-style-show');
            }
          });
        });
      });
    </script>
*/

/* SWP STYLE SHEET FOR HEADER */
/*
 Theme Name: HTML5 Blank
 Theme URI: http://html5blank.com
 Description: HTML5 Blank WordPress Theme
 Version: 1.4.3
 Author: Todd Motto (@toddmotto)
 Author URI: http://toddmotto.com
 Tags: Blank, HTML5, CSS3

 License: MIT
 License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
 MAIN
\*------------------------------------*/

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 62.5%;
}

body {
  font: 300 14px/1.4 "Nunito Sans", Helvetica, Arial, sans-serif;
  color: #000;
  /* background: #13293d; */
}

/* clear */

.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}
.swp2023v {
  width: 100%;
  height: auto;
}
.clear {
  *zoom: 1;
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* links */
a {
  color: #44b0ef;
  text-decoration: none;
}

.transtion,
.sub-menu,
.nav,
.likebtn,
.nav ul li,
a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
a:hover {
  color: #444444;
}
a:focus {
  outline: 0;
}
a:hover,
a:active {
  outline: 0;
}
input:focus {
  outline: 0;
  border: 1px solid #04a4cc;
}
.youtube-iframe2023 iframe {
  max-width: 100%;
}

/* buttons */

.likebtn,
.btn {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #333;
  color: #333;
  cursor: pointer;
}

.likebtn:hover,
.btn:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.css3btn1 {
  background: #333;
  color: #fff;
  border-color: #333;
}

.css3btn1:hover {
  background: #ffffff;
  color: #333;
  border-color: #333;
}

.css3btn2-bg,
.css3btn2 {
  border-color: #333;
  color: #333;
}

.css3btn2-bg:hover,
.css3btn2:hover,
.active-cat {
  background: #333;
  color: #fff;
  border-color: #333;
}

.css3btn3 {
  border-color: #ffffff;
  color: #ffffff;
}

.css3btn3:hover {
  background: #ffffff;
  color: #ef4e26;
  border-color: #ffffff;
}

.css3btn4 {
  background: #333;
  color: #fff;
  border-color: #333;
}

.css3btn4:hover {
  background: transparent;
  color: #333;
  border-color: #333;
}

.ajax-loader {
  position: absolute;
  top: 0;
  left: 100%;
}

/* Effect 10: reveal, push out */
.push-out-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  height: 39px;
}

.push-out-btn.search-button {
  font-size: 14px;
}

.contact-page-form .push-out-btn-a,
.get-connected .push-out-btn-a {
  font-size: 18px;
  margin-top: 20px;
}

.push-out-btn-a,
.push-out-btn button,
.push-out-btn a,
.push-out-btn label {
  overflow: hidden;
  position: relative;
  display: inline-block;
  outline: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.push-out-btn button {
  padding: 0;
  border: 0;
}
.push-out-btn-a:before {
  content: attr(data-hover);
}
.search-button button::before {
  content: "\f002" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.push-out-btn-a:before,
.push-out-btn a span,
.push-out-btn button span,
.push-out-btn label span {
  display: block;
  padding: 10px 20px;
  background: #44b0ef;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.home-exit-btn.push-out-btn label span {
  background: #cd0000;
}

.push-out-btn-a input,
.push-out-btn button::before,
.push-out-btn a::before,
.push-out-btn label::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  color: #44b0ef;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-25%);
}
.push-out-btn-a:hover::before,
.push-out-btn a:hover span,
.push-out-btn a:focus span,
.push-out-btn button:hover span,
.push-out-btn button:focus span,
.push-out-btn label:hover span,
.push-out-btn label:focus span {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
}
.push-out-btn-a:hover input,
.push-out-btn a:hover::before,
.push-out-btn a:focus::before,
.push-out-btn button:hover::before,
.push-out-btn button:focus::before,
.push-out-btn label:hover::before,
.push-out-btn label:focus::before {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
  z-index: 1;
}

.push-out-btn-a:hover input {
  z-index: 1;
}

.center-text {
  text-align: center;
}

/* FORMS--------------------------*/
.rating,
.input_field,
.form-style p {
  /* margin:0; */
}

.form-style .text-area-wrapper {
  margin: 13px 0 15px 0;
}
.review-form .push-out-btn {
  margin-top: 10px !important;
}
.form-label {
  position: relative;
  display: block;
  /* color:#fff; */
  /* text-transform:uppercase; */
  /* font-size:20px; */
  /* letter-spacing:.5px; */
  font-weight: normal;
  padding: 0px 0px 0px 4px;
  /* line-height: 1; */
  color: #a5a5a5;
  /* z-index: 9; */
}
.contact-page-form .form-label {
  color: #13293d;
}

.moving-form-label {
  /* transform: translate(0px, 20px); */
  /* -webkit-transform: translate(0px, 20px); */
  -moz-transform: translate(0px, 20px);
  -o-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
}

.moving-form-label.move {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  border: none;
  /* position:  relative; */
  /* border-bottom: 3px solid #fff; */
  /* padding: 4px 15px; */
  /* background-color: transparent; */
  /* width: 100%; */
  /* color: #fff; */
  /* font-size:16px; */
  /* letter-spacing:.5px; */
  /* font-weight:600; */
  /* z-index: 10; */
}
.contact-page-form input[type="text"],
.contact-page-form input[type="number"],
.contact-page-form input[type="email"],
.contact-page-form input[type="tel"],
.contact-page-form input[type="date"],
.contact-page-form textarea {
  /* color: #13293d; */
  border-bottom: 3px solid #13293d;
}

textarea {
  border: 3px solid #fff;
  height: 150px;
  padding: 15px;
  margin-top: 5px;
}
.contact-page-form textarea {
  /* border: 3px solid #13293d; */
}

select {
  border: none;
  padding: 8px;
  background-color: #fff;
}

.contact-page-form select {
  background-color: #13293d;
}

input[type="submit"] {
  display: inline-block;
  border: none;
  color: #44b0ef;
  /* z-index: 1; */
}

.required,
.error_message {
  color: red;
}

/*------------------------------------*\
 FORMS
 \*------------------------------------*/
form {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
.form-radio,
.form-group {
  position: relative;
  margin-bottom: 3rem;
}
.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}
.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #a5a5a5;
  font-size: 0.8rem;
}
.checkbox .form-help,
.form-radio .form-help,
.form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}
.form-group input {
  height: 35px;
}
.form-group textarea {
  resize: vertical;
}
.form-group select {
  width: 100%;
  /* font-size: 1rem; */
  /* height: 1.6rem; */
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  box-shadow: none;
  height: 35px;
}
.form-group .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #a5a5a5;
  /* font-size: 1rem; */
  font-weight: normal;
  transition: all 0.3s ease;
}
.home-form-wrapper .form-group .control-label {
  color: #d5d5d5;
  width: 100%;
  left: 0;
}
.form-group .control-label.required::after {
  content: " *";
  color: #c62828;
}
.form-group .bar {
  position: relative;
  border-bottom: 2px solid #13293d;
  display: block;
}
.form-group .bar::before {
  content: "";
  height: 2px;
  width: 0;
  left: 50%;
  bottom: -2px;
  position: absolute;
  background: #ffd23f;
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  /* font-size: 1rem; */
  border-width: 0;
  border-color: transparent;
  border-bottom: none !important;
  /* line-height: 1.4; */
  width: 100%;
  color: black;
  transition: all 0.3s ease;
  box-shadow: none;
}
.form-group input[type="file"] {
  line-height: 1;
}
.form-group input[type="file"] ~ .bar {
  display: none;
}
.form-group input,
.form-group textarea {
  color: #c62828;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: black;
}
.home-form-wrapper div.wpcf7-response-output,
.home-form-wrapper .form-group select,
.home-form-wrapper .form-group input:focus,
.home-form-wrapper .form-group input:valid,
.home-form-wrapper .form-group input.form-file,
.home-form-wrapper .form-group input.has-value,
.home-form-wrapper .form-group textarea:focus,
.home-form-wrapper .form-group textarea:valid,
.home-form-wrapper .form-group textarea.form-file,
.home-form-wrapper .form-group textarea.has-value {
  color: white;
}
.form-group select option {
  color: black;
}
.home-form-wrapper .form-group .bar {
  border-color: #fff;
}
.form-group .control-label.active,
.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input ~ .control-label.active,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group .your-resume ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea ~ .control-label.active,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  /* font-size: 14px; */
  color: #a5a5a5;
  top: -17px;
  left: 0;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group .control-label.active,
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #205967;
}
.home-form-wrapper .form-group .control-label.active,
.home-form-wrapper .form-group select:focus ~ .control-label,
.home-form-wrapper .form-group input:focus ~ .control-label,
.home-form-wrapper .form-group textarea:focus ~ .control-label {
  color: #878787;
}
.form-group .bar.active::before,
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
.wpcf7-form-control-wrap {
  position: static;
}
.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -17px;
  font-size: 13px !important;
  left: 0;
}
.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #a5a5a5;
  display: block;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}
.radio {
  margin-bottom: 1rem;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #a5a5a5;
}
.radio .helper::before,
.radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}
.radio .helper::after {
  transform: scale(0);
  background-color: #ffd23f;
  border-color: #ffd23f;
}
.radio label:hover .helper {
  color: #ffd23f;
}
.radio input:checked ~ .helper::after {
  transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #ffd23f;
}
.checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #a5a5a5;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  transition: border-color 0.3s ease;
}
.checkbox .helper::before,
.checkbox .helper::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #ffd23f;
  display: block;
  transform-origin: left top;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease, height 0s linear 0.3s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #f5f5f5;
}
.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #ffd23f;
}
.checkbox input:checked ~ .helper {
  color: #ffd23f;
}
.checkbox input:checked ~ .helper::after,
.checkbox input:checked ~ .helper::before {
  opacity: 1;
  transition: height 0.3s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  transition-delay: 0.3s;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: 1rem;
}
/* Contact Form 7 Override */
.wpcf7-form fieldset p,
.wpcf7-form br {
  display: none;
}

::-webkit-input-placeholder {
  color: #dddddd;
}

/* gray80 */
:-moz-placeholder {
  color: #dddddd;
}

/* Firefox 18- (one color)*/
::-moz-placeholder {
  color: #dddddd;
}

/* Firefox 19+ (double colons) */
:-ms-input-placeholder {
  color: #dddddd;
}

.site_wrapper {
  overflow: hidden;
  background: url(img/stardust3.png) fixed;
  background-position: 50% 50%;
}
.front_page {
  background: #fff;
}

.wrapper {
  position: relative;
}

.sm-wrapper {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}

p.sm-wrapper {
  margin: 20px auto;
}

.header-wrapper,
.wrapper {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}
.blog-wrapper {
  max-width: 1100px;
}
.home-form-wrapper {
  max-width: 500px;
}

.home-padded {
  padding: 160px 0;
}

.sm-home-padded {
  padding: 125px 0;
}

.padded {
  position: relative;
  margin: 80px auto;
}

.nav {
}

.nav ul {
  padding: 0;
  margin: 0;
}

.nav ul li {
  list-style: none;
}

.nav ul li a {
  display: block;
  padding: 10px;
}

.page_body {
  overflow: auto;
  min-height: calc(100vh - 786px);
  background: #ffffff;
}
.white-bg {
  background: #ffffff;
}

.gray-bg {
  background: #eee;
  overflow: auto;
}

.page_body h2 {
  color: #44b0ef;
  letter-spacing: 0.5px;
  font-size: 28px;
}
h1.blog-post-title {
  margin-bottom: 0;
}
.blog-content .date {
  margin-top: 0;
  margin-bottom: 32px;
}

.page_body h3 {
  color: #696969;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* font-size: 16px; */
  padding: 10px;
  background: rgba(19, 41, 61, 0.83);
  z-index: 200;
  webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.logo img {
  max-width: 200px;
}
.contact-buttons {
  min-width: 10px;
}
.contact-buttons .header-phone {
  font-size: 18px;
}
.contact-buttons .number-hide {
  display: none;
}

.header-phone {
  color: #fff;
}
.header-phone:hover {
  color: #44b0ef;
}
.page-header {
  position: relative;
  overflow: auto;
  background: rgba(0, 0, 0, 0) url(img/header-curve.png) no-repeat scroll center
    101% / 100%;
}
.page-header:after {
  /* content:''; */
  background: url(img/header-curve.png);
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 98px;
  overflow: visible;
}
.page-header h1 {
  color: #fff;
  font-weight: 100;
  letter-spacing: 0.5px;
  font-size: 3em;
  margin: 0;
}
.header-padded {
  padding: 160px 0 80px;
}
.newsletter-subscribe {
  overflow: auto;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #fff;
}

.newsletter-subscribe h3 {
  font-size: 20px;
}

.newsletter-subscribe .email {
  width: auto;
  border: 0;
  background: #fff;
  padding: 7.5px 15px;
  border: 1px solid #fff;
  color: #333;
  min-width: 300px;
}

.newsletter-subscribe .email::-webkit-input-placeholder {
  color: #9adaff;
}

/* gray80 */
.newsletter-subscribe .email:-moz-placeholder {
  color: #9adaff;
}

/* Firefox 18- (one color)*/
.newsletter-subscribe .email::-moz-placeholder {
  color: #9adaff;
}

/* Firefox 19+ (double colons) */
.newsletter-subscribe .email:-ms-input-placeholder {
  color: #9adaff;
}

.footer {
  padding: 14px 10px 40px;
  padding-top: 81px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0) url(img/footer-curve.png) no-repeat scroll center
    0% / 100%;
}

.footer-inner {
  text-align: left;
  padding: 50px 0;
}

.footer p {
  margin: 0;
}

.footer .location {
  padding: 10px;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  list-style: none;
  padding: 5px 3px;
  width: 50%;
}

.footer .three-col h3 {
  margin: 0 3px 10px;
}

.social-link {
  display: inline-block;
  padding: 5px;
  margin: 5px 5px 5px 0px;
}

.footer a {
  color: #fefefe;
}

.footer a:hover {
  color: #44b0ef;
}

.flexy-box-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexy-box-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.no-wrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.space-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.vertical-top {
  -webkit-align-items: flex-start;
  -ms-flex-items: start;
  align-items: flex-start;
}

.vertical-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.vertical-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.vertical-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.row {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}

.two-col {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding: 10px 0;
  min-width: 305px;
}

.three-col {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding: 10px 0;
}
.latest-post-box {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 250px !important;
}

.three-col-span2 {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding: 10px 0;
}

.four-col {
  width: 50%;
  padding: 1px;
}

.four-col-span-3 {
  width: 100%;
  min-width: 200px;
}

.five-col {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 20%;
  min-width: 200px;
  padding: 0 5px;
}

/*------------------------------------*\
 PAGES
\*------------------------------------*/
h2.home-title {
  color: #44b0ef;
  font-size: 28px;
  margin: 0 0 15px;
}

h3.home-title {
  font-size: 20px;
  margin: 10px 0;
}

.white-text {
  color: #fff;
}

h2.font-large {
  font-size: 2.8em;
}

h3.font-large,
.font-large {
  font-size: 2em;
}

.page-banner {
  max-height: calc(100vh - 62px);
  position: relative;
  /* margin-top: 62px; */
  overflow: hidden;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  z-index: 199;
  align-content: center;
  background-color: #0c1625;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/london-downtown-350.jpg);
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}

.banner-content {
  z-index: 3;
  color: #fff;
  width: 95%;
  font-size: 2rem;
}

.banner-content .text-line-1,
.banner-content .text-line-2 {
  margin: 0;
}

.banner-content .text-line-1,
.banner-content .text-line-2 {
  display: block;
  line-height: 1.1;
}
.banner-content .text-line-1 {
  font-size: 0.75em;
}
.banner-content .text-line-2 {
  font-size: 0.57em;
  text-align: center;
}

.banner-content .text-line-2 {
  margin-bottom: 20px;
}
.home-portfolio {
  position: relative;
  z-index: 199;
}
.profolio-box {
  position: relative;
  width: 100%;
}

.home-service-title {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}

.home-service-box-inner {
  padding: 0px 20px;
  overflow: hidden;
}

.home-service-box-inner:hover > .visable-content,
.home-service-box-inner:hover > .hidden-content {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
}

.visable-content a:hover > img,
.visable-content a:hover > i,
.visable-content a:hover > h3 {
  opacity: 0.6;
}

.home-service-box i,
.home-service-box img {
  font-size: 40px;
  height: 40px;
  color: #44b0ef;
}
.home-service-box img {
  margin-bottom: 5px;
}

/* Common style */
.effect-lexi {
  position: relative;
  overflow: hidden;
  max-height: 600px;
  background: #13293d;
}

.effect-lexi img {
  position: relative;
  display: block;
  min-height: 100%;
  width: 100%;
  transform: translate3d(0px, 0px, 0px);
  opacity: 0.9;
}

.effect-lexi figcaption {
  padding: 1em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.effect-lexi figcaption::before,
.effect-lexi figcaption::after {
  pointer-events: none;
}

.effect-lexi figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.effect-lexi figcaption a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 16px;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */

.effect-lexi h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.effect-lexi h2 span {
  font-weight: 800;
}

.effect-lexi h2,
.effect-lexi p {
  margin: 0;
}

.effect-lexi p {
  letter-spacing: 1px;
}

/* Individual effects */

figure.effect-lexi img {
  -webkit-transition: all 5s linear;
  -moz-transition: all 5s linear;
  -ms-transition: all 5s linear;
  -o-transition: all 5s linear;
  transition: all 5s linear;
}

figure.effect-lexi figcaption::before,
figure.effect-lexi p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

figure.effect-lexi figcaption::before {
  position: absolute;
  right: -75px;
  bottom: -125px;
  width: 250px;
  background: #06b0ef;
  height: 250px;
  border: 2px solid #06b0ef;
  border-radius: 50%;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
  content: "";
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

figure.effect-lexi:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

figure.effect-lexi h2 {
  text-align: left;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(5px, 5px, 0);
  transform: translate3d(5px, 5px, 0);
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}

figure.effect-lexi p {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 10px 10px 0;
  text-align: right;
  opacity: 0;
  -webkit-transform: translate3d(20px, 20px, 0);
  transform: translate3d(20px, 20px, 0);
}

figure.effect-lexi:hover figcaption::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure.effect-lexi:hover h2,
figure.effect-lexi:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.responsive-design,
.awards-and-associations {
  background: #eee;
}

.awards-and-associations img {
  margin: 10px;
  max-height: 150px;
}

.get-connected {
  background: url(img/form-bg-320.jpg) fixed;
  background-size: cover;
}
/* 
.get-connected .wpcf7-form-control.g-recaptcha.wpcf7-recaptcha{
	margin:0 auto;
	display:  inline-block;
	position:relative;
} */

.customer-review-home {
  position: relative;
  width: 100%;
  padding: 20px;
  text-align: left;
  z-index: 2;
}

.customer-review-home:after {
  content: "format_quote";
  position: absolute;
  font-family: "Material Icons";
  top: 18px;
  line-height: 68px;
  padding: 10px;
  color: #fff;
  font-size: 68px;
  left: 5px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: rgba(68, 176, 239, 0.2);
  z-index: -1;
}

.star-rating-area {
  color: #ffd700;
}
.faq-section {
  margin: 0 0 20px;
  position: relative;
}
.faq-section p {
  display: none;
}
.faq-section input {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  display: none\9; /* IE8 and below */
  margin: 0;
  width: 100%;
  height: 36px;
}
.faq-section label + p {
  display: block;
  color: #999;
  font-size: 0.85em;
  transition: all 0.15s ease-out;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 10px 0;
  margin: 0;
}
.faq-section input[type="checkbox"]:checked ~ p {
  display: block;
  color: #000;
  font-size: 1em;
  text-overflow: clip;
  white-space: normal;
  overflow: visible;
}
.faq-section label {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 20px; /* background: #44b0ef; */
  padding: 7px 20px 7px 0px;
  color: #44b0ef;
  transition: all 0.15s ease-out;
}
.faq-section label::selection {
  background: none;
}
.faq-section label:hover {
  background: #44b0ef;
  color: #fff;
  padding: 7px 20px 7px 10px;
}
.faq-section input[type="checkbox"]:checked ~ label {
  background: #44b0ef;
  color: #fff;
  padding: 7px 20px 7px 10px;
}
.faq-section label::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left-color: inherit;
}
.faq-section input[type="checkbox"]:checked ~ label::before {
  border: 6px solid transparent;
  border-top-color: inherit;
  margin-top: -3px;
  right: 10px;
}
/* portfolio */
.toolbar .push-out-btn {
  margin: 0 3px;
}
.btn.css3btn2.fil-cat {
  margin: 0 6px 15px;
}

.photo-portfolio #portfolio {
  margin: 1rem 0;
}
.photo-portfolio .tile {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  padding: 5px;
  width: 50%;
  margin-bottom: 0.6em;
}
.photo-portfolio .tile:hover {
}
.photo-portfolio .tile:after {
  content: "";
  display: block;
  padding-bottom: 80%;
}

.photo-portfolio .scale-anm {
  transform: scale(1);
}
.photo-portfolio label {
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  cursor: pointer;
}

.photo-portfolio p:hover {
  cursor: pointer;
  background: #333;
  color: #eee;
}

.photo-portfolio .tile img {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
  /* margin-bottom: 1rem; */
}
.photo-portfolio .tile img:before {
  font-size: 1.25em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  content: "\f110";
}

.photo-portfolio ::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* ///////video homepage//////// */
.seovideo-section {
  text-align: center;
  padding-bottom: 80px;
  padding-top: 80px;
  background: #eee;
  display: flex;
  justify-content: center;
}
.seovideo2025-container {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.seovideo2025-thumbnail {
  width: 100%;
  display: block;
}

.seovideo2025-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  animation: seovideo2025-pulse 1.5s infinite;
  z-index: 2;
}

.seovideo2025-play-btn svg circle {
  fill: red;
  stroke: white;
  stroke-width: 4;
}

.seovideo2025-play-btn svg polygon {
  fill: white;
}

@keyframes seovideo2025-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.seovideo2025-video {
  width: 100%;
  height: auto;
  display: block;
}
/*------------------------------------*\
 REVIEWS
\*------------------------------------*/
.custReview {
  padding: 20px 0;
}
.review-form-inner h2 {
  margin: 0;
}
.custReview h5 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #44b0ef;
  display: inline-block;
  width: 70%;
}
.custReview .reviewDate {
  color: #44b0ef;
  display: inline-block;
  width: 29%;
  text-align: right;
  vertical-align: top;
}
.custReview .genComments {
  margin: 10px 0;
}
.custReview .oRate {
  margin: 5px 0;
}
.ownerreply {
  background: #efefef;
  padding: 5px 8px;
}
.custReview .oRate i {
  color: #ffd700;
  width: 40px;
}
.required {
  color: #f00;
}
/****** Style Star Rating Widget *****/
.rating {
  border: none;
  float: left;
}
.rating > input {
  display: none;
}
.rating > label:before {
  margin: 5px;
  font-size: 1.25em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  content: "\f005";
}
.rating > .half:before {
  content: "\f089";
  position: absolute;
}
.rating > label {
  color: #939393;
  float: right;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label {
  color: #ffd700;
} /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label {
  color: #ffed85;
}
::-webkit-input-placeholder {
  color: #cacaca;
} /* gray80 */
:-moz-placeholder {
  color: #cacaca;
} /* Firefox 18- (one color)*/
::-moz-placeholder {
  color: #cacaca;
} /* Firefox 19+ (double colons) */
:-ms-input-placeholder {
  color: #cacaca;
}
.job-label,
.job-content {
  display: block !important;
}
.job-label {
  /* background: #eaeaea; */
  padding: 20px;
  cursor: pointer;
}
.job-label:hover {
  background: #1b2f42;
}
.job-label:hover > h3 {
  color: #fff;
}
.job-label:hover > .date-posted {
  color: #fff;
}
.job-content {
  /* background: #f8f8f8; */
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.job-content-inner {
  padding: 0 20px 20px;
}
.job-position-inner h3 {
  margin: 0 !important;
  font-size: 20px;
  color: #0c479d;
}
.job-position-inner .date-posted {
  color: #0c479d;
}
.job-posting {
  margin-top: 0px;
  border-top: 1px solid #ffffff;
}
.applybtn {
  display: block;
  margin-top: 15px;
  background: #ed3042;
  text-align: center;
  padding: 12px 20px;
  color: #fff;
  font-size: 20px;
}
.applybtn:hover {
  background: #ab1418;
}
input[id^="job-"]:checked ~ .job-content {
  max-height: 1000px;
}
.job-info .job-label {
  background: #eaeaea;
}
@media only screen and (min-width: 700px) {
  .job-position-inner h3 {
    display: inline-block;
    width: 70%;
  }
  .job-position-inner .date-posted {
    display: inline-block;
    width: 29%;
    text-align: right; /* vertical-align: middle; */
    margin: 5px 0;
  }
}
.prev-next-posts {
  padding: 10px;
}
.prev-next-posts div {
  font-size: 18px;
  width: 50%;
  display: inline-block;
  text-align: left;
}
.prev-next-posts div:nth-child(2) {
  text-align: right;
}

/*------------------------------------*\
 Event Calendar
\*------------------------------------*/

.ce-calendar-month {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.ce-calendar-month .ce-calendar-week {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-left: 1px solid #e8e8e8;
}
.ce-calendar-month .ce-calendar-week .ce-calendar-day {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 1 1 14.29%;
  -ms-flex: 1 1 14.29%;
  flex: 1 1 14.29%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
.ce-calendar-headings,
.ce-calendar-headings .ce-calendar-day {
  border-color: #e60028 !important;
}
.ce-calendar-day {
  border-style: solid;
  border-color: #e8e8e8;
}
.ce-calendar-headings .ce-calendar-day {
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  background: #e60028;
  padding: 11px 0;
}
.ce-calendar-month {
  border-width: 1px 0 0 1px;
}
.ce-calendar-month .ce-calendar-day {
  border-width: 0 1px 1px 0;
}
.ce-calendar-days .ce-calendar-day {
  min-height: 120px;
}
.ce-calendar-day-number,
.ce-calendar-day-content {
  padding: 5px;
  font-size: 0.75em;
}
.ce-calendar-day-number {
  font-weight: bold;
}
.ce-calendar-header {
  padding-bottom: 20px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ce-calendar-header .month-navigation {
  font-size: 1.3em;
  text-align: center;
  color: #e60028;
  vertical-align: middle;
}
.ce-calendar-header .month-navigation a {
  margin: 0 10px;
  padding: 6px 10px;
  border-radius: 3px;
  display: inline-block;
  color: #fff;
  background-color: #e60028;
  border: 2px solid #e60028;
}
.ce-calendar-header .month-navigation a:hover {
  background-color: #ffffff;
  color: #e60028;
}
.ce-calendar-header .event-view-navigation,
.ce-calendar-header .spacing-div {
  display: none;
}
.event-view-navigation span {
  display: inline-block;
  margin: 0 0 0 6px;
}
.event-view-navigation span.btn {
  padding: 6px 12px;
  border-radius: 6px !important;
}
.course-link {
  font-size: 14px;
  color: #333;
}
.course-link span {
  padding: 8px 15px;
  margin-top: 8px;
  line-height: 1;
}
.register-form .input_field {
  width: 100%;
  margin: 3px 0;
}
.register-form .input_field h3 {
  margin: 0;
}
.register-form .btn,
.form-padded-box {
  margin: 20px 0 0;
}
.participant-row .btn:after {
  content: " Remove";
  padding-left: 3px;
}
.participant-row .btn {
  margin: 3px 0 20px;
  cursor: pointer;
}
.participant-row {
  width: 100%;
}
.register-form h2 {
  width: 100%;
  margin: 15px 0 5px;
}
.register-form .input_field.invalid input {
  background: #fee;
}
.register-form .input_field.invalid:after {
  content: "This field is required, please fill out this field.";
  font-size: 14px;
  color: #e60028;
}
.registration-submitted h3 {
  margin-bottom: 0;
}
.course-list-item {
  padding: 40px 30px;
  margin: 30px 0;
}
.course-list-item h3 {
  margin-top: 0;
}
.ce-calendar-month {
  display: none;
}

.large-input {
  transform: scale(1.6);
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  -ms-transform: scale(1.6);
  margin: 0 0 0 7px !important;
}

.student-attendance-box {
  margin: 7px 0;
  background: #efefef;
}
.even-company {
  background: #dddddd;
}
.student-attendance-box.title-box {
  background: #e60029;
  color: #fff;
  font-size: 20px;
}
.student-info {
  width: 40%;
}
.student-info-name,
.student-info-email,
.student-info-company {
  width: 50%;
}
.student-info-box {
  padding: 10px 15px;
  border-left: 1px solid #fff;
}
.title-box .student-info-box {
  border: none;
}

.bg-btn,
.popup-contact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.popup-contact {
  transform: translate(0px, 100%);
  -webkit-transform: translate(0px, 100%);
  -moz-transform: translate(0px, 100%);
  -o-transform: translate(0px, 100%);
  -ms-transform: translate(0px, 100%);
}
input[name^="popup-content-"]:checked ~ .popup-contact {
  transform: translate(0px, 0%);
  -webkit-transform: translate(0px, 0%);
  -moz-transform: translate(0px, 0%);
  -o-transform: translate(0px, 0%);
  -ms-transform: translate(0px, 0%);
}
.bg-btn {
  display: block;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 101;
}
.popup-contact-inner {
  position: relative;
  background: #fff;
  z-index: 102;
  max-width: 800px;
  margin: 30px auto;
  padding: 30px 50px;
  min-height: 400px;
  overflow: auto;
  max-height: calc(100vh - 30px);
}

@media print {
  header,
  footer,
  .page-header,
  .no-print {
    display: none !important;
  }
  .padded,
  .page_body {
    padding: 0 !important;
    margin: 0 !important;
  }
  .wrapper {
    width: 100% !important;
  }
}
@media only screen and (min-width: 400px) {
  .ce-calendar-header .month-navigation {
    font-size: 1.75em;
  }
  .ce-calendar-header .month-navigation a {
    margin: 0 20px;
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 650px) {
  .register-form .input_field {
    width: 50%;
    padding: 0 20px;
    margin: 15px 0;
  }
  .register-form h2 {
    padding: 0 20px;
    margin: 15px 0 0;
  }
  .form-padded-box {
    margin: 20px 20px 0;
  }
  .register-form .btn {
    margin: 20px 20px;
  }
  .participant-row .input_field {
    width: calc(50% - 62.5px);
  }
  .participant-row .btn {
    margin: 15px 20px 15px 0;
    padding: 9px 12px;
  }
}
@media only screen and (min-width: 1000px) {
  .ce-calendar-month,
  .ce-calendar-list {
    display: none;
  }
  .ce-calendar-month.show,
  .ce-calendar-list.show {
    display: block;
  }
  .ce-calendar-header .event-view-navigation,
  .ce-calendar-header .spacing-div {
    min-width: 155px;
    display: block;
  }
  .ce-calendar-header {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.portfolio-box-popup,
.exit-bg,
.show-event-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.portfolio-box-popup,
.show-event-box {
  transform: translate(0px, 100%);
  -webkit-transform: translate(0px, 100%);
  -moz-transform: translate(0px, 100%);
  -o-transform: translate(0px, 100%);
  -ms-transform: translate(0px, 100%);
}
input[id^="portfolio-box-"]:checked ~ .portfolio-box-popup,
input[id^="show-event-"]:checked ~ .show-event-box {
  transform: translate(0px, 0%);
  -webkit-transform: translate(0px, 0%);
  -moz-transform: translate(0px, 0%);
  -o-transform: translate(0px, 0%);
  -ms-transform: translate(0px, 0%);
}
.exit-bg {
  display: block;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 101;
  position: absolute;
}
.portfolio-box-popup-inner,
.show-event-box-inner {
  position: relative;
  background: #fff;
  z-index: 102;
  max-width: 1500px;
  width: 99%;
  margin: 80px auto;
  padding: 30px 50px; /* min-height: 500px; */
  overflow: auto;
  max-height: calc(100vh - 101px);
}
.exit-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #44b0ef;
  color: #fff;
  padding: 5px 30px 4px;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.digital-marketing-serv-box {
  position: relative;
  padding: 31px 10px 51px;
  min-height: 253px;
}
i.material-icons,
.digital-marketing-serv-box i,
.digital-marketing-serv-box img {
  font-size: 40px;
  height: 40px;
  color: #44b0ef;
}
.digital-marketing-serv-box .push-out-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}

.seo-img-bg {
  background: #eee;
  background-position: 50% 50%;
  background-size: cover;
  padding: 20px 0;
}

.seo-img-bg p {
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-box-contetnt h2 {
  margin-bottom: 0;
}
.portfolio-box-contetnt h3 {
  padding: 0 10px;
  color: #7a7a7a;
  margin: 0 0 10px;
}

.portfolio-box-images {
  max-width: 500px;
  width: 50%;
  padding: 0 20px;
  display: none;
}
.portfolio-image-container {
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.portfolio-image-container img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  height: auto;
}
.portfolio-image-container {
  min-height: 200px;
}
.portfolio-image-container img:hover {
  transform: translate(0px, calc(-100% + 200px));
  -webkit-transform: translate(0px, calc(-100% + 200px));
  -moz-transform: translate(0px, calc(-100% + 200px));
  -o-transform: translate(0px, calc(-100% + 200px));
  -ms-transform: translate(0px, calc(-100% + 200px));
}
.portfolio-image-container img[class^="portfolio-images-desktop-"]:hover {
  -webkit-transition: all 3s ease !important;
  -moz-transition: all 3s ease !important;
  -ms-transition: all 3s ease !important;
  -o-transition: all 3s ease !important;
  transition: all 3s ease !important;
}
.portfolio-image-container img[class^="portfolio-images-laptop-"]:hover {
  -webkit-transition: all 3.5s ease !important;
  -moz-transition: all 3.5s ease !important;
  -ms-transition: all 3.5s ease !important;
  -o-transition: all 3.5s ease !important;
  transition: all 3.5s ease !important;
}
.portfolio-image-container img[class^="portfolio-images-tablet-"]:hover {
  -webkit-transition: all 4s ease !important;
  -moz-transition: all 4s ease !important;
  -ms-transition: all 4s ease !important;
  -o-transition: all 4s ease !important;
  transition: all 4s ease !important;
}
.portfolio-image-container img[class^="portfolio-images-mobile-"]:hover {
  -webkit-transition: all 5s ease !important;
  -moz-transition: all 5s ease !important;
  -ms-transition: all 5s ease !important;
  -o-transition: all 5s ease !important;
  transition: all 5s ease !important;
}
.portfolio-images {
  font-size: 30px;
  display: inline-block;
  padding: 15px 20px;
  margin: 0 0 10px;
  line-height: 1;
  color: #44b0ef;
}
.video-homepage-follow {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 198;
  background: #000;
}
.video-homepage-follow label {
  display: block;
  cursor: pointer;
}
.video-homepage-follow label span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  cursor: pointer;
}
.video-homepage-follow label span i {
  font-size: 109px;
  color: #fff;
  line-height: 120px;
  display: block;
  height: auto;
  width: 120px;
  height: 120px;
  margin: 10px auto;
  border-radius: 50%;
  border: 2px solid #fff;
}
.video-homepage-follow label:hover > span i {
  color: #44b0ef;
  border-color: #44b0ef;
}
.popup-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 201;
  height: 100vh;
  background: rgba(0, 0, 0, 0.83);
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
}
#show-video {
  display: none;
}
#show-video:checked ~ .popup-video-wrapper {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
}
.popup-video-wrapper-inner {
  padding: 10px;
}
.popup-controls {
  text-align: right;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.26%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 100px);
  height: 100%;
}
.blog-post-thumbnail {
  /* margin-top:120px; */
}
.blog-post-thumbnail img {
  width: 100%;
}

.blog-post-thumbnail {
  width: 100%;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.blog-page-layout .blog-content {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.blog-page-layout .sidebar {
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.extra-content {
  width: 100%;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.related-posts {
  width: 100%;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  margin-top: 30px;
}

.blog-content {
}

.blog-page-layout .sidebar {
  margin-top: 20px;
}

.search-input {
  padding: 5px 15px;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  width: calc(100% - 55px);
}
.blog-page-layout .sidebar-widget ul,
.blog-page-layout .sidebar-widget ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-page-layout .sidebar-widget ul li a {
  display: block;
  padding: 5px 5px;
  border-bottom: 1px solid #c3c3c3;
}
.blog-page-layout .sidebar-widget ul li:first-child a {
  border-top: 1px solid #c3c3c3;
}
.blog-page-layout .sidebar-widget ul li a:hover {
  background: #eee;
}
.pagination {
  width: 100%;
  text-align: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid #ccc;
  color: #ccc;
}
.pagination a {
  border: 1px solid #44b0ef;
  color: #44b0ef;
}
.pagination a:hover {
  color: #fff;
  background: #44b0ef;
}
/*------------------------------------*\
 RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width: 1159px) {
  #mobile-nav-btn {
    cursor: pointer;
  }
  #mobile-nav-btn svg {
    color: black;
  }
  #mobile-nav-overlay {
    position: fixed;
    top: 59px;
    left: 0;
    z-index: 200;
  }
  .overlay {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s;
    z-index: 100;
  }
  #mobile-nav {
    height: 99.3333333333vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
  }
  #mobile-nav nav ul li a,
  #mobile-nav nav ul.sub-menu span {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1.8rem 1.5rem;
    text-decoration: none;
    color: black;
    cursor: pointer;
    -webkit-user-select: none;
    font-size: 18px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.3s;
  }
  #mobile-nav nav ul li a:hover,
  #mobile-nav nav ul li a:focus,
  #mobile-nav nav ul li a:active {
    background-color: #e0e0e0;
  }
  .menu--off {
    position: fixed;
    left: -70vw;
    width: 70vw;
    max-width: 280px;
    display: block;
    height: 100%;
    transition: all 0.3s;
    z-index: 200;
  }
  .menu--on {
    left: 0;
    transition: all 0.3s;
  }
  #mobile-nav nav ul,
  #mobile-nav nav li.menu-item-has-children {
    width: 100%;
  }
  #mobile-nav nav ul.sub-menu {
    display: none;
    width: 100%;
    margin: 0;
    background: #e0e0e0;
  }
  #mobile-nav nav ul.sub-menu li ul.sub-menu {
    background: #eeeeef;
  }
  #mobile-nav nav ul.sub-menu li {
    display: block;
    width: 100%;
  }
  #mobile-nav nav ul.sub-menu li a {
    display: block;
    text-align: left;
    width: 100%;
    transition: background-color 0.3s;
  }
  #mobile-nav nav ul.sub-menu li a:hover {
    background-color: #e0e0e0;
  }
  .video-homepage-follow {
    max-width: 150px;
    max-height: 90px;
  }
  .video-homepage-follow label span i {
    font-size: 70px;
    line-height: 70px;
    width: 70px;
    height: 70px;
  }
  figure.effect-lexi figcaption::before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  figure.effect-lexi h2,
  figure.effect-lexi p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .no-mobile {
    display: none;
  }
  .hamburger-menu label {
    display: block;
  }
  .hamburger-menu label {
    display: inline-block;
    padding: 18px 0;
    vertical-align: middle;
  }
  .hamburger-menu label span {
    display: block;
    height: 2px;
    width: 30px;
    background: #fff;
    -webkit-box-shadow: 0 9px 0 0 #ffffff, 0 -9px 0 0 #fff;
    box-shadow: 0 9px 0 0 #ffffff, 0 -9px 0 0 #fff;
  }
  .desktop-nav {
    display: none;
  }
  .nav {
    max-height: 100vh;
    overflow-y: auto;
  }
  .nav .push-out-btn,
  .nav .push-out-btn a {
    width: 100%;
    /* padding: 0 !important; */
    text-align: center;
    font-size: 18px;
    display: block;
    height: auto;
  }
  .nav .push-out-btn a:before,
  .nav .push-out-btn a span {
    padding: 15px 20px;
  }
  #mobile-menu:checked ~ .nav {
    transform: translate(0%, 0px);
    -webkit-transform: translate(0%, 0px);
    -moz-transform: translate(0%, 0px);
    -o-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
  }
  .nav li a {
    /* padding: 15px 20px !important; */
    min-width: 255px;
    border-top: 1px solid #eaeaea;
  }
  .sub-menu.show {
    max-height: 300px;
  }
  .menu-item-has-children {
    position: relative;
  }
  .menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
}

@media only screen and (min-width: 320px) {
}
@media only screen and (min-width: 400px) {
  .get-connected {
    background: url(img/form-bg-400.jpg) fixed;
    background-size: cover;
  }
}

@media only screen and (min-width: 480px) {
  .logo img {
    max-width: 240px;
  }
  .contact-buttons .header-phone {
    font-size: 14px;
  }
  .contact-buttons .number-hide {
    display: unset;
  }
  .banner-bg {
    background-image: url(img/london-downtown-500.jpg);
  }
}

@media only screen and (min-width: 600px) {
  .banner-bg {
    background-image: url(img/london-downtown-700.jpg);
  }
  #mobile-nav-btn {
    min-width: 120px;
  }
  .home-service-box {
    width: 65%;
    position: relative;
    padding: 30px 0;
  }
  .portfolio-box-images {
    width: 50%;
    display: block;
  }
  .portfolio-box-contetnt h3 {
    display: inline-block;
  }
}

@media only screen and (min-width: 643px) {
  .banner-content {
    width: 95%;
    font-size: 3rem;
  }
  .banner-content .push-out-btn {
    font-size: 0.8em;
  }
  .profolio-box {
    width: 50%;
  }
  .four-col {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 25%;
    min-width: 200px;
    padding: 0 20px;
  }
  .four-col-span-3 {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 75%;
    min-width: 600px;
    padding: 0 20px;
  }
  .home-service-box {
    width: 65%;
    position: relative;
    padding: 30px 0;
  }
  .page-header h1 {
    font-size: 4em;
  }
}
@media only screen and (min-width: 768px) {
  .photo-gallery-portfolio #portfolio {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
  }
  .get-connected {
    background: url(img/form-bg-800.jpg) fixed;
    background-size: cover;
  }
}

@media only screen and (min-width: 800px) {
  .banner-bg {
    background-image: url(img/london-downtown-800.jpg);
  }
  .effect-lexi figcaption {
    padding: 2em;
  }
  figure.effect-lexi h2 {
    font-size: 40px;
  }
  .two-col {
    width: 50%;
    padding: 0 20px;
  }
  .row {
    padding: 0 20px;
  }
  .three-col {
    width: 30%;
    padding: 0 20px;
    min-width: 300px;
  }
  .latest-post-box {
    width: 33.3% !important;
  }
  .footer-inner {
    margin-right: -20px;
    margin-left: -20px;
  }
  .three-col-span2 {
    width: 40%;
    padding: 0 20px;
    min-width: 400px;
  }

  .home-service-box {
    width: 33.33%;
    position: relative;
    padding: 30px 0;
  }

  .home-service-box:before {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -1px;
    width: 2px;
    background: #44b0ef;
  }

  .home-service-box:last-child:before {
    display: none;
  }
}

@media only screen and (min-width: 900px) {
  .three-col {
    width: 30%;
  }
  .three-col-span2 {
    width: 60%;
  }
  /* portfolio */
  .photo-portfolio #portfolio .tile {
    width: 33.33333333333333%;
  }
  .portfolio-image-container {
    min-height: 300px;
  }
  .portfolio-image-container img:hover {
    transform: translate(0px, calc(-100% + 300px));
    -webkit-transform: translate(0px, calc(-100% + 300px));
    -moz-transform: translate(0px, calc(-100% + 300px));
    -o-transform: translate(0px, calc(-100% + 300px));
    -ms-transform: translate(0px, calc(-100% + 300px));
  }
  .blog-post-thumbnail {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .blog-page-layout .blog-content {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .blog-page-layout .sidebar {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .extra-content {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }

  .related-posts {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .blog-page-layout .blog-content {
    width: calc(100% - 280px);
  }

  .blog-page-layout .sidebar {
    width: 250px;
  }
}
@media only screen and (min-width: 1160px) {
  .get-connected {
    background: url(img/form-bg.jpg) fixed;
    background-size: cover;
  }
  .banner-city-bg {
    position: absolute;
    left: 0;
    background-size: contain;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(img/london-downtown.jpg);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    z-index: 2;
  }
  .banner-bg {
    background-image: url(img/stardust3-dark.png);
    background-repeat: repeat;
    background-size: unset;
  }

  .popup-video-wrapper-inner {
    padding: 12px 60px;
  }
  #mobile-nav-overlay,
  #mobile-nav-btn {
    display: none;
  }
  .header-phone {
    padding: 0 10px 0 0;
  }
  .banner-content {
    width: auto;
    font-size: 3.5rem;
    text-align: left !important;
  }
  .banner-content .push-out-btn {
    font-size: 0.8em;
  }
  .customer-review-home {
    width: 33.3%;
  }
  .page-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .moblie-only,
  .hamburger-menu {
    display: none;
  }
  .header-consultation {
    height: 42px;
  }
  .nav {
    padding: 0 0 0 15px;
  }
  .nav ul {
    padding: 0;
    margin: 0;
    display: inline-block;
  }
  .nav ul li {
    display: inline-block;
    position: relative;
  }
  .nav ul li a {
    font-weight: 600;
    color: #fff;
    padding: 10px 15px;
    letter-spacing: 0.2px;
  }
  .nav ul li:hover > a {
    color: #44b0ef;
  }
  .nav ul li ul.sub-menu {
    position: absolute;
    background: rgba(19, 41, 61, 0.9);
    white-space: nowrap;
    top: 120%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .nav ul li:hover > .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .nav ul li ul.sub-menu li {
    display: block;
  }
  .nav ul li ul.sub-menu li a {
    padding: 12px 15px 5px;
  }
  .nav ul li ul.sub-menu li:last-child a {
    padding: 12px 15px 10px;
  }
  .visable-content {
    transform: translate(0px, 50%);
    -webkit-transform: translate(0px, 50%);
    -moz-transform: translate(0px, 50%);
    -o-transform: translate(0px, 50%);
    -ms-transform: translate(0px, 50%);
  }

  .hidden-content {
    margin: 0;
    transform: translate(0px, 100%);
    -webkit-transform: translate(0px, 100%);
    -moz-transform: translate(0px, 100%);
    -o-transform: translate(0px, 100%);
    -ms-transform: translate(0px, 100%);
  }

  .home-service-title {
    width: 30%;
    text-align: left;
    padding: 0;
  }

  .home-service-box {
    width: 20%;
    padding: 0;
    position: relative;
  }
  .portfolio-box-images {
    width: 25%;
  }
  .portfolio-image-container {
    min-height: 300px;
  }
  .portfolio-image-container img:hover {
    transform: translate(0px, calc(-100% + 300px));
    -webkit-transform: translate(0px, calc(-100% + 300px));
    -moz-transform: translate(0px, calc(-100% + 300px));
    -o-transform: translate(0px, calc(-100% + 300px));
    -ms-transform: translate(0px, calc(-100% + 300px));
  }
  body {
    font: 300 16px/1.4 "Nunito Sans", Helvetica, Arial, sans-serif;
  }
}
@media only screen and (min-width: 1070px) {
}

@media only screen and (min-width: 1140px) {
}
@media only screen and (min-width: 1200px) {
  .three-col {
    width: 33.3%;
    padding: 0 20px;
  }
  .three-col-span2 {
    width: 66.6%;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .header {
    padding: 10px 5vw;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 144dpi) {
}
::selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

.container {
  z-index: 3;
  /* width: 100%; */
  text-align: center;
  /* margin-top: 25vh; */
}

.circle {
  stroke: #44b0ef;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0.3;
}

.playBut {
  /*  border: 1px solid red;*/
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
}
.playBut .triangle {
  -webkit-transition: all 0.7s ease-in-out;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  stroke: #fff;
  transform: translateY(0);
}
.playBut:hover .triangle {
  stroke-dashoffset: 0;
  opacity: 1;
  stroke: #44b0ef;
  animation: nudge 0.7s ease-in-out;
}
@keyframes nudge {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  70% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
.playBut:hover .circle {
  stroke-dashoffset: 0;
  opacity: 1;
}
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=&bgImgOpacityHighlight=&bgImgOpacityActive=&bgImgOpacityHover=&bgImgOpacityDefault=&bgImgOpacityContent=&bgImgOpacityHeader=&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cc0000&fcError=%235f3f3f&borderColorError=%23f1a899&bgTextureError=flat&bgColorError=%23fddfdf&iconColorHighlight=%23777620&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgTextureHighlight=flat&bgColorHighlight=%23fffa90&iconColorActive=%23ffffff&fcActive=%23ffffff&borderColorActive=%2344b0ef&bgTextureActive=flat&bgColorActive=%2344b0ef&iconColorHover=%23555555&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgTextureHover=flat&bgColorHover=%23ededed&iconColorDefault=%23777777&fcDefault=%23454545&borderColorDefault=%23eee&bgTextureDefault=flat&bgColorDefault=%23f6f6f6&iconColorContent=%2313293d&fcContent=%23333333&borderColorContent=%23eee&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%2313293d&fcHeader=%2313293d&borderColorHeader=%23eee&bgTextureHeader=flat&bgColorHeader=%23eee&cornerRadius=0&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
 */

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.ui-widget.ui-widget-content {
  border: 1px solid #eee;
}
.ui-widget-content {
  border: 1px solid #eee;
  background: #ffffff;
  color: #333333;
}
.ui-widget-content a {
  /* color: #333333; */
}
.ui-widget-header {
  border: 1px solid #eee;
  background: #eee;
  color: #13293d;
  font-weight: bold;
}
.ui-widget-header a {
  color: #13293d;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #eee;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #44b0ef;
  background: #44b0ef;
  font-weight: normal;
  color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #44b0ef;
  background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}
.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

.moving-box {
  background: #44b0ef;
  padding: 10px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

.inner-moving-box {
  width: 80%;
  margin-left: 10%;
}

.blog-caption {
  padding: 5px;
  border: 1px solid #aaa;
  text-align: center;
  font-size: 12px;
  margin: 10px 0;
}

/* Clip text element */
.page_body h2.clip-text {
  font-size: 2.8em;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  /* border-top: 1px solid #122a3d; */
  display: inline-block;
  margin: 0 0.25em 0.25em;
  padding: 0 0.75em 0.5em 0.75em;
  text-align: center;
  /* Color fallback */
  color: #122a3d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clip-text:before,
.clip-text:after {
  position: absolute;
  content: "";
}
/* Background */
.clip-text:before {
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: inherit;
}
/* Text Background (black zone) */
.clip-text:after {
  position: absolute;
  z-index: -1;
  top: 0.125em;
  right: 0.125em;
  bottom: 0.125em;
  left: 0.125em;
  background-color: #000;
}
.clip-text_one {
  background-image: url(/wp-content/uploads/clip-text.jpg);
}
.push-out-btn.galaxy-bg a span {
  background: #132a3d;
}
.push-out-btn.galaxy-bg a:before {
  background: #eee;
}
.website-gallery-col {
  -webkit-flex: 1 1 560px;
  -ms-flex: 1 1 560px;
  flex: 1 1 560px;
  max-width: 700px;
  padding: 0 30px;
}
.website-text-col {
  -webkit-flex: 1 1 390px;
  -ms-flex: 1 1 390px;
  flex: 1 1 390px;
  padding: 0 10px;
}
.cool-loopy-things {
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}
.cool-loopy-things .home-padded {
  padding: 50px 0;
}
.cool-loopy-things input[type="text"],
.cool-loopy-things input[type="tel"],
.cool-loopy-things input[type="email"],
.cool-loopy-things textarea {
  width: 100%;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 3px solid #fff;
}
.cool-loopy-things textarea {
  height: 199px;
}
.cool-loopy-things ::-webkit-input-placeholder {
  /* Edge */
  color: #132a3d;
}
.cool-loopy-things :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #132a3d;
}
.cool-loopy-things ::placeholder {
  color: #122a3d;
}
@media only screen and (min-width: 800px) {
  .cool-loopy-things .two-col {
    padding: 0 0.5em;
  }
}
.cool-loopy-things div.wpcf7-response-output,
.cool-loopy-things .form-group select,
.cool-loopy-things .form-group input:focus,
.cool-loopy-things .form-group input:valid,
.cool-loopy-things .form-group input.form-file,
.cool-loopy-things .form-group input.has-value,
.cool-loopy-things .form-group textarea:focus,
.cool-loopy-things .form-group textarea:valid,
.cool-loopy-things .form-group textarea.form-file,
.cool-loopy-things .form-group textarea.has-value {
  color: white;
}
.cool-loopy-things .wpcf7-not-valid-tip {
  position: relative;
  bottom: auto;
}
@media only screen and (min-width: 1000px) {
  .website-gallery-col {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .website-text-col {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
#hide-video-bg {
  display: none;
}
.service-two-col:first-child {
  background: #f4f4f4;
}
.service-two-col figure {
  position: relative;
}

/* Clip text element */
.page_body h2.clip-text {
  font-size: 2.8em;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  /* border-top: 1px solid #122a3d; */
  display: inline-block;
  margin: 0 0.25em 0.25em;
  padding: 0 0.75em 0.5em 0.75em;
  text-align: center;
  /* Color fallback */
  color: #122a3d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clip-text:before,
.clip-text:after {
  position: absolute;
  content: "";
}
/* Background */
.clip-text:before {
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: inherit;
}
/* Text Background (black zone) */
.clip-text:after {
  position: absolute;
  z-index: -1;
  top: 0.125em;
  right: 0.125em;
  bottom: 0.125em;
  left: 0.125em;
  background-color: #000;
}
.clip-text_one {
  background-image: url(/wp-content/uploads/clip-text.jpg);
}
.push-out-btn.galaxy-bg a span {
  background: #132a3d;
}
.push-out-btn.galaxy-bg a:before {
  background: #eee;
}
.website-gallery-col {
  -webkit-flex: 1 1 560px;
  -ms-flex: 1 1 560px;
  flex: 1 1 560px;
  max-width: 700px;
  padding: 0 30px;
}
.website-text-col {
  -webkit-flex: 1 1 390px;
  -ms-flex: 1 1 390px;
  flex: 1 1 390px;
  padding: 0 10px;
}
label.background-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cool-loopy-things {
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}
.cool-loopy-things .home-padded {
  padding: 50px 0;
}
.cool-loopy-things input[type="text"],
.cool-loopy-things input[type="tel"],
.cool-loopy-things input[type="email"],
.cool-loopy-things textarea {
  width: 100%;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 3px solid #fff;
}
.cool-loopy-things textarea {
  height: 199px;
}
.cool-loopy-things ::-webkit-input-placeholder {
  /* Edge */
  color: #132a3d;
}
.cool-loopy-things :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #132a3d;
}
.cool-loopy-things ::placeholder {
  color: #122a3d;
}
@media only screen and (min-width: 800px) {
  .cool-loopy-things .two-col {
    padding: 0 0.5em;
  }
}
.cool-loopy-things div.wpcf7-response-output,
.cool-loopy-things .form-group select,
.cool-loopy-things .form-group input:focus,
.cool-loopy-things .form-group input:valid,
.cool-loopy-things .form-group input.form-file,
.cool-loopy-things .form-group input.has-value,
.cool-loopy-things .form-group textarea:focus,
.cool-loopy-things .form-group textarea:valid,
.cool-loopy-things .form-group textarea.form-file,
.cool-loopy-things .form-group textarea.has-value {
  color: white;
}
.cool-loopy-things .wpcf7-not-valid-tip {
  position: relative;
  bottom: auto;
}
@media only screen and (min-width: 1000px) {
  .website-gallery-col {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .website-text-col {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 643px) {
  .page_body .row,
  .page_body .two-col,
  .page_body .three-col,
  .page_body .three-col-span2,
  .page_body .four-col,
  .page_body .four-col-span3 {
    padding: 0 20px;
  }
  .page_body .flexy-box-row {
    margin: 0 -20px;
  }
  .no-padding {
    margin: 0;
  }
}
@media only screen and (max-height: 500px) {
  .seo-audit-iframe iframe {
    min-height: auto !important;
  }
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background: inherit;
  width: 50%;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #10375a;
  top: 35px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left::after {
  left: -16px;
}

.timeline-right::after {
  left: -16px;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

.timeline-content h4 {
  margin-top: 0;
  color: #10375a;
  letter-spacing: 0.5px;
  font-size: 28px;
}

.timeline-content p {
  margin: 10px 0;
}

/* Clearfix for containers */
.timeline-container::after,
.timeline-container::before {
  content: "";
  display: table;
  clear: both;
}

.timeline-container:not(:first-child) {
  margin-top: -100px;
}

/* Responsive timeline - makes the timeline look good on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin: auto;
  }

  .timeline-container::before {
    left: 60px;
    border: none;
  }

  .timeline-left::after,
  .timeline-right::after {
    left: 15px;
  }

  .timeline-right {
    left: 0%;
  }
  .timeline-content {
    padding: 20px 0px;
  }
}

#review-main {
  font-size: 2em;
  margin: 0.67em 0;
  color: #fff;
}
#review-sub {
  font-size: 2em;
  margin: 0.67em 0;
  color: #000;
}
.fullscreen-bg {
  width: 100%;
  overflow: hidden;
}

.fullscreen-content {
  position: absolute;
  width: 100%;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 31;
  transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
}

.fullscreen-bg video {
  display: block;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px); /* Start slightly below the normal position */
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: calc(0.2s * var(--i)); /* Dynamically set the delay */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at the normal position */
  }
}

/*
 Theme Name: HTML5 Blank
 Theme URI: http://html5blank.com
 Description: HTML5 Blank WordPress Theme
 Version: 1.4.3
 Author: Todd Motto (@toddmotto)
 Author URI: http://toddmotto.com
 Tags: Blank, HTML5, CSS3

 License: MIT
 License URI: http://opensource.org/licenses/mit-license.php
*/

@font-face {
  font-family: "entypo";
  src: url("fonts/entypo.eot?85274639");
  src: url("fonts/entypo.eot?85274639#iefix") format("embedded-opentype"),
    url("fonts/entypo.woff2?85274639") format("woff2"),
    url("fonts/entypo.woff?85274639") format("woff"),
    url("fonts/entypo.ttf?85274639") format("truetype"),
    url("fonts/entypo.svg?85274639#entypo") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "entypo";
  font-style: normal;
  font-weight: 400;
  speak: none;
  text-decoration: inherit;
  font-variant: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.icon-phone:before {
  content: "\e800";
}
.icon-location:before {
  content: "\e801";
}
.icon-desktop:before {
  content: "\e802";
}
.icon-lamp:before {
  content: "\e803";
}
.icon-basket:before {
  content: "\e804";
}
.icon-mobile:before {
  content: "\e805";
}
.icon-cogs:before {
  content: "\e806";
} /* 'î †' */
.icon-bell:before {
  content: "\e807";
} /* 'î ‡' */
.icon-chart:before {
  content: "\e808";
} /* 'î ˆ' */
.icon-gift:before {
  content: "\e809";
} /* 'î ‰' */
.icon-ok-circled2:before {
  content: "\e80a";
} /* 'î Š' */
.icon-star:before {
  content: "\e80b";
} /* 'î ‹' */
.icon-rocket:before {
  content: "\e80c";
} /* 'î Œ' */
.icon-star-empty:before {
  content: "\e80d";
} /* 'î ' */
.icon-star-1:before {
  content: "\e80e";
} /* 'î Ž' */
.icon-right-open-big:before {
  content: "\e810";
} /* 'î ' */
.icon-star-half:before {
  content: "\f022";
} /* 'ï€¢' */
.icon-star-half_empty:before {
  content: "\f024";
} /* 'ï€¤' */
.icon-laptop:before {
  content: "\f109";
} /* 'ï„‰' */
.icon-tablet:before {
  content: "\f10a";
} /* 'ï„Š' */
.icon-quote-right:before {
  content: "\f10e";
} /* 'ï„Ž' */
.icon-code:before {
  content: "\f121";
} /* 'ï„¡' */
.icon-brush:before {
  content: "\f1fc";
} /* 'ï‡¼' */
/* .grecaptcha-badge {box-shadow: none !important;}
.grecaptcha-logo{display:none!important;} */
.grecaptcha-badge {
  visibility: hidden;
}
.google-recapcha-text {
  color: #c7c7c7;
  font-size: 14px;
}

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 62.5%;
}
body {
  font: 300 16px/1.8 "Nunito Sans", Helvetica, Arial, sans-serif;
  color: #000;
  background: #13293d;
}
h1,
h2,
h3,
h4 {
  line-height: 1.4;
}
a.header-phone img {
  vertical-align: middle;
}
.search-button button:before {
  content: "" !important;
  display: none;
}
.search-button button {
  color: #fff;
  border: 0;
  outline: 0;
  background: #44b0ef;
  padding: 10px 19px;
}
.search-button button:hover {
  background: #c0c0c0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #44b0ef;
  text-decoration: none;
}

/* Effect 10: reveal, push out */
.push-out-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  height: 39px;
}

.contact-page-form .push-out-btn-a,
.get-connected .push-out-btn-a {
  font-size: 18px;
  margin-top: 20px;
}

.push-out-btn-a,
.push-out-btn button,
.push-out-btn a,
.push-out-btn label {
  overflow: hidden;
  position: relative;
  display: inline-block;
  outline: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}
.push-out-btn button {
  padding: 0;
  border: 0;
}
.push-out-btn-a:before {
  content: attr(data-hover);
}
.push-out-btn-a:before,
.push-out-btn a span,
.push-out-btn button span,
.push-out-btn label span {
  display: block;
  padding: 10px 20px;
  background: #44b0ef;
  line-height: 1.4;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.home-exit-btn.push-out-btn label span {
  background: #cd0000;
}
.push-out-btn-a input,
.push-out-btn button::before,
.push-out-btn a::before,
.push-out-btn label::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  color: #44b0ef;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-25%);
}
.push-out-btn-a:hover::before,
.push-out-btn a:hover span,
.push-out-btn a:focus span,
.push-out-btn button:hover span,
.push-out-btn button:focus span,
.push-out-btn label:hover span,
.push-out-btn label:focus span {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
}
.push-out-btn-a:hover input,
.push-out-btn a:hover::before,
.push-out-btn a:focus::before,
.push-out-btn button:hover::before,
.push-out-btn button:focus::before,
.push-out-btn label:hover::before,
.push-out-btn label:focus::before {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
  z-index: 1;
}
.center-text {
  text-align: center;
}
.popup-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 201;
  height: 100vh;
  background: rgba(0, 0, 0, 0.83);
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
}
#hide-video,
#show-video {
  display: none;
}
.hide-label {
  display: block;
  padding: 0 !important;
  height: 0;
  width: 0;
  overflow: hidden;
}
.site_wrapper {
  overflow: hidden;
  background-position: 50% 50%;
}
.lastest-swp-posts,
.customer-reviews,
.home-services {
  background: #fff;
  margin-top: -25px;
}
.wrapper {
  position: relative;
}
.sm-wrapper {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
p.sm-wrapper {
  margin: 20px auto;
}
.header-wrapper,
.wrapper {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}
.blog-wrapper {
  max-width: 1100px;
}
.home-form-wrapper {
  max-width: 500px;
}
.home-padded {
  padding: 70px 0;
}
.sm-home-padded {
  padding: 70px 0;
}
.padded {
  position: relative;
  margin: 50px auto;
}
.nav ul li,
.nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav ul li a {
  display: block;
  padding: 10px;
}

.page_body {
  overflow: auto;
  min-height: calc(100vh - 786px);
  background: #ffffff;
}
.white-bg {
  background: #ffffff;
}

.gray-bg {
  background: #eee;
  overflow: auto;
}

.page_body h2 {
  color: #44b0ef;
  letter-spacing: 0.5px;
  font-size: 28px;
}
h1.blog-post-title {
  margin-bottom: 0;
}
.blog-content .date {
  margin-top: 0;
  margin-bottom: 32px;
}

.page_body h3 {
  color: #696969;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(19, 41, 61, 0.83);
  z-index: 200;
  webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.logo img {
  max-width: 200px;
}
.contact-buttons {
  min-width: 10px;
}
.contact-buttons .header-phone {
  font-size: 18px;
}
.contact-buttons .number-hide {
  display: none;
}
.header-phone {
  color: #fff;
}
.header-phone:hover {
  color: #44b0ef;
}
.page-header {
  position: relative;
  overflow: auto;
}
.page-header h1 {
  color: #fff;
  font-weight: 100;
  letter-spacing: 0.5px;
  font-size: 2em;
  margin: 0;
}
.header-padded {
  padding: 160px 0 40px;
}
.flexy-box-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexy-box-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.no-wrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.space-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.vertical-top {
  -webkit-align-items: flex-start;
  -ms-flex-items: start;
  align-items: flex-start;
}

.vertical-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.vertical-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.vertical-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.row {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}
.two-col {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding: 10px 0;
  min-width: 305px;
}
.three-col {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding: 10px 0;
}
.latest-post-box {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 250px !important;
}
.four-col {
  width: 50%;
  padding: 1px;
}
h2.home-title {
  color: #44b0ef;
  font-size: 28px;
  margin: 0 0 15px;
}

h3.home-title {
  font-size: 20px;
  margin: 10px 0;
}

.white-text {
  color: #fff;
}

.page-banner {
  max-height: calc(100vh - 62px);
  position: relative;
  margin-top: 62px;
  overflow: hidden;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  z-index: 199;
  align-content: center;
  background-color: #0c1625;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/london-downtown-350.jpg);
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}
.banner-content {
  z-index: 3;
  color: #fff;
  width: 95%;
  font-size: 2rem;
}
.banner-content h1 {
  margin: 0 0 15px;
}
.banner-content .text-line-1,
.banner-content .text-line-2 {
  display: block;
  line-height: 1.1;
}
.banner-content .text-line-1 {
  font-size: 0.75em;
}
.banner-content .text-line-2 {
  font-size: 0.57em;
}
/*------------------------------------*\
 MAIN
\*------------------------------------*/

/* clear */

.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
  clear: both;
}

.transtion,
.sub-menu,
.nav,
.likebtn,
.nav ul li,
a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
a:hover {
  color: #444444;
}
a:focus {
  outline: 0;
}
a:hover,
a:active {
  outline: 0;
}
input:focus {
  outline: 0;
  border: 1px solid #04a4cc;
}

.footer {
  padding: 0px 10px 14px;
  text-align: center;
  color: #ffffff;
}
.footer-inner {
  text-align: left;
  padding: 30px 0;
}
.footer p,
.footer ul {
  margin: 0;
  padding: 0;
}
.footer .location {
  padding: 0 0 0 5px;
}
.footer ul li {
  list-style: none;
  padding: 5px 3px;
  width: 50%;
}
.footer .three-col h3 {
  margin: 0 3px 10px;
}
.social-link {
  display: inline-block;
  padding: 5px;
  margin: 5px 5px 5px 0px;
}
.footer a {
  color: #fefefe;
}
.footer a:hover {
  color: #44b0ef;
}
/*------------------------------------*\
 PAGES
\*------------------------------------*/
h2.font-large {
  font-size: 2.8em;
}
h3.font-large,
.font-large {
  font-size: 2em;
}
.home-portfolio {
  position: relative;
  z-index: 199;
}
.profolio-box {
  position: relative;
  width: 100%;
}
.home-service-title {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}
.home-service-box-inner {
  padding: 0px 20px;
  overflow: hidden;
}
.home-service-box-inner:hover > .visable-content,
.home-service-box-inner:hover > .hidden-content {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
}
.visable-content a:hover > img,
.visable-content a:hover > i,
.visable-content a:hover > h3 {
  opacity: 0.6;
}
.home-service-box img {
  margin-bottom: 5px;
}
.effect-lexi {
  position: relative;
  overflow: hidden;
  max-height: 600px;
  background: #13293d;
}
.effect-lexi img {
  position: relative;
  display: block;
  min-height: 100%;
  width: 100%;
  transform: translate3d(0px, 0px, 0px);
  opacity: 0.9;
}
.effect-lexi figcaption {
  padding: 1em;
  color: #fff;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.effect-lexi figcaption::before,
.effect-lexi figcaption::after {
  pointer-events: none;
}
.effect-lexi figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.effect-lexi figcaption a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 16px;
}
.effect-lexi h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}
.effect-lexi h2,
.effect-lexi p {
  margin: 0;
}
.effect-lexi p {
  letter-spacing: 1px;
}
figure.effect-lexi img {
  -webkit-transition: all 5s linear;
  -moz-transition: all 5s linear;
  -ms-transition: all 5s linear;
  -o-transition: all 5s linear;
  transition: all 5s linear;
}
figure.effect-lexi figcaption::before,
figure.effect-lexi p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-lexi figcaption::before {
  position: absolute;
  right: -53px;
  bottom: -120px;
  width: 250px;
  background: #06b0ef;
  height: 250px;
  border: 2px solid #06b0ef;
  border-radius: 50%;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
  content: "";
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
figure.effect-lexi:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
figure.effect-lexi h2 {
  text-align: left;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(5px, 5px, 0);
  transform: translate3d(5px, 5px, 0);
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
figure.effect-lexi p {
  position: absolute;
  right: 0;
  line-height: 1.1;
  bottom: 0;
  padding: 0 10px 10px 0;
  text-align: right;
  opacity: 0;
  -webkit-transform: translate3d(20px, 20px, 0);
  transform: translate3d(20px, 20px, 0);
}
figure.effect-lexi:hover figcaption::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
figure.effect-lexi:hover h2,
figure.effect-lexi:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.responsive-design,
.awards-and-associations {
  background: #eee;
}
.awards-and-associations img:not(#bbblinkimg) {
  margin: 10px;
  max-height: 150px;
}
.get-connected {
  background: url(img/form-bg-320.jpg) fixed;
  background-size: cover;
}
.get-connected .wpcf7-form-control.g-recaptcha.wpcf7-recaptcha {
  margin: 0 auto;
  display: inline-block;
  position: relative;
}
.customer-review-home {
  position: relative;
  width: 100%;
  padding: 10px;
  text-align: left;
  font-size: 16px;
  z-index: 2;
}
.customer-review-home i {
  font-size: 22px;
  height: 22px;
  margin-top: 5px;
}
.customer-review-home:after {
  content: "\f10e";
  position: absolute;
  font-family: "entypo";
  top: 18px;
  line-height: 68px;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 48px;
  left: 5px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: rgba(68, 176, 239, 0.2);
  z-index: -1;
}
.customer-review-home p {
  margin: 0;
}
.star-rating-area {
  color: #ffd700;
}
/*------------------------------------*\
 REVIEWS
\*------------------------------------*/
::-webkit-input-placeholder {
  color: #cacaca;
} /* gray80 */
:-moz-placeholder {
  color: #cacaca;
} /* Firefox 18- (one color)*/
::-moz-placeholder {
  color: #cacaca;
} /* Firefox 19+ (double colons) */
:-ms-input-placeholder {
  color: #cacaca;
}
.large-input {
  transform: scale(1.6);
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  -ms-transform: scale(1.6);
  margin: 0 0 0 7px !important;
}
.exit-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #44b0ef;
  color: #fff;
  padding: 5px 30px 4px;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.exit-btn i {
  color: #fff !important;
}
.digital-marketing-serv-box {
  position: relative;
  padding: 31px 10px 51px;
  min-height: 253px;
}
.home-service-box i,
.home-service-box img,
.icon-box i,
.digital-marketing-serv-box i,
.digital-marketing-serv-box img {
  font-size: 40px;
  height: 40px;
  line-height: 1;
  color: #44b0ef;
}
.digital-marketing-serv-box .push-out-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}
.seo-img-bg {
  background: #eee;
  background-position: 50% 50%;
  background-size: cover;
  padding: 20px 0;
}
.seo-img-bg p {
  max-width: 700px;
  margin: 0 auto;
}

#show-video:checked ~ .popup-video-wrapper {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
}
.popup-video-wrapper-inner {
  padding: 10px;
}
.popup-controls {
  text-align: right;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.26%;
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 100px);
  height: 100%;
}

/*------------------------------------*\
 RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width: 1159px) {
  .profolio-box:nth-child(n + 5) {
    display: none;
  }

  .effect-lexi figcaption {
    padding: 1.2em;
  }
  figure.effect-lexi h2 {
    font-size: 22px;
    word-spacing: normal;
  }
  #mobile-nav-btn {
    cursor: pointer;
  }
  #mobile-nav-btn svg {
    color: black;
  }
  #mobile-nav-overlay {
    position: fixed;
    top: 59px;
    left: 0;
    z-index: 200;
  }
  .overlay {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s;
    z-index: 100;
  }
  #mobile-nav {
    height: 99.3333333333vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
  }
  #mobile-nav nav ul li a,
  #mobile-nav nav ul.sub-menu span {
    display: flex;
    align-items: center;
    padding: 1.8rem 1.5rem;
    text-decoration: none;
    color: black;
    cursor: pointer;
    -webkit-user-select: none;
    font-size: 18px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.3s;
  }
  #mobile-nav nav ul li a:hover,
  #mobile-nav nav ul li a:focus,
  #mobile-nav nav ul li a:active {
    background-color: #e0e0e0;
  }
  .menu--off {
    position: fixed;
    left: -70vw;
    width: 70vw;
    max-width: 280px;
    display: block;
    height: 100%;
    transition: all 0.3s;
    z-index: 200;
  }
  .menu--on {
    left: 0;
    transition: all 0.3s;
  }
  #mobile-nav nav ul,
  #mobile-nav nav li.menu-item-has-children {
    width: 100%;
  }
  #mobile-nav nav ul.sub-menu {
    display: none;
    width: 100%;
    margin: 0;
    background: #e0e0e0;
  }
  #mobile-nav nav ul.sub-menu li ul.sub-menu {
    background: #eeeeef;
  }
  #mobile-nav nav ul.sub-menu li {
    display: block;
    width: 100%;
  }
  #mobile-nav nav ul.sub-menu li a {
    display: block;
    text-align: left;
    width: 100%;
    transition: background-color 0.3s;
  }
  #mobile-nav nav ul.sub-menu li a:hover {
    background-color: #e0e0e0;
  }
  .video-homepage-follow {
    max-width: 150px;
    max-height: 90px;
  }
  .video-homepage-follow label span i {
    font-size: 70px;
    line-height: 70px;
    width: 70px;
    height: 70px;
  }
  .no-mobile {
    display: none;
  }
  .hamburger-menu label {
    display: inline-block;
    padding: 18px 0;
    vertical-align: middle;
  }
  .hamburger-menu label span {
    display: block;
    height: 2px;
    width: 30px;
    background: #fff;
    -webkit-box-shadow: 0 9px 0 0 #ffffff, 0 -9px 0 0 #fff;
    box-shadow: 0 9px 0 0 #ffffff, 0 -9px 0 0 #fff;
  }
  .desktop-nav {
    display: none;
  }
  .nav {
    max-height: 100vh;
    overflow-y: auto;
  }
  .nav .push-out-btn,
  .nav .push-out-btn a {
    width: 100%;
    text-align: center;
    font-size: 18px;
    display: block;
    height: auto;
  }
  .nav .push-out-btn a:before,
  .nav .push-out-btn a span {
    padding: 15px 20px;
  }
  #mobile-menu:checked ~ .nav {
    transform: translate(0%, 0px);
    -webkit-transform: translate(0%, 0px);
    -moz-transform: translate(0%, 0px);
    -o-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
  }
  .nav li a {
    min-width: 255px;
    border-top: 1px solid #eaeaea;
  }
  .sub-menu.show {
    max-height: 300px;
  }
  .menu-item-has-children {
    position: relative;
  }
  .menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
}

@media only screen and (min-width: 480px) {
  .logo img {
    max-width: 240px;
  }
  .contact-buttons .number-hide {
    display: unset;
  }
  .banner-bg {
    background-image: url(img/london-downtown-500.jpg);
  }
}

@media only screen and (min-width: 600px) {
  .banner-bg {
    background-image: url(img/london-downtown-700.jpg);
  }
  #mobile-nav-btn {
    min-width: 120px;
  }
  .home-service-box {
    width: 65%;
    position: relative;
    padding: 30px 0;
  }
  .profolio-box {
    width: 50%;
  }
}

@media only screen and (min-width: 643px) {
  .banner-content {
    width: 95%;
    font-size: 3rem;
  }
  .banner-content .push-out-btn {
    font-size: 0.8em;
  }
  .four-col {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 25%;
    min-width: 200px;
    padding: 0 20px;
  }
  .page-header h1 {
    font-size: 3em;
  }
}

@media only screen and (min-width: 800px) {
  .banner-bg {
    background-image: url(img/london-downtown-800.jpg);
  }
  .two-col {
    width: 50%;
    padding: 0 20px;
  }
  .row {
    padding: 0 20px;
  }
  .three-col {
    width: 30%;
    padding: 0 20px;
    min-width: 300px;
  }
  .latest-post-box {
    width: 33.33% !important;
  }
  .footer-inner {
    margin-right: -20px;
    margin-left: -20px;
  }
  .home-service-box {
    width: 33.33%;
    position: relative;
    padding: 30px 0;
  }
  .home-service-box:before {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -1px;
    width: 2px;
    background: #44b0ef;
  }
  .home-service-box:last-child:before {
    display: none;
  }
}

@media only screen and (min-width: 900px) {
  .three-col {
    width: 30%;
  }
}
@media only screen and (min-width: 1160px) {
  .profolio-box {
    width: 33.33%;
  }
  .customer-review-home {
    width: 33.3%;
  }
  .hidden-content {
    margin: 0;
    transform: translate(0px, 100%);
    -webkit-transform: translate(0px, 100%);
    -moz-transform: translate(0px, 100%);
    -o-transform: translate(0px, 100%);
    -ms-transform: translate(0px, 100%);
  }
  .home-service-title {
    width: 30%;
    text-align: left;
    padding: 0;
  }
  .home-service-box {
    width: 20%;
    padding: 0;
    position: relative;
  }
  .effect-lexi figcaption {
    padding: 2em;
  }
  figure.effect-lexi h2 {
    font-size: 40px;
  }
  .header-padded {
    padding: 10em 0 2em;
  }
  .banner-city-bg {
    position: absolute;
    left: 0;
    background-size: contain;
    right: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    z-index: 2;
  }
  .banner-bg {
    background-image: url(/wp-content/themes/sample_theme_swp/img/london-downtown-full.jpg);
    background-size: cover;
    background-position: 50% 100%;
    transform: scale(1.1);
  }
  #mobile-nav-overlay,
  #mobile-nav-btn {
    display: none;
  }
  .header-phone {
    padding: 0 10px 0 0;
  }
  .banner-content {
    width: auto;
    font-size: 3.5rem;
  }
  .banner-content .push-out-btn {
    font-size: 0.8em;
  }
  .page-banner {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .moblie-only,
  .hamburger-menu {
    display: none;
  }
  .header-consultation {
    height: 42px;
  }
  .nav ul {
    padding: 0;
    margin: 0;
    display: inline-block;
  }
  .nav ul li {
    display: inline-block;
    position: relative;
  }
  .nav ul li a {
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    letter-spacing: 0.2px;
  }
  .nav ul li:hover > a {
    color: #44b0ef;
  }
  .nav ul li ul.sub-menu {
    position: absolute;
    background: rgba(19, 41, 61, 0.9);
    white-space: nowrap;
    top: 120%;
    left: 0;
    opacity: 0;
    z-index: 33;
    visibility: hidden;
    -webkit-box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .nav ul li:hover > .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .nav ul li ul.sub-menu li {
    display: block;
  }
  .nav ul li ul.sub-menu li a {
    padding: 12px 15px 5px;
  }
  .nav ul li ul.sub-menu li:last-child a {
    padding: 12px 15px 10px;
  }
  .visable-content {
    transform: translate(0px, 100%);
    -webkit-transform: translate(0px, 100%);
  }
  body {
    font: 300 18px/1.4 "Nunito Sans", Helvetica, Arial, sans-serif;
  }
}

@media only screen and (min-width: 1200px) {
  .three-col {
    width: 33.3%;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .header {
    padding: 10px 5vw;
  }
}

::selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.blog-caption {
  padding: 5px;
  border: 1px solid #aaa;
  text-align: center;
  font-size: 12px;
  margin: 10px 0;
}

.review-main-title {
  text-align: center;
  background-color: #10375a;
  padding: 30px;
  text-align: center;
  color: white;
  margin-bottom: -15px;
}

.towo-col {
  display: flex;
  flex-direction: row;
  padding: 120px 0px;
}

.left-col-owo {
  width: 50%;
  padding: 10px;
}

.right-col-owo {
  width: 50%;
  padding: 0px;
}

.leave-a-review-butt {
  background-color: #10375a;
  color: #fff;
  border-radius: 15px;
  padding: 20px;
  -webkit-box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 22%);
  box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 22%);
  transition: all 0.3s linear;
}

.leave-a-review-butt:hover {
  background-color: #ffffff;
  color: #10375a;
}

@media only screen and (max-width: 1000px) {
  .towo-col {
    width: 100%;
    display: block;
  }

  .left-col-owo {
    width: 100%;
  }

  .left-col-owo h1 {
    text-align: center;
  }

  .right-col-owo {
    width: 100%;
  }
}
.youtube-iframe2023 iframe {
  max-width: 100%;
}

#review-main {
  font-size: 2em;
  margin: 0.67em 0;
  color: #fff;
}
#review-sub {
  font-size: 2em;
  margin: 0.67em 0;
  color: #000;
}
img {
  max-width: 100%;
  height: auto;
}
.website-slider-wrapper {
  position: relative;
  padding-bottom: 62.5%;
}
.website-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.website-slider img {
  width: 100%;
}
.service-two-col:first-child {
  background: #f4f4f4;
}
.service-two-col figure {
  position: relative;
}
.service-two-col figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.service-two-col figcaption h2 {
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 2em;
  margin: 0 -25px;
  padding: 12px 25px;
  background: rgba(18, 42, 61, 0.5);
}
/* Clip text element */
.page_body h2.clip-text {
  font-size: 2.8em;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  /* border-top: 1px solid #122a3d; */
  display: inline-block;
  margin: 0 0.25em 0.25em;
  padding: 0 0.75em 0.5em 0.75em;
  text-align: center;
  /* Color fallback */
  color: #122a3d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clip-text:before,
.clip-text:after {
  position: absolute;
  content: "";
}
/* Background */
.clip-text:before {
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: inherit;
}
/* Text Background (black zone) */
.clip-text:after {
  position: absolute;
  z-index: -1;
  top: 0.125em;
  right: 0.125em;
  bottom: 0.125em;
  left: 0.125em;
  background-color: #000;
}
.clip-text_one {
  background-image: url(/wp-content/uploads/clip-text.jpg);
}
.push-out-btn.galaxy-bg a span {
  background: #132a3d;
}
.push-out-btn.galaxy-bg a:before {
  background: #eee;
}
.website-gallery-col {
  -webkit-flex: 1 1 560px;
  -ms-flex: 1 1 560px;
  flex: 1 1 560px;
  max-width: 700px;
  padding: 0 30px;
}
.website-text-col {
  -webkit-flex: 1 1 390px;
  -ms-flex: 1 1 390px;
  flex: 1 1 390px;
  padding: 0 10px;
}
.cool-loopy-things {
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}
.cool-loopy-things .home-padded {
  padding: 50px 0;
}
.cool-loopy-things input[type="text"],
.cool-loopy-things input[type="tel"],
.cool-loopy-things input[type="email"],
.cool-loopy-things textarea {
  width: 100%;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 3px solid #fff;
}
.cool-loopy-things textarea {
  height: 199px;
}
.cool-loopy-things ::-webkit-input-placeholder {
  /* Edge */
  color: #132a3d;
}
.cool-loopy-things :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #132a3d;
}
.cool-loopy-things ::placeholder {
  color: #122a3d;
}
@media only screen and (min-width: 800px) {
  .cool-loopy-things .two-col {
    padding: 0 0.5em;
  }
}
.cool-loopy-things div.wpcf7-response-output,
.cool-loopy-things .form-group select,
.cool-loopy-things .form-group input:focus,
.cool-loopy-things .form-group input:valid,
.cool-loopy-things .form-group input.form-file,
.cool-loopy-things .form-group input.has-value,
.cool-loopy-things .form-group textarea:focus,
.cool-loopy-things .form-group textarea:valid,
.cool-loopy-things .form-group textarea.form-file,
.cool-loopy-things .form-group textarea.has-value {
  color: white;
}
.cool-loopy-things .wpcf7-not-valid-tip {
  position: relative;
  bottom: auto;
}
@media only screen and (min-width: 1000px) {
  .website-gallery-col {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .website-text-col {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.why-us-swpg p {
  margin: -10px 0 0 15px;
}

.why-us-row-swpg {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.why-us-content-swpg {
  display: flex;
  width: 45%;
  margin: auto 2.5%;
  flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .why-us-row-swpg {
    flex-direction: column;
  }
  .why-us-content-swpg {
    width: 100%;
  }
}

.benefits-section {
  /* background-color: #ffffff; */
  padding: 50px 20px;
  text-align: center;
}

.benefits-section h2 {
  /* font-size: 2.5em; */
  margin-bottom: 20px;
  color: #44b0ef;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 32%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-10px);
}

@media only screen and (max-width: 600px) {
  .benefit {
    width: 100% !important;
  }
}

.process-section {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.process-section h2 {
  /* font-size: 2.5em; */
  margin-bottom: 20px;
  color: #44b0ef;
}

.process-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #666;
}

.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.process-step {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  text-align: left;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  background-color: #007bff;
  color: #ffffff;
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 20px;
  transform: translateX(-50%);
  text-align: center;
}

.process-step h3 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #007bff;
}

.process-step p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}
.benefit h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007bff;
}

.benefit p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background: inherit;
  width: 50%;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #10375a;
  top: 35px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left::after {
  left: -16px;
}

.timeline-right::after {
  left: -16px;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

.timeline-content h4 {
  margin-top: 0;
  color: #10375a;
  letter-spacing: 0.5px;
  font-size: 28px;
}

.timeline-content p {
  margin: 10px 0;
}

/* Clearfix for containers */
.timeline-container::after,
.timeline-container::before {
  content: "";
  display: table;
  clear: both;
}
.timeline-container:not(:first-child) {
  margin-top: -100px;
}

/* Responsive timeline - makes the timeline look good on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-top: 0px;
  }

  .timeline-container::before {
    left: 60px;
    border: none;
  }

  .timeline-left::after,
  .timeline-right::after {
    left: 15px;
  }

  .timeline-right {
    left: 0%;
  }
  .timeline-content {
    padding: 20px 0px;
  }
}

#local-seo {
  padding: 40px 20px;
  border-radius: 8px;
  /* max-width: 800px; */
  margin: 0 auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

#local-seo h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #0056b3;
}

#local-seo p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.local-seo-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.local-seo-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #007bff;
  text-align: center;
}

.local-seo-item p {
  font-size: 14px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .local-seo-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .local-seo-item {
    flex: 1 1 calc(50% - 40px);
  }
}

#myInput {
  width: 100% !important;
  max-width: 100% !important;
}

.homepage-blogs .latest-post-box-inner {
  padding: 20px;
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.seovideo-section {
  text-align: center;
  padding-bottom: 80px;
  padding-top: 80px;
  background: #eee;
  display: flex;
  justify-content: center;
}

.seovideo2025-container {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.seovideo2025-thumbnail {
  width: 100%;
  display: block;
}

.seovideo2025-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  animation: seovideo2025-pulse 1.5s infinite;
  z-index: 2;
}

.seovideo2025-play-btn svg circle {
  fill: red;
  stroke: white;
  stroke-width: 4;
}

.seovideo2025-play-btn svg polygon {
  fill: white;
}

@keyframes seovideo2025-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.seovideo2025-video {
  width: 100%;
  height: auto;
  display: block;
}
