/* guides */

/*
colors:
charcoal gray: #333333
dark navy blue: #0b1632
pale turquoise: #b0e4e2
cream beige: #efe6d8
orange: #ffa646
light grey (navbar shrink background): #f6f6f6

fonts:
"Poppins", sans-serif;
"Balsamiq Sans", sans-serif;
*/

/* important */

@media (min-width: 1400px) {
  .d-none-for-monitor {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .d-none-for-laptop {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-for-tablet {
    display: none !important;
  }

  .top-minus-25px-for-lg {
    top: -25px !important;
  }

  .bottom-minus-25px-for-lg {
    bottom: -25px !important;
  }

  .left-minus-25px-for-lg {
    left: -25px !important;
  }

  .right-minus-25px-for-lg {
    right: -25px !important;
  }
}

@media (min-width: 992px) {
  .width-auto-for-non-xs {
    width: auto !important;
  }
}

@media (max-width: 991px) {
  .d-none-for-mobile {
    display: none !important;
  }

  .mb-2-25rem-for-xs {
    margin-bottom: 2.25rem !important;
  }

  .pt-0-5rem-for-xs {
    padding-top: .5rem !important;
  }

  .width-100proc-for-xs {
    width: 100% !important;
  }

  .top-minus-15px-for-xs {
    top: -15px !important;
  }

  .bottom-auto-for-xs {
    bottom: auto !important;
  }

  .right-minus-15px-for-xs {
    right: -15px !important;
  }

  .left-auto-for-xs {
    left: auto !important;
  }
}

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

section {
  padding: 3.5rem 0;
}

/* navigation */

.navbar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: none;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink {
  padding-top: .75rem;
  padding-bottom: .75rem;
  background-color: #f6f6f6;
  background-color: rgba(246, 246, 246, .95);
  box-shadow: none;
}

.navbar .navbar-brand img {
  width: 115px;
  height: auto;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink .navbar-brand img {
  width: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  margin: 0 2rem;
  padding: 0;
  color: #0b1632;
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before {
  background-color: #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link-cta {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link-cta:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link-cta:before {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link-cart-bag {
  position: relative;
  margin-right: 0;
  padding: 0;
  border-radius: 50%;
}

.navbar .navbar-nav .nav-item .nav-link-cart-bag i {
  color: #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link-cart-bag span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -15px;
  right: -15px;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  background-color: #b0e4e2;
  border-radius: 50%;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0 1.25rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: rgba(246, 246, 246, 1);
  }

  .navbar .navbar-brand img {
    width: 100px !important;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0.75rem 0;
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .navbar .navbar-nav .nav-item .nav-link-cart-bag span {
    right: auto;
    left: 7px;
  }
}

/* front page cover */

.front-page-cover {
  position: relative;
  height: auto;
  padding-top: 122px;
  padding-top: 218px;
  padding-top: 194px;
  padding-bottom: 96px;
}

.front-page-cover h1 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.75rem;
  line-height: 3.75rem;
  font-weight: 600;
}

.front-page-cover h1 span {
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-cover h1 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-cover h2 {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
  padding: 1.5rem 1.5rem;
  padding-bottom: .5rem;
  text-align: center;
  color: #0b1632;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  background-color: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.front-page-cover h2 span {
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-cover h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-cover p {
  color: #333333;
  font-size: .95rem;
  line-height: 1.6rem;
}

.front-page-cover a {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-cover a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.front-page-cover a i {
  margin-left: 1rem;
}

.front-page-cover .cover-div {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 40px;
}

.front-page-cover .individual-advantage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #efe6d8;
  border-radius: 50%;
  z-index: 1;
}

.front-page-cover .individual-advantage span {
  position: absolute;
  height: 70px;
  width: 70px;
  background-color: #ffa646;
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.front-page-cover .background-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 789px;
  height: 1048px;
  background-image: url("../images/cover_background2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-cover h2 {
    width: 81%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-cover h1 {
    font-size: 2rem;
    line-height: 3rem;
  }

  .front-page-cover h2 {
    width: 80%;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (max-width: 991px) {
  .front-page-cover {
    padding-top: 151px;
    padding-bottom: 48px;
  }

  .front-page-cover h1 {
    font-size: 2.25rem;
    line-height: 3rem;
  }

  .front-page-cover h2 {
    width: 80%;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .front-page-cover .cover-div {
    height: 300px;
  }
}

/* front page advantages */

.front-page-advantages {
  position: relative;
  padding-top: 0;
}

.front-page-advantages h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-advantages h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-advantages h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-advantages .advantages-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.front-page-advantages .advantages-div .individual-advantage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #efe6d8;
  border-radius: 50%;
  z-index: 1;
}

.front-page-advantages .advantages-div .individual-advantage span.icon {
  position: absolute;
  height: 70px;
  width: 70px;
  background-color: #ffa646;
  background-size: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.front-page-advantages .advantages-div .individual-advantage span.icon.iron {
  background-size: 40px;
}

.front-page-advantages .advantages-div .individual-advantage span.icon > span {
  position: absolute;
  display: inline-block;
  top: 35px;
  left: 10px;
  height: 1px;
  width: 70%;
  background-color: #fff;
}

.front-page-advantages .advantages-div .individual-advantage span.icon > span:first-child {
  transform: rotate(45deg);
}

.front-page-advantages .advantages-div .individual-advantage span.icon > span:last-child {
  transform: rotate(135deg);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-advantages h2 {
    font-size: 2rem;
  }

  .front-page-advantages .advantages-div .individual-advantage {
    width: 155px;
    height: 155px;
  }
}

@media (max-width: 991px) {
  .front-page-advantages h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-advantages .advantages-div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .front-page-advantages .advantages-div .individual-advantage {
    width: 140px;
    height: 140px;
    font-size: .9rem;
    line-height: 1.3rem;
  }

  .front-page-advantages .advantages-div .individual-advantage span.icon {
    height: 55px;
    width: 55px;
    background-size: 40px;
  }
}

/* front page process */

.front-page-process {
  position: relative;
}

.front-page-process h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-process h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-process h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-process .process-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.front-page-process .process-div .individual-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  height: 150px;
  flex: 1 1 230px;
  padding-top: 1rem;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 20px;
  z-index: 1;
}

/*
.front-page-process .process-div .individual-step:nth-child(odd) {
  margin-top: -3rem;
}

.front-page-process .process-div .individual-step:nth-child(even) {
  margin-top: 3rem;
}
*/

.front-page-process .process-div .individual-step span.digit {
  position: absolute;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #fff;
  font-size: 1.25rem;
  background-color: #ffa646;
  border-radius: 50%;
}

.front-page-process .process-div .individual-step span.arrow {
  position: absolute;
  top: 0;
  left: 230px;
  width: 102px;
  height: 150px;
  background-image: url("../images/process_arow.png");
  background-size: 36px;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
.front-page-process .background-1 {
  position: absolute;
  top: -100px;
  left: 0;
  width: 710px;
  height: 1291px;
  background-image: url("../images/process_background2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
}
*/

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-process h2 {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .front-page-process {
    padding-top: 0;
  }

  .front-page-process h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-process .process-div {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .front-page-process .process-div .individual-step {
    flex: 1 1 calc(50% - .75rem);
    width: calc(50% - .75rem);
    max-width: calc(50% - .75rem);
    min-width: calc(50% - .75rem);
    height: 190px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .front-page-process .process-div .individual-step:nth-child(3),
  .front-page-process .process-div .individual-step:nth-child(4) {
    margin-top: 1rem;
  }

  .front-page-process .process-div .individual-step span.arrow {
    display: none;
  }
}

/* front page name tag creator */

.front-page-name-tag-creator {
  position: relative;
}

.front-page-name-tag-creator h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-name-tag-creator h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-name-tag-creator h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-name-tag-creator .name-tag-creator-div {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.front-page-name-tag-creator .name-tag-div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: .5rem;
  width: 300px;
  height: 130px;
  color: #0b1632;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  background-color: #ebdef0;
  border-radius: 20px;
}

.front-page-name-tag-creator .name-tag-div img {
  height: 100px;
  width: auto;
}

.front-page-name-tag-creator .name-tag-div span {
  position: absolute;
  text-align: center;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.front-page-name-tag-creator .name-tag-div span.horizontal {
  bottom: -24px;
  left: 0;
  width: 100%;
}

.front-page-name-tag-creator .name-tag-div span.vertical {
  left: -35px;
  transform: rotate(270deg);
}

.front-page-name-tag-creator .name-tag-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 300px;
  height: 130px;
}

.front-page-name-tag-creator .name-tag-inputs input {
  padding: .75rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none;
  outline: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-inputs input:hover {
  border: 2px solid #ddd;
}

.front-page-name-tag-creator .name-tag-inputs input:focus {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-tabs {
  position: relative;
  text-align: center;
  z-index: 1;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab {
  display: inline-block;
  width: auto;
  margin-right: 1rem;
  padding: .75rem 3rem;
  padding-bottom: calc(.75rem - 2px);
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  background-color: #efe6d8;
  border: 2px solid #efe6d8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab.active,
.front-page-name-tag-creator .name-tag-tabs .individual-tab:hover {
  background-color: transparent;
  cursor: default;
  border-bottom: 2px solid #fff;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab:hover {
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab:last-child {
  margin-right: 0;
}

.front-page-name-tag-creator .name-tag-stickers {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  row-gap: 1rem;
  margin-top: -2px;
  padding: 2rem;
  background-color: transparent;
  border: 2px solid #efe6d8;
  border-radius: 20px;
}

.front-page-name-tag-creator .name-tag-stickers .individual-name-tag-sticker {
  flex: 1 1 calc(25% - 1.5rem);
  width: calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
  min-width: calc(25% - 1.5rem);
  border: 2px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .individual-name-tag-sticker:hover {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .individual-name-tag-sticker img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 4px solid transparent;
}

.front-page-name-tag-creator .name-tag-stickers .tips {
  position: absolute;
  top: calc(50% - 20px);
  right: -98px;
  padding: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #efe6d8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: rotate(90deg);
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .tips:hover {
  background-color: #e2d1b8;
}

.front-page-name-tag-creator .name-tag-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 2rem;
}

.front-page-name-tag-creator .name-tag-footer p.description {
  margin-bottom: 0;
  padding-right: 1.5rem;
  text-align: left;
  color: #333;
  font-size: .8rem;
  line-height: 1.1rem;
}

.front-page-name-tag-creator .name-tag-footer .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 125px;
  width: 125px;
  min-width: 125px;
  max-width: 125px;
  height: 55px;
}

.front-page-name-tag-creator .name-tag-footer .quantity span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 45px;
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  height: 55px;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #eee;
  border: 2px solid #eee;
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-footer .quantity span:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.front-page-name-tag-creator .name-tag-footer .quantity span:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.front-page-name-tag-creator .name-tag-footer .quantity input {
  flex: 1 1 60px;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 55px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #eee;
  border-left: 0;
  border-right: 0;
  outline: 0;
}

.front-page-name-tag-creator .name-tag-footer p.price {
  flex: 1 1 125px;
  min-width: 125px;
  max-width: 125px;
  margin-bottom: 0;
  padding-left: 8px;
  font-size: .9rem;
}

.front-page-name-tag-creator .name-tag-footer p.price span {
  font-size: 1.35rem;
  font-weight: 500;
}

.front-page-name-tag-creator .name-tag-footer .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 200px;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  height: 55px;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-footer .btn:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-name-tag-creator .name-tag-footer p.description {
    padding-right: 3rem;
  }

  .front-page-process .process-div .individual-step {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    flex: 1 1 220px;
  }

  .front-page-process .process-div .individual-step span.arrow {
    left: 220px;
    width: 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-name-tag-creator h2 {
    font-size: 2rem;
  }

  .front-page-name-tag-creator .name-tag-footer {
    gap: 1.5rem;
  }

  .front-page-process .process-div .individual-step {
    height: 190px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    flex: 1 1 200px;
  }

  .front-page-process .process-div .individual-step span.arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .front-page-name-tag-creator {
    padding-top: 0;
  }

  .front-page-name-tag-creator h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-name-tag-creator .name-tag-creator-div {
    flex-direction: column;
    gap: 2.5rem;
  }

  .front-page-name-tag-creator .name-tag-tabs {
    display: flex;
    gap: .5rem;
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab {
    margin-right: 0;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: .75rem;
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:first-child {
    flex: 1 1 calc(25%);
    width: calc(25%);
    max-width: calc(25%);
    min-width: calc(25%);
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:nth-child(2) {
    flex: 1 1 calc(25% + .5rem);
    width: calc(25% + .5rem);
    max-width: calc(25% + .5rem);
    min-width: calc(25% + .5rem);
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:nth-child(3) {
    flex: 1 1 calc(25% - 1rem);
    width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    min-width: calc(25% - 1rem);
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:nth-child(4) {
    flex: 1 1 calc(25% - 1rem);
    width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    min-width: calc(25% - 1rem);
  }

  .front-page-name-tag-creator .name-tag-stickers {
    gap: 1rem;
    padding: 1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .front-page-name-tag-creator .name-tag-stickers .individual-name-tag-sticker {
    flex: 1 1 calc(50% - .5rem);
    width: calc(50% - .5rem);
    max-width: calc(50% - .5rem);
    min-width: calc(50% - .5rem);
  }

  .front-page-name-tag-creator .name-tag-stickers .tips {
    top: auto;
    right: auto;
    bottom: -37px;
    font-size: .85rem;
    font-weight: 500;
    transform: rotate(0deg);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .front-page-name-tag-creator .name-tag-footer {
    display: block;
    margin-top: 4.25rem;
  }

  .front-page-name-tag-creator .name-tag-footer p.description {
    padding-right: 0;
  }

  .front-page-name-tag-creator .name-tag-footer .quantity {
    text-align: center;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    float: left;
  }

  .front-page-name-tag-creator .name-tag-footer p.price {
    text-align: center;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    float: right;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .front-page-name-tag-creator .name-tag-footer .btn {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/* tips modal */

.tips-modal {
  display: none;
  max-width: 500px;
  width: 500px;
  min-width: 500px;
  border-radius: 20px;
}

.tips-modal h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.tips-modal p {
  margin-bottom: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.tips-modal ul {
  list-style-type: square;
  padding-inline-start: 18px;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.tips-modal ul li::marker {
  color: #ffa646;
}

@media (max-width: 991px) {
  .tips-modal {
    max-width: auto;
    width: auto;
    min-width: auto;
  }
}

/* front page faq */

.front-page-faq {
  position: relative;
}

.front-page-faq h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-faq h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-faq h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-faq a {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-faq a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.front-page-faq .individual-advantage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #efe6d8;
  border-radius: 50%;
  z-index: 1;
}

.front-page-faq .individual-advantage span {
  position: absolute;
  height: 70px;
  width: 70px;
  background-color: #ffa646;
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.front-page-faq .question-icon {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 70px;
  height: 70px;
  background-color: #ffa646;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45px;
  border-radius: 50%;
  z-index: 1000;
}

.front-page-faq .technical-information-div p,
.front-page-faq .technical-information-div ul {
  color: #333;
  font-size: .875rem;
  font-weight: 400;
}

.front-page-faq .technical-information-div ul li::marker {
  color: #ffa646;
}

.front-page-faq .technical-information-div p:last-child,
.front-page-faq .technical-information-div ul:last-child {
  margin-bottom: 0;
}

.front-page-faq .technical-information-div img {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.front-page-faq .accordion-body a {
  padding: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 400;
  text-decoration: underline;
  text-transform: none;
  background-color: transparent;
  border: 0;
}

.front-page-faq .accordion-body a:hover {
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-faq h2 {
    font-size: 2rem;
  }

  .technical-information-div {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
  }

  .technical-information-div > div {
    flex: 1 1 calc(50% - 1.5rem);
    width: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    min-width: calc(50% - 1.5rem);
  }
}

@media (max-width: 991px) {
  .front-page-faq {
    padding-top: 0;
  }

  .front-page-faq h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-faq a {
    width: 100%;
  }

  .front-page-faq .question-icon {
    width: 55px;
    height: 55px;
    right: -15px;
  }

  .technical-information-div {
    margin-top: 3rem;
  }
}

/* front page blog */

.front-page-blog {
  position: relative;
  padding-bottom: 3.5rem;
}

.front-page-blog h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-blog h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-blog h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-blog .individual-blog-entry {
  cursor: pointer;
}

.front-page-blog .individual-blog-entry h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65rem;
}

.front-page-blog .individual-blog-entry div {
  width: 100%;
  height: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-blog .individual-blog-entry:hover div {
  background-size: 105%;
}

.front-page-blog a {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-blog a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-blog h2 {
    font-size: 2rem;
  }

  .front-page-blog .individual-blog-entry div {
    height: 180px;
  }
}

@media (max-width: 991px) {
  .front-page-blog {
    padding-top: 0;
  }

  .front-page-blog h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-blog .individual-blog-entry div {
    height: 140px;
  }
}

/* front page testimonials */

.front-page-testimonials {
  position: relative;
  padding-bottom: 3.5rem;
}

.front-page-testimonials h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-testimonials h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-testimonials h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-testimonials .individual-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 223px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.front-page-testimonials .individual-testimonial p:first-child {
  width: 65%;
  margin-bottom: .75rem;
  text-align: center;
  font-size: .95rem;
}

.front-page-testimonials .individual-testimonial p:last-child {
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.front-page-testimonials a {
  position: relative;
  width: auto;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-testimonials a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-testimonials .individual-testimonial {
    height: 242px;
  }

  .front-page-testimonials .individual-testimonial p:first-child {
    width: 60%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-testimonials h2 {
    font-size: 2rem;
  }

  .front-page-testimonials .individual-testimonial {
    height: 242px;
  }

  .front-page-testimonials .individual-testimonial p:first-child {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .front-page-testimonials {
    padding-top: 0;
  }

  .front-page-testimonials h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-testimonials .individual-testimonial {
    height: 194px;
  }

  .front-page-testimonials .individual-testimonial p:first-child {
    font-size: .8rem;
  }
}

/* front page instagram feed */

.front-page-instagram-feed {
  position: relative;
  padding-bottom: 6rem;
}

.front-page-instagram-feed h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram-feed h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
  border-bottom: 4px solid #0b1632;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram-feed h2 span:hover {
  border-bottom: 4px solid transparent;
}

.front-page-instagram-feed h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-instagram-feed .ig-feed-div {
  display: flex;
  align-items: center;
}

.front-page-instagram-feed .ig-feed-div > div {
  flex: 1 1 calc(100% / 6);
  width: calc(100% / 6);
  max-width: calc(100% / 6);
  min-width: calc(100% / 6);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border: 2px solid #b0e4e2;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram-feed .ig-feed-div > div:hover {
  background-size: 105%;
}

.front-page-instagram-feed .ig-feed-div > div:nth-child(odd) {
  transform: rotate(5deg);
}

.front-page-instagram-feed .ig-feed-div > div:nth-child(even) {
  transform: rotate(-5deg);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-instagram-feed h2 {
    font-size: 2rem;
  }

  .front-page-instagram-feed .ig-feed-div > div {
    flex: 1 1 calc(100% / 5);
    width: calc(100% / 5);
    max-width: calc(100% / 5);
    min-width: calc(100% / 5);
  }
}

@media (max-width: 991px) {
  .front-page-instagram-feed {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .front-page-instagram-feed h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-instagram-feed .ig-feed-div > div {
    flex: 1 1 calc(100% / 3);
    width: calc(100% / 3);
    max-width: calc(100% / 3);
    min-width: calc(100% / 3);
  }
}

/* newsletter, soc icons */

.front-page-newsletter-soc-icons {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.front-page-newsletter-soc-icons h2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.front-page-newsletter-soc-icons h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-newsletter-soc-icons h2 span:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-newsletter-soc-icons p {
  margin-bottom: 2rem;
  color: #333;
  font-size: .9rem;
  line-height: 1.4rem;
}

.front-page-newsletter-soc-icons .newsletter-div {
  width: 80%;
  margin-left: 15%;
  margin-right: 5%;
}

.front-page-newsletter-soc-icons .newsletter-div input {
  padding: .7rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none;
  outline: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .newsletter-div input:focus {
  border: 2px solid #b0e4e2;
  border-right: 0;
}

.front-page-newsletter-soc-icons .newsletter-div a {
  padding: .75rem 2.25rem;
  color: #0b1632;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 2px solid #b0e4e2;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .newsletter-div a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 2px solid #0b1632;
}

.front-page-newsletter-soc-icons .newsletter-div > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-page-newsletter-soc-icons .soc-icons-div {
  width: 80%;
  margin-left: 5%;
  margin-right: 15%;
}

.front-page-newsletter-soc-icons .soc-icons-div a {
  padding: .75rem 2.25rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 2px solid #b0e4e2;
  border-radius: 30px;
  text-decoration: none;
}

.front-page-newsletter-soc-icons .soc-icons-div a.btn-facebook {
  background-color: #4267b2;
  border: 2px solid #4267b2;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .soc-icons-div a.btn-instagram {
  background-color: #dd2a7b;
  border: 2px solid #dd2a7b;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .soc-icons-div a.btn-facebook:hover,
.front-page-newsletter-soc-icons .soc-icons-div a.btn-instagram:hover {
  opacity: .7;
}

.front-page-newsletter-soc-icons .soc-icons-div a i {
  margin-right: .75rem;
}

.front-page-newsletter-soc-icons .soc-icons-div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-newsletter-soc-icons .newsletter-div {
    width: 90%;
    margin-left: 7.5%;
    margin-right: 2.5%;
  }

  .front-page-newsletter-soc-icons .soc-icons-div {
    width: 90%;
    margin-left: 2.5%;
    margin-right: 7.5%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-newsletter-soc-icons .newsletter-div,
  .front-page-newsletter-soc-icons .soc-icons-div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .front-page-newsletter-soc-icons .soc-icons-div a i {
    display: none;
  }

  .front-page-newsletter-soc-icons p {
    width: 85%;
    margin-left: 7.5%;
    margin-right: 7.5%;
  }

  .front-page-newsletter-soc-icons .newsletter-div input {
    width: 190px;
  }
}

@media (max-width: 991px) {
  .front-page-newsletter-soc-icons {
    padding-bottom: 3.5rem;
  }

  .front-page-newsletter-soc-icons .newsletter-div,
  .front-page-newsletter-soc-icons .soc-icons-div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .front-page-newsletter-soc-icons .soc-icons-div {
    margin-top: 2.25rem;
  }

  .front-page-newsletter-soc-icons .newsletter-div > div {
    flex-direction: column;
  }

  .front-page-newsletter-soc-icons .newsletter-div input {
    width: 100%;
    text-align: center;
    border-right: 2px solid #ddd;
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 40px;
  }

  .front-page-newsletter-soc-icons .newsletter-div a {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 40px;
  }

  .front-page-newsletter-soc-icons .soc-icons-div > div {
    flex-direction: column;
    gap: 1.25rem;
  }

  .front-page-newsletter-soc-icons .soc-icons-div a {
    width: 100%;
  }
}

/* footer */

footer {
  height: 400px;
  padding-top: 110px;
  background-image: url("../images/footer_background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

footer h4 {
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
}

footer p {
  margin-bottom: 0;
  color: #333;
  font-size: .9rem;
  line-height: 1.75rem;
}

footer ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-inline-start: 0;
  color: #333;
  font-size: .9rem;
  line-height: 1.75rem;
}

footer ul li i {
  margin-right: .75rem;
}

footer a {
  position: relative;
  color: #333;
  text-decoration: none;
}

footer a:hover {
  color: #333;
  text-decoration: none;
}

footer a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer a:hover:before {
  background-color: #0b1632;
}

@media (max-width: 991px) {
  footer {
    height: auto;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #bceaea;
    background-image: none;
  }
}

/* */
