/*GENERAL STYLES*/
html,
body {
  height: 100%;
}
body {
  background-color: #f8f8f8;
  font-family: "Titillium Web", sans-serif;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  box-shadow: 0px 9px 18px -10px rgba(68, 68, 68, 0.5);
  color: inherit;
  border: 1px solid #e4e4e4;
}
.section {
  padding: 180px 0;
}
.page-content {
  flex: 1 0 auto;
  position: relative;
}
.container.container-paddings {
  padding: 0 65px;
}
.general-button {
  width: 100%;
  background-color: #333333;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 23px;
  border: none;
  height: 44px;
  padding-left: 44px;
  position: relative;
  transition: all 0.5s ease;
}
.general-button:hover {
  background-color: #f1d430;
  color: #222222;
}
.general-button.general-button-link {
  display: flex;
  text-align: center;
  line-height: 44px;
  justify-content: center;
}
.button-decorated-part {
  display: inline-block;
  width: 44px;
  height: 44px;
  background-color: #f1d430;
  color: #222222;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-49%);
  left: -1px;
}
.button-decorated-part .fas {
  line-height: 44px;
}
.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #222222;
  text-transform: uppercase;
  margin-bottom: 120px;
}
.form-input-label {
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 14px;
  color: #444444;
}
.form-input-field {
  padding: 0;
  width: 100%;
  height: 44px;
  border: 1px solid #e4e4e4;
  border-radius: 22px;
  text-indent: 22px;
}
.form-message-textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 22px;
  text-indent: 22px;
  padding: 5px 10px;
}
.form-submit-button {
  width: 100%;
  max-width: 440px;
  height: 44px;
  text-transform: uppercase;
  background-color: #222222;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 22px;
  text-align: center;
  align-self: center;
  transition: all 0.5s ease;
}
.form-submit-button:hover {
  background-color: #f1d430;
  color: #222222;
}
.yellow-color-text {
  color: #f1d430;
}
.thin-weight-text {
  font-weight: 300;
}
.page-footer {
  flex-shrink: none;
  background-color: #222222;
  color: #ffffff;
  padding: 50px 0;
  position: relative;
}
.modal-content {
  border-radius: 8px;
}

/*HEADER STYLES*/
.main-menu {
  width: 100%;
  position: absolute;
  z-index: 100;
  border-top: 1px solid transparent;
}
.main-menu.main-menu-inner-pages {
  background-color: #222222;
  border-top: 1px solid #f1d430;
}
.main-menu.scrolled-main-menu {
  position: fixed;
  background-color: #222222;
  border-top: 1px solid #f1d430;
}
.nav-item {
  position: relative;
}
.nav-item:after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #555555;
  top: 50%;
  transform: translateY(-50%);
  left: -2px;
}
.nav-item:first-child:after {
  display: none;
}
.navbar-brand {
  margin-right: 0;
}
.main-logo {
  width: 152px;
}
.main-menu .navbar-main {
  padding: 40px 0;
}
.main-menu.scrolled-main-menu .navbar-main {
  padding: 24px 0;
}
.main-menu.scrolled-main-menu .main-logo {
  width: 100px;
}
.main-menu .menu-toggler {
  position: absolute;
  width: 27px;
  height: 28px;
  background: url("../img/icon_menu_toggle_active.svg") no-repeat center;
  border-radius: 0;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  z-index: 10;
}
.main-menu .menu-toggler.collapsed {
  background: url("../img/icon_menu_toggle_default.svg") no-repeat center;
}
.main-menu .nav-item .nav-link {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #aaaaaa;
  transition: all 0.5s ease;
  padding-left: 20px;
  padding-right: 20px;
}
.main-menu .nav-link:after {
  content: "";
  display: block;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.main-menu .nav-link:hover {
  color: #ffffff;
  cursor: pointer;
}
.main-menu .nav-link:hover:after {
  border-bottom: 1px solid #f1d430;
}
.before-logo-nav .nav-item:first-child .nav-link {
  padding-left: 0;
}
.after-logo-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}

/*INTRODUCTION SECTION*/
.introduction-section {
  height: 1020px;
  background-size: cover;
  background: url("../img/img_bg_top_section.jpg") center no-repeat;
  padding-top: 300px;
  color: #888888;
}
.player-wrap {
  padding-right: 40px;
  text-align: right;
}
.player-wrap:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  border-right: 2px solid #888888;
  top: 0;
  right: 0;
}
.work-form-wrap {
  padding-left: 40px;
  text-align: left;
}
.user-actions {
  margin-bottom: 90px;
}
.demo-block {
  padding-top: 24px;
  padding-bottom: 124px;
}
.demo-block-heading {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.decorated-text {
  width: 100%;
  height: 67px;
  margin-bottom: 38px;
}
.block-description {
  font-size: 18px;
  margin-bottom: 32px;
}
.audio-player {
  background: url("../img/decor_equalizer_bar.svg") no-repeat center #222222;
  background-size: cover;
  color: #ffffff;
  border-radius: 23px;
  text-align: center;
  display: flex;
  width: 100%;
  box-shadow: 5px 9px 10px rgba(0, 1, 0, 0.09);
}
.audio-player #play-btn {
  background: #f1d430;
  background-size: cover;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  width: 44px;
  height: 44px;
  transform: translateX(-1px);
  position: relative;
  border: none;
}
.audio-player #play-btn:after {
  content: "PLAY";
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
}
.audio-player #play-btn.pause:after {
  content: "PAUSE";
}
.audio-player #play-btn .audio-btn-label {
  color: #222222;
}
.user-actions-wrap {
  padding-left: 30px;
}
.buttons-wrap {
  display: flex;
  flex-direction: row;
}
.buttons-wrap .half-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.half-wrap.first-half-wrap {
  padding-right: 6px;
}
.half-wrap.second-half-wrap {
  padding-left: 6px;
}
.partner_slider {
  margin-bottom: 40px;
}
.partner_slider_container {
  width: 90%;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.partner_slider_container:before,
.partner_slider_container:after {
  position: absolute;
  top: 0;
  width: 50px;
  height: 40px;
  content: "";
  z-index: 10;
}
.partner_slider_container:before {
  left: 0;
  background: linear-gradient(to right, #222 20%, transparent 70%);
}
.partner_slider_container:after {
  right: 0;
  background: linear-gradient(to left, #222 20%, transparent 70%);
}
.partner_item {
  height: 40px;
}
.partner_item img {
  max-width: 100%;
}
.partner_nav_block {
  display: flex;
  justify-content: center;
  position: relative;
}
.partner_nav_block:after {
  content: "";
  display: block;
  position: absolute;
  border-right: 2px solid #888888;
  top: 0;
  height: 100%;
}
.partner_nav {
  margin: 0 10px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.partner_nav i {
  color: #e5e5e5;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.partner_nav:hover i {
  color: #f1d430;
}

/*WHAT YOU CAN EXPACT SECTION*/
.expact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.expact-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #222222;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.expact-img-wrap img {
  width: 100%;
}
.expaction-description {
  width: 260px;
  font-size: 18px;
  font-weight: 300;
}

/*HOW IT WORKS SECTION*/
.how-it-works-section {
  background-color: #ffffff;
}
.action-item {
  display: flex;
  margin-bottom: 40px;
}
.action-item-background {
  width: 75px;
  min-width: 75px;
  height: 75px;
  display: flex;
  font-size: 24px;
  font-weight: 900;
  border-radius: 25px;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  color: #f1d430;
  margin-right: 30px;
}
.action-item-background.first-action-item-background {
  background: url("../img/img_decor_step1.png") no-repeat center;
  background-size: cover;
}
.action-item-background.second-action-item-background {
  background: url("../img/img_decor_step2.png") no-repeat center;
  background-size: cover;
}
.action-item-background.third-action-item-background {
  background: url("../img/img_decor_step3.png") no-repeat center;
  background-size: cover;
}
.action-item-description {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  width: 250px;
}
.video-wrap,
.video-screen {
  position: relative;
  line-height: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.video-wrap {
  box-shadow: 0px 80px 90px -80px rgba(68, 68, 68, 1);
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../img/thumbnail_video1_.png") no-repeat center;
  background-size: cover;
  opacity: 0.8;
  z-index: 1;
  border-radius: 20px;
}
.video-overlay.video-ovelay-no-img {
  background-image: none;
  background-color: #222222;
}
.video-drum-el {
  width: 100%;
  height: auto;
}
.video-wrap .player-button {
  width: 80px;
  height: 80px;
  border: none;
  background-color: #f1d430;
  padding: 0;
  border-radius: 50%;
  font-size: 24px;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-wrap .player-button.player-button-hide {
  display: none;
}

/*SUGGEST SERVICE SECTION*/
.suggest-service-section {
  background-color: #f1d430;
  padding-top: 220px;
}
.suggest-service-container {
  padding: 0 65px;
}
.suggest-service-decorated-heading {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.suggest-service-text {
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: #444444;
  margin-bottom: 110px;
}
.suggest-service-section .half-wrap.first-half-wrap {
  align-items: flex-end;
}
.suggest-service-section .half-wrap.second-half-wrap {
  align-items: flex-start;
}
.suggest-service-button {
  width: 258px;
}
.suggest-service-button:hover {
  background-color: #333333;
  color: #f1d430;
}
.suggest-service-button .button-decorated-part {
  color: #ffffff;
  background-color: #222222;
}

/*EQUIPMENT SECTION*/
.equipment-section {
  background-color: #ffffff;
}
.equipment-section-title {
  margin-bottom: 45px;
}
.equipment-tabs {
  justify-content: center;
  margin-bottom: 50px;
  border-bottom: 1px solid transparent;
}
.equipment-item.nav-item:after {
  width: 1px;
  height: 20px;
  background-color: transparent;
  border-right: 1px solid #aaaaaa;
}
.equipment-tabs .equipment-link {
  color: #222222;
  font-size: 18px;
  position: relative;
}
.equipment-tabs .equipment-link:hover {
  border: 1px solid transparent;
}
.equipment-tabs .equipment-link.active {
  background-color: transparent;
  border: 1px solid transparent;
  font-weight: bold;
  color: #222222;
}
.equipment-tabs .equipment-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid transparent;
}
.equipment-tabs .equipment-link.active:after {
  border-bottom: 2px solid#f1d430;
}
.equipment-description-block {
  flex-direction: column;
  align-self: center;
}
.equipment-image-block {
  padding-right: 30px;
}
.equipment-image-wrap {
  box-shadow: 0px 80px 90px -80px rgba(68, 68, 68, 1);
  border-radius: 20px;
  overflow: hidden;
}
.equipment-image {
  width: 100%;
}
.equipment-partner-logo {
  margin-bottom: 20px;
}
.equipment-heading {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}
.equipment-text-wrap {
  margin-bottom: 30px;
}
.equipment-description-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.equipment-parameters {
  width: 100%;
}
.equipment-btn {
  border: none;
  background-color: transparent;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Titillium Web", sans-serif;
}
.btn-prev-equipment-item {
  position: relative;
}
.btn-prev-equipment-item:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  border-right: 1px solid #cccccc;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2px;
}
.equipment-btn-text {
  padding: 0 5px;
}

/*FAQ SECTION*/
.tabs_wrapper {
  text-align: center;
  margin: 0 auto;
  background: transparent;
  display: flex;
  justify-content: space-between;
}
.faq-tabs {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  vertical-align: top;
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-questions {
  cursor: pointer;
  padding: 0px 30px;
  height: 44px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  font-size: 14px;
  justify-content: center;
  font-weight: 300;
  color: #222222;
  text-align: left;
  transition: all 0.5s ease;
  box-shadow: none;
}
.faq-bold-text.font-weight-bold {
  color: #aaaaaa;
  transition: all 0.5s ease;
}
.faq-questions:hover .faq-bold-text.font-weight-bold {
  color: #222222;
}
.faq-questions.active {
  background-color: #f1d430;
  transition: all 0.5s ease;
  box-shadow: 0px 6px 20px 0px rgba(170, 170, 170, 0.8);
}
.tab_container {
  display: flex;
  flex-direction: column;
  width: 50%;
  vertical-align: top;
  position: relative;
  z-index: 20;
  text-align: left;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 6px 20px 0px rgba(170, 170, 170, 0.8);
}
.tab_content {
  padding: 20px;
  height: 100%;
  display: none;
}
.tab-faq-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.tab_drawer_heading {
  display: none;
}
.faq-paragraph-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #444444;
  margin-bottom: 25px;
}
.faq-paragraph-text:last-child {
  margin-bottom: 0;
}

/*GALLERY STYLES*/
.gallery-section {
  background-color: #ffffff;
}
.gallery-thumbnail {
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 25px;
  box-shadow: 0px 6px 20px 0px rgba(170, 170, 170, 0.8);
}
.gallery-thumbnail .button-decorated-part.gallery-zoom-decor {
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  width: 52px;
  height: 52px;
  font-size: 22px;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  color: transparent;
  transition: all 0.5s ease;
}
.button-decorated-part.gallery-zoom-decor .fas {
  line-height: 55px;
}
.gallery-thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 22px;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}
.gallery-thumbnail:hover:after {
  background-color: rgba(0, 0, 0, 0);
}
.gallery-thumbnail:hover .button-decorated-part.gallery-zoom-decor {
  visibility: visible;
  background-color: #f1d430;
  color: #222222;
}
.gallery-thumbnail .img-thumbnail {
  background-color: transparent;
  border: none;
  padding: 0;
}

/*CONTACTS STYLES*/
.contacts-section {
  padding-bottom: 120px;
}
.section-title.section-contact-title {
  margin-bottom: 100px;
}
.contact-form-wrap {
  margin-bottom: 80px;
}
.contact-main-form {
  display: flex;
  flex-direction: column;
}
.contacts-user-credentials {
  margin-bottom: 40px;
}
.contact-input-field-wrap {
  display: flex;
  flex-direction: column;
  padding-left: 5px;
  padding-right: 5px;
}
.contact-input-field-wrap:first-child {
  padding-left: 15px;
  padding-right: 5px;
}
.contact-input-field-wrap:last-child {
  padding-left: 5px;
  padding-right: 15px;
}
.contact-textarea-wrap {
  display: flex;
  flex-direction: column;
}
.contact-main-form-message {
  min-height: 180px;
  margin-bottom: 20px;
}
.contact-map-image {
  width: 100%;
}

/*TEXT CONTENT SECTION*/
.text-content-section {
  padding-top: 200px;
  padding-bottom: 100px;
}
.text-content-section .section-title {
  margin-bottom: 70px;
}
.text-section-small-headings {
  font-weight: bold;
  margin-bottom: 0;
}
.text-section-paragraph {
  font-size: 18px;
  text-align: justify;
}
.text-section-paragraph.grouped-text-paragraph {
  display: flex;
  flex-direction: column;
}
.paragraph-ordered-list {
  list-style-type: lower-latin;
  font-size: 18px;
}
.ordered-list-item {
  position: relative;
}
.ordered-list-item::before {
  content: ") ";
}

/*FOOTER STYLES*/
.footer-buttons-block {
  display: flex;
  position: absolute;
  top: -22px;
  right: 40px;
}
.footer-button,
.footer-button:hover {
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  margin: 0 2px;
  transition: all 0.5s ease;
}
.footer-button:hover {
  transform: translateY(-5px);
}
.footer-button.footer-button-instagram {
  background-color: #d10869;
}
.footer-button.footer-button-twitter {
  background-color: #1da1f3;
}
.footer-button.footer-button-facebook {
  background-color: #3b5998;
}
.footer-button.footer-button-mail {
  background-color: #555555;
}
.footer-button.footer-scroll-top {
  background-color: #1f1f1f;
  margin-right: 0;
  bottom: 104px;
  right: 40px;
  z-index: 20;
}
.footer-button.footer-scroll-top:hover {
  background-color: #f1d430;
  color: #1f1f1f;
  transform: translateY(0);
}
.footer-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer-menu-item {
  text-transform: uppercase;
  font-size: 18px;
  padding: 0 20px;
  position: relative;
}
.footer-menu-item:first-child {
  padding-left: 0;
}
.footer-menu-item:last-child {
  padding-right: 0;
}
.footer-menu-item .footer-link {
  font-weight: bold;
  color: #f1d430;
}
.footer-menu-item .footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

/*MODAL GALLERY*/
.ekko-lightbox-container {
  border-radius: 20px;
  overflow: hidden;
}
.ekko-lightbox .modal-content {
  border: none;
  background-color: transparent;
}
.ekko-lightbox .modal-header {
  padding: 0;
  margin: 0;
  border: none;
}
.ekko-lightbox .modal-header .close {
  position: absolute;
  top: -15px;
  right: 15px;
  color: #ffffff;
  font-size: 40px;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}
.ekko-lightbox .modal-title {
  display: none;
}
.ekko-lightbox-item {
  overflow: hidden;
  border-radius: 20px;
}

/*MODAL WORK WITH ME*/
.work-with-me-dialog {
  width: 95%;
  max-width: 1080px;
}
.work-with-me-body {
  padding: 80px;
  background-color: #f8f8f8;
  border-radius: 8px;
}
.work-with-me-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
  border-radius: 8px;
  transition: all 0.5s ease;
}
.work-with-me-close:hover {
  background-color: #ffffff;
}
.work-with-me-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bold;
  color: #222222;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 70px;
}
.work-with-me-form {
  display: flex;
  flex-direction: column;
}
.form-work-field {
  flex-direction: column;
  margin-bottom: 30px;
}
.form-work-files-upload .form-row.form-inline {
  margin-bottom: 30px;
}
.form-work-files-upload .hide-button {
  display: none;
}
.button-upload-control {
  color: #222222;
  background-color: #eeeeee;
}
.button-upload-control:hover {
  color: #ffffff;
  background-color: #282828;
}
.button-upload-control .button-decorated-part {
  transform: translateY(-50%);
  font-size: 14px;
  background-color: #dddddd;
  color: #222222;
  transition: all 0.5s ease;
}
.button-upload-control:hover .button-decorated-part {
  background-color: #121212;
  color: #ffffff;
}
.form-inline .form-control.custom-file-upload {
  line-height: 44px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: flex;
  border: none;
}
.custom-file-upload-mask {
  position: relative;
  text-align: center;
  padding-left: 0;
  background-color: #f1d430;
  color: #444444;
  transition: all 0.5s ease;
}
.wrap-input-container:hover .custom-file-upload-mask {
  background-color: #e8be2d;
}
.custom-file-upload-mask .button-decorated-part {
  background-color: #e8be2d;
  color: #222222;
  transition: all 0.5s ease;
}
.custom-file-upload-mask .fas {
  position: absolute;
  left: -8px;
}
.wrap-input-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.wrap-input-container:hover .custom-file-upload-mask {
  background-color: #e8be2d;
}
.wrap-input-container:hover .custom-file-upload-mask .button-decorated-part {
  background-color: #222222;
  color: #e8be2d;
  transition: all 0.5s ease;
}
.wrap-input-container input {
  position: absolute;
  font-size: 400px;
  opacity: 0;
  z-index: 1;
  top: 0;
  left: 0;
}
.work-message-textarea {
  min-height: 140px;
}
.work-form-label {
  font-size: 14px;
  padding-left: 30px;
  margin-bottom: 10px;
}

/*MEDIA QUERY*/
@media (max-width: 992px) {
  /*GENERAL STYLES*/
  .container.container-paddings {
    padding-left: 15px;
    padding-right: 15px;
  }
  .form-input-field {
    margin-bottom: 20px;
  }
  .section-title {
    margin-bottom: 70px;
  }

  /*HEADER STYLES*/
  .container.main-menu-container {
    margin: 0;
    max-width: 100%;
  }
  .main-menu,
  .main-menu.scrolled-main-menu {
    background-color: #222222;
    border-top: 1px solid #f1d430;
  }
  .main-menu .navbar-main {
    justify-content: start;
    padding: 24px 0;
  }
  .logo-and-toogle-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
  }
  .main-logo {
    width: 100px;
  }
  .nav-item:after {
    display: none;
  }
  .main-menu .nav-item .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
  .main-menu .nav-link:after {
    display: none;
  }

  /*INTRODUCTION STYLES*/
  .introduction-section {
    padding-top: 140px;
  }
  .demo-block:first-child {
    padding-bottom: 50px;
  }
  .demo-block:last-child {
    padding-top: 0;
    padding-bottom: 0;
  }
  .demo-block-heading,
  .decorated-text {
    margin-bottom: 18px;
  }
  .player-wrap {
    padding-right: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .player-wrap:after {
    display: none;
  }
  .audio-player {
    max-width: 300px;
    flex-direction: column;
  }
  .user-actions-wrap {
    padding-left: 15px;
    text-align: center;
  }
  .user-actions {
    margin-bottom: 80px;
  }
  .buttons-wrap {
    flex-direction: column;
  }
  .buttons-wrap .half-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
  .half-wrap.first-half-wrap,
  .half-wrap.second-half-wrap {
    padding: 0;
  }
  .half-wrap.second-half-wrap {
    margin-bottom: 0;
  }
  .general-button-demo-block {
    max-width: 300px;
  }

  /*HOW IT WORKS STYLES*/
  .action-item:last-child {
    margin-bottom: 80px;
  }

  /*SUGGEST SERVICE STYLES*/
  .suggest-service-container {
    padding: 0 15px;
  }
  .suggest-service-text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .suggest-service-section .half-wrap.first-half-wrap,
  .suggest-service-section .half-wrap.second-half-wrap {
    align-items: center;
  }

  /*EQUIPMENT STYLES*/
  .tabs_wrapper {
    flex-direction: column;
  }
  .faq-tabs {
    display: none;
  }
  .tab_container {
    width: 100%;
    padding: 0;
    border-top: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    text-align: center;
  }
  .tab_drawer_heading {
    background-color: transparent;
    color: #222222;
    margin-bottom: 20px;
    padding: 0 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    min-height: 44px;
    justify-content: center;
  }
  .tab_drawer_heading:hover .faq-bold-text.font-weight-bold {
    color: #222222;
  }
  .d_active {
    background-color: #f1d430;
  }
  .tab_content {
    padding: 40px 20px;
    height: 100%;
    display: none;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 6px 20px 0px rgba(170, 170, 170, 0.8);
  }
  .equipment-image-block {
    padding-right: 15px;
    margin-bottom: 80px;
  }

  /*CONTACT STYLES*/
  .section-title.section-contact-title {
    margin-bottom: 70px;
  }
  .contact-input-field-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact-input-field-wrap:first-child {
    padding-right: 15px;
  }
  .contact-input-field-wrap:last-child {
    padding-left: 15px;
  }
  .contact-input-field-wrap:last-child .form-input-field {
    margin-bottom: 0;
  }

  /*FOOTER STYLES*/
  .footer-button.footer-scroll-top {
    bottom: 183px;
  }
  .footer-menu-items {
    flex-direction: column;
    align-items: center;
  }
  .footer-menu-item {
    padding: 0;
  }

  /*WORK WITH ME MODAL*/
  .work-with-me-body {
    padding: 80px 20px;
  }
  .form-work-files-upload .form-row.form-inline .form-input-field,
  .form-work-files-upload .form-row.form-inline .custom-file-upload {
    margin-bottom: 30px;
  }
  .work-with-me-body .form-input-field {
    margin-bottom: 0;
  }
  .upload-label-hide-on-mobile {
    display: none;
  }
}
