/* ==========================================================================
   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: 'Open Sans', sans-serif !important;
  background: #fff;
  overflow-x: hidden;
  color: #000 !important;
  line-height: 1.4 !important;
}
.container-fluid {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
.head {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}
.head-inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.head-right {
  display: flex;
  align-items: center;
}
.head-right img {
  cursor: pointer;
}
.main {
  padding-top: 60px;
}
.title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}
.instr {
  margin-top: 30px;
}
.instr-item {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  height: 64px;
  border-radius: 4px;
  padding: 0 15px;
}
.instr-item:first-child {
  margin-top: 0;
}
.instr-item-text {
  font-weight: bold;
  font-size: 14px;
}
.before {
  margin-top: 60px;
  text-align: center;
}
.phones {
  margin-top: 30px;
  display: flex;
  margin-bottom: 30px;
  gap: 15px;
}
.phone {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  height: 90px;
  width: 100%;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.phone-icon {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-text {
  margin-top: 10px;
  font-size: 14px;
}
.desc {
  text-align: center;
  display: none;
}
.desc img {
  max-width: 100%;
  height: auto;
}
.desc.on {
  display: block;
}
.desc-title {
  text-align: center;
  margin: 30px 0;
  font-weight: 600;
  font-size: 20px;
}
.desc-close {
  margin-top: 30px;
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
  height: 42px;
  margin-bottom: 30px;
  max-width: 180px;
}
* {
  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;
}
