:root, html, body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.gcdcHeading, h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans';
  display: flex;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}

.subheading-category,
hgroup {
  display: none;
}

.divider {
  background-color: #6D88A5;
  height: 4px;
  width: 50px;
  border-radius: 4px;
  margin: 2rem 0;
}

.item-info {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  padding-bottom: 2rem;
}

.price {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.price .value {
  font-weight: 700;
  font-size: 1.5rem;
}

.price-item .img img {
  width: 100%;
  border-radius: 20px;
}

h1 {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: black;
}
h2 {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: black;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}

.ico {
  width: 1.5rem;
  height: auto;
}

:root{
  --brand-blue: #0b6fb3;
  --light-blue: #028dd6;
  --second-blue: #00ade0;
  --primary: var(--light-blue);
  --secondary: var(--second-blue);
  --tertiary: #02c9d0;
}

.list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.list-item img {
  width: 100%;
  border-radius: 20px;
}

.list-item h4 {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: black !important;
}

.items-leading a {
  text-decoration: none !important;
}

.main-content {
  padding: 5rem 7rem;
  line-height: 2rem;
}

.navbar {
  min-height: 90px;
}

.navbar.hp {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.navbar:not(.hp) {
  background-color: #394A5B;
}

.navbar .rw {
  display: flex;
  flex-direction: row;
  width: 100%;
}

#navbarSupportedContent {
  justify-content: flex-end;
}

.navbar-brand {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  color: white !important;
}

.navbar-nav {
  display: flex;
  gap: 20px;
}

.nav-item-social {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item a {
  color: white !important;
  font-weight: 500;
  text-transform: uppercase;
}

#bg {
  position: relative;
}

#bg h1 {
  position: absolute;
  left: 7%;
  top: 35%;
  color: white;
}

#bg img {
  width: 100%;
}

.author-wrapper img {
  width: 100%;
}

.fast-nav {
  background-color: #D6DAE0;
  padding: 3rem 0;
}

.fast-nav h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  color: #293440;
  text-transform: uppercase;
}

footer {
  background-color: #293440;
  padding: 3rem 0;
  color: white;
}

.copy {
  padding: 3rem 0;
}

.copy a {
  color: black;
}

.fast-nav a {
  text-decoration: none;
}

.fast-nav .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 1rem;
  color: black;
}

.fast-nav .item img {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}

.logo-text {
  font-size: 2.5rem;
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding-bottom: 8px;
}

.no-underground {
  text-decoration: none !important;
}

form .form-group {
    margin-bottom: 3px;
}

form input[type=text], form input[type=email], form textarea.form-control {
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: #f8f8f8;
    padding: 10px 15px;
    margin: 5px 0;
}

.qlformContainer {
  margin-top: 50px;
}

a.btn-order, form button[type=submit] {
    text-decoration: none !important;
    background: #636b73 !important;
    color: white !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 8px 10px;
    margin: 10px 0;
}

form button[type=submit] {
    display: block;
    margin-left: auto;
}

@media screen and (min-width: 969px) {
  .hp .navbar-brand {
    display: none !important;
  }
}

@media screen and (max-width: 968px) {
  .navbar {
    background-color: #394A5B;
    position: relative !important;
  }
  .navbar .rw {
    justify-content: space-between;
  }
  .navbar-collapse {
    position: absolute;
    background-color: #394A5B;
    left: 0;
    width: 100%;
    top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-item-social {
    display: none;
  }
  footer {
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
  .main-content {
    padding: 30px;
  }
  body {
    overflow-x: hidden;
  }
  #bg {
    display: none;
  }
  .price-item {
    gap: 3rem;
  }
  .fast-nav .row {
    row-gap: 3rem;
  }
}