/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.show-tablet {
  display: none;
}
@media only screen and (max-width: 991px) {
  .show-tablet {
    display: block;
  }
}
.hide-tablet {
  display: block;
}
@media only screen and (max-width: 991px) {
  .hide-tablet {
    display: none;
  }
}
.show-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .show-mob {
    display: block;
  }
}
.hide-mob {
  display: block;
}
@media only screen and (max-width: 767px) {
  .hide-mob {
    display: none;
  }
}
.transition {
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-size: 16px !important;
  font-family: 'Inter', sans-serif !important;
  background: oklch(97% 0.014 254.604);
  overflow-x: hidden;
  color: #050505 !important;
  line-height: 1.4 !important;
  padding-top: 130px;
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 0;
  }
}
.container-fluid {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
.head {
  background: #fff;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 500;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.head .container-fluid {
  max-width: 1730px;
}
@media only screen and (max-width: 767px) {
  .head {
    position: static;
  }
}
.head-inner {
  display: flex;
  padding: 15px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .head-inner {
    flex-direction: column;
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .head-left {
    text-align: center;
  }
}
.logo img {
  height: 100px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .logo {
    text-align: center;
  }
  .logo img {
    height: 75px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.head-center {
  width: 100%;
}
.head-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #3989c6;
}
@media only screen and (max-width: 767px) {
  .head-title {
    font-size: 18px;
  }
}
.head-right {
  text-align: right;
  font-size: 14px;
}
.head-cont {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}
.head-cont a {
  color: #3989c6 !important;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .head-cont {
    justify-content: center;
  }
}
.head-left,
.head-right {
  width: 35%;
}
@media only screen and (max-width: 767px) {
  .head-left,
  .head-right {
    width: 100%;
  }
}
.main-wrap {
  display: flex;
  gap: 30px;
}
.main-wrap .main-wrap-col:last-child {
  width: 300px;
  flex-grow: 0;
}
@media only screen and (max-width: 767px) {
  .main-wrap .main-wrap-col:last-child {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .main-wrap {
    display: block;
  }
}
.main-wrap-col {
  width: 100%;
}
.gal {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .gal {
    padding: 15px;
  }
}
.gal-images {
  height: 400px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .gal-images {
    height: 250px;
  }
}
.gal-image {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.gal-image img {
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
}
.gal-info {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 50;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .gal-info {
    left: 15px;
    top: 15px;
  }
}
.gal-prev {
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: 50;
  transform: translate(0, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gal-prev img {
  width: 24px;
  height: auto;
}
.gal-prev:hover {
  opacity: 0.75;
}
@media only screen and (max-width: 767px) {
  .gal-prev {
    left: 15px;
  }
}
.gal-next {
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: 50;
  transform: translate(0, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  left: auto;
  right: 30px;
}
.gal-next img {
  width: 24px;
  height: auto;
}
.gal-next:hover {
  opacity: 0.75;
}
@media only screen and (max-width: 767px) {
  .gal-next {
    left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .gal-next {
    left: auto;
    right: 15px;
  }
}
.gal-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .gal-title {
    font-size: 18px;
  }
}
.gal-subtitle {
  display: block;
  font-style: italic;
  opacity: 0.75;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .gal-subtitle {
    font-size: 12px;
  }
}
.gal-price {
  margin-top: 15px;
  font-size: 18px;
}
.gal-loc-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}
.gal-loc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gal-avail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form {
  width: 300px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .form {
    padding: 15px;
  }
}
.form input,
.form textarea {
  width: 100%;
  height: 30px;
  margin-top: 5px;
  display: block;
  padding: 0 10px;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  background: #f0f0f0;
}
.form textarea {
  height: 70px;
  resize: none;
  padding: 5px 10px;
}
@media only screen and (max-width: 767px) {
  .form {
    width: 100%;
  }
}
.form-title {
  color: #fff;
  background: #000;
  border-radius: 5px;
  text-align: center;
  height: 30px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}
.form-send {
  color: #fff;
  background: #000;
  border-radius: 5px;
  text-align: center;
  height: 30px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
  cursor: pointer;
  background: #3989c6;
  padding: 0;
  height: 45px;
  margin-top: 15px;
  border: none;
  width: 100%;
  border-radius: 99px;
}
.form-send:hover {
  opacity: 0.75;
}
.form-send:hover {
  background: #276391;
}
.form-info {
  font-size: 10px;
  opacity: 0.75;
}
.block {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .block {
    padding: 15px;
  }
}
.block-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .block-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.block-details-list-item {
  margin-top: 15px;
}
.block-details-list-item:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .block-details-list-item {
    font-size: 14px;
  }
}
.block-specs .block-details-list-item {
  display: flex;
  gap: 15px;
}
.specs-wrap {
  display: flex;
  gap: 30px;
}
.specs-wrap .specs-left,
.specs-wrap .specs-right {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .specs-wrap .specs-left,
  .specs-wrap .specs-right {
    width: 100%;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .specs-wrap {
    display: block;
  }
}
.block-details-check {
  padding-left: 45px;
  background: url('../img/check.svg') left 0px;
  background-size: 24px auto;
  background-repeat: no-repeat;
  margin-top: 15px;
  font-weight: bold;
}
.block-details-check:first-child {
  margin-top: 0;
}
.block-details-check span {
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .block-details-check {
    font-size: 14px;
    padding-left: 30px;
    background-size: 15px auto;
    background-position: left 4px;
  }
}
.all-provided {
  margin-top: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #3989c6;
}
@media only screen and (max-width: 767px) {
  .all-provided {
    font-size: 18px;
    text-align: center;
  }
}
.block-text p {
  margin: 15px 0 0 0;
}
.block-text p:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .block-text {
    font-size: 14px;
  }
}
.footer {
  margin-top: 60px;
  background: #222;
  color: #eee;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  gap: 90px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer-inner {
    display: block;
  }
}
.footer-left {
  font-size: 14px;
  white-space: nowrap;
}
.footer-left p {
  margin: 5px 0 0 0;
}
.footer-left p:first-child {
  margin-top: 0;
}
.footer-left a {
  color: #3989c6 !important;
  text-decoration: none;
}
.footer-left-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .footer-left-wrap {
    font-size: 12px;
  }
}
.footer-logo img {
  height: 100px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .footer-logo img {
    height: 75px;
    width: auto;
  }
}
.footer-right {
  width: 100%;
  font-size: 14px;
}
.footer-right p {
  margin: 15px 0 0 0;
}
.footer-right p:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .footer-right {
    margin-top: 30px;
    font-size: 12px;
  }
}
.copy {
  background: #000;
  padding: 15px 0;
  color: #fff;
}
.copy-inner {
  text-align: center;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .copy-inner {
    font-size: 10px;
  }
}
* {
  outline: none !important;
}
.dark:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.bright:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
:-moz-placeholder {
  color: #666;
  opacity: 1;
}
::-moz-placeholder {
  color: #666;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
