:root {
    --text-color: #ffffffab;
    --main-blue: #011c818a;
    --background-mix-color: #0000007a;
    --block-card-color: #dedede33;
    --modal-background-color: #ffffff4f;
    --icon-hover: #8c0f09;
    --link-hover: #d24a42;

    --invert-link: #052b48;
    /*--invert-link-hover: #052b48e6;*/
    --invert-link-hover: #d24a42;
    --invert-text: #052b48e6;
    --invert-text-white: #fff;
    --invert-text-red: #d24a42;
}

* {
  box-sizing: border-box;
}

/* для описания UI */
body.discription {
  padding: 60px;
  height: 100vh;
  background-size: cover;
  background-color: var(--background-mix-color);
  background-blend-mode: soft-light;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #292929
}

::-webkit-scrollbar-thumb {
  background-color: #011c8199;
  border-radius: 8px;
}

/* / Scrollbar */

/* .min-content-height {
  box-sizing: border-box;
} */

[class^="section-"] {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-article {
  /*padding-top: 80px;*/
  position: relative;
}

/* для текста */
.clear-fix {
  clear: both;
}

ul {
  list-style: none;
}

.header--invert {
  color: #232332;
  background-color: #fff;
  transition: 0.25s cubic-bezier(0.47, 0.09, 0.51, 0.9);
}

.header--invert .logo {
  width: 70px;
}

.header.header--invert {
  padding: 8px 0 14px;
  font-size: 17px;
}

.header--invert.hide {
  transform: translateY(-110%);
  transition: 0.25s cubic-bezier(0.47, 0.09, 0.51, 0.9);
}

.icon {
  width: 40px;
  height: 40px;
  fill: var(--text-color);
  cursor: pointer;
  transition: 0.3s ease-out;
}

/*
.icon:hover {
  fill: var(--icon-hover);
  transition: 0.3s ease-out;
}*/

.page-title {
  /*font-size: 84px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--invert-text);
  word-spacing: 14px;
  letter-spacing: -5px;*/


  font-size: 40px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--invert-text);
}

.button {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    border-radius: 5px;
    background-color: var(--main-blue);
    border: 1px solid var(--main-blue);
    cursor: pointer;
    transition: 0.3s ease-out;
}

.button:hover {
    background-color: #ffffff00;
    border: 1px solid #ffffff;
    transition: 0.3s ease-out;
}

.button.button--invert {
  background-color: #df5750;
  border: 1px solid #df5750;
}

.button.button--invert:hover {
  background-color: #ffffff00;
  border: 1px solid #df5750;
  color: #df5750;
}

.link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-out;
}

.link:hover {
  color: var(--link-hover);
  transition: 0.3s ease-out;
}

.link_dots {
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
  transition: 0.3s ease-out;
}

.link_dots:hover {
  color: var(--text-color);
  border-bottom: 1px solid var(--link-hover);
  transition: 0.3s ease-out;
}

.link_dots--invert {
  font-weight: 300;
  color: var(--invert-link);
  text-decoration: none;
  border-bottom: 1px dotted var(--invert-link);
  transition: 0.3s ease-out;
}

.link_dots--invert:hover {
  color: var(--invert-text);
  border-bottom: 1px solid var(--invert-link-hover);
  transition: 0.3s ease-out;
}

.list-block_line {
  position: relative;
  border-bottom: 1px solid #ffffff4d;
  margin-bottom: 5px;
}

.list-block_line .static_line--link {
  bottom: -1px;
  width: 0%;
}

.list-block_line--link {
  display: inline-block;
  font-size: 26px;
  font-weight: 100;
  color: #fff;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  position: relative;
  bottom: -1px;
  transition: 0.2s ease-out;
}

.list-block_line--link:hover {
  color: var(--text-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  /*animation: link-bottom .5s ease-out;
  width: 100%;*/
}

.list-block_line--link:hover + .static_line--link {
  animation: link-bottom .5s ease-out;
  width: 100%;
}

@keyframes link-bottom {
  0% {
    width: 25%;
  }
  100% {
    width: 100%;
  }
}

.static_line--link {
  margin: 0;
  border: none;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 37px;
  background-color: var(--invert-text-red);
}

@keyframes link-static {
  0% {
    width: 25%;
  }
  100% {
    width: 100%;
  }
}

/* modal */

.modal_wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000000d1;
    z-index: 50;
  }

  .modal--active {
    display: flex;
  }
  
  .modal {
    position: relative;
    width: 460px;
    background-color: var(--modal-background-color);
    backdrop-filter: blur(4px);
    margin: auto;
    border-radius: 7px;
  }

  .modal.modal--order {
    width: 760px;
  }

  .input_file {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
  }
 
  .input_file input {
    display: none;
  }

  .icon.icon_app_file {
    width: 22px;
    height: 22px;
  }

  .icon.icon_app_file:hover {
    fill: var(--text-color);
  }

  .input_file_text {
    font-size: 17px;
    font-weight: 400;
    margin-left: 5px;
    transition: 0.3s ease-out;
  }
  
  .input_file:hover .icon_app_file,
  .input_file:hover .input_file_text {
    fill: #8c0f09a8;
    color: #8c0f09eb;
    transition: 0.3s ease-out;
  }

  .download_file {
    display: flex;
    align-items: center;
    margin-top: 6px;
  }

  .download_file-name {
    margin-left: 8px;
  }

  .download_file-type {
    font-size: 14px;
    padding: 0 2px 3px 3px;
    border: 1px solid;
    border-radius: 5px;
  }
  
  .modal_close {
    position: absolute;
    top: 11px;
    right: 12px;
    cursor: pointer;
    height: 35px;
    width: 35px;
  }
  
  .modal_close--item {
    height: 1px;
    width: 38px;
    background-color: #ffffffa6;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.3s ease-out;
  }
  
  .modal_close--item:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .modal_close--item:nth-child(2) {
    transform: rotate(-45deg);
  }
  
  .modal_close:hover .modal_close--item {
    background-color: var(--icon-hover);
    transition: 0.3s ease-out;
  }
  
  .modal_content {
    margin-top: 20px;
    padding: 0 15px;
    margin: 0 0 12px 0;	
  }
  
  .modal_content .title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #fff;
  }
  
  .modal_content .subtitle {
    font-size: 15px;
    color: #fff;
  }
  
  .modal_content .input_name,
  .modal_content .input_phone,
  .modal_content .input_mail {
    background: unset;
    border: 1px solid #ffffffa6;
    width: 100%;
    height: 33px;
    border-radius: 3px;
    padding: 1px 7px;
    color: #fff;
  }

  .modal_content .input_name.error,
  .modal_content .input_phone.error,
  .modal_content .input_mail.error {
    background: #d24a4261;
  }
  
  .modal_content .input_name:focus-visible,
  .modal_content .input_phone:focus-visible,
  .modal_content .input_mail:focus-visible,
  .modal_content .input_message:focus-visible {
    outline: none;
  }
  
  .modal_content .input_name::placeholder,
  .modal_content .input_phone::placeholder,
  .modal_content .input_mail::placeholder,
  .modal_content .input_message::placeholder {
    color: #ffffffa6;
    font-size: 15px;
    font-weight: 100;
    font-family: 'Rubik', sans-serif;
  }
  
  .modal_content .content_inputs {
    padding-top: 20px;
  }
  
  .modal_input_wrapper {
    margin-bottom: 15px;
  }

  .modal_input_wrapper>span.error {
    font-size: 14px;
    color: #ffffffa6;
  }
  
  .modal_content .input_message {
    background: unset;
    border: 1px solid #ffffffa6;
    width: 100%;
    border-radius: 3px;
    padding: 6px 7px;
    color: #fff;
    resize: none;
  }
  
  .content_inputs .button {
    width: 100%;
    height: 38px;
    font-size: 18px;
    margin: 20px 0;
  }

  .content_inputs_file {
    width: 175px;
  }

  .modal_order_wrapper {
    margin-bottom: 15px;
  }

  .modal_order_wrapper>span.error {
    font-size: 14px;
    color: #ffffffa6;
  }
  
  /* / modal */

  .mt-0 {
    margin-top: 0px;
  }

  .mb-0 {
    margin-bottom: 0px;
  }

  /*  discription   */

  .discription .button {
    padding: 15px 25px;
    width: 245px;
  }

  .discription .link {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 50px;
  }

  .discription .link_dots {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 50px;
  }

  .discription .calling {
    margin-bottom: 50px;
  }

  .calling .link_dots {
    margin-bottom: 0;
  }

  .discription .list-block_inner {
    width: 60%;
  }

  .link_dots--invert-wrapper {
    padding: 20px;
    background-color: #fff;
  }
/* / discription   */

/* slider button */

.owl-nav {
  display: none;
}

.slider-button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50px;
}

.slider-button:hover {
  background-color: #fff;
}

.slider-button--left {
  left: -43px;
  padding-right: 3px;
}

.slider-button--left .icon_slider_right {
  transform: rotateZ(180deg);
}

.slider-button--right {
  right: -43px;
  padding-left: 3px;
}

.icon.icon_slider_right {
  width: 32px;
  height: 32px;
}

/* / slider button */