@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  scroll-behavior: smooth;
}

:root {
  --main_color: #2273d2;
  --focus_inp: #cf8c4a;
  --main_color_darker: #19559a;
  --text_gray: #49555a;
  --text_white: #ffffff;
  --text_black: #000000;
  --text_dark: #011627;
  --phone-f-size: 12px;
  --link-size: 17px;
  --text-size: 18px;
  --title-size: 20px;
  --header-size: 36px;
  --lending-f-size: 64px;
}
@media screen and (max-width: 1200px) {
  :root {
    --phone-f-size: 10px;
    --link-size: 12px;
    --text-size: 18px;
    --title-size: 24px;
    --header-size: 34px;
    --lending-f-size: 60px;
  }
}
@media screen and (max-width: 880px) {
  :root {
    --phone-f-size: 10px;
    --link-size: 12px;
    --text-size: 14px;
    --title-size: 20px;
    --header-size: 24px;
    --lending-f-size: 40px;
  }
}

::-moz-selection {
  background: var(--main_color);
  color: var(--text_white);
}

::selection {
  background: var(--main_color);
  color: var(--text_white);
}

.wrapper_main .container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1350px) {
  .wrapper_main .container {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1200px) {
  .wrapper_main .container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1000px) {
  .wrapper_main .container {
    padding: 0 50px;
  }
}
@media screen and (max-width: 880px) {
  .wrapper_main .container {
    padding: 0 16px;
  }
}

button {
  border: 0;
  outline: 0;
  cursor: pointer;
  color: var(--text_white);
  transition: 0.3s;
}
button:active {
  transform: scale(0.98);
}
button.btn {
  width: auto;
  height: 48px;
  font-size: var(--link-size);
  font-weight: 600;
  line-height: 20px;
  padding: 14px 32px;
}
button.btn.primary {
  background: var(--main_color);
}
button.btn.primary:hover {
  background: var(--main_color_darker);
}
button.btn.outline {
  background: transparent;
  border: 1px solid #ffffff;
}
button.btn.outline:hover {
  background: var(--main_color_darker);
}
@media screen and (max-width: 1200px) {
  button.btn {
    width: 200px;
    height: 40px;
    padding: 10px 28px;
  }
}

a {
  all: unset;
  text-decoration: none;
  cursor: pointer;
}

.nowrap {
  white-space: nowrap;
  overflow: hidden;
}

.grid {
  display: grid;
}
.grid.grid_column_2 {
  grid-template-columns: 1fr 1fr;
}
.grid .span-2 {
  grid-column: span 2;
}

.form {
  min-width: 860px;
}
.form .form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px 20px;
}
.form .form_grid .title_inp {
  font-weight: 500;
  font-size: var(--text-size);
  line-height: 24px;
  color: var(--text_black);
  margin-bottom: 8px;
}
.form .form_grid .title_inp i {
  color: var(--main_color);
}
.form .form_grid input,
.form .form_grid select,
.form .form_grid textarea {
  width: 100%;
  outline: 0;
  padding: 14px 32px 14px 28px;
  font-size: var(--text-size);
  height: 48px;
  border: 1px solid #49555a;
  background: transparent;
}
.form .form_grid input[type=number],
.form .form_grid select[type=number],
.form .form_grid textarea[type=number] {
  padding-right: 5px;
}
.form .form_grid input:focus,
.form .form_grid select:focus,
.form .form_grid textarea:focus {
  border-color: var(--focus_inp);
}
.form .form_grid textarea {
  height: 163px;
  resize: vertical;
  max-height: 180px;
}
.form .form_grid .grid_el_span_1 {
  grid-column: span 1;
}
.form .form_grid .grid_el_span_2 {
  grid-column: span 2;
}
.form .btn {
  margin-top: 24px;
  padding: 14px 32px;
  width: 200px;
  height: 48px;
}
@media screen and (max-width: 550px) {
  .form .btn {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .form {
    min-width: 780px;
  }
  .form .form_grid .title_inp {
    margin-bottom: 6px;
  }
  .form .form_grid input,
.form .form_grid select,
.form .form_grid textarea,
.form .btn {
    height: 44px;
    padding: 10px 28px 10px 28px;
  }
  .form .form_grid textarea {
    height: 140px;
  }
}
@media screen and (max-width: 880px) {
  .form {
    min-width: unset;
  }
}
@media screen and (max-width: 550px) {
  .form .form_grid {
    grid-template-columns: 1fr;
  }
  .form .form_grid .grid_el_span_1,
.form .form_grid .grid_el_span_2 {
    grid-column: unset;
  }
  .form input,
.form select,
.form textarea {
    padding: 8px 25px 8px 18px !important;
  }
}

.header {
  /* background: url("../assets/images/header-back.png"); */
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    top: 0;
    filter: brightness(0.5);
}
.header .container {
  position: relative;
  padding: 24px 0 32px;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .header .container {
    padding: 24px 50px 32px;
  }
}
@media screen and (max-width: 880px) {
  .header .container {
    padding: 10px 16px 15px;
  }
}

.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar .logo {
  width: auto;
  cursor: pointer;
}
.header .navbar .logo img {
  width: 68px;
}
@media screen and (max-width: 1200px) {
  .header .navbar .logo {
    width: 155px;
  }
  .header .navbar .logo img {
    width: 55px;
  }
}
.header .navbar .menus {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 40px;
}
.header .navbar .menus a.menu_item {
  color: var(--text_white);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--link-size);
  line-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header .navbar .menus a.menu_item:hover {
  color: var(--main_color);
}
@media screen and (max-width: 1200px) {
  .header .navbar .menus {
    gap: 30px;
  }
}
@media screen and (max-width: 880px) {
  .header .navbar .menus {
    display: none;
  }
}
.header .navbar .hamburger_btn {
  display: none;
  background: transparent;
}
.header .navbar .hamburger_btn:hover {
  transform: scale(1.1);
}
.header .navbar .hamburger_btn:active {
  transform: scale(0.9);
}
@media screen and (max-width: 880px) {
  .header .navbar .hamburger_btn {
    display: block;
  }
}
.header .navbar .btn {
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  height: 48px;
  width: 165px;
  border: 1px solid #ffffff;
  font-weight: 600;
  font-size: var(--link-size);
  line-height: 20px;
}
.header .navbar .btn.nowrap {
  white-space: nowrap;
  overflow: hidden;
}
.header .navbar .btn.hidden {
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .header .navbar .btn {
    height: 40px;
    width: 155px;
    padding: 10px 18px 10px 18px;
  }
}
@media screen and (max-width: 880px) {
  .header .navbar .btn {
    display: none;
  }
}

.header .navbar_for_mobile {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  min-width: 100vw;
  height: 100vh;
  background: var(--text_dark);
  overflow: hidden;
  transition: height 0.3s;
  display: none;
}
.header .navbar_for_mobile.close {
  height: 0;
}
.header .navbar_for_mobile .menus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text_white);
  font-size: 24px;
  list-style: none;
  height: 100%;
  margin-top: -40px;
}
.header .navbar_for_mobile .menus li {
  margin-bottom: 24px;
  text-align: center;
}
.header .navbar_for_mobile .menus li:hover {
  color: var(--main_color);
}
.header .navbar_for_mobile .menus li:active {
  color: var(--main_color_darker);
}
.header .navbar_for_mobile .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar_for_mobile .head .logo img {
  width: 55px;
}
.header .navbar_for_mobile .head .close_btn {
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .navbar_for_mobile .head .close_btn:hover {
  transform: scale(1.1);
}
.header .navbar_for_mobile .head .close_btn:active {
  transform: scale(0.9);
}
@media screen and (max-width: 880px) {
  .header .navbar_for_mobile {
    display: block;
  }
}

.header .lending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 135px 0 226px;
  grid-gap: 40px;
}
.header .lending .title_wrapper {
  /* max-width: 994px; */
}
.header .lending .title_wrapper h1.title {
  font-weight: 800;
  font-size: var(--lending-f-size);
  line-height: 78px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text_white);
}
@media screen and (max-width: 880px) {
  .header .lending .title_wrapper h1.title {
    line-height: 48px;
  }
}
.header .lending .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
@media screen and (max-width: 460px) {
  .header .lending .btn_wrapper {
    flex-direction: column;
  }
}

.header .phone {
  position: absolute;
  bottom: 32px;
  right: 0;
  transition: 0.3;
}
.header .phone:hover .number {
  width: 115px;
  right: 64px;
  transition: 0.3s 0s;
}
.header .phone .phone_icon {
  position: relative;
  z-index: 2;
  padding: 16px;
  gap: 8px;
  width: 56px;
  height: 56px;
  background: var(--main_color);
  border-radius: 100px;
}
.header .phone .phone_icon:hover {
  background: var(--main_color_darker);
}
.header .phone .number {
  position: absolute;
  transition: 0.3s 0.3s;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  right: 0;
  padding: 8px 16px;
  height: 36px;
  background: #323b3e;
  border-radius: 100px;
  font-weight: 400;
  font-size: var(--phone-f-size);
  line-height: 20px;
  text-align: center;
  color: var(--text_white);
}
@media screen and (max-width: 1000px) {
  .header .phone {
    right: 50px;
  }
}
@media screen and (max-width: 880px) {
  .header .phone {
    right: 16px;
  }
}

.main h1.title-main {
  font-weight: 700;
  font-size: var(--header-size);
  line-height: 44px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--main_color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
}
.main h1.title-main .line {
  display: inline-block;
  width: 150px;
  height: 1px;
  background: var(--main_color);
}
@media screen and (max-width: 460px) {
  .main h1.title-main {
    white-space: nowrap;
  }
  .main h1.title-main .line {
    width: 100%;
  }
}
.main h3.title-secondary {
  font-weight: 600;
  font-size: var(--title-size);
  line-height: 32px;
  color: var(--text_black);
}
.main p.text {
  font-weight: 500;
  font-size: var(--text-size);
  line-height: 24px;
  color: var(--text_gray);
}
.main .about {
  padding: 96px 0;
}
.main .about .container > .grid {
  align-items: center;
  justify-content: space-between;
  grid-gap: 130px;
}
.main .about .content {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.main .about .content.hidden_content {
  display: none;
}
@media screen and (max-width: 750px) {
  .main .about .container > .grid {
    grid-template-columns: 1fr;
    grid-gap: 32px !important;
  }
  .main .about .title-secondary,
.main .about .text {
    display: none;
  }
  .main .about .content.hidden_content {
    display: flex;
  }
  .main .about .content.hidden_content .hidden_text {
    display: block;
  }
}
.main .about .gallery {
  grid-gap: 20px;
}
.main .about .gallery .first_row {
  width: 100%;
}
.main .about .gallery .second_row {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .main .about .container > .grid {
    grid-gap: 80px;
  }
  .main .about .content {
    grid-gap: 8px;
  }
  .main .about .gallery {
    grid-gap: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .main .about .container > .grid {
    grid-gap: 70px;
  }
  .main .about .content {
    grid-gap: 8px;
  }
  .main .about .gallery {
    grid-gap: 12px;
  }
}
.main .authority .banner {
  background: url("../assets/images/mc_author_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 194px 0;
  position: relative;
}
.main .authority .banner .filter {
  backdrop-filter: brightness(0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.main .authority .banner .content {
  max-width: 730px;
  position: relative;
}
.main .authority .banner .content h3,
.main .authority .banner .content p {
  color: var(--text_white);
}
.main .authority .form_wrapper {
  padding: 96px 0;
}
.main .authority .form_wrapper .quote_form {
  max-width: 860px;
}
.main .authority .form_wrapper .quote_form h1 {
  margin-bottom: 48px;
}
@media screen and (max-width: 380px) {
  .main .mc_equipment article.banner .title-main {
    white-space: normal;
    text-align: left;
  }
  .main .mc_equipment article.banner .title-main .line {
    display: none;
  }
}
.main .mc_equipment article.banner .banner_imgs .banner_el {
  display: flex;
  margin-top: 48px;
  grid-gap: 20px;
}
.main .mc_equipment article.banner .banner_imgs .banner_el .img_box {
  width: 50%;
}
.main .mc_equipment article.banner .banner_imgs .banner_el .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .mc_equipment article.banner .banner_imgs .banner_el.el-2 {
  margin-top: 24px;
  flex-direction: row-reverse;
}
.main .mc_equipment article.banner .banner_imgs .banner_el.el-2 .content {
  padding-left: 0;
  padding-right: 110px;
}
.main .mc_equipment article.banner .banner_imgs .banner_el .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 110px;
  width: 50%;
}
.main .mc_equipment article.banner .banner_imgs .banner_el .content h3 {
  margin-bottom: 8px;
}
@media screen and (max-width: 880px) {
  .main .mc_equipment article.banner .banner_imgs .banner_el .content {
    padding-left: 1vw;
  }
  .main .mc_equipment article.banner .banner_imgs .banner_el.el-2 .content {
    padding-right: 1vw;
  }
}
@media screen and (max-width: 690px) {
  .main .mc_equipment article.banner .banner_imgs .banner_el {
    flex-direction: column;
  }
  .main .mc_equipment article.banner .banner_imgs .banner_el .content {
    padding-left: 0;
    width: 100%;
  }
  .main .mc_equipment article.banner .banner_imgs .banner_el .img_box {
    width: 100%;
  }
  .main .mc_equipment article.banner .banner_imgs .banner_el.el-2 {
    flex-direction: column;
  }
  .main .mc_equipment article.banner .banner_imgs .banner_el.el-2 .content {
    padding-right: 0;
  }
}
.main .mc_equipment .form_wrapper {
  padding: 96px 0;
}
.main .mc_equipment .form_wrapper .quote_form {
  position: relative;
  z-index: 2;
}
.main .mc_equipment .form_wrapper .quote_form {
  max-width: 860px;
}
.main .mc_equipment .form_wrapper .quote_form h1 {
  margin-bottom: 48px;
}
.main .form_wrapper {
  position: relative;
  overflow: hidden;
}
.main .form_wrapper .flex {
  display: flex;
}
.main .form_wrapper .img_form {
  margin-left: auto;
}
.main .form_wrapper .img_form img {
  width: 30vw;
}
@media screen and (max-width: 880px) {
  .main .form_wrapper .flex {
    display: block;
  }
  .main .form_wrapper .img_form {
    display: none;
  }
}

.footer {
  overflow: hidden;
  padding-top: 150px;
}
.footer .subscribe_wrapper {
  padding: 0 0 96px 0;
}
.footer .subscribe_wrapper .content {
  text-align: center;
}
.footer .subscribe_wrapper .content h1.title {
  font-weight: 700;
  font-size: var(--header-size);
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--main_color);
  margin-bottom: 8px;
}
.footer .subscribe_wrapper .content p.text {
  font-weight: 400;
  font-size: var(--text-size);
  line-height: 24px;
  color: var(--text_gray);
}
.footer .subscribe_wrapper .form {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  flex-direction: column;
}
.footer .subscribe_wrapper .form .row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.footer .subscribe_wrapper .form .row .input {
  margin-right: 20px;
  position: relative;
}
.footer .subscribe_wrapper .form .row .input .title {
  font-weight: 500;
  font-size: var(--text-size);
  line-height: 24px;
  color: var(--text_black);
}
.footer .subscribe_wrapper .form .row .input .title i {
  color: var(--main_color);
}
.footer .subscribe_wrapper .form .row .input input {
  height: 48px;
  width: 310px;
  padding: 14px 32px 14px 28px;
  font-size: var(--text-size);
  border: 1px solid #49555a;
  background: transparent;
}
.footer .subscribe_wrapper .form .row .input input:focus {
  outline: none;
  border-color: var(--focus_inp);
}
@media screen and (max-width: 1200px) {
  .footer .subscribe_wrapper .form .row .input input {
    height: 44px;
    padding: 10px 28px 10px 28px;
  }
}
.footer .subscribe_wrapper .form .row .input .telegraph {
  position: absolute;
  bottom: 18px;
  right: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.footer .subscribe_wrapper .form .row .input .telegraph .graph {
  position: absolute;
  bottom: 210px;
  right: -60px;
}
@media screen and (max-width: 550px) {
  .footer .subscribe_wrapper .form form {
    width: 100%;
  }
  .footer .subscribe_wrapper .form .row {
    display: block;
  }
  .footer .subscribe_wrapper .form .row .input {
    margin-right: 0;
  }
  .footer .subscribe_wrapper .form .row .input input {
    width: 100%;
  }
  .footer .subscribe_wrapper .form .row .input .telegraph {
    right: 50%;
    transform: translateX(-5%);
  }
  .footer .subscribe_wrapper .form .row .btn {
    width: 100%;
  }
}
.footer hr {
  border-color: #bd3c0d;
}
.footer .footer_content {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer_content .logo {
  cursor: pointer;
}
.footer .footer_content .call_us {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer_content .call_us .email {
  margin-bottom: 8px;
}
.footer .footer_content .call_us a {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.footer .footer_content .call_us a:hover {
  color: var(--main_color);
}
.footer .footer_content .go_up {
  cursor: pointer;
  display: flex;
  align-items: center;
  grid-gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.footer .footer_content .go_up:hover {
  color: var(--main_color);
}
@media screen and (max-width: 550px) {
  .footer .footer_content {
    flex-direction: column;
    grid-row-gap: 16px;
    position: relative;
  }
  .footer .footer_content .go_up {
    position: absolute;
    top: 40px;
    right: 0;
  }
  .footer .footer_content .go_up span {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */