@charset "UTF-8";

:root{
    --clrTheme: #521C78;
}

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

.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>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link+.card-link {
  margin-left: 1.25rem;
}

.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-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: flex;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}

.card-group>.card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group>.card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group>.card+.card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group>.card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group>.card:not(:last-child) .card-img-top, .card-group>.card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group>.card:not(:last-child) .card-img-bottom, .card-group>.card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group>.card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group>.card:not(:first-child) .card-img-top, .card-group>.card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group>.card:not(:first-child) .card-img-bottom, .card-group>.card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion>.card {
  overflow: hidden;
}

.accordion>.card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion>.card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion>.card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion>.card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion>.card .card-header {
  margin-bottom: -1px;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0, .my-0 {
  margin-top: 0 !important;
}

.mr-0, .mx-0 {
  margin-right: 0 !important;
}

.mb-0, .my-0 {
  margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}

.mr-1, .mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1, .my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1, .mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2, .my-2 {
  margin-top: 0.5rem !important;
}

.mr-2, .mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2, .my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2, .mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3, .my-3 {
  margin-top: 1rem !important;
}

.mr-3, .mx-3 {
  margin-right: 1rem !important;
}

.mb-3, .my-3 {
  margin-bottom: 1rem !important;
}

.ml-3, .mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4, .my-4 {
  margin-top: 1.5rem !important;
}

.mr-4, .mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4, .my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4, .mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5, .my-5 {
  margin-top: 3rem !important;
}

.mr-5, .mx-5 {
  margin-right: 3rem !important;
}

.mb-5, .my-5 {
  margin-bottom: 3rem !important;
}

.ml-5, .mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0, .py-0 {
  padding-top: 0 !important;
}

.pr-0, .px-0 {
  padding-right: 0 !important;
}

.pb-0, .py-0 {
  padding-bottom: 0 !important;
}

.pl-0, .px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1, .py-1 {
  padding-top: 0.25rem !important;
}

.pr-1, .px-1 {
  padding-right: 0.25rem !important;
}

.pb-1, .py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1, .px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2, .py-2 {
  padding-top: 0.5rem !important;
}

.pr-2, .px-2 {
  padding-right: 0.5rem !important;
}

.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2, .px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3, .py-3 {
  padding-top: 1rem !important;
}

.pr-3, .px-3 {
  padding-right: 1rem !important;
}

.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}

.pl-3, .px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4, .py-4 {
  padding-top: 1.5rem !important;
}

.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5, .py-5 {
  padding-top: 3rem !important;
}

.pr-5, .px-5 {
  padding-right: 3rem !important;
}

.pb-5, .py-5 {
  padding-bottom: 3rem !important;
}

.pl-5, .px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1, .my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1, .mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1, .my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1, .mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2, .my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2, .mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2, .my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2, .mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3, .my-n3 {
  margin-top: -1rem !important;
}

.mr-n3, .mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3, .my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3, .mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4, .my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4, .mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4, .my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4, .mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5, .my-n5 {
  margin-top: -3rem !important;
}

.mr-n5, .mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5, .my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5, .mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto, .my-auto {
  margin-top: auto !important;
}

.mr-auto, .mx-auto {
  margin-right: auto !important;
}

.mb-auto, .my-auto {
  margin-bottom: auto !important;
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0, .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0, .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2, .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1, .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1, .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1, .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1, .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2, .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2, .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2, .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2, .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3, .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3, .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3, .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3, .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4, .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4, .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4, .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4, .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5, .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5, .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5, .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5, .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto, .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0, .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0, .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0, .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1, .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1, .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2, .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2, .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2, .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3, .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3, .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5, .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5, .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0, .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0, .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0, .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0, .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1, .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1, .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2, .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2, .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2, .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3, .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3, .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3, .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5, .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5, .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5, .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1, .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1, .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1, .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1, .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2, .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2, .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2, .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2, .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3, .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3, .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3, .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3, .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4, .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4, .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4, .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4, .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5, .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5, .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5, .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5, .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto, .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto, .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto, .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto, .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0, .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0, .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2, .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1, .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1, .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1, .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1, .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2, .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2, .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2, .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2, .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3, .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3, .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3, .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3, .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4, .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4, .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4, .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4, .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5, .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5, .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5, .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5, .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto, .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0, .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2, .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0, .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0, .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0, .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2, .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1, .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1, .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1, .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1, .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2, .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2, .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2, .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2, .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3, .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3, .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3, .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3, .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4, .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4, .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4, .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4, .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5, .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5, .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5, .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5, .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto, .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto !important;
  }
}


/* Main Style Starts Here */

h1,h2,h3,.h1,.h2,.h3				{color: #444;}

a									{color: #666; text-decoration: none;
									 -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s;
									 transition: all 0.3s ease-in-out 0s;}
a:hover								{text-decoration: none; color: var(--clrTheme);}
a[disabled]							{pointer-events: none; cursor: default;}

.btn								{border-radius: 0;}
.btn:hover							{color: var(--clrTheme);}
.btn-theme							{color: white; background-color: #0f0f0f;
									 border-color: #0f0f0f;}
.btn-theme.focus, .btn-theme:focus, 
.btn-theme:hover, .btn-theme.active, 
.btn-theme:active					{color: #fff; background-color: var(--clrTheme);
									 border-color: var(--clrTheme);}

.btn-purple							{color: white; background-color: var(--clrTheme);
									 border-color: var(--clrTheme);}
.btn-purple.focus, .btn-purple:focus, 
.btn-purple:hover, .btn-purple.active, 
.btn-purple:active					{color: white; background-color: black;
									 border-color: black;}

select,
select.form-control					{-moz-appearance: none; -webkit-appearance: none;
									 appearance: none; padding-right: 20px; border-radius: 0;
									 background: #fff url(../images/icons/icon-angle-down.svg) no-repeat center right 12px/12px 12px;}

.section-pageHeading {
  margin: 0 0 30px;
}

.section-pageHeading .title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
}

.section-pageHeading .title.text-left {
  text-align: left;
}

.section-pageHeading .title small {
  text-transform: none;
}

.section-pageHeading .title+img {
  width: 100%;
}

@media (max-width: 767px) {
  .section-pageHeading {
    margin: 15px 0 20px;
  }
}

@media (max-width: 767px) {
  .mobScrollNone {
    overflow: hidden;
  }
}

.pageLoader {
  z-index: 9999;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  cursor: wait;
  display: none;
  background: url(../images/ajax-loader-new.gif) no-repeat center center;
}

@media (max-width: 767px) {
  .megamenuWapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .megamenuWapper.showMegamenu {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .megamenuWapper.showMegamenu .megamenu {
    left: 0;
  }
  .megamenu {
    width: 280px;
    height: -moz-calc(100vh - 40px);
    height: -webkit-calc(100vh - 40px);
    height: calc(100vh - 40px);
    float: left;
    position: relative;
    left: -100%;
    background-color: #e9e9e9;
    margin-top: 40px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .megamenu::before, .megamenu::after {
    content: "";
    height: 40px;
    position: absolute;
    top: -40px;
    right: 0;
    pointer-events: none;
  }
  .megamenu::before {
    left: 0;
    background: black url(../images/maharaja-logo-white.png) no-repeat center left/auto 30px;
  }
  .megamenu::after {
    width: 40px;
    background: url(../images/angle-back-white.png) no-repeat center/16px auto;
  }
  .megamenu>.megamenuList {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .megamenu>.megamenuList>li {
    max-height: 40px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .megamenu>.megamenuList>li.activeList {
    max-height: 500px;
  }
  .megamenu>.megamenuList>li.activeList .menuList::before {
    content: "";
  }
  .megamenu>.megamenuList>li.listYes>a {
    pointer-events: none;
  }
  .megamenu>.megamenuList>li>a {
    display: block;
    height: 40px;
    line-height: 28px;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
  }
  .megamenu .menuList {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .megamenu .menuList::before {
    content: "";
    position: absolute;
    top: -32px;
    right: 15px;
    font-family: "FontAwesome";
    color: black;
  }
  .megamenu .menuList>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .megamenu .menuList>li>a {
    display: block;
    padding: 5px 10px;
    color: #656565;
  }
}



.siteSearch * {
  border-radius: 0;
}

.siteSearch .dropdown-menu {
  width: 240px;
}

.siteSearch .dropdown-toggle {
  background-color: white;
}

.siteSearch .open .dropdown-toggle {
  box-shadow: none;
}

.breadcrumb {
  margin: 20px 0 15px;
  padding: 0;
  text-align: center;
  background: none;
}

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

.productGridBox                     {width: 100%; float: left; border: 1px solid #ddd; padding: 8px;
                                     position: relative; overflow: hidden; margin-bottom: 30px;}
.productGridBox .otherActions       {position: absolute; left: auto; right: 0; top: 0; z-index: 1;}
.productGridBox .otherActions a     {font-size: 18px}
/*
.productGridBox:hover .otherAction  {right: 0}
.productGridBox .actionList         {margin: 0; padding: 5px 10px; list-style: none;}
.productGridBox .actionList > li    {margin: 0; padding: 0;}
.productGridBox .actionList > li a  {display: inline-block; font-size: 12px; line-height: 18px;
                                     position: relative; min-width: 110px; padding-left: 20px; color: gray;}
.productGridBox .actionList > li a:before
                                    {position: absolute; left: 0; top: 50%; transform: translateY(-50%);
                                     font-family: FontAwesome; width: 20px; text-align: center;}
.productGridBox .actionList > li a:hover:before,
.productGridBox .actionList > li a.saved:before
                                    {color: red;}


.productGridBox .saveForLater:before{content: "\f005"}
.productGridBox .addWishlist:before {content: "\f004"}
*/



.productGridBox .productImage {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  text-align: center;
}

.productGridBox .productImage .thumb {
  width: 100%;
  min-height: 100px;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: url(../images/bj-ajax-loader-product.gif) no-repeat center center;
}

.productGridBox .productImage .thumb>img {
  width: 100%;
  height: auto;
}

.productGridBox .productImage>.viewDetail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 5px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.productGridBox .productTitle {
  text-align: center;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Silk Serif';
}

.productGridBox .productPrice {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
}

.productGridBox .productPrice .productSellPrice, .productGridBox .productPrice .callForPrice {
  font-size: 18px;
  color: #0f0f0f;
  text-decoration: none;
}

.productGridBox .productPrice .productRetailPrice {
  text-decoration: line-through;
  color: #888;
  font-size: 12px;
  padding-left: 5px;
}

.productGridBox .boxFooter {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  align-items: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 90px;
  padding-bottom: 5px;
}

.productGridBox .boxFooter .productPrice {
  margin-top: auto;
}

.productGridBox .newTag, .productGridBox .saleTag {
  position: absolute;
  left: -8px;
  top: -7px;
}

@media (min-width: 768px) {
  .productGridBox .productImage .thumb {
    min-height: inherit;
    padding: 100% 0 0;
    background: url(../images/bj-ajax-loader-product.gif) no-repeat center center;
  }
  .productGridBox .productImage .thumb>img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .productGridBox .productImage>.viewDetail {
    opacity: 0;
    visibility: hidden;
    bottom: -15px;
  }
  .productGridBox .productImage:hover>.viewDetail {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
  }
}

.saleTag, .newTag {
  width: 72px;
  height: 72px;
  background-image: url(../images/icons/sale-new-tag.png);
  background-repeat: no-repeat;
}

.saleTag {
  background-position: 0 0;
}

.newTag {
  background-position: -72px 0;
}



.categoryBox {
  width: 100%;
  background-color: #fff;
  position: relative;
  display: block;
  padding-bottom: 27px;
  min-height: 225px;
  border-radius: 4px 4px;
  overflow: hidden;
  border: 1px solid #ddd;
  text-align: center;
}

.categoryBox .productImage {
  width: 100%;
  overflow: hidden;
  text-align: center;
  height: 225px;
}

.categoryBox .productImage a {
  display: block;
}

.categoryBox .productImage img {
  height: auto;
}

.categoryBox .descriptionBox {
  width: 100%;
  position: absolute;
  bottom: -75px;
  background-color: #d6f0fd;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.categoryBox:hover .descriptionBox {
  bottom: 0;
}

.categoryBox .productPrice, .categoryBox .productTitle {
  font-size: 16px;
  color: #90336f;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
  line-height: 26px;
}

.categoryBox .productPrice a, .categoryBox .productTitle a {
  color: #3e3e3e;
}

.categoryBox .productPrice a:hover, .categoryBox .productTitle a:hover {
  text-decoration: underline;
}

.categoryBox .productDesc {
  font-size: 11px;
  line-height: 14px;
  height: 40px;
  overflow: hidden;
}

.categoryBox .productInfo {
  font-size: 12px;
  font-weight: 700;
  color: #817c7a;
  line-height: 14px;
}

.categoryBox .shopNow {
  font-size: 11px;
  font-style: italic;
  float: right;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 2px;
}

.categoryBox .shopNow:hover {
  text-decoration: none;
}

.categoryBox .actionButton, .categoryBox input {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .categoryBox {
    min-height: inherit;
    padding-bottom: 0;
  }
  .categoryBox .productImage {
    height: auto;
  }
  .categoryBox .descriptionBox {
    position: relative;
    bottom: auto;
  }
  .categoryBox .productTitle {
    margin-bottom: 0;
    line-height: 22px;
  }
  .categoryBox .productDesc {
    line-height: 12px;
  }
  .categoryBox .shopNow {
    float: none;
    display: block;
  }
}

.productGridBox3 {
  position: relative;
  display: block;
  height: 245px;
  max-height: 245px;
  overflow: hidden;
}

.productGridBox3 .productImage {
  width: 100%;
  height: 134px;
  overflow: hidden;
}

.productGridBox3 .productImage img {
  width: 99%;
  height: auto;
  border: 1px solid #dfdfdf;
}

.productGridBox3 .productPrice, .productGridBox3 .productTitle {
  font-size: 16px;
  color: #90336f;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 6px;
  line-height: 22px;
  text-align: center;
}

.productGridBox3 .productPrice a, .productGridBox3 .productTitle a {
  color: #90336f;
}

.productGridBox3 .productPrice a:hover, .productGridBox3 .productTitle a:hover {
  text-decoration: underline;
}

.productGridBox3 .productDesc {
  line-height: 20px;
  text-align: center;
  padding-top: 12px;
}

.productGridBox3 .productInfo {
  font-size: 12px;
  font-weight: 700;
  color: #817c7a;
  line-height: 14px;
}

@media (max-width: 1030px) {
  .productGridBox .saveForLater {
    display: block;
  }
}

@media (max-width: 990px) {
  .productListing .productGridBox .productTitle {
    height: 54px;
    line-height: 14px;
  }
  .productListing .productGridBox .viewDetail {
    display: block !important;
    font-size: 10px;
    white-space: nowrap;
    padding: 3px;
    top: 80%;
  }
}

/*Product Detail CSS Starts Here*/

.section-productDetail {
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .section-productDetail {
    margin-bottom: 20px;
  }
}

.productPreviewBox {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  padding: 12px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.productPreviewBox .currentAngle {
  width: 100%;
  float: left;
  margin: 0 0 12px;
}

.productPreviewBox .currentAngle img {
  width: 100%;
}

.productAnglesList {
  margin: 0 -6px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.productAnglesList>li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 20%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 20%;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  max-width: 20%;
  padding: 0 6px;
}

.productAnglesList>li>a {
  width: 100%;
  float: left;
  margin: 0;
  padding: 100% 0 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #d5d5d5;
}

.productAnglesList>li>a>img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.socialPluginBox {
  width: 100%;
  float: left;
  text-align: center;
  margin: 0 0 20px;
}

.socialPluginList {
  margin: 0;
  padding: 0;
}

.socialPluginList>li {
  padding: 0 10px;
  list-style: none;
}

.socialPluginList>li>a {
  display: block;
  color: #9a9a9a;
  font-size: 20px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius:100%;
  border:1px solid #9a9a9a;
}
.section-login .form-control{border-radius:0;}

.socialPluginList>li>a:hover {
 background: var(--clrTheme);
 color: #fff;
  border:1px solid  var(--clrTheme);
}

.requestBtns {
	width: 100%;
	float: left;
	margin: 0 0 20px;
  }
  .requestBtns .requestBtnsList {
	margin: 0 -5px;
	padding: 0;
	list-style: none;
  }
  .requestBtns .requestBtnsList > li {
	padding: 5px;
  }
  .requestBtns .requestBtnsList > li > .btn {
	color: #9a9a9a;
  }
  .requestBtns .requestBtnsList > li > .btn:hover {
	color: var(--clrTheme);
  }
  .requestBtns .requestBtnsList > li.sfl-no a, .requestBtns .requestBtnsList > li.sfl-yes a {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	color: #9a9a9a;
  }
  .requestBtns .requestBtnsList > li.sfl-no a span, .requestBtns .requestBtnsList > li.sfl-yes a span {
	display: none;
  }
  .requestBtns .requestBtnsList > li a.saved,
  .requestBtns .requestBtnsList > li a[title=Saved] {
	color: orange;
  }
  @media (max-width: 767px) {
	.requestBtns {
	  margin-bottom: 10px;
	}
  }

.tollFreeNo {
  font-size: 16px;
  display: block;
  text-align: center;
  color: #9a9a9a;
}

.tollFreeNo span {
  display: inline-block;
  line-height: 28px;
}

/*.tollFreeNo span i {
  color: #A92A13;
}*/

.tollFreeNo span.tollNo {
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 767px) {
  .tollFreeNo {
    margin-bottom: 20px;
    width: 100%;
    float: left;
    padding: 10px;
  }
  .tollFreeNo span {
    display: block;
  }
}

.productDetail .productTitle {
  font-size: 20px;
  line-height: 22px;
  margin: 0 0 10px;
}

.productDetail .productSku {
  font-size: 14px;
  margin: 0 0 15px;
  color: #656565;
}

.productDetail .productDesc {
  margin: 0 0 15px;
  line-height: 18px;
}

.productDetail .productPrice {
  font-size: 22px;
  line-height: 36px;
  margin: 0 0 15px;
  color: var(--clrTheme);
}

.productDetail .productPrice span {
  color: #0f0f0f;
}

.productDetail .productPrice small {
  font-size: 14px;
  display: block;
}

.productDetail .selectRingSizeBox {
  width: 100%;
  float: left;
  margin: 0 0 30px;
  padding: 0;
}

.productDetail .selectRingSizeBox label {
  margin: 0;
}

.productDetail .selectRingSizeBox .form-control {
  max-width: 120px;
  margin: 0 7px;
}

.productDetail .btnGroup {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}
.productDetail .btnGroup .btn {
  text-transform: uppercase;
  height: 50px;
  line-height: 36px;
}
.productDetail .btnGroup .btn.btnUnderline {
  background-color: white;
  text-decoration: underline;
}
.productDetail .btnGroup .btn.btnUnderline:hover {
  text-decoration: none;
  color: black;
}
.productDetail .btnGroup .btnAddToCart {
  max-width: 280px;
}
.productDetail .btnGroup .btnAddToCart:hover {
  border-color: transparent;
  color: #fff !important;
}
.productDetail .btnGroup.btnFill .btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
@media (max-width: 990px) {
  .productDetail .btnGroup {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .productDetail .btnGroup .btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}

.productSpecificationBox {
  width: 100%;
  float: left;
  padding: 20px 0 0;
}

.productSpecificationBox .card {
  border: none;
  border-radius: 0;
}

.productSpecificationBox .card-header {
  background-color: transparent;
  padding: 0;
}

.productSpecificationBox .card-header > a {
  display: block;
  padding: 15px 0;
  text-align: left;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
}

.productSpecificationBox .card-header > a:focus,
.productSpecificationBox .card-header > a:active {
  outline: none;
  box-shadow: none;
}

.productSpecificationBox .card-header > a::before {
  content: "-";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

.productSpecificationBox .card-header > a.collapsed::before {
  content: "+";
}

.productSpecificationBox .card-body {
  min-height: 62px;
}

.productSpecificationBox table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}

.productSpecificationBox table th,
.productSpecificationBox table td {
  padding: 4px 7px;
  background-color: transparent !important;
}

.productSpecificationBox table tr {
  background-color: transparent !important;
}

.productSpecificationBox table .tdColon {
  width: 30px;
  text-align: center;
}

.productSpecificationBox .specTable {
  margin: 0;
}

.productSpecificationBox .specTable tbody tr > *:first-child {
  width: 100px;
}

.productSpecificationBox .specTable tbody tr:first-child th,
.productSpecificationBox .specTable tbody tr:first-child td {
  border-top: none;
}

.productSpecificationBox .rating-name small {
  font-size: 11px;
}

.productSpecificationBox .addReviewForm .form-group {
  position: relative;
}

.productSpecificationBox .addReviewForm .form-group .fldMsg {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: red;
}

.productSpecificationBox .addReviewForm {
  margin-top: -20px;
}

.productSpecificationBox .addReviewForm .form-control {
  border-radius: 0;
  box-shadow: none;
}

.productSpecificationBox .btnShowReviewForm {
  position: relative;
  z-index: 1;
}

.productSpecificationBox .btnShowReviewForm > .btn[aria-expanded=true] + .msgNoReview {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 990px) {
  .productSpecificationBox .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .productSpecificationBox .nav-tabs > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }

  .productSpecificationBox .nav-tabs > li > a {
    width: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
  }
}

.customerReviews {
  width: 100%;
  float: left;
  border-top: 1px solid #dfdfdf;
  padding: 10px 0 0;
  overflow: hidden;
}

.customerReviews .reviewList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.customerReviews .reviewList>li {
  width: 100%;
  float: left;
  margin: 6px 0 0;
  padding: 6px 0 0;
  border-top: 1px solid #f5f5f5;
}

.customerReviews .reviewList>li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.customerReviews .reviewList>li p {
  padding: 0;
  line-height: 18px;
}

.customerReviews .reviewList>li .reviewerName {
  font-size: 12px;
  text-transform: uppercase;
  color: #555;
}

.customerReviews .noReview {
  text-align: center;
  color: red;
  margin: 0;
}

#similarProductCarousel {
  width: 100%;
  float: left;
}

#similarProductCarousel .owl-nav {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

#similarProductCarousel .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  top: 30%;
  margin: 0;
  padding: 0;
  text-align: center;
}

#similarProductCarousel .owl-nav [class*=owl-] span {
  display: block;
  font-size: 40px;
  margin-top: -12px;
}

#similarProductCarousel .owl-nav .owl-prev {
  left: -40px;
}

#similarProductCarousel .owl-nav .owl-next {
  right: -40px;
}

body {
  color: #222222;
  font-family: 'Asap', sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

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

button:focus {
  outline: medium none;
}

.padding {
  padding: 90px 0;
}

.top-padding {
  padding-top: 90px;
}

.section-padding {
  padding-top: 130px !important;
}

.padding-botom {
  padding-bottom: 90px;
}

.magin30 {
  margin-bottom: 30px;
}

.dark {
  background: #1b1d1f;
}

.light {
  background: #f5f5f5;
}

.base_color {
  background: #82b440;
}

.green {
  background: #74c8b8;
}

.pink {
  background: #ec768c;
}

.purple {
  background: #c183d6;
}

.blue {
  background: #31aae1;
}

.green-text {
  color: #74c8b8;
}

.pink-text {
  color: #ec768c;
}

.purple-text {
  color: #c183d6;
}

.blue-text {
  color: #31aae1;
}

.bg-grey {
  background: #ececec;
}

a.readmore {
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  text-transform: uppercase;
}

a.readmore:hover, a.readmore:focus {
  color: #82b440;
}

.loadmore {
  color: #222222;
  margin-top: 40px;
  position: relative;
  -webkit-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.loadmore:hover {
  color: #82b440;
}

.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left: 95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top: 25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}

.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */

.bounce-top, .bounce-green, .bounce-white {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.bounce-pink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.bounce-pink:before {
  background: #EC768C !important;
}

.bounce-top:before {
  background: #07AAA5;
}

.bounce-green:before {
  background: #82B440;
}

.bounce-white:before {
  background: #fff;
}

.bounce-top:before, .bounce-green:before, .bounce-white:before, .bounce-pink:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bounce-top:hover, .bounce-top:focus {
  color: #fff !important;
  border: 1px solid #07AAA5;
}

.bounce-pink:hover, .bounce-pink:focus {
  color: #fff !important;
  border: 1px solid #EC768C !important;
}

.bounce-green:hover, .bounce-green:focus {
  color: #fff;
  border: 1px solid #82B440;
}

.bounce-white:hover, .bounce-white:focus {
  color: #1b1d1f !important;
  border: 1px solid #fff;
}

.bounce-top:hover:before, .bounce-top:focus:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-green:hover::before, .bounce-green:focus::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-white:hover::before, .bounce-white:focus::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-pink:hover::before, .bounce-pink:focus::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*Section with image*/

.info-section .row {
  margin: 0;
}

.info-section .block {
  position: relative;
  padding: 50px 5%;
}

.info-section .block .center {
  height: 100%;
}

.info-section a {
  color: black;
}

.info-section ul.social-media li {
  display: inline-block;
}

.info-section ul.social-media li a {
  color: #1b1d1f;
  font-size: 20px;
  margin-right: 10px;
  display: block;
  margin-top: 25px;
}

.info-section ul.social-media li a:hover, .info-section ul.social-media li a:focus {
  color: #82b440;
}

.info-section .bg {
  background-size: cover;
  background-position: center center;
  bottom: 0;
  left: 0;
  position: relative;
  right: 0;
  top: 0;
  padding-top: 75%;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .info-section .block {
    padding: 40px 20px 0;
  }
  .info-section h2 {
    margin-bottom: 10px !important;
  }
}

/*Header Starts*/

a, .header.affix .navbar-default .navbar-nav>li>a, #main-navigation, .header.affix, .navbar-brand, .header.affix .navbar-default .navbar-nav>li>a, .push_nav li a, ul.top-right li a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#about .canvas-box span i, #about .canvas-box h4, #about .canvas-box:hover span i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.we-do .do-wrap i, .we-do .do-wrap:hover i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.counters-item i, .counters-item:hover i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thinker-image .overlay, .work-filter ul li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-button>button span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#paralax-slider .owl-controls .owl-page span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* #main-navigation {
  position: absolute;
}

.header.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
}

#main-navigation, .header.affix {
  top: 0;
  z-index: 999;
  width: 100%;
} */

.navbar-default {
  background-color: transparent;
  border-color: transparent;
}

.navbar, .navbar-default {
  border: none;
}

.navbar {
  margin-bottom: 0;
  min-height: auto;
}

.navbar-collapse {
  -webkit-overflow-scrolling: auto !important;
}

.navbar-brand {
  height: auto;
  padding: 29px 0;
  float: none;
  display: block;
  width: 150px;
}

/* .header.affix .navbar-brand {
  padding: 10px 0;
  width: 230px;
} */

.navbar-default .navbar-nav>li {
  margin: 0 10px;
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 37px 0 15px 0;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}

/* .header.affix .navbar-default .navbar-nav>li>a {
  color: #222;
  padding: 20px 0;
} */

.navbar-default .navbar-nav>li>a:hover, .header.affix .navbar-default .navbar-nav>li>a:hover {
  color: #07AAA5;
  background-color: transparent;
}

.navbar-default .navbar-nav>.active a {
  color: #07AAA5;
  border-bottom: 3px solid #82b440;
  background-color: transparent;
}

.navbar-default .navbar-nav>.active a:hover, .navbar-default .navbar-nav>.active a:focus {
  color: #07AAA5;
  border-bottom: 3px solid #82b440;
  background-color: transparent;
}

/* .header.affix .navbar-default .navbar-nav>.active a {
  color: #07AAA5;
  border-bottom: 3px solid #82b440;
  background-color: transparent;
} */

/* .header.affix .navbar-default .navbar-nav>.active a:hover, 
.header.affix .navbar-default .navbar-nav>.active a:focus {
  color: #07AAA5;
  border-bottom: 3px solid #82b440;
  background-color: transparent;
} */

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}

.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color: #fff !important;
}

/* .header.affix .navbar-toggle .icon-bar {
  background-color: #222 !important;
} */

.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}

/*Social Icons On Headers*/

ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position: relative;
  z-index: 10;
}

/* .header.affix ul.top-right {
  margin: 17px 0 17px 10px;
} */

ul.top-right li {
  display: inline-block;
  margin-left: 2px;
}

ul.top-right li a {
  display: block;
  font-size: 13px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 26px;
  width: 26px;
  text-align: center;
  line-height: 26px;
  color: #fff;
}

/* .header.affix ul.top-right li a {
  color: #222;
}

.header.affix ul.top-right li a:hover {
  color: #fff;
} */

ul.top-right li a:hover {
  background: #fff;
}

ul.top-right li a:hover.facebook {
  color: #3b5998;
}

ul.top-right li a:hover.twitter {
  color: #55acee;
}

ul.top-right li a:hover.instagram {
  color: #e95950;
}

/* .header.affix ul.top-right li a:hover.facebook {
  background: #3b5998;
}

.header.affix ul.top-right li a:hover.twitter {
  background: #55acee;
}

.header.affix ul.top-right li a:hover.instagram {
  background: #e95950;
} */

/* ------------- Push Menu ------------ */

#main-navigation.noborder {
  box-shadow: 0 0;
}

.main-button {
  height: auto;
  position: fixed;
  width: auto;
  z-index: 999;
  top: 31px;
}

.main-button.right {
  right: 15px;
}

.main-button.left {
  left: 15px;
}

.main-button.left>button.menu-active {
  left: 250px;
}

.main-button>button {
  background-color: #fff;
  border: none;
  padding: 5px;
  -webkit-border-radius: 2px;
  -ms--border-radius: 2px;
  border-radius: 2px;
}

.main-button>button:hover span:first-child, .main-button>button.menu-active span:first-child {
  transform: translateY(6px) rotate(-45deg);
}

.main-button>button:hover span:nth-child(2), .main-button>button.menu-active span:nth-child(2) {
  opacity: 0;
  transform: rotate(-45deg);
}

.main-button>button:hover span:last-child, .main-button>button.menu-active span:last-child {
  transform: translateY(-6px) rotate(-135deg);
}

.main-button>button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width: 20px;
}

.main-button>button span:nth-child(2) {
  margin: 3px 0;
}

.navbar-brand {
  display: inline-block;
}

.cbp-spmenu {
  background: #fff;
  position: fixed;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.176);
}

.push_nav_brand {
  margin: 30px 0 30px 15px;
  display: inline-block;
  width: 110px;
}

.logo-space {
  padding: 32px 0;
}

.push_nav li {
  position: relative;
  overflow: hidden;
}

.push_nav li a {
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  display: block;
  padding: 15px;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-family: "raleway";
}

.push_nav li a:hover {
  color: #07AAA5;
}

.push_nav li.active a {
  color: #07AAA5;
}

.push_nav .active a:hover, .push_nav li.active a:focus {
  color: #07AAA5;
}

/* ------------- Push Menu ------------ */

/* Index5 Navigation */

.index5 .affix-top {
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  padding: 0px;
}

.index5 .affix-top a {
  color: #000 !important;
}

.index5 .affix-top .active a {
  color: #07AAA5 !important;
}

.index5 .affix-top .navbar-toggle .icon-bar {
  background-color: #222 !important;
}

/* ------------ Main Banner ------------ */

#main-slider {
  color: white;
  background-color: black;
}

#main-slider ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
}

#main-slider ul li {
  list-style: none;
}

#main-slider .tp-caption {
  width: 100%;
}

#main-slider .mobileBanner {
  width: 100%;
  float: left;
  position: relative;
}

#main-slider .mobileBanner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

#main-slider .mobileBanner .bannerTitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 0 30px;
  text-align: center;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tp-banner h2 {
  font-size: 54px;
}

.tp-banner p {
  font-size: 18px;
  color: #fff;
}

#main-slider .tp-caption a {
  color: #fff;
}

#main-slider h2.tp-caption>span {
  display: block;
}

#main-slider .tp-caption a {
  margin: 5px;
}

#main-slider .tp-loader {
  display: none !important;
}

.tp-bullets {
  display: none;
}

.tp-caption {
  padding: 0 !important;
}

.layer-content p {
  color: #000;
  font-weight: 400;
}

.layer-content h2 {
  color: #000;
  font-weight: 600;
}

.layer-content h2 span {
  color: #07AAA5;
  font-weight: 600;
  display: inline-block !important;
}

.layer-content h2 span.green-text {
  color: #82b440;
}

/* ------------ Main Banner ------------ */

/* ------------ Banner With Text Rotator ------------ */

.text-rotator {
  background: url("img/banner_text.jpg");
  padding-top: 200px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
}

.text-rotator #paralax-slider {
  padding: 15% 0;
}

#paralax-slider .item-content p {
  font-size: 20px;
  color: #fff;
}

#paralax-slider .item-content h2 {
  color: #fff;
  font-size: 58px;
  margin-bottom: 25px;
  font-weight: 100;
}

#paralax-slider .owl-controls {
  margin-top: 5%;
}

#paralax-slider .owl-controls .owl-page span {
  background: #fff;
  text-align: center;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  opacity: 1;
}

#paralax-slider .owl-controls .owl-page span:hover {
  background: #6BB156;
}

#paralax-slider .owl-controls .active span {
  background: #6BB156;
}

/* ------------ What We Offer ------------ */

#about .canvas-box {
  cursor: pointer;
}

#about .canvas-box span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px;
}

#about .canvas-box span i {
  display: inline-block;
  font-size: 50px;
}

.color1 {
  color: #07AAA5;
}

.color2 {
  color: #99D8CC;
}

.color3 {
  color: #EC768C;
}

.color4 {
  color: #C183D6;
}

.color5 {
  color: #31AAE1;
}

.color6 {
  color: #82B440;
}

#about .canvas-box:hover span i, .counters-item:hover i, .we-do .do-wrap:hover i {
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

#about .canvas-box:hover h4.color1 {
  color: #07AAA5;
}

#about .canvas-box:hover h4.color2 {
  color: #99D8CC;
}

#about .canvas-box:hover h4.color3 {
  color: #EC768C;
}

#about .canvas-box:hover h4.color4 {
  color: #C183D6;
}

#about .canvas-box:hover h4.color5 {
  color: #31AAE1;
}

#about .canvas-box:hover h4.color6 {
  color: #82B440;
}

#about .canvas-box h4 {
  margin-bottom: 15px;
  color: #000;
}

/* ------------ What We Offer ------------ */

/* ------------ Paralax background ------------ */

#bg-paralax {
  background: url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding: 10% 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  width: 100%;
}

#testinomial {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  width: 100%;
}

#bg-paralax p {
  margin-bottom: 25px;
  color: #fff;
}

#bg-paralax h2 {
  font-size: 48px;
}

/* ------------ Paralax background ------------ */

/*  ------------ Counters Fact Info  ------------ */

#facts .counters-item {
  padding: 26% 10%;
  font-weight: bold;
  vertical-align: middle;
  color: #fff;
  cursor: pointer;
}

#facts .counters-item h2 {
  font-family: "Open Sans", sans-serif;
}

.counters-item i {
  font-size: 50px;
  display: block;
  margin-bottom: 15px;
}

.counters-item p {
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
}

/*  ------------ Counters Fact Info  ------------ */

/*  ------------ Responsive Secvtion With Side Image  ------------ */

#responsive .responsive-pic .col-md-6>img {
  margin-top: -42px;
}

#responsive .r-test h3 {
  color: #222222;
}

#responsive .r-test h4 {
  color: #222222;
  margin-top: 40px;
  margin-bottom: 20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left: 10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom: 15px;
}

.r-test ul.r-feature li:before {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  color: #82B440;
}

.r-test .screens {
  margin-top: 30px;
}

.r-test .screens i {
  display: inline-block;
  margin: 0 3px;
}

.r-test .screens i:first-child {
  font-size: 40px;
}

.r-test .screens i:nth-child(2) {
  font-size: 30px;
}

.r-test .screens i:last-child {
  font-size: 25px;
}

/*  ------------ Responsive Secvtion With Side Image  ------------ */

/*  ------------ experties  ------------ */

.circliful {
  position: relative;
  float: left;
  margin-left: 35px;
  margin-bottom: 35px;
}

.circliful:first-child {
  margin-left: 0;
}

.circle-text {
  background-color: #eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius: 100%;
}

.circliful p {
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2 {
  width: 20%;
}

.circle-info, .circle-info-half {
  color: #999;
}

.circliful .fa {
  margin: -10px 3px 0 3px;
  position: relative;
  bottom: 4px;
}

/*  ------------ experties  ------------ */

/*  ------------ What We Do ------------ */

.we-do .do-wrap {
  background: #fff;
  -webkit-box-shadow: 0 1px 1px 0 #ddd;
  -ms-box-shadow: 0 1px 1px 0 #ddd;
  box-shadow: 0 1px 1px 0 #ddd;
}

.we-do .do-wrap>.top {
  width: 100%;
  height: 72px;
  display: block;
}

.we-do .do-wrap span {
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}

.we-do .do-wrap span i {
  color: #fff;
  font-size: 50px;
  line-height: 99px;
  display: block;
}

.we-do .do-wrap h4 {
  margin-bottom: 15px;
}

.we-do .do-wrap p {
  margin: 0 15px;
}

.white-box p {
  margin: 0 15px;
}

.we-do .do-wrap a {
  margin: 35px 0;
  text-decoration: none;
  position: relative;
}

.we-do .do-wrap a:before {
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
}

#thinkers .thinker-wrap ul.social-contact li a:before, .index_2#publication .wrap-pulication a:before {
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
}

.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0px);
  -ms-transform: translateY(0px);
}

.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before {
  background: #74c8b8;
}

.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus {
  color: #74c8b8;
}

.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before {
  background: #ec768c;
}

.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus {
  color: #ec768c;
}

.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before {
  background: #c183d6;
}

.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus {
  color: #c183d6;
}

.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before {
  background: #31aae1;
}

.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus {
  color: #31aae1;
}

.we-do .do-wrap:hover .top {
  background: #82b440;
}

we-do .do-wrap:focus .top {
  background: #82b440;
}

.we-do .do-wrap:hover span, .we-do .do-wrap:focus span {
  background: #82b440;
}

/* ------------ What We Do ------------ */

/* ------------  Our Creative Thinkers ------------  */

#thinkers .thinker-wrap img, #publication-slider .item .image img {
  width: 100%;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.thinker-wrap p {
  margin: 0 10px;
}

.thinker-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.thinker-image .overlay {
  background: rgba(7, 170, 165, 0.75);
  position: absolute;
  width: 100%;
  bottom: 0;
  top: auto;
  opacity: 0;
  filter: alpha(opacity=0);
  left: 0;
  right: 0;
  cursor: pointer;
  padding: 0;
  height: 80px;
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.thinker-image .overlay.pink {
  background: rgba(236, 118, 140, 0.75);
}

.thinker-image .overlay.green {
  background: rgba(130, 180, 64, 0.75);
}

.thinker-image:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a {
  border: 1px solid #fff;
}

.thinker-image .overlay ul.social-link li a>i {
  color: #fff;
}

.thinker-image .overlay ul.social-link li a:hover>i {
  color: #121416;
}

.thinker-image .overlay ul.social-link li a:hover span {
  background: #fff;
  border: 1px solid #fff;
}

.thinker-wrap:hover .thinker-image img, #publication-slider .item:hover .image img {
  transform: scale(1.05);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#thinkers .thinker-wrap h3 {
  margin-top: 20px;
  font-size: 20px;
}

#thinkers .thinker-wrap small {
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

#thinkers .thinker-wrap ul.social-contact li {
  display: inline-block;
}

#thinkers .thinker-wrap ul.social-contact li a {
  font-weight: bolder;
  color: #222222;
  margin: 0 8px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

#thinkers .thinker-wrap ul.social-contact li a:hover::before {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0px);
}

#thinkers .thinker-wrap ul.social-contact li a:hover.facebook {
  color: #3b5998 !important;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before {
  background: #3b5998;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.twitter {
  color: #1da1f2;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before {
  background: #1da1f2;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.linkden {
  color: #0077B5;
}

#thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before {
  background: #0077B5;
}

/* ------------  Our Creative Thinkers ------------  */

/* ------------  Gallery Filter ------------  */

#project {
  padding-top: 0%;
  background: #f8f8f8;
}

.work-filter {
  margin-bottom: 50px;
}

.work-filter ul li {
  display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size: 15px;
  padding: 6px 10px;
  text-transform: capitalize;
  border-bottom: 1px solid #909090;
  border-top: 1px solid #909090;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.work-filter ul li a:hover {
  background-color: #07AAA5;
  border: 1px solid #07AAA5;
  color: #fff;
}

.work-filter ul li a.active {
  background-color: #82b440;
  border: 1px solid #82b440;
  color: #fff;
}

.work-filter ul li a.active:hover {
  background-color: #07AAA5;
  border: 1px solid #07AAA5;
  color: #fff;
}

.mix {
  display: none;
}

.index_2 .work-item {
  width: 20%;
}

.work-item {
  height: auto;
  width: auto;
  float: left;
  position: relative;
  overflow: hidden;
}

.work-item>img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.item-containe>img {
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.item-container:hover img {
  transform: scale(1.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: inherit;
  color: #222222;
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 2%;
  z-index: 1;
}

.overlay-inner {
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.work-item:hover .line {
  width: 40%;
}

.overlay h4.color {
  color: #07AAA5;
}

.overlay h4.base {
  color: #82A75E;
}

.work-item .overlay p {
  font-size: 14px;
}

.overlay .line {
  width: 0%;
  height: 1px;
  margin: 15px auto;
  background-color: #000;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.product-content .line {
  height: 1px;
  margin: 15px auto;
  background-color: #000;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

/* ------------  Gallery Filter ------------  */

/* ---------- Pricing Tables ---------- */

.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.pricing_item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 330px;
}

.pricing_list {
  text-align: left;
}

.pricing_tenzin .pricing_item {
  margin: 1em;
  padding: 2em 1em;
  text-align: left;
  color: #262b38;
  background: #EEF0F3;
  border-top: 3px solid;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  margin-top: 0;
}

.pricing_tenzin .pricing_item.pink {
  border-color: #EC768C;
}

.pricing_tenzin .pricing_item.blue {
  border-color: #07AAA5;
}

.pricing_tenzin .pricing_item.pink .pricing_action {
  background: #EC768C;
}

.pricing_tenzin .pricing_item.blue .pricing_action {
  background: #07AAA5;
}

.pricing_tenzin .pricing_item.active {
  border-color: #82B440;
}

.pricing_tenzin .pricing_title {
  font-size: 1em;
  margin: 0 0 1em;
}

/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */

.pricing_item:hover .pricing_action {
  border: 1px solid transparent;
  background: #82b440 !important;
}

.pricing_tenzin .pricing_price {
  font-size: 2em;
  padding: 0.5em 0 0.75em;
  border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
  font-size: 0.5em;
  vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
  font-weight: bold;
  padding: 0 0 0.5em;
  color: #9CA0A9;
  border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
  font-size: 14px;
  padding: 25px 0;
  color: #8b909d;
}

.pricing_tenzin .pricing_list li {
  margin-bottom: 8px;
}

.pricing_tenzin .pricing_list li:before {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  color: #82B440;
}

.pricing_tenzin .pricing_action {
  font-weight: bold;
  margin-top: auto;
  padding: 1em 2em;
  color: #fff;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid transparent;
}

.pricing_item.active .pricing_action {
  border: 1px solid transparent;
  background: #82b440;
}

.pricing_item.active:hover .pricing_action {
  border: 1px solid transparent;
  background: #07AAA5 !important;
}

/* ---------- Pricing Tables ---------- */

/* ------------ Testinomials ------------ */

#testinomial {
  background: url(../images/bg-testinomial.jpg) repeat 0 0/auto 100% !important;
  color: #fff;
  position: relative;
}

#testinomial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#testinomial h2 {
  color: #82B440;
}

#testinomial p {
  color: #fff;
}

#testinomial-slider .item {
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5 {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 15px;
}

#testinomial-slider .owl-prev, #testinomial-slider .owl-next {
  border: 1px solid #fff;
  color: #FFF;
}

#testinomial-slider .owl-prev, #testinomial-slider .owl-next {
  top: 40%;
  position: absolute;
  background: transparent;
  height: 38px;
  width: 38px;
  -ms-border-radius: 38px;
  -webkit-border-radius: 38px;
  border-radius: 38px;
  font-size: 30px;
  line-height: 20px;
  opacity: 1;
  filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover, #testinomial-slider .owl-next:hover {
  border: 1px solid #82b440;
  background-color: #82b440;
  color: #fff;
  -webkit-transition: background 0.3s linear 0.1s;
  -ms-transition: background 0.3s linear 0.1s;
  transition: background 0.3s linear 0.1s;
}

#testinomial-slider .owl-prev {
  left: 0;
}

#testinomial-slider .owl-next {
  right: 0;
}

/* ------------ Testinomials ------------ */

/* ------------  Publications ------------ */

#publication-slider .item {
  margin: 0 15px;
}

#publication-slider .item:hover {
  cursor: pointer;
}

#publication-slider .item .image {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item>img {
  display: block;
  width: 100%;
  height: auto;
}

#publication-slider .item h5 {
  font-size: 14px;
  color: #727272;
  margin-top: 25px;
  margin-bottom: 10px;
}

#publication-slider .item h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222222;
}

#publication-slider .item a.name {
  color: #222222;
  font-size: 15px !important;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: none;
}

#publication-slider .item a.comment {
  font-size: 15px !important;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: none;
  color: #82b440;
}

#publication-slider .item a.comment:before {
  content: "";
  background: transparent;
}

#publication-slider .item p>a {
  font-size: 15px;
}

#publication-slider .item>a {
  color: #000;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

#publication-slider .item>a:hover {
  color: #82b440;
}

#publication-slider .owl-prev, #publication-slider .owl-next {
  top: 40%;
  position: absolute;
  background: transparent;
  height: 38px;
  width: 38px;
  border-radius: 38px;
  font-size: 30px;
  line-height: 20px;
  opacity: 1;
  border: 1px solid #7a7a7a;
  color: #7a7a7a;
}

#publication-slider .owl-prev:hover, #publication-slider .owl-next:hover {
  border: 1px solid #82b440;
  background-color: #82b440;
  color: white;
  -webkit-transition: background 0.3s linear 0.1s;
  -moz-transition: background 0.3s linear 0.1s;
  -o-transition: background 0.3s linear 0.1s;
  transition: background 0.3s linear 0.1s;
}

#publication-slider .owl-prev {
  left: -5%;
}

#publication-slider .owl-next {
  right: -5%;
}

@media (max-width: 767px) {
  #publication-slider .item h4 {
    font-size: 16px;
  }
}

/* ------------  Publications ------------ */

/* ------------ Slogan Text with Button ------------ */

#slogan {
  background: #82b440;
  padding: 25px 0;
  color: #fff;
  margin-top: -2px;
  width: 100%;
}

#slogan a {
  padding: 15px 35px;
  border: 1px solid #fff;
  color: #000;
  background: #fff;
  font-weight: bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}

/* ------------ Slogan Text with Button ------------ */

/* ------------ Contact Us ------------ */

#contact .center h2, #contact .center .margen {
  margin-bottom: 45px;
}

#contact .center a {
  color: #82b440;
}

#contact .center ul.social-link {
  margin-top: 45px;
}

#contact .form-inline {
  margin-top: 45px;
}

.form-control:focus {
  box-shadow: none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6, #contact .form-inline .col-md-12 {
  padding-left: 5px;
  padding-right: 5px;
}

#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control {
  height: 45px;
  margin-bottom: 10px;
}

#contact .form-inline textarea {
  margin-bottom: 10px;
  margin-top: 0;
  min-height: 210px;
}

#contact .form-inline .btn-black {
  width: 100%;
  color: #fff;
}

#contact .form-inline input[type=submit] {
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.go-top {
  bottom: 20px;
  position: fixed;
  font-size: 20px;
  right: 25px;
  z-index: 800;
  background: #82b440;
  color: #fff;
  border-radius: 5px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  opacity: 0;
}

.go-top:hover, .go-top:focus {
  background: #07AAA5;
  color: #fff;
}

.go-top.show {
  opacity: 1;
}

/* ---------- Footer  ---------- */

ul.social-link li {
  margin-top: 10px;
  display: inline-block;
}

ul.social-link li a {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position: relative;
  color: #000 !important;
}

ul.social-link li a span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
}

ul.social-link li a:hover span {
  background: #82b440;
  border-radius: 44px;
  height: 44px;
  width: 44px;
  border: 1px solid #82b440;
  height: 44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}

ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

ul.social-link li a :hover, ul.social-link li a:focus {
  color: #fff;
  border: none;
}

/* ========================= Alert Classes ==================== */

.alert-success, .alert-danger {
  line-height: 24px;
  margin-bottom: 15px;
  padding: 5px;
}

/*=========================================*/

/* Blog WIth All Versions*/

/*=========================================*/

.blog-wrap {
  background-color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding: 6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3 {
  border-bottom: 1px solid #d1d2d2;
  padding-bottom: 70px;
  margin-bottom: 70px;
}

.blog-item-v3>img {
  margin-bottom: 35px;
}

.blog-item-v3 .blog-content {
  padding: 0;
}

.no-margin {
  margin: 0;
  border: none;
}

#area-main h3, #area-main p {
  color: #1b1d1f;
}

#area-main a.readmore {
  color: #fff;
  padding: 10px 35px;
  background: #1b1d1f;
  border: 1px solid transparent;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus {
  border: 1px solid #82b440;
}

#area-main ul.blog-author {
  margin: 20px 0 25px;
}

#area-main ul.blog-author li {
  display: inline-block;
}

#area-main ul.blog-author li a {
  color: #696969;
  font-size: 14px;
  margin-right: 15px;
}

#area-main ul.blog-author li a .fa {
  margin-right: 5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus {
  color: #82b440;
}

.morepost-wrap {
  margin-top: 75px;
  border-top: 1px solid #d1d2d2;
}

.morepost-wrap2 {
  border-top: 1px solid #d1d2d2;
  border-bottom: 1px solid #d1d2d2;
  padding-bottom: 25px;
}

.morepost-wrap a:hover, .morepost-wrap2 a:hover {
  color: #82b440;
}

.morepost-wrap .morepost {
  font-size: 16px;
  color: #696969;
  margin-top: 25px;
  display: inline-block;
  position: relative;
}

.morepost-wrap2 .morepost {
  font-size: 16px;
  color: #696969;
  margin-top: 25px;
  display: inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left {
  right: 0;
}

.morepost-wrap .morepost .fa-long-arrow-left {
  right: 0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left, .morepost-wrap .morepost:hover .fa-long-arrow-left {
  opacity: 1 !important;
  filter: alpha(opacity=100);
  color: #82b440;
  right: 100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left, .morepost-wrap2 .morepost .fa-long-arrow-right {
  color: transparent;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top: 25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0 !important;
  filter: alpha(opacity=0);
}

.morepost-wrap .morepost .fa-long-arrow-left, .morepost-wrap .morepost .fa-long-arrow-right {
  color: transparent;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top: 25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0 !important;
  filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right, .morepost-wrap .morepost .fa-long-arrow-right {
  left: 0%;
  margin-left: 5px;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-right, .morepost-wrap .morepost:hover .fa-long-arrow-right {
  opacity: 1 !important;
  filter: alpha(opacity=100);
  color: #82b440;
  left: 110%;
}

.blog-content-pic img {
  width: 100%;
}

.blog-item .blog-content {
  padding: 0;
  margin: 35px 0;
}

.blog-item .blog-content p {
  margin-bottom: 25px;
}

.blog-item blockquote {
  color: #82b440;
}

.blog-item .post-tag {
  border: 1px solid #d9d9d9;
  padding: 5px;
  margin-bottom: 70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a {
  display: block;
  background: #efefef;
  color: #1b1d1f;
  font-size: 12px;
  padding: 8px 15px;
  text-transform: uppercase;
}

.blog-reply a.btn-rep {
  background: #efefef;
  color: #1b1d1f;
  font-size: 12px;
  padding: 8px 15px;
  text-transform: uppercase;
}

#area-main .tag-cloud li a:hover, #area-main .tag-cloud li a:focus {
  background: #82b440;
  color: #fff;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}

.blog-reply a.btn-rep:hover, .blog-reply a.btn-rep:focus {
  background: #82b440;
  color: #fff;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}

.blog-item ul.social-link li {
  margin: 0;
}

.blog-item ul.social-link li a>i {
  color: #1b1d1f;
}

.blog-item ul.social-link li a>i:hover {
  color: #fff;
}

.blog-reply {
  padding: 10px;
  border: 1px solid #f3f3f3;
  position: relative;
  margin: 20px 0;
}

.blog-reply h4 {
  color: #1b1d1f;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.blog-reply a.btn-rep {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-item .post-comment h3 {
  margin-bottom: 35px;
  margin-top: 70px;
}

.blog-item .post-comment form .form-control {
  height: 50px;
}

.contact form .form-control {
  height: 50px;
}

.blog-item .post-comment form .form-control, .contact form .form-control, .blog-item .post-comment form textarea, .contact form textarea {
  padding: 15px;
  font-size: 14px;
  color: #4c4c4c;
  border: 1px solid #d0d0d0;
  width: 100%;
  border-radius: 0;
}

.index_3 .form-inline .form-control, .index_3 .form-inline textarea {
  padding: 15px;
  font-size: 14px;
  color: #4c4c4c;
  border: 1px solid #d0d0d0;
  width: 100%;
  border-radius: 0;
}

.blog-item .post-comment form textarea, .contact form textarea {
  margin: 30px 0;
  min-height: 210px;
}

.blog-item .post-comment form input[type=submit], .contact form input[type=submit] {
  background: #82b440;
  border: 1px solid transparent;
  font-weight: bold;
  color: #fff;
  height: 50px;
  width: 185px;
  position: relative;
}

.blog-item .post-comment form input[type=submit]:hover, .contact form input[type=submit]:hover {
  background: #1b1d1f;
}

.widget {
  margin-bottom: 40px;
  color: #1b1d1f;
}

.widget h4, .widget img {
  margin-bottom: 25px;
}

.widget>img {
  width: 100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size: 14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor: pointer;
}

ul.category li {
  margin-top: 15px;
  display: block;
}

ul.category li a {
  color: #1b1d1f;
  font-size: 16px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  display: block;
  text-transform: capitalize !important;
}

ul.category li a:hover, ul.category li a:focus {
  color: #82b440;
}

ul.category li a .date {
  color: #82b440;
  font-size: 12px;
  display: block;
}

/*=========================================*/

/* Blog Ends */

/*=========================================*/

/* Inner Pages Top*/

.innerpage-banner {
  background: url(img/banner-about.jpg) no-repeat center center/cover;
  padding-top: 200px;
  max-height: 440px;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
  color: #fff;
}

.tagline {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

@media screen and (max-width: 1299px) {
  .info-section .bg {
    padding-top: 100%;
  }
  .blog-wrap .blog-content {
    padding: 3.5em 0;
  }
  .layer-content-responsive {
    max-height: 400px !important;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .navbar-default .navbar-nav>li {
    margin: 0 6px;
  }
  .navbar-default .navbar-nav>li>a {
    letter-spacing: 0;
  }
  .text-rotator {
    padding-top: 150px;
  }
  #paralax-slider .item-content p {
    font-size: 16px;
  }
  #paralax-slider .item-content h2 {
    font-size: 46px;
    margin-bottom: 10px;
  }
  .r-test ul.r-feature li {
    font-size: 12px;
  }
  .we-do .do-wrap, .white-box {
    margin-bottom: 30px;
  }
  .pricing_item {
    flex: 0 1 320px;
  }
  #bg-paralax, #testinomial, .text-rotator {
    background-position: center center !important;
  }
  #slogan {
    text-align: center;
  }
  #slogan p {
    font-size: 16px;
  }
  #slogan a.pull-right {
    float: none !important;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
  #main-navigation {
    background-color: #1b1d1f;
  }
  .navbar-brand, .header.affix .navbar-brand {
    display: inline-block;
    padding: 10px 0;
    max-width: 188px;
  }
  .navbar-default .navbar-nav>li>a, .header.affix .navbar-default .navbar-nav>li>a {
    padding: 10px 0;
  }
  ul.top-right, .header.affix ul.top-right {
    margin: 0;
    position: relative;
    right: 37px;
    margin-top: -2px;
  }
  ul.top-right, .header.affix ul.top-right {
    top: 14px;
  }
  .main-button {
    top: 10px;
  }
  .push_nav_brand {
    margin: 12px 0 30px 15px;
    width: 90;
  }
  .push_nav li a {
    font-size: 12px;
    padding: 8px 15px;
  }
  .text-rotator {
    padding-top: 80px;
  }
  #paralax-slider .item-content p {
    font-size: 14px;
  }
  #paralax-slider .item-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  #bg-paralax h1, #bg-paralax h2 {
    font-size: 30px;
  }
  .we-do .do-wrap {
    margin: 30px 0;
  }
  #thinkers {
    padding-bottom: 45px;
  }
  #thinkers .thinker-wrap {
    margin: 30px 0;
  }
  .thinker-image .overlay {
    height: 60px;
  }
  #project {
    padding-top: 0;
  }
  #responsive .responsive-pic>.col-md-6>img {
    margin-bottom: 25px;
  }
  .number-counters>.col-xs-12 {
    width: 50%;
  }
  .circliful {
    margin-bottom: 50px;
  }
  .circliful:first-child {
    margin-left: 25px;
  }
  #testinomial-slider .item p {
    font-size: 14px;
    margin: 0;
  }
  #testinomial-slider .owl-prev, #testinomial-slider .owl-next {
    display: none;
  }
  #publication-slider .owl-prev {
    left: 10px;
  }
  #publication-slider .owl-next {
    right: 10px;
  }
  #publication-slider .owl-prev, #publication-slider .owl-next {
    background: #fff;
    top: 19%;
  }
  .circliful {
    margin-bottom: 50px;
    margin-left: 0;
    float: none;
    display: inline-block;
  }
  .circliful:first-child {
    margin-left: 0;
  }
}

@media screen and (min-width: 641px) and (max-width: 767px) {
  #thinkers .col-sm-4 {
    width: 48%;
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand img {
    width: 75%;
  }
  ul.top-right {
    top: 14px;
  }
  .circliful {
    margin-bottom: 50px;
    position: relative;
    left: 30%;
    margin-left: 0;
    float: none;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .circliful:first-child {
    margin-left: 0;
  }
  .layer-content-responsive {
    max-height: 240px !important;
    overflow: hidden;
  }
}

@media screen and (max-width: 479px) {
  #main-navigation {
    top: 0;
  }
}

.green {
  background: #82b440;
}

.green_light {
  background: rgba(130, 180, 64, 0.65);
}

.blue {
  background: #07aaa5;
}

.dark_gray {
  background: #969696;
}

.we-do .do-wrap a {
  color: #969696;
}

.we-do .do-wrap a:hover {
  color: #07aaa5;
}

.we-do .do-wrap:hover .top {
  background: #07aaa5;
}

we-do .do-wrap:focus .top {
  background: #07aaa5;
}

.we-do .do-wrap:hover span, .we-do .do-wrap:focus span {
  background: #07aaa5;
}

.pricing_item.dark_gray {
  border-color: #969696;
}

.pricing_item.dark_gray .pricing_action {
  background: #969696;
}

.pricing_item.dark_gray:hover .pricing_action {
  border: 1px solid transparent;
  background: #07AAA5 !important;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 11000;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.spinner {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  position: absolute;
  left: 50%;
  right: 50%;
  margin-left: -20px;
  top: 50%;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #82B440;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot1 {
  background-color: #82B440;
}

.dot2 {
  top: auto;
  background-color: #07AAA5;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col, .no-gutters>[class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.navbar-brand {
  padding: 21px 0;
  width: 250px;
}

#navigation.affix .navbar-brand {
  padding: 10px 0;
  width: 230px;
}

.section-instagram {
  overflow: hidden;
}

.iframe-instagram {
  width: 100%;
  float: left;
  overflow: hidden;
  margin: 0px 0;
  padding: 19.5% 0 0;
  position: relative;
}

.iframe-instagram iframe {
  width: calc(100vw + 19%) !important;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
}

.sectionOverlay {
  position: relative;
}

.sectionOverlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.tp-banner h2 {
  font-size: 34px !important;
  line-height: 40px !important;
  font-weight: 500;
}

.videoCarouselOverlay {
  position: relative;
}

.videoCarouselOverlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

@media (max-width: 767px) {
  .tp-banner h2 {
    left: 0 !important;
    right: 0 !important;
    white-space: normal;
  }
}

.brandsList {
  margin: 0 -10px;
  padding: 0;
}

.brandsList>li {
  width: 20%;
  float: left;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  list-style: none;
}

#contact .center ul.social-link {
  margin-top: 5px;
}

.section-successStory {
  padding: 90px 0 70px;
}

.section-wyChooseUs {
  padding: 70px 0 50px;
}

.section-wyChooseUs .img img {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.section-wyChooseUs .img:hover img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .section-wyChooseUs {
    padding: 20px 0 0;
  }
  .section-wyChooseUs .container>.row {
    margin-left: 0;
    margin-right: 0;
  }
  .section-wyChooseUs .img {
    margin: 0 0 10px;
    display: block;
  }
  .section-wyChooseUs .img img {
    margin: 0;
  }
}

.section-wyChooseUs .grid-xs-p5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-testimonials {
  overflow: hidden;
}

@media (max-width: 767px) {
  .section-testimonials {
    padding: 30px 0 !important;
  }
}

#testinomial-slider .owl-item .starRating {
  max-width: 100%;
  width: auto;
  display: inline-block;
}

#testinomial-slider .owl-item .rating {
  color: #FFF83C;
}

#testinomial-slider .owl-item .rating .fa {
  margin: 0 3px;
}

.googleMap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.googleMap iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 990px) {
  .googleMap {
    padding: 50% 0 0;
    height: 0;
  }
}

.we-do .do-wrap .wrapImage {
  width: 100%;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .we-do {
    padding: 40px 0 30px;
  }
  .we-do .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .we-do .row>[class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .we-do .do-wrap {
    margin: 5px 0;
  }
  .we-do .do-wrap p {
    font-size: 13px;
  }
  .grid-xs-p5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .grid-xs-p5>[class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.section-blogs {
  padding: 90px 0 50px;
}

@media (max-width: 767px) {
  .section-blogs {
    padding: 30px 0;
  }
}

.storeTiming {
  margin: 20px 0;
}

.storeTiming .timingList {
  margin: 0 -15px;
  padding: 0;
  text-align: center;
  list-style: none;
}

.storeTiming .timingList>li {
  float: left;
  padding: 0 15px 20px;
  width: 50%;
  box-sizing: border-box;
}

.storeTiming .timingList label {
  display: block;
  font-weight: 600;
}

.productFilter						{margin: 0 -10px; padding: 0; list-style: none;
									 display: -webkit-box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex;}
.productFilter > li					{-webkit-box-flex: 1; -webkit-flex: 1 1 16.666666%;
									 -moz-box-flex: 1; -moz-flex: 1 1 16.666666%; -ms-flex: 1 1 16.666666%; flex: 1 1 16.666666%; max-width: 16.666666%; padding: 0 10px;}
.productFilter > li:first-child		{max-width: 10%; -webkit-flex: 1 1 10%; -moz-box-flex: 1;
									 -moz-flex: 1 1 10%;  -ms-flex: 1 1 10%; flex: 1 1 10%; margin-top: 6px;}

@media (max-width: 990px)			{
.productFilter						{-webkit-flex-wrap: wrap; -moz-flex-wrap: wrap;
									 -ms-flex-wrap: wrap; flex-wrap: wrap;}
.productFilter > li					{-webkit-flex-basis: 25%; -moz-flex-basis: 25%;
									 -ms-flex-preferred-size: 25%; flex-basis: 25%; max-width: 25%;}
}
@media (max-width: 767px)			{
.productFilter						{-webkit-flex-wrap: wrap; -moz-flex-wrap: wrap;
									 -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 -5px 5px;}
.productFilter > li					{-webkit-flex-basis: 50%; -moz-flex-basis: 50%;
									 -ms-flex-preferred-size: 50%; flex-basis: 50%; max-width: 50%; padding: 5px;}
}

#shoppingCartList {
  width: 100%;
  float: left;
  margin: 10px 0 0;
  padding: 0;
}

#shoppingCartList .productImage, #shoppingCartList .productTitle, #shoppingCartList .productCode, #shoppingCartList .productSize, #shoppingCartList .productQty, #shoppingCartList .productSalePrice, #shoppingCartList .productRemove {
  display: block;
}

#shoppingCartList .productImage {
  width: 100%;
  float: left;
  overflow: hidden;
}

#shoppingCartList .productImage img {
  width: 100%;
  height: auto;
}

#shoppingCartList .productTitle {
  font-weight: bold;
}

#shoppingCartList .productCode {
  text-transform: uppercase;
}

#shoppingCartList .productQty select {
  border: 1px solid #dfdfdf;
  padding: 2px 2px;
  width: 50px;
}

#shoppingCartList .productRemove {
  color: #999999;
  font-weight: normal;
  display: inline-block;
}

#shoppingCartList .productRemove:hover {
  text-decoration: none;
  color: #333333;
}

#shoppingCartList table {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-collapse: collapse;
}

#shoppingCartList table tr th, #shoppingCartList table tr td {
  padding: 10px 12px;
  border: 1px solid #d5d5d5;
}

#shoppingCartList table [class*=ringSet-] {
  background-color: #f9f9f9;
}

#shoppingCartList table [class*=ringSet-] td {
  border-color: #f5f5f5;
}

#shoppingCartList table thead {
  background-color: #f9f9f9;
}

#shoppingCartList table .tdImage {
  width: 100px;
  text-align: center;
}

#shoppingCartList table .tdImage img {
  max-width: 100%;
}

#shoppingCartList table .tdImage a {
  display: block;
}

#shoppingCartList table .tdPrice {
  text-align: right;
}

#shoppingCartList table .tdAction {
  width: 100px;
  text-align: center;
}

#shoppingCartList table .tdAction .btn {
  white-space: normal;
}

@media (max-width: 767px) {
  #shoppingCartList table, #shoppingCartList tbody {
    display: block;
  }
  #shoppingCartList thead {
    display: none;
  }
  #shoppingCartList th, #shoppingCartList td {
    display: block;
    width: 100%;
  }
  #shoppingCartList tr {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 5px solid white;
    border-bottom: 5px solid white;
  }
  #shoppingCartList [class*=ringSet-] td {
    border-color: #e9e9e9;
  }
  #shoppingCartList .ringSet-ring+.ringSet-diamond {
    border-top: none;
    margin-top: -5px;
  }
  #shoppingCartList .tdImage {
    width: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    padding: 0;
  }
  #shoppingCartList .tdInfo {
    width: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
  }
  #shoppingCartList .btnRemove, #shoppingCartList .btnAddCenterDiamond {
    text-transform: uppercase;
    font-size: 12px;
  }
  #shoppingCartList .btnRemove {
    color: #dc3545;
  }
  #shoppingCartList .btnAddCenterDiamond {
    color: black;
  }
  #shoppingCartList .cartTable {
    border: none;
  }
  #shoppingCartList .cartTable .tdPrice, #shoppingCartList .cartTable .tdAction {
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  #shoppingCartList .cartTable .tdQnty {
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  #shoppingCartList .cartTable .tdPrice {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-order: 4;
    -ms-flex-order: 4;
    order: 4;
    font-weight: bold;
  }
  #shoppingCartList .cartTable .tdAction {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-order: 5;
    -ms-flex-order: 5;
    order: 5;
    font-weight: bold;
  }
  #shoppingCartList .cartTable .tdAction a {
    display: block;
    width: 100%;
  }
  #shoppingCartList .wishlistTable {
    border: none;
  }
  #shoppingCartList .wishlistTable .tdPrice {
    text-align: center;
    font-size: 16px;
    padding: 5px;
  }
  #shoppingCartList .wishlistTable .tdPrice, #shoppingCartList .wishlistTable .tdAction {
    width: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-weight: bold;
  }
  #shoppingCartList .wishlistTable .tdAction {
    padding: 0;
  }
  #shoppingCartList .wishlistTable .tdAction .btnGroup {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  #shoppingCartList .wishlistTable .tdAction .btnGroup .btn {
    width: 100%;
    white-space: nowrap;
    font-weight: bold;
  }
  #shoppingCartList .wishlistTable .tdAction .btnGroup .btn~.btn {
    border-left: 1px solid #d5d5d5;
  }
}

.paymentSecureVoucher {
  list-style: none;
  margin: 0px 0px;
  padding: 10px 10px;
}

.paymentSecureVoucher li {
  float: left;
  height: 90px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #dfdfdf;
}

.paymentSecureVoucher li:first-child {
  margin-left: 0px;
  padding-left: 0px;
  border-left: none;
}

.paymentSecureVoucher li span {
  font-weight: bold;
  color: black;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.paymentSecureVoucher li .form-control {
  border-radius: 0;
}

.paymentSecureVoucher li .btn {
  background-color: #f5f5f5;
}

.paymentSecureVoucher .paymentCards {
	margin: 0 -2px;
	display: -ms-flexbox;
	display: flex;
}
.paymentSecureVoucher .paymentCards span{
	padding: 2px;
}
.paymentSecureVoucher .paymentCards span img{
	width: 100%;
}
.carttotal {
  margin: 15px 5px 0px 0px;
}

.carttotal table {
  width: 100%;
  border-collapse: separate;
}

.carttotal table tr td {
  padding: 2px 10px;
  text-align: right;
}

.infoBox {
  height: 300px;
}

.infoBox p {
  line-height: 22px;
}

.loginCheckoutBox .gotoPage{text-decoration: underline; font-weight: 600;}
.loginCheckoutBox a:hover,
.loginCheckoutBox .gotoPage:hover{color: #07AAA5;}
.loginCheckoutBox .or {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background-color: #d5d5d5;
  margin-top: -12px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 10px;
}
.loginCheckoutBox #forgotPassword:hover {color: #07AAA5;}

.loginCheckoutBox .or::before {
  content: "";
  position: absolute;
  left: 11px;
  height: 50px;
  border-left: 2px solid #d5d5d5;
  top: -13px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.loginCheckoutBox .or::after {
  content: "or";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: black;
}

@media (max-width: 767px) {
  .loginCheckoutBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .loginCheckoutBox .leftCheckoutBox {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .loginCheckoutBox .rightCheckoutBox {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.selectMetal, .selectStyle {
  text-align: center;
}

.selectMetal label, .selectStyle label {
  display: block;
  margin: 0;
}

.selectMetal label img, .selectStyle label img {
  max-width: 100%;
}

.selectMetal label span, .selectStyle label span {
  display: block;
}

@media (max-width: 767px) {
  .selectStyle {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .selectStyle label {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 15px;
  }
}

.panel-heading{margin: 0;}
.myProfilePanel .table {
  margin: 0;
}

.myProfilePanel .table tbody tr:first-child td {
  border-top: none;
}

.specialOrderNote {
  width: 100%;
  float: left;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.specialOrderNote span {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  border: 1px solid #d5d5d5;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.specialOrderNote span::before, .specialOrderNote span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  border-bottom: 2px solid #d5d5d5;
  margin-top: -1px;
}

.specialOrderNote span::before {
  left: 100%;
}

.specialOrderNote span:after {
  right: 100%;
}

.contentWrapper {
  width: 100%;
  float: left;
  margin: 0 0 70px;
  padding: 0;
}

.contentWrapper .contentGroup p a:hover{color: #07AAA5;}
.contentWrapper .contentGroup~.contentGroup {
  width: 100%;
  float: left;
  margin: 30px 0 0;
  padding: 0;
}

.contentWrapper .groupTitle {
  font-weight: bold;
  font-size: 16px;
}

.financingPage .title {
  font-size: 24px;
  font-weight: 600;
}

.financingPage .desc {
  font-size: 18px;
}

.listBullet {
  margin: 0 0 15px;
  padding: 0;
}

.listBullet>li {
  list-style: disc;
  margin-left: 15px;
}

.pageTabs .tab-content {
  padding: 10px;
  border: 1px solid #d5d5d5;
  margin-top: -1px;
}

.galleryList {
  margin: 0 -5px;
}

.galleryList [class*=col-] {
  padding: 5px;
}

.galleryList [class*=col-]>a {
  display: block;
}

.galleryList [class*=col-]>a>img {
  width: 100%;
}

.section-customExperience {
  width: 100%;
  float: left;
  margin: 0 0 60px;
  padding: 0;
}

.section-customExperience .customExperience {
  margin-left: -15px;
  margin-right: -15px;
}

.section-customExperience .customExperience [class*=experienceBlock-] {
  padding: 56px 15px 15px 80px;
  position: relative;
}

.section-customExperience .customExperience [class*=experienceBlock-]::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 140px;
  color: #FAF3ED;
  line-height: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.section-customExperience .customExperience [class*=experienceBlock-]::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  opacity: 0.3;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-customExperience .customExperience .experienceBlock-1::after {
  background-image: url(../images/custom-experience-1.png);
}

.section-customExperience .customExperience .experienceBlock-2::after {
  background-image: url(../images/custom-experience-2.png);
}

.section-customExperience .customExperience .experienceBlock-3::after {
  background-image: url(../images/custom-experience-3.png);
}

.section-customExperience .customExperience .experienceBlock-4::after {
  background-image: url(../images/custom-experience-4.png);
}

.section-customExperience .customExperience .experienceBlock-5::after {
  background-image: url(../images/custom-experience-5.png);
}

.section-customExperience .customExperience .experienceTitle {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin: 0 0 12px;
  line-height: 20px;
}

.popupOverlay {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 14px;
  width: 100%;
  text-align: center;
  padding: 22px 15px;
  z-index: 999999;
}

.popupOverlay em {
  font-style: normal;
}

.popupOverlay a {
  color: white;
}

.popupOverlay a:hover {
  text-decoration: underline;
}

.popupOverlay a.closeMe {
  color: black;
  font-size: 14px;
  background: white;
  padding: 8px 15px;
  border-radius: 4px;
  margin-left: 5px;
}

.section-diamondSearch .listingGroup>.card {
  border-radius: 0;
  border: none;
}

.section-diamondSearch .sideNavToggle {
  display: none;
  height: 40px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0 12px;
}

.section-diamondSearch .sideNav {
  width: 260px;
  max-width: 260px;
}

.section-diamondSearch .listing>[class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section-diamondSearch .sideNavToggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-diamondSearch .sideNav {
    width: 100%;
    max-width: inherit;
  }
  .section-diamondSearch #sidenav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
  }
  .section-diamondSearch #sidenav .sidenavWrapper {
    padding: 0;
    margin: 0;
    width: 300px;
    height: 100vh;
    background-color: white;
    right: -100%;
    float: right;
    visibility: hidden;
    opacity: 0;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .section-diamondSearch #sidenav .sidenavWrapper .sideNavToggle {
    font-size: 30px;
    background-color: #0f0f0f;
    color: white;
    max-width: 41px;
    height: 41px;
    position: absolute;
    left: -41px;
    z-index: 2;
    border-radius: 20px 0 0 20px;
    padding: 0 0 0 10px;
  }
  .section-diamondSearch #sidenav.showSideNav {
    visibility: visible;
    opacity: 1;
    z-index: 99;
  }
  .section-diamondSearch #sidenav.showSideNav .sidenavWrapper {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
}

.diamondFilterCard .card-header {
  padding-left: 0;
  padding-right: 0;
  margin-left: 12px;
  margin-right: 12px;
  font-weight: 600;
  color: #0f0f0f;
}

.diamondFilterCard .card-body {
  padding: 10px 0 15px;
  margin: 0 12px;
  border-bottom: 1px solid #d9d9d9;
}

.diamondFilterCard .card-body:last-child {
  border-bottom: none;
  margin-bottom: 8px;
}

.diamondFilterCard .card-body .card-title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: gray;
}

.diamondFilterCard .irs--modern .irs-bar {
  background: #0f0f0f;
}

.diamondFilterCard .irs--modern .irs-grid-text {
  font-size: 10px;
  bottom: -5px;
}

.diamondFilterCard .irs--modern .irs-from, .diamondFilterCard .irs--modern .irs-to, .diamondFilterCard .irs--modern .irs-single {
  background-color: #0f0f0f;
}

.diamondFilterCard .irs--modern .irs-from::before, .diamondFilterCard .irs--modern .irs-to::before, .diamondFilterCard .irs--modern .irs-single::before {
  border-top-color: #0f0f0f;
}

.diamondFilterCard .irs--modern .irs-handle {
  height: 12px;
  border: 1px solid #a3adc1;
}

.diamondFilterCard .irs--modern .irs-handle>i:nth-child(1) {
  top: -3px;
  left: 2px;
}

.diamondFilterCard .irs--modern .irs-handle>i:nth-child(2) {
  height: 10px;
}

.diamondFilterCard .colorNavTabs .nav-link {
  padding: 2px 12px;
  margin: 0 3px 10px;
  border: 1px solid #0f0f0f;
  color: #0f0f0f;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.diamondFilterCard .colorNavTabs .nav-link.active {
  background-color: #0f0f0f;
  color: white;
}

.diamondSearhHeader .recordsFound {
  font-weight: 600;
  color: gray;
}

.diamondSearhHeader label {
  font-weight: 600;
  color: #0f0f0f;
}

.diamondSearhHeader .btnCompare {
  color: gray;
  font-weight: 500;
}

.diamondSearhHeader .searchForm {
  position: relative;
}

.diamondSearhHeader .searchForm .form-control {
  padding-right: 44px;
}

.diamondSearhHeader .searchForm .btn {
  position: absolute;
  right: 0;
  top: 0;
}

.diamondInfoCardList>[class*=col-] {
  margin-bottom: 30px;
}

.diamondInfoCard {
  font-size: 13px;
  color: #666666;
  background-color: #f7f7f7;
}

.diamondInfoCard .img-thumbnail {
  max-width: 80px;
  position: relative;
}

.diamondInfoCard .img-thumbnail .imgDiamond {
  max-width: 100%;
  max-height: 100%;
}

.diamondInfoCard .img-thumbnail.thumbLabel {
  overflow: hidden;
}

.diamondInfoCard .img-thumbnail.thumbLabel::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #dc3545;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 -20px -20px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.diamondInfoCard label {
  margin: 0;
}

.diamondInfoCard .specificationList {
  margin: 0 -3px 7px;
  padding: 0;
  list-style: none;
}

.diamondInfoCard .specificationList>li {
  padding: 0 3px;
  display: inline-block;
  color: #0f0f0f;
}

.diamondInfoCard .specificationList>li>label {
  font-weight: 600;
}

.diamondInfoCard .certificates label {
  display: block;
  margin: 0;
}

.diamondInfoCard .certificates img {
  margin: 1px;
  max-width: 40px;
  max-height: 26px;
}

.diamondInfoCard .btnCompare {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: 0 0 5px;
  padding: 2px;
  color: white;
  border-color: transparent;
  background-color: #d9d9d9;
}

.diamondInfoCard .btnCompare:hover {
  background-color: #efa2a9;
}

.diamondInfoCard .btnCompare.addedToCompare {
  background-color: #dc3545;
  border-color: #dc3545;
}

.diamondInfoCard .priceInfo span {
  display: block;
}

.diamondInfoCard .priceInfo .retailPrice {
  display: inline-block;
}

.diamondInfoCard .priceInfo .sellingPrice {
  font-size: 18px;
  color: #0f0f0f;
  font-weight: 600;
}

.diamondInfoCard .priceInfo .offerInfo {
  color: #21a76b;
  margin: 0 0 3px;
}

.diamondInfoCard .priceInfo .btn {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 4px 5px;
}

@media (max-width: 767px) {
  .diamondInfoCard .img-thumbnail {
    max-width: inherit;
    background-color: transparent;
  }
  .diamondInfoCard .img-thumbnail .imgDiamond {
    max-width: 70px;
  }
  .diamondInfoCard .priceInfo span {
    display: inline-block;
  }
  .diamondInfoCard .priceInfo .offerInfo {
    margin-bottom: 0;
  }
}

[class*=rangeList-] {
  margin: 0 -2px;
  padding: 0;
  list-style: none;
}

[class*=rangeList-]>li {
  padding: 2px;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

[class*=rangeList-]>li>label {
  margin: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

[class*=rangeList-]>li>label input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

[class*=rangeList-]>li>label span {
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
}

[class*=rangeList-]>li>label img {
  width: 100%;
}

.rangeList-shapes>li {
  max-width: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}

.rangeList-shapes>li>label input:checked+span {
  border-color: #0f0f0f;
}

.rangeList-colors>li {
  max-width: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}

.rangeList-colors>li span {
  position: relative;
  padding: 0 0 16px;
}

.rangeList-colors>li span::before {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: #b3b3b3;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.rangeList-colors>li span>i {
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  margin: 0 0 2px;
  display: block;
}

.rangeList-colors>li span>i img {
  position: relative;
}

.rangeList-colors>li>label input:checked+span::before {
  color: #0f0f0f;
}

.rangeList-certificates>li {
  max-width: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.rangeList-certificates>li>label input:checked+span {
  border-color: #0f0f0f;
}

.tooltip-inner {
  font-size: 11px;
}

.popover-header {
  font-size: 14px;
}

.diamondCompareGroup .checkListCard {
  max-width: 200px;
}

.diamondCompareGroup .card-body {
  padding: 0;
}

.diamondCompareGroup .imgBlank {
  display: flex;
  width: 100%;
  padding: 114% 0 0;
  margin: 1px 0 0;
}

.diamondCompareGroup .compareCheckList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diamondCompareGroup .compareCheckList>li {
  padding: 7px 10px;
  border-top: 1px solid #f2f2f2;
  min-height: 38px;
  max-height: 38px;
  text-align: right;
}

.diamondCompareGroup .compareCheckList>li.dropdown {
  padding: 0;
}

.diamondCompareGroup .compareCheckList>li.dropdown .btn {
  font-size: 14px;
}

.diamondCompareGroup .compareCheckList>li.dropdown .dropdown-toggle {
  padding: 7px 10px;
}

.diamondCompareGroup .compareCheckList>li.dropdown .dropdown-toggle::after {
  float: right;
  margin: 8px 3px;
}

.diamondCompareGroup .card:not(.checkListCard) .compareCheckList>li {
  text-align: center;
}

.diamondCompareGroup .card:not(.checkListCard) .compareCheckList>li:nth-child(even) {
  background-color: #fcfcfc;
}

.quickListDetailBox					{position: fixed; bottom: -2px; left: 20px;
									 width: 320px; z-index: 10}
.quickListDetailBox .listHeader		{display: block; text-align: left;margin: 0}
.quickListDetailBox .listTitle		{border-radius: 4px 4px 0 0; border-bottom: none}
.quickListDetailBox .listContainer	{position: relative; padding: 0;
									 background-color: #fff; border: 1px solid #d5d5d5}
.quickListDetailBox .listFooter		{padding: 10px; border-top: 1px solid #d5d5d5;
									 display: -webkit-box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; justify-content: space-between}

.quickListDetailBox .listFooter .btn{font-size: 12px; padding: 3px 7px}
.quickListDetailBox .myBagDetailBox	{display: none}
.quickListDetailBox .savedItemsList	{width: 100%; margin: 0; padding: 0; list-style: none;
									 max-height: 285px; overflow-y: auto}
.quickListDetailBox .savedItemsList>li
									{width: 100%; margin: 0; padding: 7px; border-top: 1px solid #d5d5d5;
									 display: -webkit-box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex}
.quickListDetailBox .savedItemsList>li:first-child
									{border-top: none}

.quickListDetailBox .savedItemsList>li>.savedItemThumb
									{width: 80px;}
.quickListDetailBox .savedItemsList>li>.savedItemThumb img
									{max-width: 100%;}
.quickListDetailBox .savedItemsList>li>.savedItemInfo{font-size: 12px; color: #000; width: 100%;}

.quickListDetailBox .savedItemsList>li>.savedItemInfo span {
    display: block
}

.quickListDetailBox .savedItemsList>li>.savedItemInfo .productPrice {
    color: var(--clrTheme);
    font-weight: 700;
    text-align: right
}

.quickListDetailBox .savedItemsList>li p {
    margin: 0;
    font-size: 13px;
    text-align: center
}

.quickListDetailBox .savedItemsList>li .btn {
    font-size: 12px;
    padding: 3px 7px
}

.section-normalCarousel{width: 100%; float: left; margin: 0; padding: 40px 0;}
/* .section-normalCarousel .row{margin: 0;}
.section-normalCarousel .row [class*="col-"]{padding: 0;} */

.section-brandsLogoCarousel {width: 100%; float: left; margin: 0; padding: 40px 0 50px; background-color: white;}
.section-brandsLogoCarousel .title{display: block; text-align: center; font-size: 36px; line-height: 42px; margin: 0 0 20px;}
.brandsLogoCarousel{position: relative;}
.brandsLogoCarousel .owl-nav{margin: 0;}
.brandsLogoCarousel .owl-nav .owl-prev,
.brandsLogoCarousel .owl-nav .owl-next{position: absolute; bottom: 50%; margin: 0 0 -20px; width: 30px; height: 30px;}
.brandsLogoCarousel .owl-nav .owl-prev span,
.brandsLogoCarousel .owl-nav .owl-next span{display: block; width: 30px; height: 30px; border-left: 1px solid #a5a5a5; border-top: 1px solid #a5a5a5; color: transparent;}
.brandsLogoCarousel .owl-nav .owl-prev span{transform: rotate(-45deg);}
.brandsLogoCarousel .owl-nav .owl-next span{transform: rotate(135deg);}
.brandsLogoCarousel .owl-nav .owl-prev{left: -45px;}
.brandsLogoCarousel .owl-nav .owl-next{right: -45px;}
.brandsLogoCarousel .owl-nav .owl-prev:hover,
.brandsLogoCarousel .owl-nav .owl-next:hover{background: none;}
.brandsLogoCarousel .owl-nav .owl-prev:hover span,
.brandsLogoCarousel .owl-nav .owl-next:hover span{border-color: #333;}


.brandsLogoCarousel .item{padding: 10px;}
@media(max-width: 990px){
  .brandsLogoCarousel .owl-nav .owl-prev{left: 0;}
  .brandsLogoCarousel .owl-nav .owl-next{right: 0;}
}
@media(max-width: 767px){
  .brandsLogoCarousel .owl-nav .owl-prev,
  .brandsLogoCarousel .owl-nav .owl-next{display: none;}
}

.diamondShapesList					{list-style: none; margin: 0 -10px; padding: 0}
.diamondShapesList>li				{padding: 0 10px; width: 8%; text-align: center}
.diamondShapesList>li>a				{display: block; position: relative; padding: 0 0 20px}
.diamondShapesList>li>a::before		{content: attr(title); position: absolute; left: 0;
									 right: 0; bottom: 0; text-align: center; color: #000}
.diamondShapesList>li>a>img			{width: 100%}

@media (max-width:990px)			{
.diamondShapesList>li				{width: 20%; padding: 0 10px 20px}
}
@media (min-width:768px) and (max-width:990px){
.diamondShapesList>li>a>img			{max-width: 70%}
}

.btn-black							{color: white; background-color: black; border-color: black;}
.btn-black.focus, .btn-black:focus, 
.btn-black:hover, .btn-black.active, 
.btn-black:active					{color: #333; background-color: #eee; border-color: #eee;}

.btn-tan							{color: white; background-color: var(--clrTheme);
									 border-color: var(--clrTheme);}
.btn-tan.focus, .btn-tan:focus, 
.btn-tan:hover, .btn-tan.active, 
.btn-tan:active						{color: black; background-color: #eee; border-color: #eee;}

.headerTop							{text-align: right; border-bottom: 1px solid #eee;}
.headerTop .topNavList				{width: 100%; padding: 0; margin: 0; list-style: none;}
.headerTop .topNavList > li			{margin: 0 7px 0 0; padding: 0;}
.headerTop .topNavList > li:last-child{margin-right: 0;}
.headerTop .topNavList > li.socialLinks{margin-right: auto; margin-left: 0;}
.headerTop .topNavList > li.socialLinks > a{margin: 0; line-height: 30px;}
.headerTop .topNavList > li.socialLinks > a + a 
									{margin-left: 5px;}
.headerCovid{background: var(--clrTheme); text-align: center; font-size: 16px; padding: 5px 0; color: #fff;}                                    
.headerCovid a{color: #fff; text-decoration: underline;}                                    
.headerCovid a:hover{color: #fff; text-decoration: none;}                                    

.headerTop .topNavList > li > a, 
.headerTop .topNavList >li .dropdown > a
									{display: inline-block; font-size: 12px; line-height: 24px;
									 padding: 0 8px; margin: 3px 0; text-transform: uppercase; border-radius: 30px; border: 1px solid transparent; color: black;
									 -webkit-transition: all 0.4s ease-in-out;
									 -moz-transition: all 0.4s ease-in-out;
									 -o-transition: all 0.4s ease-in-out;
									 transition: all 0.4s ease-in-out;}


.header								{width: 100%; float: left; position: relative;}

.headerTop .topNavList > li >a:hover, 
.headerTop .topNavList > li .dropdown > a:hover
									{color: #D2B48C; background-color: rgba(255, 255, 255, 0.5);
									 border-color: rgba(0, 0, 0, 0.1);}

.headerTop .topNavList > li > a span,
.headerTop .topNavList > li .dropdown > a span
									{display: inline-block;}

.headerTop .topNavList > li >a .fa,
.headerTop .topNavList > li .dropdown > a .fa
									{font-size: 12px;}

.headerTop .topNavList > li > a .fa-facebook, 
.headerTop .topNavList > li .dropdown>a .fa-facebook
									{color: #3c5a99;}

.headerTop .topNavList > li > a .fa-instagram, 
.headerTop .topNavList > li .dropdown>a .fa-instagram
									{color: #f77737;}

.headerTop .topNavList > li > a .fa+span,
.headerTop .topNavList > li .dropdown>a .fa+span
									{margin-left: 5px;}

.headerTop .topNavList > li .dropdown-menu
									{right: 0; left: inherit; padding: 0; margin: 0; border-radius: 2px;}
.headerTop .topNavList > li.searchBox .dropdown-menu
									{width: 200px}

.headerTop .topNavList > li .dropdown-menu:before
									{content: "▲"; position: absolute; right: 15px; top: -15px;
									 color: #ccc; text-shadow: 0 -1px 1px 0 #d5d5d5; font-size: 14px; font-family: arial;}

.headerTop .topNavList > li .dropdown-menu li
									{width: 100%; float: left; border-top: 1px solid #ddd; padding: 0;}
.headerTop .topNavList > li .dropdown-menu li:first-child
									{border-top: none;}
.headerTop .topNavList > li .dropdown-menu li a
									{display: block; padding: 8px 15px;}

@media(min-width: 992px)			{
	.header .headerMid				{margin-bottom: 50px;}
}
@media(max-width: 990px)			{
	.header .headerMid .container	{padding: 0;}
}

@media(min-width: 992px){
.navOverlay							{width: 100%; margin: 0; padding: 0; position: absolute;
									 left: 0; right: 0; bottom: 0; z-index: 99;}
.navOverlay.navFixed				{bottom: auto; top: 0; position: fixed; background-color: white;
									 box-shadow: 0 0 10px #d5d5d5; border-bottom: 1px solid #f5f5f5;}
.navOverlay .container				{}

.navFavicon							{height: 0; opacity: 0; visibility: hidden; transition: all 0.4s ease-in-out; overflow: hidden;}
.navFavicon a						{display: inline-block;}
.navFavicon img						{height: 50px; width: auto; padding-top: 10px;}
.navOverlay.navFixed .navFavicon	{height: 50px; opacity: 1; visibility: visible;}

.mainNavList						{margin: 0; padding: 0; list-style: none;}
.mainNavList > li					{margin: 0; padding: 0; font-family: 'Asap', sans-serif;}
.mainNavList > li > a				{display: block; color: black; font-size: 14px;
									 text-transform: uppercase; padding: 15px 0;}
.mainNavList > li.rolexClock		{position: absolute; right: 15px; top: -95px;}
.mainNavList > li.rolexClock span	{display: block; box-shadow: 0 0 4px #d5d5d5;}

.mainNavList > li.siteSearch .dropdown-menu
									{width: 200px;}
.mainNavList > li .megamenuWapper	{max-height: 0; overflow: hidden; position: absolute; z-index: 5;
									 left: 0; right: 0; top: 100%; background-color: white; padding: 0; transition: all 0.8s linear;}
.mainNavList > li .container-fluid	{padding: 20px 40px; border-top: 1px solid #d5d5d5; border-bottom: 1px solid #d5d5d5;}
.mainNavList > li:hover .megamenuWapper
									{max-height: 1000px;}

.navCatList							{margin: 0 -15px; padding: 0; list-style: none;}
.navCatList > li					{flex: 1 1 25%; max-width: 25%; padding: 0 15px;}
.navCatList > li > a				{display: block; font-size: 20px; font-weight: 100;
									 color: var(--clrTheme); text-transform: uppercase; font-family: 'Open Sans Condensed'; position: relative; margin: 0 0 15px;}
.navCatList > li > a::before		{content: ""; position: absolute; left: 0; bottom: 0;
									 width: 80px; height: 1px; background-color: var(--clrTheme);}
.navCatList > li.navCatImage		{flex: 1 1 100%; max-width: 500px;}
.navCatList > li.navCatImage img	{width: 100%;}
.navCatList > li.navCatImage > a::before{display: none;}
.navCatList > li > .navCatChildList	{margin: 0; padding: 10px 0 0; list-style: none; width: 100%;}
.navCatList > li > .navCatChildList> li	{margin: 0; padding: 10px 0 0;}
.navCatList > li > .navCatChildList> li:first-child	{padding-top: 0;}
.navCatList > li > .navCatChildList> li> a{display: inline-block; color: #595959; font-size: 14px; text-transform: uppercase;}
.navCatList > li > .navCatChildList> li> a:hover{color: var(--clrTheme);}
}

@media(max-width: 990px){
.toggleMenu							{width: 54px; padding: 12px; display: inline-block;}
.toggleMenu span					{width: 100%; height: 1px; display: block; background-color: black;}
.toggleMenu span:nth-child(2)		{margin: 10px 0;}

.siteLogo							{margin-left: 12px;}
.siteLogo img						{height: 34px;}

.navOverlay							{position: fixed; left: 0; top: 0; width: 100%; height: 100vh;
									 background-color: rgba(0, 0, 0, 0.5); z-index: -1; opacity: 0; visibility: hidden;}
.mainNavigation						{width: 280px; background-color: white; position: relative;
									 left: -100%;}
.navOverlay,
.mainNavigation						{-webkit-transition: all 0.4s ease-in-out;
									 -moz-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out;}

.mainNavigation .container			{padding: 0; width: 100%;}
.mainNavigation .container-fluid	{padding: 0;}
.mainNavigation .navFavicon			{display: none;}
.mainNavHeader						{height: 45px; border-bottom: 1px solid #d5d5d5;}
.mainNavHeader .logo				{max-width: 120px; padding: 10px;}
.mainNavHeader .closeMe				{width: 45px; height: 45px; text-align: center;
									 line-height: 44px; font-size: 30px;}

.mainNavList						{margin: 0; padding: 0; list-style: none;
									 height: calc(100vh - 45px); overflow-y: auto;}
.mainNavList > li					{margin: 0; padding: 0; border-bottom: 1px solid #d5d5d5;}
.mainNavList > li > a				{display: block; padding: 8px 12px;}
.mainNavList > li.rolexClock		{text-align: center;}
.mainNavList > li .megamenuWapper	{max-height: 0; overflow: hidden;}
.mainNavList > li .megamenuWapper.show	{max-height: 1000px;}

.navCatList							{margin: 0 10px; padding: 0; list-style: none;
									 background-color: #f9f9f9;}
.navCatList > li					{margin: 0; padding: 0; border-top: 1px solid #d5d5d5;}
.navCatList > li > a				{display: block; padding: 8px 12px;}

.navCatChildList					{margin: 0; padding: 0 10px 10px; list-style: none;}
.navCatChildList > li				{margin: 0; padding: 0; border: 1px solid #d5d5d5;}
.navCatChildList > li:not(:first-child){border-top: none;}
.navCatChildList > li > a			{display: block; padding: 6px 10px;}
.navCatChildList > li:nth-child(odd) > a{background-color: rgba(0,0,0,0.1);}
.navCatChildList > li:nth-child(even) > a{background-color: rgba(0,0,0,0.05);}

.showMainNav .navOverlay			{z-index: 999; opacity: 1; visibility: visible;}
.showMainNav .mainNavigation		{left: 0;}
}




section,
[class*="section-"]					{width: 100%; float: left; margin: 0 0 50px; padding: 0;
									 overflow: hidden;}

.bbyes								{border-bottom: 1px solid #eeeeee; padding-bottom: 60px;}

.sectionTitle						{width: 100%; float: left; margin: 0 0 30px;}
.sectionTitle .title				{font-size: 36px; line-height: 42px; margin: 0;
									 font-family: 'Silk Serif'; font-weight: 400; text-transform: uppercase; color: #444;}
.sectionTitle .title span			{display: inline-block; position: relative; padding: 0 0 7px;}
.sectionTitle .title span::before	{content: ""; position: absolute; width: 50px; height: 1px;
									 background-color: var(--clrTheme); margin-left: -25px; left: 50%;
									 top: 100%;}
.sectionTitle .title + p			{padding: 12px 0 0; margin: 0; font-size: 15px;
									 text-transform: uppercase; color: var(--clrTheme);
									 font-family: 'Asap', sans-serif;}

@media(min-width: 992px){
.container-fluid.full				{padding: 0 50px;}
}


.section-mainCarousel				{box-shadow: 0 0 10px #d5d5d5;}
#mainCarousel .owl-caraousel .animated
									{animation-duration: 2000ms; animation-fill-mode: both; }
#mainCarousel .owl-stage			{transition-timing-function: linear!important;}
#mainCarousel .owl-nav				{width: 100%; float: left; margin: 0;}
#mainCarousel .owl-nav .owl-next, 
#mainCarousel .owl-nav .owl-prev	{margin: -30px 0 0; width: 60px; height: 60px;
									 position: absolute; top: 50%; opacity: 0.3;}
#mainCarousel .owl-nav .owl-next:hover, 
#mainCarousel .owl-nav .owl-prev:hover
									{opacity: 0.9;}
#mainCarousel .owl-nav .owl-next span, 
#mainCarousel .owl-nav .owl-prev span{opacity: 0;}
#mainCarousel .owl-nav .owl-next	{left: 20px;
									 background: url(../images/icon-angle-left.png) no-repeat center / 90% auto;} 
#mainCarousel .owl-nav .owl-prev	{right: 20px;
									 background: url(../images/icon-angle-right.png) no-repeat center / 90% auto;}

#mainCarousel .itemContent			{position: absolute; right: 20%; top: 50%; padding: 0;
									 z-index: 1; text-align: center; transform: translateY(-50%);}
  
#mainCarousel .itemContent .title	{font-size: 42px; color: #000; display: block; margin: 0 0 20px;
									 font-weight: 300; font-family: Helvetica, sans-serif; text-transform: uppercase;}
  
#mainCarousel .itemContent .banner-description
									{font-size: 18px; line-height: 36px; max-width: 60%;
									 font-weight: 400; color: #000;}
#mainCarousel .itemContent > a		{display: inline-block; background-color: #000;
									 color: #fff; padding: 15px 35px; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 30px;}
#mainCarousel .itemContent > a.green{background-color: #007843;}
#mainCarousel .itemContent > a.rounded{border-radius: 30px !important;}
  
@media (max-width: 767px)			{
#mainCarousel .itemContent			{right: 0; text-align: center; padding: 20px;}
#mainCarousel .itemContent .title	{font-size: 18px; margin-bottom: 10px;}
#mainCarousel .itemContent > a		{padding: 10px; font-size: 10px;}
}

.section-explore .subTitle			{color: var(--clrTheme); font-weight: normal; margin: 0;
									 font-size: 16px;}
.section-explore .title				{font-size: 26px;}
.section-explore .btn-black:hover	{background-color: var(--clrTheme); border-color: var(--clrTheme);
									 color: white;}

.storyContainer						{padding: 100px 0; position: relative; color: white;
									 background: url(../images/our-story-banner-1.jpg) no-repeat center / cover; background-attachment: fixed;}
.storyContainer::before				{content: ""; position: absolute;
									 left: 0; top: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.7);}
.storyContainer .sectionTitle .title{color: white;}
.storyContainer p					{font-size: 16px;}

.productBox							{text-align: center; border: 1px solid transparent;
									 -webkit-transition: all 0.4s ease-in-out;
									 -moz-transition: all 0.4s ease-in-out;
									 transition: all 0.4s ease-in-out;}
.productBox:hover					{border-color: #555;}
.productBox .productImage			{display: block;}
.productBox .productImage img		{width: 100%;}
.productBox .productTitle			{display: block; padding: 10px 20px;
									 font-family: 'Silk Serif'; font-size: 18px;}
.productBox .productPrice			{display: block; padding: 0 0 12px; font-size: 22px;
									 font-family: 'Open Sans Condensed', sans-serif; color: var(--clrTheme);}



.collectionBox > a					{display: block; text-align: center;}
.collectionBox > a > img			{width: 100%;}
.collectionBox > a > span			{display: block; text-transform: uppercase; font-size: 24px;
									 font-family: 'Silk Serif'; line-height: 38px; font-weight: 100;
									 padding: 7px 0 0; margin: 20px 0 0; position: relative;}
.collectionBox > a > span::before	{content: ""; position: absolute; width: 50px; height: 1px;
									 background-color: var(--clrTheme); margin-left: -25px; left: 50%;
									 bottom: 100%;}
@media(max-width: 767px)			{
	.collectionBoxList > [class*="col-"] + [class*="col-"]{margin-top: 30px;}
}

/* .locationCard						{border: none;}
.locationCard .locationMap iframe	{border: none; width: 100%; height: 300px; float: left;}
.locationCard .locationAddress		{border: none; padding: 25px 20px;}
.locationCard .locationAddress .title{font-size: 18px; color: var(--clrTheme); display: block;
									  margin: 0 0 15px;}
.locationCard .locationAddress p	{font-size: 16px;} */

.locationCard						{width:100%;float:left;margin-bottom:15px;position:relative;
									 transition:all .6s ease-in-out 0s;overflow:hidden}
.locationCard > a					{display: block;}
.locationCard .tittle-text			{width: 100%; position:absolute;left:0; bottom:0;color:#fff;
									 padding: 20px; text-align: center; transition:all .3s ease-in-out 0s;font-size:20px;text-transform:uppercase}
.locationCard:hover .tittle-text	{left: 100%;}
.locationCard .hover-box			{border:3px solid rgba(255,255,255,.7);width:90%;height:85%;
									 position:absolute;top:50%;left:50%;text-align:center;color:#fff;background:rgba(0,0,0,.5);opacity:0;padding:20px; transition:all .3s ease-in-out 0s;text-transform:uppercase; transform: translate(-150%, -50%);}
.locationCard:hover .hover-box{opacity:1;transform: translate(-50%, -50%);}
.locationCard .heading-text{font-size:22px;width:100%;float:left;text-align:center;margin-bottom:5px}
.locationCard .heading-text span{padding-bottom:10px}
.locationCard p{font-size:16px;line-height:24px}



@media(max-width: 767px)			{
	.locationList > [class*="col-"] + [class*="col-"]{margin-top: 30px;}
}

.locationsList						{list-style: none; margin: 0; padding: 0;}
.locationsList .directionLink		{font-weight: bold;}
.locationsList .directionLink .fa	{font-size: 24px; color: #e62f2f; margin-right: 5px;}

@media (min-width: 768px)			{
.locationsList > li					{border-top: 1px solid #dfdfdf; padding-top: 12px;
									 margin-top: 12px;}
.locationsList > li:first-child		{border-top: none; padding-top: 0; margin-top: 0;}
.locationsList iframe				{border: 1px solid #d5d5d5;}
}

@media (max-width: 990px)			{
.locationsList						{margin-bottom: 50px;}
}

@media (max-width: 767px)			{
.locationsList > li					{border: 1px solid #dfdfdf; margin-top: 20px;}
.locationsList > li:first-child		{margin-top: 0;}
.locationsList iframe				{border: none; border-bottom: 1px solid #d5d5d5;}
}

.section-login .card				{border: none; border-radius: 0;}
  .section-login .card.border {
	border: 1px solid #d5d5d5;
	padding: 12px 15px;
  }
  .section-login .card.contactForm, .section-login .card.jobsForm {
	border: 1px solid #d5d5d5;
	box-shadow: 0 0 20px #e0e0e0;
	border-radius: 0.25rem;
  }
  .section-login .card.contactForm .card-header, .section-login .card.jobsForm .card-header {
	margin: 0 15px;
	padding: 15px 0 10px;
  }
  .section-login .card .card-header {
	background-color: transparent;
  }
  .section-login .card .card-title {
	font-size: 20px;
	font-weight: 400;
  }
  .section-login .card p {
	color: #666;
  }
  .section-login .card .form-control {
	border-radius: 0;
	box-shadow: none;
  }
  .section-login .card select.form-control {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding-right: 20px;
	background: #fff url(../images/icons/icon-angle-down.svg) no-repeat center right 12px/12px 12px;
  }
  .section-login .orLine::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	border-left: 1px solid #d5d5d5;
  }
  .section-login .orLine::after {
	content: "OR";
	position: absolute;
	left: 0;
	top: 50%;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	text-align: center;
	line-height: 32px;
	color: black;
	margin: -16px 0 0 -16px;
	font-size: 11px;
	letter-spacing: 1px;
	border: 1px solid #d5d5d5;
	background-color: white;
  }
  .section-login .myProfileList .list-group-item:first-child, .section-login .myProfileList .list-group-item:last-child {
	border-radius: 0;
  }
  .section-login .myProfileList label {
	width: 90px;
	margin-right: 12px;
  }
  @media (min-width: 992px) {
	.section-login .formRow {
	  margin-left: -10px;
	  margin-right: -10px;
	}
	.section-login .formRow [class*=col-] {
	  padding-left: 10px;
	  padding-right: 10px;
	}
  }
  @media (min-width: 768px) and (max-width: 990px) {
	.section-login .formRow {
	  margin-left: -7px;
	  margin-right: -7px;
	}
	.section-login .formRow [class*=col-] {
	  padding-left: 7px;
	  padding-right: 7px;
	}
  }
  @media (max-width: 990px) {
	.section-login.myProfile .card-form {
	  border: 1px solid #d5d5d5;
	  padding: 12px 15px;
	}
  }
  @media (max-width: 767px) {
	.section-login .orLine::before {
	  left: 0;
	  top: auto;
	  bottom: 0;
	  right: 0;
	  border-left: none;
	  border-bottom: 1px solid #d5d5d5;
	}
	.section-login .orLine::after {
	  left: 50%;
	  top: auto;
	  bottom: 0;
	  margin: 0 0 -16px -16px;
	}
  }

  .section-gemstone .gemstoneHeader p	{font-size: 16px;}
  .section-gemstone .gemstoneList [class*=col-] {
	margin-bottom: 30px;
  }
  .section-gemstone .gemstoneList [class*=col-] > a {
	border: 1px solid #d5d5d5;
	position: relative;
	padding: 0 0 50px;
	width: 100%;
	min-height: 150px;
	-moz-transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
  }
  .section-gemstone .gemstoneList [class*=col-] > a .monthName,
  .section-gemstone .gemstoneList [class*=col-] > a .stoneName {
	position: absolute;
	left: 0;
	-moz-transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
  }
  .section-gemstone .gemstoneList [class*=col-] > a .monthName {
	top: 0;
	padding: 5px 15px;
	font-size: 18px;
	background-color: #d5d5d5;
	color: #333;
  }
  .section-gemstone .gemstoneList [class*=col-] > a .stoneName {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 10px 12px;
	font-size: 20px;
	text-align: center;
	color: #333;
  }
  .section-gemstone .gemstoneList [class*=col-] > a:hover {
	box-shadow: 0 0 16px #d5d5d5;
  }
  .section-gemstone .gemstoneList [class*=col-] > a:hover .stoneName {
	color: black;
  }
  .section-gemstone .gemstoneOverview .title {
	font-size: 20px;
	margin: 0 0 12px;
  }
  .section-gemstone .gemstoneOverview p {
	font-size: 16px;
  }
  .section-gemstone .gemstoneOverview .overviewImage [class*=img-] {
	display: block;
	text-align: center;
  }
  .section-gemstone .gemstoneOverview .overviewImage img {
	max-width: 100%;
  }
  @media (min-width: 768px) {
	.section-gemstone .gemstoneOverview .overviewImage.half img {
	  box-shadow: 4px 4px 10px -4px #d5d5d5;
	}
	.section-gemstone .gemstoneOverview .overviewImage.half > div:first-child > img {
	  position: relative;
	  top: -30px;
	  right: -20px;
	  z-index: 1;
	}
  }
  .section-gemstone .gemstoneFeatures {
	margin-bottom: 70px;
  }
  .section-gemstone .gemstoneFeatures .blockTitle {
	display: block;
	font-size: 20px;
	color: #333;
	text-transform: uppercase;
  }
  .section-gemstone .gemstoneFeatures .subtitle {
	font-size: 20px;
	text-align: center;
	font-style: italic;
  }
  .section-gemstone .gemstoneFeatures .blockImage {
	display: block;
	text-align: center;
  }
  .section-gemstone .gemstoneFeatures .blockImage img {
	max-height: 100px;
  }
  .section-gemstone .gemstoneFeatures p {
	font-size: 16px;
  }
  @media (max-width: 990px) {
	.section-gemstone .gemstoneFeatures .qualityList [class*=col-] {
	  padding-top: 15px;
	  padding-bottom: 15px;
	}
  }





.section-subscribe					{position: relative; margin-bottom: 0; padding: 50px 0;
									 background-color: var(--clrTheme); color: white;}
.section-subscribe .sectionTitle .title,
.section-subscribe p				{color: white;}
.section-subscribe label			{margin: 0; font-size: 20px; text-transform: uppercase;
									 font-family: 'Silk Sarif';}
.section-subscribe .input-group *	{border-radius: 0;}
.section-subscribe .input-group .form-control{box-shadow: none; border-color: white;}
.section-subscribe .msg				{position: absolute; bottom: 10px; left: 50%;
									 -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); transform: translateX(-50%);}


footer								{width: 100%; float: left; padding: 20px 0 0;}
footer .title						{display: block; text-transform: uppercase;
									 font-size: 20px; margin: 0 0 12px;}
footer .newsletterBox .form-control {border-radius: 0;}

.foterNav							{margin: 0; padding: 0; list-style: none;}
.foterNav > li						{margin: 7px 0 0; padding: 0;}
.foterNav > li:first-child			{margin-top: 0;}
.foterNav > li > a                    {display: inline-block;}
.foterNav > li > a	p				{color: #000;}

.contactNav > li .fa				{width: 24px;}

.socialNav							{margin: 0 -5px;}
.socialNav > li						{margin: 0; padding: 0 5px;}
.socialNav > li > a > span			{display: inline-block; width: 30px; height: 30px;
									 border-radius: 50%; background-color: black; color: white;
									 text-align: center; line-height: 30px;}
.socialNav > li:hover > a > span	{background-color: var(--clrTheme);}

.copyrightBox						{background-color: white; margin: 20px 0 0; border-top: 1px solid #d5d5d5;}
.copyrightBox p						{padding: 12px 0;}

@media(max-width: 767px)			{
	.footerCols > [class*="col-"] + [class*="col-"]{margin-top: 30px;}
	.socialNav, .catNav				{margin: 0 -5px;}
	.catNav > li,
	.socialNav > li					{margin: 0; padding: 5px;}
	.paymentCardsBox .title			{margin: 0;}
    .headerCovid{font-size: 12px;}
}

.col								{-ms-flex-preferred-size: 0; flex-basis: 0;
									 -ms-flex-positive: 1; flex-grow: 1; max-width: 100%;}

.contentBox							{width: 100%; float: left; overflow: hidden; padding-bottom: 20px}
.contentBox p						{line-height: 22px; margin-bottom: 20px;}
.contentBox h1						{width: 100%; float: left; font-size: 24px; line-height: 34px;
									 margin: 0 0 5px; padding: 0;}
.contentBox .title					{width: 100%; float: left; font-size: 18px; line-height: 26px;
									 margin: 0 0 5px; padding: 0; color: #444;}
.contentBox h6.textCenter			{font-size: 18px; line-height: 26px;}


.contentList						{margin: 0 0 20px 15px; padding: 0; list-style: disc;}
.contentList > li					{margin: 7px 0 0; padding: 0; color: #666; line-height: 22px;}
.contentList > li:first-child		{margin-top: 0;}

.list-col-2 > li					{box-sizing: border-box; width: 50%;}
.list-col-2 > li:first-child		{margin-top: 7px;}

.reviewContainer					{width: 100%; float: left; margin: 0 0 30px;}
.reviewContainer .reviewList		{margin: 0; padding: 0; list-style: none;}
.reviewContainer .reviewList > li	{margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid #e5e5e5;}
.reviewContainer .reviewList > li:first-child
									{margin-top: 0;padding-top: 0;border-top: none;}
.reviewContainer .reviewList > li .reviewTitle
									{font-size: 14px; margin: 0 0 7px; color: #333;}
  
.reviewContainer .reviewList > li .fa-star
									{color: #a5a5a5;}
.reviewContainer .reviewList > li .rated
  									{color: #ffc107;}
  
.reviewContainer .reviewList > li .reviewer
									{color: #777;}

.shadow								{box-shadow: 0 0 20px #e0e0e0;}
.section-explore .fa.text-danger{color: var(--clrTheme);}
.section-content.shipping-method table{margin: 20px 0;}
.section-content.shipping-method table td, .section-content.shipping-method table th {padding: 10px; border:1px solid #444!important}
.section-content.shipping-method table{border:1px solid #444; border-top:none:}
.section-content.shipping-method p{line-height: 24px;}
.text-primary{color:var(--clrTheme) ;}
.contentBox.contentPage strong{color: #666;}
._breitling_header{z-index: 1 !important;}

a[data-title="Saved"]               {color: orange !important;}
.contentText h4{line-height: 30px;}
.contentText h4  a{text-decoration: underline;}
.contentText h4  a:hover{text-decoration: none;}