

/* Start:/local/templates/rusco/css/styles.css?174478430719794*/
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("/local/templates/rusco/css/../fonts/Inter-Regular.woff2") format("woff2"), url("/local/templates/rusco/css/../fonts/Inter-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("/local/templates/rusco/css/../fonts/Inter-Medium.woff2") format("woff2"), url("/local/templates/rusco/css/../fonts/Inter-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("/local/templates/rusco/css/../fonts/Inter-SemiBold.woff2") format("woff2"), url("/local/templates/rusco/css/../fonts/Inter-SemiBold.woff2") format("woff2");
  font-display: swap;
}
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  height: 100%;
}

body {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgb(230, 230, 230);
}
@media (max-width: 1024px) {
  header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 2;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
@media (max-width: 1400px) {
  header .container {
    padding: 14px 40px;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 14px 12px;
  }
}
header .container .mobile_header_btns {
  display: none;
}
@media (max-width: 1024px) {
  header .container .mobile_header_btns {
    display: flex;
    gap: 38px;
    z-index: 2;
  }
  header .container .mobile_header_btns .mobile_header_phone a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .container .mobile_header_btns .burger_menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 32px;
    cursor: pointer;
    position: relative;
  }
  header .container .mobile_header_btns .burger_menu_btn span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: rgb(227, 30, 37);
    border-radius: 2px;
    opacity: 1;
    left: 0px;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  header .container .mobile_header_btns .burger_menu_btn span:nth-child(1) {
    top: 0px;
  }
  header .container .mobile_header_btns .burger_menu_btn span:nth-child(3) {
    bottom: 0px;
  }
  header .container .mobile_header_btns .burger_menu_btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
    left: 0;
  }
  header .container .mobile_header_btns .burger_menu_btn.active span:nth-child(2) {
    opacity: 0;
  }
  header .container .mobile_header_btns .burger_menu_btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 13px;
    left: 0;
  }
}
@media (max-width: 768px) {
  header .container .mobile_header_btns {
    display: flex;
    gap: 30px;
  }
}
header .container .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 38px;
}
@media (max-width: 1024px) {
  header .container .header_inner {
    position: fixed;
    left: 0;
    height: calc(100% - 89px);
    background: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    top: 89px;
    padding: 72px 46px;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s linear;
  }
  header .container .header_inner.active {
    transform: translateX(0);
    visibility: visible;
  }
}
header .container .logo {
  display: flex;
  align-items: center;
  width: 367px;
  margin-right: 112px;
}
header .container .logo img {
  max-height: 60px;
}
@media (max-width: 1400px) {
  header .container .logo {
    margin-right: 0;
  }
}
@media (max-width: 1280px) {
  header .container .logo {
    width: auto;
  }
}
header .container .header_menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1280px) {
  header .container .header_menu {
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  header .container .header_menu {
    margin-left: 0;
  }
}
header .container .header_menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  header .container .header_menu ul {
    flex-direction: column;
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  header .container .header_menu ul {
    font-size: 24px;
    line-height: 32px;
  }
}
header .container .header_menu ul a {
  transition: color 0.5s;
}
header .container .header_menu ul a:hover {
  color: rgb(227, 30, 37);
}
header .container .header_contacts {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1024px) {
  header .container .header_contacts {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  header .container .header_contacts {
    width: 100%;
  }
  header .container .header_contacts .btn {
    width: 100%;
  }
}
header .container .header_contacts .phone {
  color: rgb(227, 30, 37);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 1024px) {
  header .container .header_contacts .phone {
    order: 2;
    font-size: 18px;
  }
}

.container {
  max-width: 1348px;
  width: 100%;
}
@media (max-width: 1400px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10;
  padding: 12px 24px 12px 24px;
  border-radius: 8px;
  background: rgb(227, 30, 37);
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  transition: background-color 0.5s ease;
  outline: none;
  border: none;
}
.btn:hover {
  background: rgb(248, 48, 95);
}
.btn:active {
  background: rgb(227, 30, 37);
}
.btn:disabled {
  background: rgb(224, 224, 224);
  color: rgb(153, 153, 153);
}
.btn.default_btn {
  background: rgb(254, 235, 240);
  color: rgb(227, 30, 37);
}
.btn.default_btn:hover {
  background: rgb(254, 215, 225);
}
.btn.default_btn:active {
  background: rgb(254, 235, 240);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  main {
    padding-top: 88px;
  }
}

h1 {
  color: rgb(34, 34, 34);
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

h2 {
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

h3 {
  color: rgb(227, 30, 37);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

h4 {
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.big_text {
  color: rgb(82, 82, 82);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.small_text {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

section {
  padding: 96px 0;
  display: flex;
  width: 100%;
  justify-content: center;
}
section.map {
  padding: 0;
}
@media (max-width: 1024px) {
  section {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

.main_about .container {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 1024px) {
  .main_about .container {
    gap: 64px;
  }
}
@media (max-width: 768px) {
  .main_about .container {
    gap: 40px;
  }
}
.main_about h1 {
  margin-bottom: 24px;
}
.main_about p {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .main_about p {
    margin-bottom: 32px;
  }
}
.main_about .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .main_about .btns {
    flex-direction: column;
    width: 100%;
  }
  .main_about .btns > * {
    width: 100%;
  }
}
.main_about .top_main_about p {
  text-align: center;
}
.main_about .main_about_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .main_about .main_about_list {
    gap: 24px;
  }
}
.main_about .main_about_list .main_about_list_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .main_about .main_about_list .main_about_list_item {
    flex-direction: column;
    width: 100%;
    gap: 6px;
  }
}
.main_about .main_about_list .main_about_list_item .title {
  min-width: 172px;
  color: rgb(34, 34, 34);
}

.input_item {
  position: relative;
}
.input_item .placeholder {
  position: absolute;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(136, 136, 136);
  top: 13px;
  left: 17px;
}
.input_item .placeholder span {
  color: rgb(227, 30, 37);
}

.default_input {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 16px 12px 16px;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  border: 1px solid rgb(255, 255, 255);
  outline: none;
  font-size: 18px;
  line-height: 24px;
}
.default_input:hover {
  border: 1px solid rgb(224, 224, 224);
}
.default_input:active {
  border: 1px solid rgb(136, 136, 136);
}
.default_input.error {
  border: 1px solid rgb(227, 30, 37);
  color: rgb(227, 30, 37);
}
.default_input.success {
  border: 1px solid rgb(1, 152, 89);
  color: rgb(1, 152, 89);
}
.default_input:disabled {
  background: rgb(245, 245, 245);
  color: rgb(136, 136, 136);
  border: 1px solid rgb(136, 136, 136);
}

.order_form {
  background: linear-gradient(174.36deg, rgb(67, 67, 67) -1.529%, rgb(34, 34, 34) 98.531%);
}
.order_form .top_form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .order_form .top_form {
    margin-bottom: 32px;
  }
}
.order_form .top_form p {
  color: rgb(255, 255, 255);
  opacity: 0.8;
}
.order_form .form_inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order_form .form_inputs .inputs_double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}
.order_form .form_inputs .inputs_double input {
  width: 100%;
}
@media (max-width: 768px) {
  .order_form .form_inputs .inputs_double {
    grid-template-columns: 1fr;
  }
}
.order_form .form_inputs textarea {
  width: 100%;
  height: 96px;
  margin-bottom: 24px;
}
.order_form .form_inputs .checkboxes_container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .order_form .form_inputs .checkboxes_container {
    margin-bottom: 32px;
  }
}
.order_form .form_inputs .checkboxes_container .title {
  color: rgb(255, 255, 255);
}
.order_form .form_inputs .checkboxes_container .checbocxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .order_form .form_inputs .checkboxes_container .checbocxes {
    row-gap: 24px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.order_form .form_inputs .checkboxes_container .checbocxes .checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.order_form .form_inputs .checkboxes_container .checbocxes .checkbox label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.order_form .form_inputs .checkboxes_container .checbocxes .checkbox label .custom_checkbox {
  border: 1px solid rgb(82, 82, 82);
  border-radius: 12px;
  background: rgb(136, 136, 136);
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding: 2px;
  transition: all 0.3s;
  position: relative;
}
.order_form .form_inputs .checkboxes_container .checbocxes .checkbox input:checked + label .custom_checkbox {
  border: none;
  background: rgb(227, 30, 37);
}
.order_form .form_inputs .checkboxes_container .checbocxes .checkbox input:checked + label .custom_checkbox:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
}
.order_form .form_inputs .btn {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .order_form .form_inputs .btn {
    margin-bottom: 16px;
  }
}
.order_form .form_inputs .agreement {
  opacity: 0.6;
  text-align: center;
}

.services {
  background: linear-gradient(174.36deg, rgb(67, 67, 67) -7.071%, rgb(34, 34, 34) 103.239%);
}
.services .top_info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.services .top_info .big_text {
  color: rgb(255, 255, 255);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .services .top_info .big_text {
    text-align: center;
  }
}
.services .services_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services .services_list .item {
  border-bottom: 1px solid rgb(82, 82, 82);
  display: flex;
  gap: 12px;
  padding-bottom: 24px;
}
@media (max-width: 480px) {
  .services .services_list .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.services .services_list .item .img {
  min-width: 55px;
}
.services .services_list .item .info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services .services_list .item h4 {
  text-align: left;
}
.services .services_list .item .big_text {
  color: rgb(255, 255, 255);
  opacity: 0.8;
}

.why_we .top_info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .why_we .top_info {
    margin-bottom: 32px;
  }
  .why_we .top_info p {
    text-align: center;
  }
}
.why_we .top_info h2 {
  color: rgb(34, 34, 34);
}
.why_we .why_we_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .why_we .why_we_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .why_we .why_we_list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .why_we .why_we_list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why_we .why_we_list .item .big_text {
    text-align: center;
  }
}
.why_we .why_we_list .item .img {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .why_we .why_we_list .item .img {
    margin-bottom: 16px;
  }
}
.why_we .why_we_list .item h4 {
  color: rgb(34, 34, 34);
  margin-bottom: 12px;
  text-align: left;
}

.application_form {
  background-image: url("/local/templates/rusco/css/../img/form_bg.png");
  background-size: cover;
  background-position: center;
}
.application_form .top_info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.application_form .top_info .big_text {
  color: rgb(255, 255, 255);
  text-align: center;
}
.application_form .form_inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .application_form .form_inputs {
    grid-template-columns: 1fr;
  }
}
.application_form .form_inputs .input_item {
  width: 100%;
}
.application_form .form_inputs .input_item input {
  width: 100%;
}
.application_form .form_bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .application_form .form_bottom .btn {
    width: 100%;
  }
}
.application_form .form_bottom .agreement {
  color: rgb(255, 255, 255);
  text-align: center;
}

.map_wrapper {
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .contacts_footer {
  padding: 24px 0 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
  -moz-column-gap: 64px;
       column-gap: 64px;
}
@media (max-width: 1280px) {
  footer .contacts_footer {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
  footer .contacts_footer .item:nth-child(1) {
    grid-column: span 4/span 4;
  }
  footer .contacts_footer .item:nth-child(2) {
    grid-column: span 2/span 2;
    grid-row-start: 2;
  }
  footer .contacts_footer .item:nth-child(3) {
    grid-column: span 2/span 2;
    grid-column-start: 3;
    grid-row-start: 2;
  }
  footer .contacts_footer .item:nth-child(4) {
    grid-column: span 4/span 4;
    grid-row-start: 3;
  }
  footer .contacts_footer .item:nth-child(5) {
    grid-column: span 4/span 4;
    grid-row-start: 4;
  }
  footer .contacts_footer .item:nth-child(6) {
    grid-column: span 4/span 4;
    grid-row-start: 5;
  }
}
@media (max-width: 768px) {
  footer .contacts_footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
footer .contacts_footer .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer .contacts_footer .item .info {
  margin-bottom: 6px;
  color: rgb(34, 34, 34);
}
footer .contacts_footer h2 {
  color: rgb(34, 34, 34);
  margin-bottom: 12px;
  text-align: left;
}
footer .contacts_footer h3 {
  text-align: left;
  margin-bottom: 12px;
}
footer .bottom_footer {
  padding: 24px 0;
  width: 100%;
  border-top: 1px solid rgb(230, 230, 230);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  footer .bottom_footer {
    padding: 14px 0;
  }
}
footer .bottom_footer .footer_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  footer .bottom_footer .footer_menu {
    flex-direction: column;
    gap: 12px;
  }
}
footer .bottom_footer .footer_menu .item {
  color: rgb(34, 34, 34);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
footer .bottom_footer .footer_menu .item a {
  transition: color 0.3s;
}
footer .bottom_footer .footer_menu .item a:hover {
  color: rgb(227, 30, 37);
}
footer .bottom_footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(82, 82, 82);
}/*# sourceMappingURL=style.css.map */
/* End */
/* /local/templates/rusco/css/styles.css?174478430719794 */
