/*!*******************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/accordion-only/accordion-only.scss ***!
  \*******************************************************************************************************************************************************************************************************/
accordion-only {
  --hover-transition-duration: .2s;
  --expand-transition-duration: .5s;
  --gap: 20px;
  background: var(--bg-color);
}
accordion-only .subtitle {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
accordion-only .flex-wrapper {
  display: flex;
  gap: var(--gap);
}
accordion-only .accordion-column {
  width: calc(50% - var(--gap) / 2);
}
accordion-only .accordion-column > *:not(:last-child) {
  margin-bottom: 20px;
}
accordion-only .primary-block {
  width: 100%;
  background: var(--block-primary-bg-color);
  border-radius: var(--block-primary-border-radius);
  box-shadow: var(--block-primary-box-shadow);
  cursor: pointer;
  transition: all var(--hover-transition-duration) ease;
}
accordion-only .primary-block:hover, accordion-only .primary-block.expand {
  background-color: var(--block-primary-bg-hover-color);
}
accordion-only .primary-block .visible-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
accordion-only .primary-block .visible-content .title {
  margin-bottom: 0;
  transition: color var(--hover-transition-duration) ease;
}
accordion-only .primary-block .visible-content .icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
accordion-only .primary-block .visible-content .icon svg {
  width: 16px;
  height: auto;
  transition: transform var(--hover-transition-duration) linear;
}
accordion-only .primary-block .visible-content .icon svg path {
  stroke: var(--h-color);
  transition: stroke var(--hover-transition-duration) ease;
}
accordion-only .primary-block .expandable-wrapper {
  max-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: max-height var(--expand-transition-duration) ease;
}
accordion-only .primary-block .expandable-wrapper .content {
  padding: 20px 15px;
}
accordion-only .primary-block .expandable-wrapper .content .text, accordion-only .primary-block .expandable-wrapper .content li {
  font-size: var(--text-font-size);
  font-weight: var(--text-font-weight);
  color: var(--block-primary-text-color);
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: inherit;
}
accordion-only .primary-block .expandable-wrapper .content ul {
  padding-top: 10px;
  padding-left: 18px;
  list-style: disc;
}
accordion-only .primary-block .expandable-wrapper .content ol {
  padding-top: 10px;
  padding-left: 18px;
  list-style: decimal;
}
accordion-only .primary-block.expand .expandable-wrapper {
  max-height: 200px;
}
accordion-only .primary-block.expand .icon svg {
  transform: rotate(180deg);
}
accordion-only .primary-block.overflow .expandable-wrapper {
  overflow: auto;
}
accordion-only .primary-block:hover .title, accordion-only .primary-block.expand .title {
  color: var(--block-primary-accent-color);
}
accordion-only .primary-block:hover .icon svg path, accordion-only .primary-block.expand .icon svg path {
  stroke: var(--block-primary-accent-color);
}
@media screen and (max-width: 800px) {
  accordion-only .flex-wrapper {
    flex-direction: column;
  }
  accordion-only .accordion-column {
    width: 100%;
  }
}
/*!*************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/breadcrumbs/breadcrumbs.scss ***!
  \*************************************************************************************************************************************************************************************************/
breadcrumbs-component .breadcrumbs_list {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
breadcrumbs-component .breadcrumbs_list li {
  margin-right: 31px;
  position: relative;
  font-size: 16px;
  line-height: 100%;
  font-weight: 300;
  height: 100%;
  white-space: nowrap;
}
breadcrumbs-component .breadcrumbs_list li a {
  display: flex;
  align-items: center;
  color: var(--breadcrumbsColor);
  position: relative;
}
breadcrumbs-component .breadcrumbs_list li a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: var(--breadcrumbsColor);
  transition: all 0.2s ease;
}
breadcrumbs-component .breadcrumbs_list li a:hover {
  color: var(--breadcrumbsAccentColor);
}
breadcrumbs-component .breadcrumbs_list li a:hover::after {
  width: 100%;
  background-color: var(--breadcrumbsAccentColor);
}
breadcrumbs-component .breadcrumbs_list li:last-child {
  color: var(--breadcrumbsLastColor);
  margin-right: 0;
  max-width: 80%;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
}
breadcrumbs-component .breadcrumbs_list li:last-child::after {
  content: none;
}
breadcrumbs-component .breadcrumbs_list li::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -17px;
  width: 6px;
  height: 6px;
  background-repeat: no-repeat;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--breadcrumbsColor);
  transform: rotate(-45deg);
}

article breadcrumbs-component .breadcrumbs_list li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
}

@media screen and (max-width: 1300px) {
  breadcrumbs-component {
    padding-top: 30px;
    display: block;
  }
  .service_banner_left breadcrumbs-component + h1 {
    margin-top: 0;
  }
}
@media screen and (max-width: 1080px) {
  article breadcrumbs-component .breadcrumbs_list li:last-child {
    max-width: 280px;
  }
}
@media screen and (max-width: 990px) {
  article breadcrumbs-component .breadcrumbs_list li:last-child {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  breadcrumbs-component {
    padding-top: 15px;
  }
  breadcrumbs-component .breadcrumbs_list {
    margin-bottom: 15px;
  }
  breadcrumbs-component .breadcrumbs_list li {
    margin-right: 21px;
    font-size: 14px;
  }
  breadcrumbs-component .breadcrumbs_list li::after {
    right: -11px;
  }
}
@media screen and (max-width: 420px) {
  breadcrumbs-component .breadcrumbs_list li {
    font-size: 12px;
  }
  breadcrumbs-component .breadcrumbs_list li::after {
    right: -13px;
  }
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/button-component/button-component.scss ***!
  \***********************************************************************************************************************************************************************************************************/
button-component .btn {
  color: var(--button-primary-normal-font-color);
  border-radius: var(--button-primary-border-radius);
  border: 1px solid;
  background-color: var(--button-primary-normal-fill-color);
  border-color: var(--button-primary-normal-border-color);
  padding: 20px 25px;
  cursor: pointer;
  font-weight: var(--button-primary-font-weight);
  transition: all 0.2s ease;
}
button-component .btn:hover {
  color: var(--button-primary-hover-font-color);
  background-color: var(--button-primary-hover-fill-color);
  border-color: var(--button-primary-hover-border-color);
}
button-component .btn.empty {
  color: var(--button-secondary-normal-font-color);
  border-radius: var(--button-secondary-border-radius);
  background-color: var(--button-secondary-normal-fill-color);
  border-color: var(--button-secondary-normal-border-color);
  font-weight: var(--button-secondary-font-weight);
}
button-component .btn.empty:hover {
  color: var(--button-secondary-hover-font-color);
  background-color: var(--button-secondary-hover-fill-color);
  border-color: var(--button-secondary-hover-border-color);
}
button-component a {
  display: block;
}
/*!*****************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/cookies-popup/cookies-popup.scss ***!
  \*****************************************************************************************************************************************************************************************************/
cookies-popup {
  display: none;
}
cookies-popup.show {
  display: block;
  background-color: #10182F;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 1s ease;
}
cookies-popup.show.hide {
  bottom: -100%;
}
cookies-popup.show .cross {
  cursor: pointer;
  margin-left: 15px;
}
cookies-popup.show .flex_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
cookies-popup.show .text {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
}
cookies-popup.show .text a {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
  transition: all 0.2s ease;
}
cookies-popup.show .text a:hover {
  color: #00BFD6;
}
cookies-popup.show .flex-wrapper {
  gap: 15px;
  align-items: center;
}
cookies-popup.show .text-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}
cookies-popup.show .text-wrapper .text.mobile {
  display: none;
}
cookies-popup.show .text-wrapper a {
  font-size: 18px;
  text-decoration: none;
}
cookies-popup.show .text-wrapper a:hover {
  color: #D9D9D9;
}
cookies-popup.show .text-wrapper svg {
  min-width: 60px;
}
cookies-popup.show .btn {
  font-size: 18px;
  cursor: pointer;
  padding: 10px 25px;
  color: #10182F;
  border-radius: 5px;
  background-color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease-in;
}
cookies-popup.show .btn:hover {
  color: #fff;
  background-color: #10182F;
  border-color: #fff;
}
cookies-popup.show .btn.empty {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
cookies-popup.show .btn.empty:hover {
  color: #10182F;
  background-color: #fff;
  border-color: #10182F;
}

@media screen and (max-width: 950px) {
  cookies-popup.show .flex_wrap .text.desktop {
    display: none;
  }
  cookies-popup.show .flex_wrap .text.mobile {
    display: block;
  }
}
@media screen and (max-width: 675px) {
  cookies-popup.show .container {
    padding: 0 15px;
  }
  cookies-popup.show .btn {
    padding: 8px 20px;
  }
}
@media screen and (max-width: 620px) {
  cookies-popup.show .flex_wrap {
    flex-direction: column;
    gap: 15px;
  }
  cookies-popup.show .text-wrapper {
    justify-content: center;
    width: 100%;
    gap: 15px;
  }
}
/*!*********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/edit-mode/edit-mode.scss ***!
  \*********************************************************************************************************************************************************************************************/
body.edit-mode-enabled [gh-id]:hover {
  outline: 1px solid #2b61fa;
}

.tox-tinymce-inline .tox-editor-header {
  position: absolute !important;
  top: -15px !important;
  left: 0;
  z-index: 1000 !important;
  width: max-content;
}

edit-mode {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
edit-mode .edit-mode-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
edit-mode .edit-mode-switch {
  height: 0;
  width: 0;
  visibility: hidden;
}
edit-mode .edit-mode-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 30px;
  background: #dbdbdb;
  display: block;
  border-radius: 100px;
  position: relative;
}
edit-mode .edit-mode-label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
edit-mode .edit-mode-switch:checked + .edit-mode-label {
  background: #2b61fa;
}
edit-mode .edit-mode-switch:checked + .edit-mode-label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
edit-mode .edit-mode-label:active:after {
  width: 36px;
}
edit-mode p {
  font-size: 24px;
  color: #fff;
}
/*!******************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/edit-mode/gudhub-login-popup.scss ***!
  \******************************************************************************************************************************************************************************************************/
.gudhub-login-popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
.gudhub-login-popup__bg.active {
  display: flex;
}
.gudhub-login-popup__bg gudhub-login form {
  background: #ffffff;
  margin-top: 0px;
  padding: 15px;
  font-family: Helvetica;
}
.gudhub-login-popup__bg gudhub-login form h2 {
  font-family: Helvetica;
  color: #2b60fa;
}
.gudhub-login-popup__bg gudhub-login form .change-auth-form {
  display: none;
}
.gudhub-login-popup__bg gudhub-login form .auth__button {
  background: #2b60fa;
  font-family: Helvetica;
}
.gudhub-login-popup__bg gudhub-login form .login-form__item label {
  font-family: Helvetica;
}
.gudhub-login-popup__bg gudhub-login form .login-form__item input {
  font-family: Helvetica;
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/edit-mode/edit-mode-notifications.scss ***!
  \***********************************************************************************************************************************************************************************************************/
edit-mode-notifications {
  position: fixed;
  left: 25px;
  top: 25px;
  z-index: 99999;
}
edit-mode-notifications .notification {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  font-family: Helvetica;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}
/*!*************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/popup/popup.scss ***!
  \*************************************************************************************************************************************************************************************/
popup-container .background_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
popup-container input, popup-container textarea {
  border: 1px solid #05183A !important;
}
popup-container .popup_top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  right: 15px;
  top: 15px;
  margin-bottom: 15px;
  z-index: 2;
}
popup-container .popup_top .close {
  cursor: pointer;
}
popup-container .popup {
  background-color: #fff;
  border-radius: var(--block-secondary-border-radius);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  border: 1px solid #efefef;
  margin-top: 200px;
  transition: all 0.3s ease;
}
popup-container.active .background_shadow {
  opacity: 1;
  pointer-events: all;
}
popup-container.active .popup {
  margin-top: 0;
}
popup-container[data-position=bottom-right] .popup {
  width: 360px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 15px;
}
@media screen and (max-width: 650px) {
  popup-container[data-position=bottom-right] .popup {
    right: 50%;
    transform: translate(50%);
  }
}
popup-container[data-no-bg-shadow] .background_shadow {
  height: 0;
  top: 100%;
}

@media screen and (max-width: 400px) {
  popup-container .popup {
    width: 95%;
  }
}
/*!****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/custom-form/custom-form.scss ***!
  \****************************************************************************************************************************************************************************/
@charset "UTF-8";
get-in-touch-popup custom-form {
  background-color: transparent;
}

custom-form .get-in-touch-form {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: var(--block-primary-bg-color);
  display: block;
  padding: 30px;
  border-radius: var(--block-primary-border-radius);
}
custom-form .get-in-touch-form .like_title {
  font-size: var(--h3-font-size);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--block-primary-h-color);
  margin-bottom: 20px;
}
custom-form .get-in-touch-form .subtitle {
  font-size: var(--text-font-size);
  font-weight: var(--text-font-weight);
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--subtitle-color);
  margin-bottom: 20px;
}
custom-form .get-in-touch-form .col-1 {
  width: 8.3333333333%;
}
custom-form .get-in-touch-form .col-2 {
  width: 16.6666666667%;
}
custom-form .get-in-touch-form .col-3 {
  width: 25%;
}
custom-form .get-in-touch-form .col-4 {
  width: 33.3333333333%;
}
custom-form .get-in-touch-form .col-5 {
  width: 41.6666666667%;
}
custom-form .get-in-touch-form .col-6 {
  width: 50%;
}
custom-form .get-in-touch-form .col-7 {
  width: 58.3333333333%;
}
custom-form .get-in-touch-form .col-8 {
  width: 66.6666666667%;
}
custom-form .get-in-touch-form .col-9 {
  width: 75%;
}
custom-form .get-in-touch-form .col-10 {
  width: 83.3333333333%;
}
custom-form .get-in-touch-form .col-11 {
  width: 91.6666666667%;
}
custom-form .get-in-touch-form .col-12 {
  width: 100%;
}
custom-form .get-in-touch-form form {
  width: 100%;
  max-width: 950px;
  margin-right: 24px;
}
custom-form .get-in-touch-form form .checkbox_wrap {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  padding: 8px;
}
custom-form .get-in-touch-form form .checkbox_wrap input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #696767;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #fff;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form .checkbox_wrap input[type=checkbox]:checked {
  background-color: #B3E920;
  border-color: #B3E920;
}
custom-form .get-in-touch-form form .checkbox_wrap input[type=checkbox]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 3px;
}
custom-form .get-in-touch-form form .checkbox_wrap label {
  font-size: 12px;
  cursor: pointer;
  color: #696767;
}
custom-form .get-in-touch-form form .btn_wrapper {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
custom-form .get-in-touch-form form .btn_wrapper .btn {
  font-size: 16px;
}
custom-form .get-in-touch-form form .btn_wrapper .btn:disabled {
  opacity: 0;
}
custom-form .get-in-touch-form form .form_wrap {
  display: flex;
  flex-wrap: wrap;
}
custom-form .get-in-touch-form form .input-wrap {
  position: relative;
  padding: 8px;
  flex: 0 0 auto;
}
custom-form .get-in-touch-form form input {
  font-family: var(--font-family);
  outline: none;
  border-radius: var(--input-border-radius);
  font-size: 14px;
  width: 100%;
  height: 100%;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  padding: 7px 17px;
  color: var(--input-text-color);
  height: 50px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form input:hover, custom-form .get-in-touch-form form input:focus {
  border-color: var(--input-active-border-color);
}
custom-form .get-in-touch-form form input::placeholder {
  color: var(--input-placeholder-color);
}
custom-form .get-in-touch-form form input:-webkit-autofill, custom-form .get-in-touch-form form input:-webkit-autofill:hover, custom-form .get-in-touch-form form input:-webkit-autofill:focus, custom-form .get-in-touch-form form input:-webkit-autofill:active {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-text-fill-color: var(--input-text-color);
}
custom-form .get-in-touch-form form input.error + .email-error, custom-form .get-in-touch-form form input.error + .phone-error {
  color: #FF7D7D;
}
custom-form .get-in-touch-form form .email-error,
custom-form .get-in-touch-form form .phone-error {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
custom-form .get-in-touch-form form span {
  display: block;
  position: absolute;
  left: 10px;
  bottom: -2px;
  color: transparent;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form textarea {
  width: 100%;
  font-family: var(--font-family);
  height: 145px;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  padding: 7px 17px;
  color: var(--input-text-color);
  outline: none;
  border-radius: var(--input-border-radius);
  margin-bottom: 10px;
  resize: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 36px;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form textarea::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 36px;
  color: var(--input-placeholder-color);
}
custom-form .get-in-touch-form form textarea:hover {
  border-color: var(--input-active-border-color);
}
custom-form .get-in-touch-form form .success_text {
  position: relative;
  top: -50px;
  color: transparent;
  transition: all 0.2s ease;
  display: none;
}
custom-form .get-in-touch-form form.success .success_text {
  display: block;
  top: -12px;
  color: green;
}
custom-form .get-in-touch-form .overflow {
  opacity: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: calc(var(--block-primary-border-radius) - 5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: opacity 0.5s ease;
}
custom-form .get-in-touch-form .overflow .icon_wrapper {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  border-bottom: solid 4px var(--accent-color);
}
custom-form .get-in-touch-form .overflow .icon_wrapper .icon {
  width: 150px;
}
custom-form .get-in-touch-form .overflow .icon_wrapper .icon svg {
  width: 100%;
  height: auto;
}
custom-form .get-in-touch-form .overflow .middle {
  max-width: 340px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
custom-form .get-in-touch-form .overflow .middle .bold {
  font-size: clamp(50px, 5vw, var(--h1-font-size));
  color: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.success .icon {
  margin-left: 10px;
}
custom-form .get-in-touch-form .overflow.success .icon svg path {
  fill: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.success .check_entity span:first-child {
  color: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.success .check_entity.phone_entity {
  display: none;
}
custom-form .get-in-touch-form .overflow.success .check_entity.phone_entity.provided {
  display: block;
}
custom-form .get-in-touch-form .overflow.fail .icon svg path:nth-child(1) {
  fill: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.fail .icon svg path:nth-child(2) {
  fill: #fff;
}
custom-form .get-in-touch-form .overflow.fail .restart_button {
  width: 50px;
  transform: scaleX(-1);
  transition: transform 0.4s ease-out;
  cursor: pointer;
}
custom-form .get-in-touch-form .overflow.fail .restart_button svg {
  transition: all 0.4s ease-in-out;
}
custom-form .get-in-touch-form .overflow.fail .restart_button svg circle {
  fill: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.fail .restart_button:hover svg {
  transform: rotate(-180deg);
}
custom-form[data-in-popup] .get-in-touch-form {
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
custom-form[data-in-popup] .get-in-touch-form .overflow {
  box-shadow: none;
}
custom-form[data-in-popup] .get-in-touch-form .overflow .icon {
  width: 100px;
}
custom-form[data-in-popup] .get-in-touch-form .overflow .bold {
  font-size: 32px;
}
custom-form.loading .btn_wrapper {
  position: relative;
}
custom-form.loading .btn_wrapper button[type=submit] {
  opacity: 0;
  transition: none;
  cursor: none;
}
custom-form.loading .btn_wrapper .loader {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 10px solid var(--accent-color);
  border-bottom-color: #fff;
  border-radius: 50%;
  z-index: 11;
  animation: loading 2s linear infinite;
}
custom-form.success .overflow.success {
  opacity: 1;
  z-index: 1;
}
custom-form.fail .overflow.fail {
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 650px) {
  custom-form .get-in-touch-form form .input-wrap {
    width: 100%;
    padding: 4px;
  }
  custom-form .get-in-touch-form form .btn_wrapper .btn {
    width: 100%;
  }
}

popup-container[data-position=bottom-right] .popup_top {
  margin-bottom: 10px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .popup_text {
  margin-bottom: 5px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .btn {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .success-overflow .bold {
  font-size: 42px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .success-overflow .icon {
  width: 100px;
}
@media screen and (max-width: 400px) {
  popup-container[data-position=bottom-right] custom-form .get-in-touch-form {
    padding: 15px;
  }
  popup-container[data-position=bottom-right] custom-form .get-in-touch-form .btn {
    padding: 15px 20px;
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/header/header.scss ***!
  \******************************************************************************************************************************************************************/
.shadow {
  position: fixed;
  top: 0;
  left: -200%;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: background 0.5s ease;
}

header {
  background-color: transparent;
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
header .popup_shadow.show_shadow {
  opacity: 1;
  pointer-events: all;
}
header .popup_shadow {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .header_center {
  height: 100%;
}
header .logo {
  height: 62px;
}
header .logo.hidden {
  display: none;
}
header .mobileRight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
header nav {
  height: 100%;
}
header nav ul {
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
}
header nav ul li {
  position: relative;
}
header nav ul li:last-child {
  margin-right: 0;
}
header nav ul li.megamenu > a, header nav ul li.megamenu > span {
  padding: 0 32px 0 16px;
  cursor: pointer;
}
header nav ul li.megamenu > a::before, header nav ul li.megamenu > span::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 14px;
  width: 10px;
  height: 10px;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M1.59998 1L5.09998 4.88889L8.59998 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
}
header nav ul li a, header nav ul li span {
  padding: 0 19px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.2s ease;
}
header nav ul li.menu__item a .icon {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav ul li.menu__item a .arrowIcon {
  display: none;
  margin-top: 3px;
  margin-left: 5px;
}
header nav ul li.menu__item a:hover, header nav ul li.menu__item span:hover {
  text-shadow: 0.5px 0 0 #fff;
  color: var(--accent-color);
}
header nav ul li.menu__item a:hover::after, header nav ul li.menu__item span:hover::after {
  width: calc(100% - 50px);
}
header nav ul li.menu__item a::after, header nav ul li.menu__item span::after {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 25px;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: all 0.2s ease;
}
header nav ul li .child {
  flex-direction: column;
}
header nav ul li .child a:after {
  content: none;
}
header nav ul li .megamenu_wrapper {
  width: fit-content;
  transition: all 0.2s ease;
  max-height: 0;
  position: absolute;
  z-index: 12;
  height: 100%;
  top: 30px;
  left: 0;
  background-color: #fff;
  overflow: hidden;
  padding: 0 20px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header nav ul li .childs_wrapper ul {
  height: auto;
}
header nav ul li .childs_wrapper .child {
  flex-wrap: wrap;
  align-items: flex-start;
  max-height: 0;
}
header nav ul li .childs_wrapper .child li {
  margin-right: 0;
  width: 50%;
}
header nav ul li .childs_wrapper .child a, header nav ul li .childs_wrapper .child span {
  font-size: 16px;
  line-height: 22px;
  color: var(--block-primary-text-color);
  padding: 10px;
  transition: all 0.2s ease;
}
header nav ul li .childs_wrapper .child a:hover, header nav ul li .childs_wrapper .child span:hover {
  text-shadow: 0.5px 0 0 var(--block-primary-text-color);
}
header button-component .btn {
  font-size: 22px;
  min-width: 160px;
  text-align: center;
}
header button-component .btn.shake {
  animation: buttonShaking 1s infinite;
}

header-component.scrolled .header,
header-component.active .header {
  margin-top: 0;
  border-bottom: 1px solid #F0F0F0;
  background: #FFF;
}
header-component.scrolled .header button-component .btn:hover,
header-component.active .header button-component .btn:hover {
  --button-primary-hover-font-color: #fff;
  --button-primary-hover-fill-color: #0E1011;
  --button-primary-hover-border-color: #0E1011;
}
header-component.scrolled header nav ul li a,
header-component.scrolled header nav ul li span,
header-component.active header nav ul li a,
header-component.active header nav ul li span {
  color: #0E1011;
}
header-component.scrolled header nav ul li.megamenu > a::before, header-component.scrolled header nav ul li.megamenu > span::before,
header-component.active header nav ul li.megamenu > a::before,
header-component.active header nav ul li.megamenu > span::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M1.59998 1L5.09998 4.88889L8.59998 1' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

header-component.scrolled .hamburger::before, header-component.scrolled .hamburger::after, header-component.scrolled .hamburger > div,
header-component.active .hamburger::before,
header-component.active .hamburger::after,
header-component.active .hamburger > div {
  background: #0E1011;
}

.hamburger {
  display: block;
  position: relative;
  z-index: 2;
  width: 25px;
  height: 20px;
  transition: all 0.2s ease;
  padding: 10px 0;
  cursor: pointer;
}
.hamburger::before {
  z-index: 3;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 1px;
  background: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.hamburger::after {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  right: 0;
  width: 25px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
  z-index: 3;
  border-radius: 100px;
}
.hamburger > div {
  border-radius: 100px;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 25px;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
  opacity: 1;
}

@media screen and (max-width: 1350px) {
  header-component header nav ul li a,
  header-component header nav ul li span {
    padding: 0 10px;
  }
  header nav ul li.megamenu > a::before, header nav ul li.megamenu > span::before {
    right: 0;
  }
}
@media screen and (min-width: 1250px) and (max-width: 1350px) {
  header nav ul li.megamenu > span {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1125px) and (max-width: 1250px) {
  header nav ul li a, header nav ul li span {
    padding: 0 16px;
  }
  header-component header nav ul li.megamenu > span,
  header-component header nav ul li.megamenu > a {
    padding: 0 15px 0 10px;
  }
}
@media screen and (min-width: 1125px) {
  header nav ul li.megamenu:hover .megamenu_wrapper {
    max-height: 500px;
    height: auto;
    overflow: visible;
  }
  header nav ul li.megamenu:hover .megamenu_wrapper .child {
    max-height: 100%;
  }
  .hamburger {
    display: none;
  }
  .hamburger_wrapper {
    display: none;
  }
  header nav ul li.megamenu:hover > a::before, header nav ul li.megamenu:hover > span::before {
    transform: rotate(180deg);
    top: calc(50% - 7px);
  }
}
@media screen and (max-width: 1125px) {
  header .container .shared_wrapper.logo_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  header .container .shared_wrapper.button_wrapper {
    display: flex;
    justify-content: flex-end;
    min-width: 180px;
  }
  header .container {
    position: relative;
    justify-content: space-between;
  }
  header .header_center {
    position: absolute;
    top: 80px;
    left: -200%;
    width: 100%;
    max-width: 500px;
    height: calc(100vh - 68px);
    background: #fff;
    transition: all 0.5s ease;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  header .header_center::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
  }
  header .header_center nav {
    padding: 20px;
  }
  header .header_center nav ul {
    align-items: flex-start;
  }
  header .header_center nav ul li {
    height: auto;
    width: 100% !important;
  }
  header .header_center nav ul li a, header .header_center nav ul li span {
    font-size: 20px;
    line-height: 30px;
    padding: 5px 0;
    height: auto;
    border-bottom: solid 1px #D9D9D9;
  }
  header .header_center nav ul li.megamenu.hover .megamenu_wrapper {
    position: static;
    border: none;
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
    height: auto;
    max-height: 100%;
    width: 100%;
  }
  header .header_center nav ul li.megamenu.hover .megamenu_wrapper .child {
    max-height: 100%;
  }
  header .header_center nav ul li.megamenu.hover .megamenu_wrapper .child li {
    border-bottom: solid 1px #D9D9D9;
  }
  header nav ul {
    flex-direction: column;
  }
  .active .shadow {
    background: rgba(0, 0, 0, 0.5);
    left: 0;
  }
  .active header .header_center {
    left: 0;
  }
  .active .hamburger {
    height: 28px;
  }
  .active .hamburger > div {
    opacity: 0;
    right: 100px;
  }
  .active .hamburger::before {
    right: 0;
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }
  .active .hamburger::after {
    right: 0;
    top: calc(50% - 1px);
    width: 25px;
    transform: rotate(45deg);
  }
  header .mobileRight {
    width: 100%;
    padding-left: 25px;
  }
}
@media screen and (max-width: 650px) {
  header .header_center {
    top: 58px;
  }
  header {
    height: 60px;
  }
  header .container {
    padding: 0 20px;
  }
  header .logo {
    display: block;
    height: 47px;
  }
  header-component header button-component div.btn {
    min-width: 115px;
    font-size: 14px;
    line-height: 16.1px;
    padding: 17px 25px;
    width: fit-content;
    background-color: #0E1011;
    color: #FFF;
    border-color: #0E1011;
  }
  header .container .shared_wrapper.button_wrapper {
    min-width: 150px;
  }
}
@media screen and (max-width: 400px) {
  header .container .shared_wrapper {
    width: auto;
  }
  header .container .shared_wrapper.logo_wrapper {
    display: block;
  }
}
@keyframes buttonShaking {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/image-compare-viewer/src/styles/index.scss ***!
  \******************************************************************************************************************************************************************************/
.icv {
  position: relative;
  overflow: hidden;
  cursor: row-resize;
}
.icv__icv--vertical {
  cursor: row-resize;
}
.icv__icv--horizontal {
  cursor: col-resize;
}
.icv__img {
  pointer-events: none;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  max-width: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  top: 0;
  display: block;
}
.icv__is--fluid .icv__img {
  display: none;
}
.icv__img-a {
  height: auto;
  position: static;
  z-index: 1;
  left: 0px;
}
.icv__img-b {
  height: 100%;
  position: absolute;
  z-index: 2;
  left: auto;
  right: 0px;
  width: auto;
}
.icv__icv--vertical .icv__img-b {
  width: 100%;
  height: auto;
}
.icv__imposter {
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.icv__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  top: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 3;
}
.icv__is--fluid .icv__wrapper, .icv__icv--vertical .icv__wrapper {
  width: 100% !important;
}
.icv__is--fluid .icv__wrapper, .icv__icv--horizontal .icv__wrapper {
  height: 100% !important;
}
.icv__fluidwrapper {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icv__control {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  top: 0px;
  z-index: 5;
}
.icv__icv--vertical .icv__control {
  flex-direction: row;
  left: 0;
  width: 100%;
}
.icv__control-line {
  height: 50%;
  width: 2px;
  z-index: 6;
}
.icv__icv--vertical .icv__control-line {
  width: 50%;
}
.icv__theme-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  transition: all 0.1s ease-out 0s;
  z-index: 5;
}
.icv__icv--vertical .icv__theme-wrapper {
  flex-direction: column;
}
.icv__arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-out 0s;
}
.icv__arrow-a {
  transform: scale(1.5) rotateZ(180deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
  filter: drop-shadow(0px -3px 5px rgba(0, 0, 0, 0.33));
}
.icv__arrow-b {
  transform: scale(1.5) rotateZ(0deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
}
.icv__circle {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 999px;
}
.icv__label {
  position: absolute;
  bottom: 1rem;
  z-index: 12;
  background: rgba(0, 0, 0, 0.33);
  color: white;
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  user-select: none;
}
.icv__label.vertical {
  bottom: auto;
  left: 1rem;
}
.icv__label.on-hover {
  transform: scale(0);
  transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
}
.icv:hover .icv__label.on-hover {
  transform: scale(1);
}
.icv__label-before {
  left: 1rem;
}
.icv__label-after {
  right: 1rem;
}
.icv__label-before.vertical {
  top: 1rem;
}
.icv__label-after.vertical {
  bottom: 1rem;
  right: auto;
}
.icv__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/our-services/our-services.scss ***!
  \******************************************************************************************************************************************************************************/
our-services .our-services {
  background-color: #0E1011;
}
our-services .our-services .container {
  max-width: 1728px;
}
our-services .our-services .container .flex-wrapper {
  margin-bottom: 50px;
  justify-content: space-between;
  align-items: center;
  --button-secondary-normal-fill-color: #B3E920;
  --button-secondary-hover-fill-color: #fff;
  --button-secondary-normal-border-color: #B3E920;
  --button-secondary-hover-border-color: #fff;
}
our-services .our-services .container .flex-wrapper h2,
our-services .our-services .container .flex-wrapper p.text {
  width: 50%;
}
our-services .our-services .container .flex-wrapper h2 {
  color: #FFFFFF;
  text-align: left;
}
our-services .our-services .container .flex-wrapper p.text {
  color: #CFCFCF;
  font-size: 20px;
}
our-services .our-services .container .flex-wrapper button-component .btn {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
our-services .our-services .container .flex-wrapper button-component .btn::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path d="M13.7485 10.8957L13.722 0.681239L3.50752 0.654735C3.4011 0.640327 3.29282 0.648952 3.19003 0.680026C3.08723 0.7111 2.99231 0.763898 2.91169 0.834845C2.83107 0.905793 2.76664 0.993233 2.72275 1.09125C2.67887 1.18926 2.65655 1.29556 2.65732 1.40295C2.65809 1.51034 2.68192 1.61631 2.7272 1.71368C2.77248 1.81106 2.83816 1.89757 2.91978 1.96736C3.0014 2.03715 3.09707 2.08858 3.2003 2.11819C3.30353 2.14779 3.41191 2.15487 3.51812 2.13894L11.1724 2.17074L1.03208 12.311C0.891492 12.4516 0.812513 12.6423 0.812513 12.8411C0.812514 13.0399 0.891492 13.2306 1.03208 13.3712C1.17266 13.5118 1.36333 13.5907 1.56215 13.5907C1.76096 13.5907 1.95164 13.5118 2.09222 13.3712L12.2325 3.23089L12.2643 10.8851C12.265 11.0841 12.3447 11.2746 12.4859 11.4147C12.627 11.5549 12.8181 11.6332 13.017 11.6325C13.2159 11.6318 13.4064 11.5521 13.5466 11.411C13.6868 11.2698 13.7651 11.0788 13.7644 10.8798L13.7485 10.8957Z" fill="%230E1011"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
our-services .our-services .container .list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}
our-services .our-services .container .list #image-compare {
  margin-left: auto;
  margin-right: auto;
}
our-services .our-services .container .list .service-block {
  cursor: pointer;
  width: 100%;
}
our-services .our-services .container .list .service-block:hover image-component {
  background-color: #1A1C1D;
  border-color: #363738;
  filter: brightness(80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
our-services .our-services .container .list .service-block:hover image-component::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.000183105" y="0.000244141" width="43.2965" height="43.2965" rx="21.6483" fill="black"/><path d="M28.0461 25.5442L28.0196 15.3297L17.8051 15.3032C17.6986 15.2888 17.5904 15.2974 17.4876 15.3285C17.3848 15.3595 17.2899 15.4123 17.2092 15.4833C17.1286 15.5542 17.0642 15.6417 17.0203 15.7397C16.9764 15.8377 16.9541 15.944 16.9549 16.0514C16.9556 16.1588 16.9795 16.2647 17.0247 16.3621C17.07 16.4595 17.1357 16.546 17.2173 16.6158C17.2989 16.6856 17.3946 16.737 17.4978 16.7666C17.6011 16.7962 17.7095 16.8033 17.8157 16.7874L25.4699 16.8192L15.3296 26.9595C15.189 27.1001 15.1101 27.2907 15.1101 27.4895C15.1101 27.6884 15.189 27.879 15.3296 28.0196C15.4702 28.1602 15.6609 28.2392 15.8597 28.2392C16.0585 28.2392 16.2492 28.1602 16.3898 28.0196L26.5301 17.8793L26.5619 25.5336C26.5626 25.7325 26.6423 25.923 26.7834 26.0632C26.9246 26.2033 27.1156 26.2817 27.3146 26.281C27.5135 26.2803 27.704 26.2006 27.8442 26.0594C27.9843 25.9183 28.0627 25.7272 28.062 25.5283L28.0461 25.5442Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
our-services .our-services .container .list .service-block image-component {
  transition: all 0.5s ease-in;
  width: 100%;
}
our-services .our-services .container .list .service-block image-component img {
  height: 590px;
  margin-bottom: 30px;
  display: block;
  position: relative;
  object-fit: cover;
}
our-services .our-services .container .list .service-block .title {
  color: #fff;
  font-size: 28px;
  line-height: 33.6px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
our-services .our-services .container .list .service-block .text {
  color: #CFCFCF;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
}
our-services .our-services .container .list .service-block .link {
  color: #fff;
  font-size: 22px;
  line-height: 25px;
}
our-services .our-services .container .list .service-block .link:hover {
  color: #C6E76C;
}
our-services .our-services .container .list .service-block .link:hover svg path {
  fill: #C6E76C;
}
our-services .our-services .container .list .service-block .link svg {
  margin-left: 10px;
}
our-services .our-services .container .list .video-wrapper {
  width: 100%;
}
our-services .our-services .container .list .video-wrapper-flex {
  width: 100%;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
our-services .our-services .container .list .video-wrapper-flex youtube-player {
  width: 50vw;
}
our-services .our-services .container .list .rotation-wrapper {
  height: 650px;
  width: 100%;
}
our-services .our-services .container .list .rotation-wrapper iframe {
  height: 100%;
  width: 100%;
}
our-services .our-services .gridlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
our-services .our-services .gridlist-block {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
our-services .our-services .gridlist-block:hover {
  filter: brightness(80%);
  transform: scale(1.01);
}
our-services .our-services .gridlist-block:hover::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.000183105" y="0.000244141" width="43.2965" height="43.2965" rx="21.6483" fill="black"/><path d="M28.0461 25.5442L28.0196 15.3297L17.8051 15.3032C17.6986 15.2888 17.5904 15.2974 17.4876 15.3285C17.3848 15.3595 17.2899 15.4123 17.2092 15.4833C17.1286 15.5542 17.0642 15.6417 17.0203 15.7397C16.9764 15.8377 16.9541 15.944 16.9549 16.0514C16.9556 16.1588 16.9795 16.2647 17.0247 16.3621C17.07 16.4595 17.1357 16.546 17.2173 16.6158C17.2989 16.6856 17.3946 16.737 17.4978 16.7666C17.6011 16.7962 17.7095 16.8033 17.8157 16.7874L25.4699 16.8192L15.3296 26.9595C15.189 27.1001 15.1101 27.2907 15.1101 27.4895C15.1101 27.6884 15.189 27.879 15.3296 28.0196C15.4702 28.1602 15.6609 28.2392 15.8597 28.2392C16.0585 28.2392 16.2492 28.1602 16.3898 28.0196L26.5301 17.8793L26.5619 25.5336C26.5626 25.7325 26.6423 25.923 26.7834 26.0632C26.9246 26.2033 27.1156 26.2817 27.3146 26.281C27.5135 26.2803 27.704 26.2006 27.8442 26.0594C27.9843 25.9183 28.0627 25.7272 28.062 25.5283L28.0461 25.5442Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
our-services .our-services .gridlist-block image-component img {
  width: 100%;
}
our-services .our-services .gridlist-block .title {
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: #fff;
  font-size: 28px;
  line-height: 32px;
}
our-services .our-services .gridlist-block .title .accent-color {
  margin-right: 15px;
}

@media screen and (max-width: 1000px) {
  our-services .our-services .container .list .video-wrapper-flex {
    flex-direction: column;
  }
  our-services .our-services .container .list .video-wrapper-flex youtube-player {
    width: 100%;
  }
  our-services .our-services .container .list .rotation-wrapper {
    height: 450px;
  }
}
@media screen and (max-width: 800px) {
  our-services .our-services {
    padding-bottom: 0;
  }
  our-services .our-services .container.adv-wrapper {
    padding: 0;
  }
  our-services .our-services .container .flex-wrapper {
    flex-direction: column;
    align-items: center;
  }
  our-services .our-services .container .flex-wrapper h2,
  our-services .our-services .container .flex-wrapper p.text {
    text-align: center;
    width: 100%;
  }
  our-services .our-services .container .flex-wrapper p.text {
    font-size: 16px;
  }
  our-services .our-services .container .list {
    flex-direction: column;
    margin-bottom: 0;
  }
  our-services .our-services .container .list .service-block image-component img {
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
  }
  our-services .our-services .container .list .service-block .link {
    font-size: 18px;
  }
  our-services .our-services .container .list .service-block .text {
    font-size: 16px;
    line-height: 120%;
  }
  our-services .our-services .container .list .video-wrapper {
    flex-direction: column;
  }
  our-services .our-services .container .list .video-wrapper iframe {
    height: 350px;
  }
  our-services .our-services div.gridlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  our-services .our-services .container .flex-wrapper button-component {
    width: 100%;
  }
  our-services section.our-services .container div.list {
    margin-bottom: 50px;
  }
  our-services section.our-services div.gridlist {
    grid-template-columns: repeat(1, 1fr);
  }
  our-services .our-services .container .list .rotation-wrapper {
    height: 260px;
  }
}
@keyframes ripple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  20% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}
/*!**************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/blog-posts/blog-posts.scss ***!
  \**************************************************************************************************************************************************************************/
blog-posts {
  background: var(--bg-color);
  --transition-duration: .2s;
}
blog-posts .blog-posts {
  border-top: 1px solid #E1E4E4;
}
blog-posts .container {
  max-width: 1728px;
}
blog-posts .flex-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
blog-posts .flex-wrapper h2 {
  text-align: left;
  margin-bottom: 0;
}
blog-posts .flex-wrapper button-component .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #F9F9F9;
  border: 1px solid #E1E4E4;
}
blog-posts .flex-wrapper button-component .btn::after {
  content: "";
  display: block;
  height: 18px;
  width: 15px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7494%2010.9133L13.7229%200.698817L3.50837%200.672313C3.40195%200.657905%203.29368%200.66653%203.19088%200.697604C3.08808%200.728678%202.99316%200.781476%202.91254%200.852423C2.83193%200.923371%202.76749%201.01081%202.72361%201.10882C2.67972%201.20684%202.65741%201.31314%202.65817%201.42053C2.65894%201.52791%202.68277%201.63388%202.72805%201.73126C2.77334%201.82864%202.83901%201.91515%202.92063%201.98494C3.00226%202.05473%203.09792%202.10616%203.20115%202.13576C3.30438%202.16537%203.41277%202.17244%203.51897%202.15652L11.1732%202.18832L1.03293%2012.3286C0.892345%2012.4692%200.813366%2012.6599%200.813367%2012.8587C0.813368%2013.0575%200.892345%2013.2482%201.03293%2013.3888C1.17351%2013.5293%201.36419%2013.6083%201.563%2013.6083C1.76182%2013.6083%201.95249%2013.5293%202.09307%2013.3888L12.2334%203.24847L12.2652%2010.9027C12.2659%2011.1016%2012.3456%2011.2921%2012.4867%2011.4323C12.6279%2011.5725%2012.8189%2011.6508%2013.0179%2011.6501C13.2168%2011.6494%2013.4073%2011.5697%2013.5475%2011.4286C13.6876%2011.2874%2013.766%2011.0963%2013.7653%2010.8974L13.7494%2010.9133Z%22%20fill%3D%22%230E1011%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
blog-posts .flex-wrapper button-component .btn:hover {
  color: #fff;
  background-color: #0E1011;
  border: 1px solid #0E1011;
}
blog-posts .flex-wrapper button-component .btn:hover::after {
  content: "";
  display: block;
  height: 18px;
  width: 15px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7494%2010.9133L13.7229%200.698817L3.50837%200.672313C3.40195%200.657905%203.29368%200.66653%203.19088%200.697604C3.08808%200.728678%202.99316%200.781476%202.91254%200.852423C2.83193%200.923371%202.76749%201.01081%202.72361%201.10882C2.67972%201.20684%202.65741%201.31314%202.65817%201.42053C2.65894%201.52791%202.68277%201.63388%202.72805%201.73126C2.77334%201.82864%202.83901%201.91515%202.92063%201.98494C3.00226%202.05473%203.09792%202.10616%203.20115%202.13576C3.30438%202.16537%203.41277%202.17244%203.51897%202.15652L11.1732%202.18832L1.03293%2012.3286C0.892345%2012.4692%200.813366%2012.6599%200.813367%2012.8587C0.813368%2013.0575%200.892345%2013.2482%201.03293%2013.3888C1.17351%2013.5293%201.36419%2013.6083%201.563%2013.6083C1.76182%2013.6083%201.95249%2013.5293%202.09307%2013.3888L12.2334%203.24847L12.2652%2010.9027C12.2659%2011.1016%2012.3456%2011.2921%2012.4867%2011.4323C12.6279%2011.5725%2012.8189%2011.6508%2013.0179%2011.6501C13.2168%2011.6494%2013.4073%2011.5697%2013.5475%2011.4286C13.6876%2011.2874%2013.766%2011.0963%2013.7653%2010.8974L13.7494%2010.9133Z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
blog-posts .posts_list {
  display: flex;
  flex-wrap: wrap;
}
blog-posts .post {
  padding: 24px;
  gap: 24px;
  border: 1px solid transparent;
  transition: all var(--transition-duration) ease;
  cursor: pointer;
}
blog-posts .post:hover {
  background-color: #F9F9F9;
  border: 1px solid #E1E4E4;
}
blog-posts .post:hover image-component {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
blog-posts .post:hover image-component picture {
  width: 100%;
}
blog-posts .post:hover image-component::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.000183105" y="0.000244141" width="43.2965" height="43.2965" rx="21.6483" fill="black"/><path d="M28.0461 25.5442L28.0196 15.3297L17.8051 15.3032C17.6986 15.2888 17.5904 15.2974 17.4876 15.3285C17.3848 15.3595 17.2899 15.4123 17.2092 15.4833C17.1286 15.5542 17.0642 15.6417 17.0203 15.7397C16.9764 15.8377 16.9541 15.944 16.9549 16.0514C16.9556 16.1588 16.9795 16.2647 17.0247 16.3621C17.07 16.4595 17.1357 16.546 17.2173 16.6158C17.2989 16.6856 17.3946 16.737 17.4978 16.7666C17.6011 16.7962 17.7095 16.8033 17.8157 16.7874L25.4699 16.8192L15.3296 26.9595C15.189 27.1001 15.1101 27.2907 15.1101 27.4895C15.1101 27.6884 15.189 27.879 15.3296 28.0196C15.4702 28.1602 15.6609 28.2392 15.8597 28.2392C16.0585 28.2392 16.2492 28.1602 16.3898 28.0196L26.5301 17.8793L26.5619 25.5336C26.5626 25.7325 26.6423 25.923 26.7834 26.0632C26.9246 26.2033 27.1156 26.2817 27.3146 26.281C27.5135 26.2803 27.704 26.2006 27.8442 26.0594C27.9843 25.9183 28.0627 25.7272 28.062 25.5283L28.0461 25.5442Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
blog-posts .post .categories {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
blog-posts .post .categories a {
  display: inline-block;
  border: 1.07px solid #E1E4E4;
  background-color: #F9F9F9;
  color: #0E1011;
  padding: 5px;
}
blog-posts .post .categories a:hover {
  border-color: #C6E76C;
  background-color: #C6E76C;
}
blog-posts .post .read_more {
  margin-top: 20px;
}
blog-posts .post h2, blog-posts .post .h2 {
  text-align: left;
  margin-top: 20px 0;
  font-size: 30px;
}
blog-posts .post h2 a, blog-posts .post .h2 a {
  color: var(--h-color);
}
blog-posts .post .author_date, blog-posts .post .stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
blog-posts .post .author_date > div, blog-posts .post .stats > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
blog-posts .post .author_date svg path, blog-posts .post .stats svg path {
  fill: #C6E76C;
}
blog-posts .post .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
blog-posts .post .info > div {
  gap: 15px;
}
blog-posts .post .info div {
  display: flex;
  align-items: center;
  gap: 8px;
}
blog-posts .post .info a {
  color: var(--block-primary-h-color);
  transition: all var(--transition-duration) ease;
}
blog-posts .post .author {
  transition: all var(--transition-duration) ease;
  color: var(--block-primary-h-color);
  white-space: nowrap;
}
blog-posts .post .intro {
  font-size: 18px;
  color: var(--block-primary-h-color);
  height: 75px;
  overflow: hidden;
  line-height: 25.2px;
}
blog-posts .post .read_more {
  margin-top: 10px;
}
blog-posts .post .read_more a {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 10px;
  color: var(--block-primary-h-color);
  transition: color var(--transition-duration) ease;
}
blog-posts .post .read_more svg {
  transition: transform var(--transition-duration) ease;
}
blog-posts .pagination {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
blog-posts .pagination.hide {
  display: none;
}
blog-posts .pagination_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
blog-posts .pagination .prev {
  margin-right: 20px;
}
blog-posts .pagination .prev, blog-posts .pagination .next {
  border: 1px solid #B3BABF;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-duration) ease;
  cursor: pointer;
  border-radius: 100%;
}
blog-posts .pagination .prev a, blog-posts .pagination .next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
blog-posts .pagination .prev svg path, blog-posts .pagination .next svg path {
  stroke: #0E1011;
  background-color: #fff;
  transition: all var(--transition-duration) ease;
}
blog-posts .pagination .prev.disable, blog-posts .pagination .next.disable {
  cursor: default;
  background-color: #F5F5F5;
  border-color: #E1E4E4;
}
blog-posts .pagination .prev:not(.disable):hover, blog-posts .pagination .next:not(.disable):hover {
  background-color: #0E1011;
}
blog-posts .pagination .prev:not(.disable):hover svg path, blog-posts .pagination .next:not(.disable):hover svg path {
  stroke: #fff;
}
blog-posts .pagination .pages {
  list-style: none;
  display: flex;
  align-items: center;
}
blog-posts .pagination .pages li {
  height: 20px;
  margin-right: 20px;
}
blog-posts .pagination .pages li a, blog-posts .pagination .pages li span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5C6C6;
  background-color: #fff;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 100%;
  transition: all var(--transition-duration) ease;
}
blog-posts .pagination .pages li a:hover, blog-posts .pagination .pages li span:hover {
  scale: 1.1;
  color: var(--accent-color);
}
blog-posts .pagination .pages li.active a, blog-posts .pagination .pages li.active span {
  font-weight: 700;
  font-size: 24px;
  color: #0E1011;
}
blog-posts #sort-dropdown {
  width: 155px;
  height: 56px;
  background-color: #F9F9F9;
  border: 1px solid #E1E4E4;
  padding: 10px;
  font-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="10" viewBox="0 0 15 10" fill="none"><path d="M0.221566 2.0709L7.46304 9.2749L14.7045 2.0709C14.79 2.00584 14.8604 1.92318 14.9111 1.82852C14.9619 1.73386 14.9916 1.62941 14.9985 1.52224C15.0053 1.41506 14.989 1.30767 14.9508 1.20733C14.9125 1.107 14.8531 1.01605 14.7766 0.94066C14.7002 0.865267 14.6084 0.807186 14.5075 0.770349C14.4066 0.733513 14.299 0.718779 14.192 0.727147C14.0849 0.735516 13.9809 0.76679 13.8869 0.818853C13.793 0.870916 13.7114 0.942552 13.6475 1.02891L8.21268 6.41879C7.97451 6.64673 8.32806 6.29318 7.97451 6.64673C7.62095 7.00028 7.62607 7.0054 7.46304 7.16843C7.35808 7.06346 7.16514 6.87052 7.02427 6.72965C6.85854 6.56393 6.88064 6.58602 6.71341 6.41879L1.27855 1.02891C1.13739 0.888744 0.946334 0.810395 0.747408 0.811098C0.548482 0.811801 0.357981 0.891497 0.217816 1.03266C0.0776517 1.17382 -0.000697398 1.36487 5.4425e-06 1.5638C0.000708283 1.76273 0.0804068 1.95323 0.221566 2.09339L0.221566 2.0709Z" fill="%230E1011"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px 10px;
  cursor: pointer;
}
blog-posts .dropdown-wrapper {
  display: none;
}
blog-posts .out-layout-text p {
  font-size: 22px;
  line-height: 150%;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1200px) {
  blog-posts .post.main .post_left a {
    padding-left: 0;
  }
  blog-posts .post {
    gap: 30px;
  }
  blog-posts .post h2, blog-posts .post .h2 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  blog-posts .post.main {
    flex-direction: column;
  }
  blog-posts .post.main .post_left,
  blog-posts .post.main .post_right {
    width: 100%;
    max-width: initial;
  }
  blog-posts .post.main .intro {
    margin-bottom: 30px;
  }
  blog-posts .post.main .post_right .top_flex {
    margin-bottom: 15px;
  }
  blog-posts .post.main img {
    max-width: initial;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  blog-posts .posts_list .post {
    width: 32.27%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
    max-width: 555px;
  }
  blog-posts .posts_list .post img {
    object-fit: cover;
    width: 100%;
  }
  blog-posts .posts_list .post:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 770px) {
  blog-posts .posts_list .post {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  blog-posts .posts_list .post img {
    height: 200px;
    object-fit: cover;
  }
  blog-posts .posts_list .post:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 770px) {
  blog-posts .posts_list .post {
    width: 100%;
    margin-bottom: 15px;
  }
  blog-posts .posts_list .post .top_flex {
    flex-direction: initial;
    flex-wrap: wrap;
    align-items: center;
  }
  blog-posts .posts_list .post img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  blog-posts .posts_list .post:last-child {
    margin-bottom: 0;
  }
  blog-posts .post .post_right {
    height: auto;
  }
}
@media screen and (max-width: 650px) {
  blog-posts .blog-posts {
    border: none;
    padding-top: 0;
  }
  blog-posts .post.main {
    margin-bottom: 15px;
    gap: 20px;
  }
  blog-posts .post.main .post_title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 10px;
  }
  blog-posts .post.main .post_right .top_flex {
    margin-bottom: 10px;
  }
  blog-posts .post .author_date {
    margin-bottom: 10px;
  }
  blog-posts .post .intro {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  blog-posts .post .info {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  blog-posts .post .info div {
    flex-wrap: wrap;
  }
  blog-posts .dropdown-wrapper {
    display: block;
    position: sticky;
    top: 60px;
    z-index: 1;
    height: 75px;
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 20px;
    background-color: #0e1011;
  }
  blog-posts .dropdown-wrapper .custom-dropdown {
    position: relative;
    width: 100%;
    border: 1px solid #ffffff;
    background-color: #0e1011;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    user-select: none;
  }
  blog-posts .dropdown-wrapper .custom-dropdown.open {
    height: 100%;
  }
  blog-posts .dropdown-wrapper .custom-dropdown .dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
  }
  blog-posts .dropdown-wrapper .custom-dropdown .dropdown-selected::after {
    content: "";
    width: 15px;
    height: 9px;
    background-image: url("data:image/svg+xml;utf8,<svg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.221566 1.57103L7.46304 8.77502L14.7045 1.57103C14.79 1.50596 14.8604 1.42331 14.9111 1.32864C14.9619 1.23398 14.9916 1.12953 14.9985 1.02236C15.0053 0.915185 14.989 0.807795 14.9508 0.707457C14.9125 0.607118 14.8531 0.516174 14.7766 0.440782C14.7002 0.365389 14.6084 0.307308 14.5075 0.270472C14.4066 0.233635 14.299 0.218901 14.192 0.227269C14.0849 0.235638 13.9809 0.266912 13.8869 0.318975C13.793 0.371038 13.7114 0.442674 13.6475 0.529033L8.21268 5.91891C7.97451 6.14685 8.32806 5.7933 7.97451 6.14685C7.62095 6.50041 7.62607 6.50552 7.46304 6.66855C7.35808 6.56359 7.16514 6.37064 7.02427 6.22978C6.85854 6.06405 6.88064 6.08614 6.71341 5.91891L1.27855 0.529032C1.13739 0.388866 0.946334 0.310517 0.747408 0.31122C0.548482 0.311923 0.357981 0.391619 0.217816 0.532778C0.0776517 0.673937 -0.000697398 0.864996 5.4425e-06 1.06392C0.000708283 1.26285 0.0804068 1.45335 0.221566 1.59351L0.221566 1.57103Z' fill='white'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  blog-posts .dropdown-wrapper .custom-dropdown .dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0e1011;
    border: 1px solid #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 20;
  }
  blog-posts .dropdown-wrapper .custom-dropdown .dropdown-list a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }
  blog-posts .dropdown-wrapper .custom-dropdown .dropdown-list a:hover {
    color: var(--accent-color);
  }
  blog-posts .dropdown-wrapper .custom-dropdown.open .dropdown-list {
    display: block;
  }
}
@media screen and (max-width: 470px) {
  blog-posts .post .top_flex > *, blog-posts .post.main .top_flex > * {
    margin-right: 0;
  }
  blog-posts .post .post_right .top_flex, blog-posts .post.main .post_right .top_flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  blog-posts .post .post_right .top_flex > div, blog-posts .post.main .post_right .top_flex > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  blog-posts .post:not(.post.main) .categories {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 450px) {
  blog-posts .post, blog-posts .post.main {
    padding: 15px;
  }
  blog-posts .post .post_title, blog-posts .post.main .post_title {
    font-size: 20px;
    line-height: 24px;
  }
  blog-posts .post .read_more a, blog-posts .post.main .read_more a {
    font-size: 14px;
    line-height: 18px;
  }
  blog-posts .post .read_more a {
    padding-left: 0;
  }
  blog-posts .post.main .read_more a {
    padding: 10px 15px;
    padding-left: 15px;
  }
}
/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/get-in-touch/get-in-touch.scss ***!
  \******************************************************************************************************************************************************************************/
get-in-touch .get_in_touch_block {
  position: relative;
}
get-in-touch .get_in_touch_block image-component img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: bottom;
  height: 100%;
  width: 100%;
  filter: brightness(0.5);
}
get-in-touch .get_in_touch_block .container {
  position: relative;
  z-index: 0;
}
get-in-touch .get_in_touch_block .get_in_touch_top {
  --h-color: #fff;
}
get-in-touch .get_in_touch_block .get_in_touch_top .subtitle {
  --subtitle-color: #FFFFFFCC;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
get-in-touch .get_in_touch_block .get_in_touch_bottom {
  display: flex;
  justify-content: center;
}
get-in-touch .get_in_touch_block get-in-touch-form .get-in-touch-form .like_title {
  font-size: 30px;
  font-weight: 400;
  color: #0E1011;
}
get-in-touch .get_in_touch_block get-in-touch-form .get-in-touch-form .subtitle {
  font-size: 20px;
}
get-in-touch .get_in_touch_block get-in-touch-form .get-in-touch-form .btn_wrapper .btn {
  font-size: 22px;
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/footer/footer.scss ***!
  \******************************************************************************************************************************************************************/
footer {
  background-color: #0E1011;
  color: #CFCFCF;
}
footer .container {
  max-width: 1516px;
}
footer .footer_top {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 80px 0 50px;
}
footer .footer_top .footer_left {
  display: flex;
  flex-direction: column;
}
footer .footer_top .footer_left .footer_left__top .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: white;
  height: 70px;
  width: fit-content;
  margin-bottom: 30px;
  position: relative;
}
footer .footer_top .footer_left .footer_left__top .logo_main {
  font-size: 32px;
  line-height: 37px;
}
footer .footer_top .footer_left .footer_left__top .logo_sub {
  font-size: 10px;
  line-height: 11.5px;
  position: absolute;
  top: 46px;
  right: -12px;
}
footer .footer_top .footer_left .footer_left__top p.text {
  max-width: 415px;
  font-size: 15px;
  line-height: 21px;
}
footer .footer_top .footer_left .like_a_list {
  display: flex;
  justify-content: left;
  gap: 40px;
  margin-top: 40px;
}
footer .footer_top .footer_left .like_a_list a {
  width: 25px;
  height: 25px;
}
footer .footer_top .footer_left .like_a_list svg path {
  fill: #fff;
}
footer .footer_top .footer_center {
  display: flex;
  gap: 40px;
}
footer .footer_top .footer_center .block__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  color: #FFFFFF;
  margin-bottom: 32px;
}
footer .footer_top .footer_center .block__list_wrapper {
  display: flex;
}
footer .footer_top .footer_center .block__list_wrapper .add-list {
  margin-left: 50px;
}
footer .footer_top .footer_center .block__list_wrapper li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #CFCFCF;
  width: max-content;
  margin-bottom: 10px;
  max-width: 198px;
}
footer .footer_top .footer_center .block__list_wrapper li a:hover {
  color: #fff;
}
footer .footer_top .footer_right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
footer .footer_top .footer_right .info-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer_top .footer_right .info-block__title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}
footer .footer_top .footer_right .info-block__info {
  font-size: 15px;
  width: 200px;
  color: #CFCFCF;
}
footer .footer_top .footer_right .info-block__info:hover {
  color: #C6E76C;
}
footer .footer_bottom {
  border-top: 2px solid #4D555B;
  padding: 30px 0;
}
footer .footer_bottom .bottom_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
footer .footer_bottom .bottom_flex .left {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer_bottom .bottom_flex .left a {
  color: #CFCFCF;
  font-size: 14px;
  letter-spacing: 0.03em;
  width: 200px;
}
footer .footer_bottom .bottom_flex .left a:hover {
  color: #C6E76C;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block {
  width: 100%;
  max-width: 218px;
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  background: #1B1B1D;
  align-items: center;
  gap: 30px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block .edit-mode-subtitle {
  font-size: 10px;
  color: #9698A5;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block p {
  color: #fff;
  font-size: 16px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode {
  background: gray;
  border-radius: 100px;
  cursor: pointer;
  display: block;
  height: 30px;
  position: relative;
  text-indent: -9999px;
  width: 33px;
  height: 20px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode .edit-mode-label {
  width: 33px;
  height: 20px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode .edit-mode-label::after {
  width: 18px;
  height: 18px;
  top: 1px;
  left: 1px;
  box-shadow: 0px 1.94px 5.16px 0px rgba(0, 0, 0, 0.1490196078);
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode .edit-mode-switch:checked + .edit-mode-label:after {
  left: 32px;
}

@media screen and (max-width: 1350px) and (min-width: 1050px) {
  footer .footer_top .footer_center {
    flex-direction: column;
  }
}
@media screen and (max-width: 1050px) {
  footer .footer_top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 775px) {
  footer .footer_top .footer_center {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 775px) {
  footer .footer_bottom .bottom_flex {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  footer .footer_bottom .bottom_flex .left {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
@media screen and (max-width: 550px) {
  footer .footer_top .footer_left__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer_top .footer_left .like_a_list {
    justify-content: center;
  }
  footer .footer_top .footer_center .block__title {
    text-align: center;
  }
  footer .footer_top .footer_center .block__list_wrapper {
    flex-direction: column;
    align-items: center;
  }
  footer .footer_top .footer_center .block__list_wrapper .add-list {
    margin-left: 0;
  }
  footer .footer_top .footer_center .block__list_wrapper ul li a {
    width: 100%;
    text-align: center;
  }
  footer .footer_top .footer_right .info-block {
    gap: 36px;
  }
}
@media screen and (max-width: 400px) {
  footer .footer_top .soc_list {
    justify-content: flex-start;
  }
  footer .footer_left {
    margin-bottom: 20px;
  }
  footer .footer_top {
    flex-direction: column;
  }
}
/*!**********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/custom-advertisement-block/custom-advertisement-block.scss ***!
  \**********************************************************************************************************************************************************************************************************/
custom-advertisement-block section {
  padding: 0 0 80px;
  background-color: var(--bg-color);
}
custom-advertisement-block .btn {
  width: 175px;
  --button-primary-normal-fill-color: #0E1011;
  --button-primary-normal-border-color: #0E1011;
  --button-primary-normal-font-color: #fff;
  --button-primary-hover-fill-color: #fff;
  --button-primary-hover-border-color: #fff;
  --button-primary-hover-font-color: #0E1011;
}
custom-advertisement-block .adv-block {
  width: 100%;
  max-width: 1254px;
  padding: 50px 100px;
  background-color: #C6E76C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
custom-advertisement-block .adv-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  animation: ripple 8s linear infinite;
}
custom-advertisement-block .adv-block .block__left,
custom-advertisement-block .adv-block .block__right {
  position: relative;
  z-index: 3;
}
custom-advertisement-block .adv-block .block__right {
  min-width: 150px;
}
custom-advertisement-block .adv-block .block__left__title {
  color: #0E1011;
  font-size: 50px;
  font-weight: 400;
  line-height: 57.5px;
  margin-bottom: 30px;
}
custom-advertisement-block .adv-block .block__left__text {
  color: #3C3E3F;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
}

@media screen and (max-width: 800px) {
  custom-advertisement-block section {
    padding-bottom: 0;
    background-color: #C6E76C;
  }
  custom-advertisement-block .adv-block {
    width: 100%;
    flex-direction: column;
    margin-bottom: 0;
  }
  custom-advertisement-block .adv-block .block__left {
    text-align: center;
  }
  custom-advertisement-block .adv-block .block__right button-component .btn {
    width: 90vw;
  }
}
@media screen and (max-width: 500px) {
  custom-advertisement-block div.adv-block {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 25px;
  }
  custom-advertisement-block div.adv-block .block__left__title {
    font-size: 30px;
    margin-bottom: 0;
  }
  custom-advertisement-block div.adv-block .block__left__text {
    font-size: 15px;
  }
}
@keyframes ripple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  20% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}
/*!******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/swiper.scss ***!
  \******************************************************************************************************************************************************/
/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/*!******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/page-banner-simple/page-banner-simple.scss ***!
  \******************************************************************************************************************************************************************************************/
page-banner-simple {
  --breadcrumbsColor: #FFFFFF;
  --breadcrumbsLastColor: #FFFFFF;
  --breadcrumbsAccentColor: #C6E76C;
}
page-banner-simple.services .page-banner-simple {
  padding-top: 170px;
}
page-banner-simple .page-banner-simple {
  position: relative;
}
page-banner-simple .page-banner-simple breadcrumbs-component .breadcrumbs_list {
  justify-content: center;
  margin-bottom: 0;
}
page-banner-simple .page-banner-simple .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 25%);
}
page-banner-simple .page-banner-simple h1 {
  text-align: center;
  text-transform: uppercase;
  max-width: 1210px;
  margin-bottom: 0;
}
page-banner-simple .page-banner-simple image-component {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
page-banner-simple .page-banner-simple image-component img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
page-banner-simple .page-banner-simple .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
page-banner-simple .page-banner-simple .container .flex-wrapper {
  height: 100%;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
}
page-banner-simple .page-banner-simple .container .flex-wrapper .subtitle {
  text-align: center;
}
page-banner-simple .page-banner-simple .container .flex-wrapper button-component .btn {
  font-size: 22px;
}
page-banner-simple .page-banner-simple .button-more {
  display: none;
}
page-banner-simple .render-links {
  max-width: 85%;
  border-bottom: 1px solid #fff;
}
page-banner-simple .render-links .swiper {
  position: static;
}
page-banner-simple .render-links button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  min-width: 50px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3019607843);
  margin-bottom: 18px;
  margin-right: 3px;
  cursor: pointer;
}
page-banner-simple .render-links button:hover {
  background-color: #fff;
}
page-banner-simple .render-links button:hover svg path {
  stroke: #0E1011;
}
page-banner-simple .render-links .render-links-wrapper {
  padding: 20px 30px;
  width: max-content;
}
page-banner-simple .render-links .render-links-wrapper:has(.render-link.active) {
  border-bottom: 3px solid #C6E76C;
}
page-banner-simple .render-links .render-links-wrapper .render-link {
  color: #FFFFFF;
  font-size: 18px;
}
page-banner-simple .render-links .render-links-wrapper .render-link.active {
  color: #C6E76C;
}
page-banner-simple .render-links .render-links-wrapper .render-link:hover {
  color: #C6E76C;
}
page-banner-simple .render-links .navigation_wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
}
page-banner-simple .render-links .navigation_wrapper .swiper-button-next,
page-banner-simple .render-links .navigation_wrapper .swiper-button-prev {
  height: 50px;
  width: 50px;
  background: rgba(255, 255, 255, 0.3019607843);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
page-banner-simple .render-links .navigation_wrapper .swiper-button-next svg,
page-banner-simple .render-links .navigation_wrapper .swiper-button-prev svg {
  height: 20px;
  width: 20px;
}
page-banner-simple .render-links .navigation_wrapper .swiper-button-next::after,
page-banner-simple .render-links .navigation_wrapper .swiper-button-prev::after {
  content: "";
}
page-banner-simple .render-links .navigation_wrapper .swiper-button-next:hover,
page-banner-simple .render-links .navigation_wrapper .swiper-button-prev:hover {
  background-color: #fff;
}
page-banner-simple .render-links .navigation_wrapper .swiper-button-next:hover svg path,
page-banner-simple .render-links .navigation_wrapper .swiper-button-prev:hover svg path {
  stroke: #0E1011;
}
page-banner-simple .services-dropdown-wrapper {
  display: none;
}

page-banner-simple.portfolio .page-banner-simple .flex-wrapper {
  gap: 10px;
}
page-banner-simple.portfolio .page-banner-simple h1 {
  max-width: 100%;
  --h1-font-size: 60px;
}
page-banner-simple.portfolio .page-banner-simple .subtitle {
  font-size: 15px;
}

@media screen and (max-width: 950px) {
  page-banner-simple .render-links {
    width: 80%;
  }
}
@media screen and (max-width: 900px) {
  page-banner-simple.portfolio .page-banner-simple h1 {
    --h1-font-size: 40px;
  }
}
@media screen and (max-width: 650px) {
  page-banner-simple.services .page-banner-simple {
    padding-top: 80px;
  }
  page-banner-simple .page-banner-simple .render-links {
    display: none;
  }
  page-banner-simple .page-banner-simple .container .flex-wrapper {
    gap: 20px;
  }
  page-banner-simple .page-banner-simple .container .flex-wrapper button-component {
    width: 100%;
  }
  page-banner-simple .page-banner-simple .container .flex-wrapper .search {
    margin: 0;
  }
  page-banner-simple.portfolio .page-banner-simple .container .flex-wrapper {
    gap: 5px;
    margin-bottom: 0;
  }
  page-banner-simple.portfolio .page-banner-simple .container .flex-wrapper h1 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  page-banner-simple.portfolio .page-banner-simple button-component,
  page-banner-simple.portfolio .page-banner-simple .subtitle {
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper {
    display: block;
    position: relative;
    z-index: 10;
    color: var(--text-color);
    margin-top: 15px;
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .services-dropdown {
    height: 150px;
    overflow: hidden;
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .services-dropdown.open {
    height: 100%;
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .services-dropdown li {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 10px;
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .services-dropdown li.active a {
    color: var(--accent-color);
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .services-dropdown li:hover a {
    color: var(--accent-color);
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .services-dropdown li a {
    display: block;
    padding: 5px;
    color: var(--text-color);
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .read-more {
    padding: 10px 0 45px;
  }
  page-banner-simple .page-banner-simple .services-dropdown-wrapper .read-more span {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    cursor: pointer;
    color: var(--accent-color);
  }
}
/*!**********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/text-and-image/text-and-image.scss ***!
  \**********************************************************************************************************************************************************************************/
text-and-image h2 {
  text-align: left;
  margin-bottom: 50px;
}
text-and-image .text-wrapper {
  margin-bottom: 50px;
}
text-and-image .text-wrapper .paragraphs-wrapper {
  display: flex;
  gap: 30px;
}
text-and-image .text-wrapper p {
  width: 30vw;
  height: 100%;
  font-size: 18px;
  line-height: 140%;
  color: #3c3e3f;
}
text-and-image .text-wrapper .button-more {
  display: none;
  gap: 10px;
  align-items: center;
  margin: 10px 0 30px;
  font-size: 18px;
  width: fit-content;
  cursor: pointer;
}
text-and-image .text-wrapper .button-more:hover {
  color: #C6E76C;
}
text-and-image .text-wrapper .button-more:hover svg path {
  fill: #C6E76C;
}
text-and-image .images-wrapper {
  display: flex;
  gap: 24px;
}
text-and-image .images-wrapper .small-images-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
text-and-image .images-wrapper .small-images-wrapper image-component img {
  max-height: 450px;
  width: 30vw;
  height: 100%;
  object-fit: cover;
}
text-and-image .images-wrapper .small-videos-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
text-and-image .images-wrapper .small-videos-wrapper youtube-player {
  --minimum-block-height: 500px;
}
text-and-image .big-image-wrapper image-component.big-image img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}
text-and-image .big-image-wrapper .small-images-wrapper {
  flex-direction: column;
}
text-and-image .big-image-wrapper .small-images-wrapper image-component img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1150px) {
  text-and-image .images-wrapper.videos {
    display: block;
  }
  text-and-image .images-wrapper.videos .small-videos-wrapper {
    display: flex;
    justify-content: unset;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
  }
  text-and-image .images-wrapper.videos .small-videos-wrapper youtube-player {
    width: 49%;
  }
  text-and-image .images-wrapper.videos .small-videos-wrapper image-component img {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  text-and-image h2 {
    margin-bottom: 25px;
  }
  text-and-image .paragraphs-wrapper {
    flex-direction: column;
  }
  text-and-image .paragraphs-wrapper p.text {
    width: 100%;
  }
  text-and-image .images-wrapper {
    max-height: 100%;
    flex-direction: column;
  }
  text-and-image .images-wrapper .small-images-wrapper {
    flex-direction: column;
  }
  text-and-image .images-wrapper .small-images-wrapper image-component.small-images img {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  text-and-image .images-wrapper .small-videos-wrapper youtube-player {
    width: 100% !important;
  }
}
@media screen and (max-width: 650px) {
  text-and-image .text-wrapper {
    margin-bottom: 0;
  }
  text-and-image .text-wrapper .paragraphs-wrapper {
    line-height: 21px;
    max-height: 294px;
    overflow: hidden;
    gap: 21px;
  }
  text-and-image .text-wrapper .paragraphs-wrapper.open {
    max-height: 100%;
  }
  text-and-image .text-wrapper .paragraphs-wrapper.open + .button-more svg {
    transform: rotateX(-190deg);
  }
  text-and-image .text-wrapper .button-more {
    display: flex;
  }
}
/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/project-posts/project-posts.scss ***!
  \********************************************************************************************************************************************************************************/
project-posts {
  background: var(--bg-color);
  --transition-duration: .2s;
}
project-posts .project-posts {
  border-top: 1px solid #E1E4E4;
}
project-posts .container {
  max-width: 1728px;
}
project-posts .flex-wrapper {
  justify-content: space-between;
  align-items: center;
}
project-posts .flex-wrapper h2 {
  text-align: left;
  margin-bottom: 0;
}
project-posts .flex-wrapper button-component .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #363738;
}
project-posts .flex-wrapper button-component .btn::after {
  content: "";
  display: block;
  height: 18px;
  width: 15px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7494%2010.9133L13.7229%200.698817L3.50837%200.672313C3.40195%200.657905%203.29368%200.66653%203.19088%200.697604C3.08808%200.728678%202.99316%200.781476%202.91254%200.852423C2.83193%200.923371%202.76749%201.01081%202.72361%201.10882C2.67972%201.20684%202.65741%201.31314%202.65817%201.42053C2.65894%201.52791%202.68277%201.63388%202.72805%201.73126C2.77334%201.82864%202.83901%201.91515%202.92063%201.98494C3.00226%202.05473%203.09792%202.10616%203.20115%202.13576C3.30438%202.16537%203.41277%202.17244%203.51897%202.15652L11.1732%202.18832L1.03293%2012.3286C0.892345%2012.4692%200.813366%2012.6599%200.813367%2012.8587C0.813368%2013.0575%200.892345%2013.2482%201.03293%2013.3888C1.17351%2013.5293%201.36419%2013.6083%201.563%2013.6083C1.76182%2013.6083%201.95249%2013.5293%202.09307%2013.3888L12.2334%203.24847L12.2652%2010.9027C12.2659%2011.1016%2012.3456%2011.2921%2012.4867%2011.4323C12.6279%2011.5725%2012.8189%2011.6508%2013.0179%2011.6501C13.2168%2011.6494%2013.4073%2011.5697%2013.5475%2011.4286C13.6876%2011.2874%2013.766%2011.0963%2013.7653%2010.8974L13.7494%2010.9133Z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
project-posts .flex-wrapper button-component .btn:hover::after {
  content: "";
  display: block;
  height: 18px;
  width: 15px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7494%2010.9133L13.7229%200.698817L3.50837%200.672313C3.40195%200.657905%203.29368%200.66653%203.19088%200.697604C3.08808%200.728678%202.99316%200.781476%202.91254%200.852423C2.83193%200.923371%202.76749%201.01081%202.72361%201.10882C2.67972%201.20684%202.65741%201.31314%202.65817%201.42053C2.65894%201.52791%202.68277%201.63388%202.72805%201.73126C2.77334%201.82864%202.83901%201.91515%202.92063%201.98494C3.00226%202.05473%203.09792%202.10616%203.20115%202.13576C3.30438%202.16537%203.41277%202.17244%203.51897%202.15652L11.1732%202.18832L1.03293%2012.3286C0.892345%2012.4692%200.813366%2012.6599%200.813367%2012.8587C0.813368%2013.0575%200.892345%2013.2482%201.03293%2013.3888C1.17351%2013.5293%201.36419%2013.6083%201.563%2013.6083C1.76182%2013.6083%201.95249%2013.5293%202.09307%2013.3888L12.2334%203.24847L12.2652%2010.9027C12.2659%2011.1016%2012.3456%2011.2921%2012.4867%2011.4323C12.6279%2011.5725%2012.8189%2011.6508%2013.0179%2011.6501C13.2168%2011.6494%2013.4073%2011.5697%2013.5475%2011.4286C13.6876%2011.2874%2013.766%2011.0963%2013.7653%2010.8974L13.7494%2010.9133Z%22%20fill%3D%22%230E1011%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
project-posts .posts_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
project-posts .post {
  padding: 24px;
  gap: 24px;
  border: 1px solid transparent;
  transition: all var(--transition-duration) ease;
  cursor: pointer;
}
project-posts .post:hover {
  background-color: #F9F9F9;
  border: 1px solid #E1E4E4;
}
project-posts .post:hover image-component {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
project-posts .post:hover image-component picture {
  width: 100%;
}
project-posts .post:hover image-component::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.000183105" y="0.000244141" width="43.2965" height="43.2965" rx="21.6483" fill="black"/><path d="M28.0461 25.5442L28.0196 15.3297L17.8051 15.3032C17.6986 15.2888 17.5904 15.2974 17.4876 15.3285C17.3848 15.3595 17.2899 15.4123 17.2092 15.4833C17.1286 15.5542 17.0642 15.6417 17.0203 15.7397C16.9764 15.8377 16.9541 15.944 16.9549 16.0514C16.9556 16.1588 16.9795 16.2647 17.0247 16.3621C17.07 16.4595 17.1357 16.546 17.2173 16.6158C17.2989 16.6856 17.3946 16.737 17.4978 16.7666C17.6011 16.7962 17.7095 16.8033 17.8157 16.7874L25.4699 16.8192L15.3296 26.9595C15.189 27.1001 15.1101 27.2907 15.1101 27.4895C15.1101 27.6884 15.189 27.879 15.3296 28.0196C15.4702 28.1602 15.6609 28.2392 15.8597 28.2392C16.0585 28.2392 16.2492 28.1602 16.3898 28.0196L26.5301 17.8793L26.5619 25.5336C26.5626 25.7325 26.6423 25.923 26.7834 26.0632C26.9246 26.2033 27.1156 26.2817 27.3146 26.281C27.5135 26.2803 27.704 26.2006 27.8442 26.0594C27.9843 25.9183 28.0627 25.7272 28.062 25.5283L28.0461 25.5442Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
project-posts .post image-component img {
  height: 512px;
}
project-posts .post .intro {
  font-size: 18px;
  color: var(--block-primary-h-color);
  height: 75px;
  overflow: hidden;
  line-height: 25.2px;
}
project-posts .post .top .categories {
  margin: 20px 0;
  display: flex;
  gap: 20px;
}
project-posts .post .top .categories div {
  padding: 8px;
  border: solid 1px #E1E4E4;
  background-color: #F9F9F9;
  color: #0E1011;
}
project-posts .post .top .categories div:hover {
  border-color: #C6E76C;
  background-color: #C6E76C;
}
project-posts .post .top .read_more {
  margin-top: 20px;
}
project-posts .post .btn {
  color: #0E1011;
  padding: 5px;
  display: inline-block;
  border: 1.07px solid #E1E4E4;
  --button-tertiary-normal-fill-color: #F9F9F9;
}
project-posts .post h2, project-posts .post .h2 {
  text-align: left;
  margin-top: 20px;
  font-size: 40px;
}
project-posts .post h2 a, project-posts .post .h2 a {
  color: var(--h-color);
}
project-posts .post .h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
project-posts .post .author_date, project-posts .post .stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
project-posts .post .author_date > div, project-posts .post .stats > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
project-posts .post .author_date svg path, project-posts .post .stats svg path {
  fill: #C6E76C;
}
project-posts .post .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
project-posts .post .info > div {
  gap: 15px;
}
project-posts .post .info div {
  display: flex;
  align-items: center;
  gap: 8px;
}
project-posts .post .info a {
  color: var(--block-primary-h-color);
  transition: all var(--transition-duration) ease;
}
project-posts .post .read_more {
  margin-top: 10px;
}
project-posts .post .read_more a {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 10px;
  color: var(--block-primary-h-color);
  transition: color var(--transition-duration) ease;
}
project-posts .post .read_more svg {
  transition: transform var(--transition-duration) ease;
}
project-posts .pagination {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
project-posts .pagination.hide {
  display: none;
}
project-posts .pagination_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
project-posts .pagination .prev, project-posts .pagination .next {
  border: 1px solid #B3BABF;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-duration) ease;
  cursor: pointer;
  border-radius: 100%;
}
project-posts .pagination .prev a, project-posts .pagination .next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
project-posts .pagination .prev svg path, project-posts .pagination .next svg path {
  stroke: #0E1011;
  background-color: #fff;
  transition: all var(--transition-duration) ease;
}
project-posts .pagination .prev.disable, project-posts .pagination .next.disable {
  cursor: default;
  background-color: #F5F5F5;
  border-color: #E1E4E4;
}
project-posts .pagination .prev:not(.disable):hover, project-posts .pagination .next:not(.disable):hover {
  background-color: #0E1011;
}
project-posts .pagination .prev:not(.disable):hover svg path, project-posts .pagination .next:not(.disable):hover svg path {
  stroke: #fff;
}
project-posts .pagination .pages {
  list-style: none;
  display: flex;
  align-items: center;
}
project-posts .pagination .pages li {
  height: 20px;
  margin-right: 20px;
}
project-posts .pagination .pages li a, project-posts .pagination .pages li span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5C6C6;
  background-color: #fff;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 100%;
  transition: all var(--transition-duration) ease;
}
project-posts .pagination .pages li a:hover, project-posts .pagination .pages li span:hover {
  scale: 1.1;
  color: var(--accent-color);
}
project-posts .pagination .pages li.active a, project-posts .pagination .pages li.active span {
  font-weight: 700;
  font-size: 24px;
  color: #0E1011;
}
project-posts .pagination .prev {
  margin-right: 20px;
}
project-posts .pagination .prev svg {
  margin-left: -3px;
}
project-posts .pagination .next svg {
  margin-left: 3px;
}
project-posts #sort-dropdown {
  width: 155px;
  height: 56px;
  background-color: #F9F9F9;
  border: 1px solid #E1E4E4;
  padding: 10px;
  font-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="10" viewBox="0 0 15 10" fill="none"><path d="M0.221566 2.0709L7.46304 9.2749L14.7045 2.0709C14.79 2.00584 14.8604 1.92318 14.9111 1.82852C14.9619 1.73386 14.9916 1.62941 14.9985 1.52224C15.0053 1.41506 14.989 1.30767 14.9508 1.20733C14.9125 1.107 14.8531 1.01605 14.7766 0.94066C14.7002 0.865267 14.6084 0.807186 14.5075 0.770349C14.4066 0.733513 14.299 0.718779 14.192 0.727147C14.0849 0.735516 13.9809 0.76679 13.8869 0.818853C13.793 0.870916 13.7114 0.942552 13.6475 1.02891L8.21268 6.41879C7.97451 6.64673 8.32806 6.29318 7.97451 6.64673C7.62095 7.00028 7.62607 7.0054 7.46304 7.16843C7.35808 7.06346 7.16514 6.87052 7.02427 6.72965C6.85854 6.56393 6.88064 6.58602 6.71341 6.41879L1.27855 1.02891C1.13739 0.888744 0.946334 0.810395 0.747408 0.811098C0.548482 0.811801 0.357981 0.891497 0.217816 1.03266C0.0776517 1.17382 -0.000697398 1.36487 5.4425e-06 1.5638C0.000708283 1.76273 0.0804068 1.95323 0.221566 2.09339L0.221566 2.0709Z" fill="%230E1011"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px 10px;
  cursor: pointer;
}
project-posts .dropdown-wrapper {
  display: none;
}

project-posts.dark_dark_theme .project-posts {
  padding: 80px 0 40px;
  border: none;
}
project-posts.dark_dark_theme .project-posts .post:hover {
  background-color: #1a1c1d;
  border-color: #363738;
}
project-posts.dark_dark_theme .project-posts .post_left {
  max-width: 512px;
  max-height: 512px;
}
project-posts.dark_dark_theme .project-posts .post .stats {
  color: white;
}
project-posts.dark_dark_theme .project-posts .post .top .categories div {
  padding: 4px;
  background-color: #1a1c1d;
  border-color: #363738;
  color: #fff;
}
project-posts.dark_dark_theme .project-posts .post .top .categories div:hover {
  border-color: #C6E76C;
  background-color: #C6E76C;
  color: #363738;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1200px) {
  project-posts .post.main .post_left a {
    padding-left: 0;
  }
  project-posts .post {
    gap: 30px;
  }
  project-posts .post h2, project-posts .post .h2 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  project-posts .post.main {
    flex-direction: column;
  }
  project-posts .post.main .post_left,
  project-posts .post.main .post_right {
    width: 100%;
    max-width: initial;
  }
  project-posts .post.main .intro {
    margin-bottom: 30px;
  }
  project-posts .post.main .post_right .top_flex {
    margin-bottom: 15px;
  }
  project-posts .post.main img {
    max-width: initial;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  project-posts .posts_list .post {
    width: 32.27%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
    max-width: 555px;
  }
  project-posts .posts_list .post img {
    object-fit: cover;
    width: 100%;
  }
  project-posts .posts_list .post:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 770px) {
  project-posts .posts_list .post {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  project-posts .posts_list .post img {
    height: 350px;
    object-fit: cover;
  }
  project-posts .posts_list .post:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 770px) {
  project-posts .posts_list .post {
    width: 100%;
    margin-bottom: 15px;
  }
  project-posts .posts_list .post .top_flex {
    flex-direction: initial;
    flex-wrap: wrap;
    align-items: center;
  }
  project-posts .posts_list .post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  project-posts .posts_list .post:last-child {
    margin-bottom: 0;
  }
  project-posts .post .post_right {
    height: auto;
  }
}
@media screen and (max-width: 650px) {
  project-posts .project-posts {
    border: none;
    padding-top: 0;
  }
  project-posts .post.main {
    margin-bottom: 15px;
    gap: 20px;
  }
  project-posts .post.main .post_title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 10px;
  }
  project-posts .post.main .post_right .top_flex {
    margin-bottom: 10px;
  }
  project-posts .post .author_date {
    margin-bottom: 10px;
  }
  project-posts .post .intro {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  project-posts .post .info {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  project-posts .post .info div {
    flex-wrap: wrap;
  }
  project-posts .dropdown-wrapper {
    display: block;
    position: sticky;
    top: 60px;
    z-index: 1;
    height: 75px;
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 20px;
    background-color: #0e1011;
  }
  project-posts .dropdown-wrapper .custom-dropdown {
    position: relative;
    width: 100%;
    border: 1px solid #ffffff;
    background-color: #0e1011;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    user-select: none;
  }
  project-posts .dropdown-wrapper .custom-dropdown.open {
    height: 100%;
  }
  project-posts .dropdown-wrapper .custom-dropdown .dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
  }
  project-posts .dropdown-wrapper .custom-dropdown .dropdown-selected::after {
    content: "";
    width: 15px;
    height: 9px;
    background-image: url("data:image/svg+xml;utf8,<svg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.221566 1.57103L7.46304 8.77502L14.7045 1.57103C14.79 1.50596 14.8604 1.42331 14.9111 1.32864C14.9619 1.23398 14.9916 1.12953 14.9985 1.02236C15.0053 0.915185 14.989 0.807795 14.9508 0.707457C14.9125 0.607118 14.8531 0.516174 14.7766 0.440782C14.7002 0.365389 14.6084 0.307308 14.5075 0.270472C14.4066 0.233635 14.299 0.218901 14.192 0.227269C14.0849 0.235638 13.9809 0.266912 13.8869 0.318975C13.793 0.371038 13.7114 0.442674 13.6475 0.529033L8.21268 5.91891C7.97451 6.14685 8.32806 5.7933 7.97451 6.14685C7.62095 6.50041 7.62607 6.50552 7.46304 6.66855C7.35808 6.56359 7.16514 6.37064 7.02427 6.22978C6.85854 6.06405 6.88064 6.08614 6.71341 5.91891L1.27855 0.529032C1.13739 0.388866 0.946334 0.310517 0.747408 0.31122C0.548482 0.311923 0.357981 0.391619 0.217816 0.532778C0.0776517 0.673937 -0.000697398 0.864996 5.4425e-06 1.06392C0.000708283 1.26285 0.0804068 1.45335 0.221566 1.59351L0.221566 1.57103Z' fill='white'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  project-posts .dropdown-wrapper .custom-dropdown .dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0e1011;
    border: 1px solid #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 20;
  }
  project-posts .dropdown-wrapper .custom-dropdown .dropdown-list a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }
  project-posts .dropdown-wrapper .custom-dropdown .dropdown-list a:hover {
    color: var(--accent-color);
  }
  project-posts .dropdown-wrapper .custom-dropdown.open .dropdown-list {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  project-posts .flex-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  project-posts .flex-wrapper button-component {
    width: 100%;
  }
  project-posts .flex-wrapper button-component .btn {
    justify-content: center;
  }
}
@media screen and (max-width: 470px) {
  project-posts .post .top_flex > *, project-posts .post.main .top_flex > * {
    margin-right: 0;
  }
  project-posts .post .post_right .top_flex, project-posts .post.main .post_right .top_flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  project-posts .post .post_right .top_flex > div, project-posts .post.main .post_right .top_flex > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  project-posts .post:not(.post.main) .categories {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 450px) {
  project-posts .post, project-posts .post.main {
    padding: 15px;
  }
  project-posts .post .post_title, project-posts .post.main .post_title {
    font-size: 20px;
    line-height: 24px;
  }
  project-posts .post .read_more a, project-posts .post.main .read_more a {
    font-size: 14px;
    line-height: 18px;
  }
  project-posts .post .read_more a {
    padding-left: 0;
  }
  project-posts .post.main .read_more a {
    padding: 10px 15px;
    padding-left: 15px;
  }
}
/*!**************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/custom-about-us-banner/custom-about-us-banner.scss ***!
  \**************************************************************************************************************************************************************************************************/
custom-about-us-banner {
  background-color: var(--bg-color);
  display: block;
}
custom-about-us-banner .title {
  text-align: left;
  margin-bottom: 50px;
}
custom-about-us-banner .subtitle {
  margin-bottom: 40px;
}
custom-about-us-banner .flex_button {
  display: flex;
  gap: 20px;
}
custom-about-us-banner .flex-wrapper.content-wrapper {
  gap: 0;
}
custom-about-us-banner .container {
  width: 100vw;
}
custom-about-us-banner .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
custom-about-us-banner .text .subtitle {
  color: #3c3e3f;
  font-size: 18px;
}
custom-about-us-banner .text .button-more {
  display: none;
  gap: 10px;
  align-items: center;
  margin: 10px 0 30px;
  font-size: 18px;
  width: fit-content;
  cursor: pointer;
}
custom-about-us-banner .text .button-more:hover {
  color: #C6E76C;
}
custom-about-us-banner .text .button-more:hover svg path {
  fill: #C6E76C;
}
custom-about-us-banner .image {
  width: 50vw;
}
custom-about-us-banner .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
custom-about-us-banner .image youtube-player image-component {
  width: 100%;
  height: 100%;
}
custom-about-us-banner .image video {
  width: 100%;
}
custom-about-us-banner .btn {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  custom-about-us-banner .flex-wrapper.content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  custom-about-us-banner .flex-wrapper.content-wrapper .container {
    width: 100%;
  }
  custom-about-us-banner .flex-wrapper.content-wrapper .text {
    max-width: 100%;
  }
  custom-about-us-banner .flex-wrapper.content-wrapper .image {
    width: 100%;
    padding: 0 40px;
  }
  custom-about-us-banner .flex-wrapper.content-wrapper .flex_button {
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  custom-about-us-banner .flex-wrapper.content-wrapper .image {
    padding: 0 15px;
  }
}
@media screen and (max-width: 550px) {
  custom-about-us-banner .flex_button {
    flex-wrap: wrap;
  }
  custom-about-us-banner .flex_button > * {
    width: 100%;
  }
}

@media screen and (min-width: 1768px) {
  custom-about-us-banner .container {
    padding: 0 96px;
  }
}
@media screen and (max-width: 650px) {
  custom-about-us-banner .text .subtitle {
    max-height: 175px;
    overflow: hidden;
    margin-bottom: 0;
  }
  custom-about-us-banner .text .subtitle.open {
    max-height: 100%;
  }
  custom-about-us-banner .text .subtitle.open + .button-more svg {
    transform: rotateX(-190deg);
  }
  custom-about-us-banner .text .button-more {
    display: flex;
  }
}
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/@splidejs/splide/dist/css/splide.min.css ***!
  \*************************************************************************************************************************************/
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
/*!**************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/portfolio-simple/portfolio-simple.scss ***!
  \**************************************************************************************************************************************************************************************/
portfolio-simple .portfolio-simple {
  background: #000;
  width: 100%;
  height: 100%;
}
portfolio-simple .portfolio-simple h2 {
  text-align: left;
  margin-bottom: 50px;
}
portfolio-simple .skeleton {
  width: 100%;
  height: 330px;
  background: linear-gradient(90deg, #1a1c1d, #2a2c2d);
  position: relative;
  overflow: hidden;
  animation: animloader 1.5s ease-in-out infinite;
}
portfolio-simple .grid-row {
  margin-bottom: 25px;
}
portfolio-simple .grid-row .splide__list li {
  margin-right: 25px;
}
portfolio-simple .grid-item {
  width: max-content;
  height: 330px;
  cursor: pointer;
  margin-bottom: 5px;
  transition: all 0.5s ease-out;
}
portfolio-simple .grid-item.youtube-icon {
  position: relative;
}
portfolio-simple .grid-item.youtube-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E%3Crect x%3D%225%22 y%3D%225%22 width%3D%2215%22 height%3D%2215%22 fill%3D%22%23ffffff%22/%3E%3Cpath d%3D%22M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z%22 fill%3D%22%23ff0000%22/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
portfolio-simple .grid-item img {
  border-radius: 5px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
portfolio-simple .grid-item:hover {
  transform: scale(1.02);
}
portfolio-simple .grid-item:hover.youtube-icon::after {
  content: "";
  display: none;
}
portfolio-simple .grid-item:hover portfolio-image {
  background-color: #1a1c1d;
  border-color: #363738;
  filter: brightness(80%);
  position: relative;
}
portfolio-simple .grid-item:hover portfolio-image::after {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.000183105" y="0.000244141" width="43.2965" height="43.2965" rx="21.6483" fill="black"/><circle cx="20" cy="20" r="7" stroke="white" stroke-width="2"/><line x1="25" y1="25" x2="30" y2="30" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 650px) {
  portfolio-simple .portfolio-simple h2 {
    margin-bottom: 15px;
  }
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
