* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -1px;
}
h1.light-90 {
  color: #cfcccb;
}
h1.dark {
  color: #12171b;
}

h2 {
  font-size: 21px;
}
h2.light-80 {
  color: #a2a2a2;
}

h5 {
  font-size: 16px;
  line-height: normal;
}
h5.light-80 {
  color: #a2a2a2;
}

p {
  font-size: 12px;
}

.color-terracotta {
  color: #b57c5d;
}

@media screen and (min-width: 960px) {
  h1 {
    font-size: 38px;
    line-height: 40px;
  }
  h2 {
    font-size: 21px;
  }
  h5 {
    font-size: 17px;
    line-height: normal;
  }
  p {
    font-size: 16px;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.container.w-1000 {
  max-width: 1000px;
}
.container.w-1200 {
  max-width: 1200px;
}

.section-grid .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 690px) {
  .grid-2 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-3 .grid.grid-2-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .grid-2 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-3 .grid.grid-2-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.f {
  display: flex;
}

.f-row {
  flex-direction: row;
}

.f-col {
  flex-direction: column;
}

.f-sb {
  justify-content: space-between;
}

.f-start {
  justify-content: flex-start;
}

.f-cntr {
  justify-content: center;
}

.f-end {
  justify-content: flex-end;
}

.a-start {
  align-items: start;
}

.a-end {
  align-items: end;
}

.a-cntr {
  align-items: center;
}

.a-stretch {
  align-items: stretch;
}

.t-cntr {
  text-align: center;
}

.g-10 {
  gap: 10px;
}

.g-15 {
  gap: 15px;
}

.g-20 {
  gap: 20px;
}

.g-30 {
  gap: 30px;
}

.g-40 {
  gap: 40px;
}

.w-100 {
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.logo {
  width: 120px;
}

.nav-menu-wr .nav-menu {
  display: flex;
  gap: 60px;
}
.nav-menu-wr .nav-menu li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.nav-menu-wr .nav-menu a {
  text-decoration: none;
  color: #cfcccb;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu-wr .nav-menu a:hover {
  color: #b57c5d;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #b57c5d;
  border-radius: 2px;
}

@media screen and (max-width: 960px) {
  .navbar .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-menu-wr .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%);
    flex-direction: column;
    background: linear-gradient(to top, #131A20, #12171b);
    padding: 40px 30px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    width: 100%;
    gap: 30px;
  }
  .nav-menu-wr.active .nav-menu {
    display: flex;
  }
  .nav-menu-wr.active .nav-menu li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-menu-wr.active .nav-menu li a {
    font-size: 16px;
  }
  .nav-menu-wr.active .nav-menu .btn {
    height: 50px;
    width: 100%;
  }
  .nav-menu-wr.active .blur {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vh;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.164);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    z-index: 90;
  }
  .burger {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    flex-direction: column;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
.section {
  padding: 100px 0px;
  position: relative;
}
.section.top {
  padding: 100px 0px 0px 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Constantia", sans-serif;
  color: #cfcccb;
  background-color: #131A20;
  line-height: 1.5;
}
body.no-scroll {
  overflow: hidden;
}

.watermark {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.texture-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.texture-segment {
  height: 600px;
  background: url("/img/bg-texture.jpg") no-repeat center;
  background-size: cover;
  opacity: 0.3;
}

.texture-segment.flipped {
  transform: scaleY(-1);
}

.center {
  align-items: center;
  text-align: center;
}

button {
  text-decoration: none;
}
button.btn {
  font-size: 16px;
  height: 40px;
  padding: 0px 14px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  font-family: "Constantia", sans-serif;
}
button.btn.btn-l {
  height: 50px;
  padding: 0px 54px;
}
button.btn.btn-bordered {
  color: #b57c5d;
  background-color: #131A20;
  border: 1px solid #b57c5d;
}
button.btn.btn-bordered:hover {
  box-shadow: 0px 2px 12px 1px rgba(181, 124, 93, 0.4);
}
button.btn.btn-filled {
  color: #fff;
  background-color: #b57c5d;
  border: 1px solid #b57c5d;
}
button.btn.btn-filled:hover {
  box-shadow: 0px 2px 12px 1px rgba(181, 124, 93, 0.4);
}

.label-wr {
  font-size: 14px;
  transform: skewX(-20deg);
  background: #b57c5d;
  color: #12171b;
  padding: 0px 10px 2px;
  font-style: italic;
  width: -moz-fit-content;
  width: fit-content;
}
.label-wr .label {
  transform: skewX(20deg);
}

@media screen and (min-width: 960px) {
  .label-wr {
    font-size: 16px;
  }
}
.diamond-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diamond-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.diamond-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #b57c5d;
  transform: rotate(45deg);
}

hr {
  width: 100%;
  border: 1px solid #282828;
}

.h-100 {
  height: 100%;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: solid 2px transparent;
  border-radius: 50%;
  position: relative;
}

.checkmark::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border: solid 3px #b57c5d;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  top: 4px;
  left: 4px;
}

.form-terracotta {
  color: #12171b;
  background-color: #b57c5d;
  padding: 10px 20px 20px;
}
.form-terracotta .label-wr {
  background-color: #cfcccb;
}
.form-terracotta .btn.btn-filled {
  color: #fff;
  background-color: #12171b;
  border: 1px solid #12171b;
}

.hidden {
  display: none;
}

.popup {
  max-width: 420px;
  width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background: #12171b;
  padding: 0px 30px 30px;
  border-radius: 9px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.popup .close-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.popup .close-icon::before,
.popup .close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: #a2a2a2;
  transform-origin: center;
}
.popup .close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup .close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup .close-icon:hover::before,
.popup .close-icon:hover::after {
  background-color: #b57c5d;
}
.popup .label-wr {
  background-color: #cfcccb;
  margin-top: -16px;
}
.popup button {
  width: 100%;
}

.blur-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 12, 0.8);
}

.blur {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 5;
}

.img-paper-top, .img-paper-bottom, .img-paper-footer {
  width: 100%;
}

.main {
  position: relative;
}

.header img.icon-tg {
  width: 34px;
}
@media screen and (min-width: 960px) {
  .header img.icon-tg {
    display: none;
  }
}

#home {
  padding: 0px 0px 80px 0px;
}
#home h1 {
  margin-bottom: 20px;
}
#home h5 {
  margin-bottom: 30px;
}
#home .img-desk-wr {
  position: relative;
  max-width: 900px;
}
#home .img-desk-wr img.img-desk {
  width: 100%;
}
#home .img-desk-wr img.img-shadow {
  position: absolute;
  bottom: 0px;
  opacity: 1;
  left: 50%;
  transform: translate(-50%);
  max-height: 86%;
}
#home .img-desk-wr .blur-on-desk-wr {
  display: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
#home .img-desk-wr .blur-on-desk-wr.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-delay: 1s;
}
#home .img-desk-wr .blur-on-desk-wr .blur-1 {
  top: 182px;
  left: 25px;
}
#home .img-desk-wr .blur-on-desk-wr .blur-2 {
  bottom: 189px;
  left: 106px;
  transform: rotate(7deg);
}
#home .img-desk-wr .blur-on-desk-wr .blur-3 {
  top: 176px;
  right: 70px;
  transform: rotate(4deg);
}
#home .img-desk-wr .blur-on-desk-wr .blur-4 {
  bottom: 246px;
  right: 260px;
}
#home .img-desk-wr .blur-on-desk-wr .blur-1,
#home .img-desk-wr .blur-on-desk-wr .blur-2,
#home .img-desk-wr .blur-on-desk-wr .blur-3,
#home .img-desk-wr .blur-on-desk-wr .blur-4 {
  position: absolute;
  width: 112px;
  height: 32px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 1;
}
#home .img-desk-wr .blur-on-desk-wr .blur-on-desk:hover {
  cursor: not-allowed;
}
#home .title-wr {
  order: 2;
}
#home .img-desk-wr {
  order: 1;
}

@media screen and (min-width: 960px) {
  #home {
    padding: 70px 0px 0px 0px;
  }
  #home .img-desk-wr .blur-on-desk-wr {
    display: block;
  }
  #home .title-wr {
    order: 1;
  }
  #home .img-desk-wr {
    order: 2;
  }
  #home img.img-shadow {
    bottom: 40px;
  }
}
#about {
  background-color: #d8d8d8;
  color: #363a3d;
}
#about .title {
  margin-bottom: 40px;
}
#about .section-grid .grid {
  display: grid;
  gap: 60px 40px;
}
#about .grid-item .diamond-list {
  margin-top: 15px;
}
#about .grid-item .icon-wr {
  margin-bottom: 20px;
}
#about .grid-item .gradient {
  height: 2px;
  width: 70%;
  background: linear-gradient(to right, #b57c5d, transparent);
}

@media screen and (min-width: 960px) {
  #about .margin-wrapper {
    margin-top: -60px;
    margin-bottom: -60px;
  }
}
@media screen and (min-width: 1200px) {
  #about .margin-wrapper {
    margin-top: -120px;
    margin-bottom: -100px;
  }
}
#price .title {
  margin-bottom: 60px;
}
#price .section-grid .grid {
  gap: 40px;
}
#price .section-grid .grid .grid-item {
  padding: 0px 30px 30px;
  background-color: #131A20;
  color: #cfcccb;
  border: 1px solid #282828;
  border-radius: 9px;
}
#price .section-grid .grid .grid-item .btn {
  width: 100%;
  margin-top: 40px;
}
#price .section-grid .grid .grid-item .label-wr {
  background-color: #cfcccb;
  margin-top: -16px;
}
#price .section-grid .grid .grid-item.active {
  border: 1px solid #b57c5d;
  box-shadow: 0px 12px 34px rgba(181, 124, 93, 0.2);
}
#price .section-grid .grid .grid-item.active .label-wr {
  background-color: #b57c5d;
}
#price .section-grid .grid .grid-item.active .btn-bordered {
  color: #fff;
  background-color: #b57c5d;
  border: 1px solid #b57c5d;
}

@media screen and (min-width: 690px) {
  #price .section-grid {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  #price h5.light-80 {
    width: 50%;
  }
  #price .section-grid {
    max-width: unset;
    margin: 0 auto;
  }
  .margin-wrapper {
    margin-top: -60px;
    margin-bottom: -60px;
  }
  .section {
    padding: 160px 0;
  }
  .section-grid .grid {
    gap: 20px;
  }
}
#whuSherlock {
  padding-bottom: 120px;
}
#whuSherlock .title-wr {
  margin-bottom: 60px;
}
#whuSherlock img {
  max-width: 120px;
}
#whuSherlock .grid {
  gap: 80px 60px;
}
#whuSherlock .grid .grid-item h2 {
  line-height: 28px;
}
#whuSherlock .grid .grid-item .label-wr {
  margin-top: -16px;
}
#whuSherlock .grid .form-terracotta {
  border-radius: 9px;
}

.footer {
  background-color: #090b0d;
  padding: 20px 0px;
  position: relative;
}
.footer .img-paper-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}