/*fonts*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: normal;
  color: #18191A;
  background: #FFFFFF;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #D03333;
  border-radius: 5px;
}

body::-webkit-scrollbar-track {
  background: #25282d;
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

select::-webkit-scrollbar {
  width: 7px;
}

select::-webkit-scrollbar-thumb {
  background: #25282d;
}

select::-webkit-scrollbar-track {
  background: transparent;
}

textarea {
  font-family: "Montserrat", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
}
textarea::-webkit-input-placeholder {
  color: #18191A;
}
textarea::-moz-placeholder {
  color: #18191A;
}
textarea:-ms-input-placeholder {
  color: #18191A;
}
textarea:-moz-placeholder {
  color: #18191A;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
}
input::-webkit-input-placeholder {
  color: #18191A;
}
input::-moz-placeholder {
  color: #18191A;
}
input:-ms-input-placeholder {
  color: #18191A;
}
input:-moz-placeholder {
  color: #18191A;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container-xl {
  height: 100%;
  width: 100%;
  max-width: 1700px;
  padding: 0 15px;
  margin: 0 auto;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.section {
  padding: 200px 0px 150px 0px;
}

.section-title {
  position: relative;
  z-index: 3;
  color: #D03333;
  font-weight: 700;
  font-size: 90px;
  line-height: 90px;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.section-title.two {
  font-size: 60px;
  line-height: 60px;
}

#callback-form .wpcf7-response-output {
  color: #fff;
  max-width: 440px;
}

#callback-form input {
  display: none;
}

@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }

  .section {
    padding: 150px 0px;
  }

  .section-title {
    font-size: 80px;
    line-height: 80px;
  }

  .section-title.two {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 570px;
  }

  .section {
    padding: 100px 0px 70px 0px;
  }

  .section-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }

  .section-title.two {
    font-size: 30px;
    line-height: 40px;
  }
}
/*-options*/
/*breadcrumbs*/
.breadcrumbs {
  position: absolute;
  z-index: 3;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  width: 1170px;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D03333;
  margin: 0px 8px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #18191A;
  transition: 0.1s;
}
.breadcrumbs li:last-child a {
  color: #D03333;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .breadcrumbs {
    top: 110px;
    width: 770px;
  }
}
@media (max-width: 800px) {
  .breadcrumbs {
    width: 100%;
    top: 70px;
    max-width: 570px;
    padding: 0px 15px;
  }
}
@media (min-width: 1200px) {
  .breadcrumbs a:hover {
    color: #D03333;
  }
}
/*-breadcrumbs*/
/*content*/
.content *:last-child {
  margin-bottom: 0px;
}
.content h3 {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  color: #18191A;
  margin-bottom: 30px;
}
.content strong {
  font-weight: 600;
  color: #D03333;
}
.content a {
  font-weight: 600;
  color: #D03333;
}
.content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
}
.content ul {
  margin-bottom: 30px;
}
.content li {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  padding-left: 20px;
  margin-bottom: 15px;
}
.content li:last-child {
  margin-bottom: 0px;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D03333;
}
.content ol {
  list-style: none;
  counter-reset: num;
  margin-bottom: 30px;
}
.content ol li:before {
  content: counter(num) ". ";
  counter-increment: num;
  position: absolute;
  left: 0px;
  top: 0px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #D03333;
}

@media (max-width: 800px) {
  .content h3 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 20px;
  }
  .content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .content ul {
    margin-bottom: 20px;
  }
  .content li {
    font-size: 16px;
    line-height: 26px;
  }
  .content ol li:before {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .content a:hover {
    color: #18191A;
  }
}
/*-content*/
/*buttons*/
.button-one {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 60px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  background: #D03333;
  border-radius: 30px 0px;
  padding: 0px 60px;
  text-transform: uppercase;
  transition: 0.3s;
}

@media (max-width: 800px) {
  .button-one {
    height: 50px;
    font-size: 16px;
    line-height: 18px;
    padding: 0px 40px;
  }
}
@media (min-width: 1200px) {
  .button-one:hover {
    box-shadow: 0px 8px 1px 0px rgba(208, 51, 51, 0.5);
    border-radius: 30px;
    transform: scale(1.05);
  }
}
/*-buttons*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  padding: 15px 0px;
  background: #FFFFFF;
}

.header.active {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo img {
  height: 45px;
  width: 132px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 86%;
}

.header-menu {
  display: flex;
  align-items: center;
}
.header-menu > li {
  margin-right: 3vw;
}
.header-menu > li:last-child {
  margin-right: 0px;
}
.header-menu > li > a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #18191A;
  transition: 0.15s;
}
.header-menu > li.current-menu-item > a {
  font-weight: 600;
  color: #D03333;
}
.header-menu > li.current_page_parent > a {
  font-weight: 600;
  color: #D03333;
}
.header-menu > li.current-category-ancestor > a {
  font-weight: 600;
  color: #D03333;
}
.header-menu > li.current-post-ancestor > a {
  font-weight: 600;
  color: #D03333;
}

.header-menu_point {
  position: relative;
}
.header-menu_point > a:after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  background: url("../icons/elements/arrow-4.svg") center no-repeat;
  background-size: contain;
  margin-left: 10px;
  transition: 0.15s;
}

.header-sublist {
  position: absolute;
  left: 0;
  top: 150%;
  padding: 15px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.header-sublist li {
  margin-bottom: 10px;
}
.header-sublist li:last-child {
  margin-bottom: 0px;
}
.header-sublist a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #18191A;
  white-space: nowrap;
  transition: 0.15s;
}
.header-sublist li.current_page_item > a {
  color: #D03333;
}

.header-contacts li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 35px;
  margin-bottom: 10px;
}
.header-contacts li:last-child {
  margin-bottom: 0px;
}
.header-contacts li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 26px;
  height: 26px;
}
.header-contacts li:nth-child(1):before {
  background: url("../icons/elements/phone-1.svg") center no-repeat;
  background-size: contain;
}
.header-contacts li:nth-child(2):before {
  background: url("../icons/elements/mail-1.svg") center no-repeat;
  background-size: contain;
}
.header-contacts a {
  font-weight: 600;
  font-size: 15px;
  color: #18191A;
  margin-bottom: 7px;
  transition: 0.15s;
}
.header-contacts a:last-child {
  margin-bottom: 0px;
}

.header-lang {
  display: flex;
  align-items: center;
}
.header-lang li {
  display: flex;
  align-items: center;
}
.header-lang li:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #18191A;
  margin: 0px 7px;
}
.header-lang li:last-child:after {
  display: none;
}
.header-lang a {
  font-weight: 400;
  font-size: 18px;
  color: #5F5F5F;
  transition: 0.15s;
}
.header-lang li.active a {
  font-weight: 600;
  color: #18191A;
}

.header-socials {
  display: flex;
  align-items: center;
}
.header-socials li {
  margin-right: 15px;
}
.header-socials li:last-child {
  margin-right: 0px;
}
.header-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-socials svg {
  width: 35px;
  height: 35px;
  fill: #D03333;
  transition: 0.15s;
}

.header-burger {
  display: none;
}

@media (max-width: 1200px) {
  .header {
    padding: 10px 0px;
  }

  .header-logo img {
    height: 35px;
    width: 103px;
  }

  .header-nav {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 55px;
    width: 100%;
    height: calc(100vh - 55px);
    background: #FFFFFF;
    padding: 0px;
    display: none;
    overflow: auto;
  }

  .header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
    padding-top: 30px;
  }
  .header-menu > li {
    margin: 0px 0px 30px 0px;
  }
  .header-menu > li:last-child {
    margin: 0px;
  }
  .header-menu > li > a {
    font-size: 16px;
  }

  li.header-menu_point > a {
    display: none;
  }

  .header-sublist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    box-shadow: none;
    background: none;
    padding: 0px;
  }
  .header-sublist li {
    margin-bottom: 30px;
  }
  .header-sublist li:last-child {
    margin-bottom: 0px;
  }
  .header-sublist a {
    font-size: 16px;
    text-align: center;
  }

  .header-contacts {
    width: fit-content;
    margin: 0px auto 30px auto;
  }
  .header-contacts a {
    margin-bottom: 10px;
  }
  .header-contacts li {
    margin-bottom: 15px;
  }

  .header-lang {
    width: fit-content;
    margin: 0px auto 30px auto;
  }

  .header-socials {
    width: fit-content;
    margin: 0px auto;
    padding-bottom: 30px;
  }

  .header-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 32px;
    height: 14px;
    cursor: pointer;
    transition: 0.2s;
  }
  .header-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000000;
    transition: 0.2s;
  }
  .header-burger span:nth-child(2) {
    width: 60%;
  }

  .header-burger.active {
    transform: translateX(5px);
  }
  .header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 6px);
  }
  .header-burger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -7px);
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .header-menu > li > a:hover {
    color: #D03333;
  }

  .header-menu_point:hover > a {
    color: #D03333;
  }

  .header-menu_point:hover > a:after {
    transform: rotate(180deg);
    background: url("../icons/elements/arrow-3.svg") center no-repeat;
    background-size: contain;
  }

  .header-sublist a:hover {
    color: #D03333;
  }

  .header-contacts a:hover {
    color: #D03333;
  }

  .header-lang a:hover {
    color: #D03333;
  }

  .header-socials svg:hover {
    fill: #18191A;
  }
}
/*-header*/
/*footer*/
.footer {
  padding: 55px 0px 20px 0px;
  background: #F8F8F8;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo img {
  height: 45px;
  width: 132px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 86%;
}

.footer-menu {
  display: flex;
  align-items: center;
}
.footer-menu > li {
  margin-right: 3vw;
}
.footer-menu > li:last-child {
  margin-right: 0px;
}
.footer-menu > li > a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #18191A;
  transition: 0.15s;
}
.footer-menu > li.current-menu-item > a {
  font-weight: 600;
  color: #D03333;
}
.footer-menu > li.current_page_parent > a {
  font-weight: 600;
  color: #D03333;
}
.footer-menu > li.current-category-ancestor > a {
  font-weight: 600;
  color: #D03333;
}
.footer-menu > li.current-post-ancestor > a {
  font-weight: 600;
  color: #D03333;
}

.footer-menu_point {
  position: relative;
}
.footer-menu_point > a:after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  background: url("../icons/elements/arrow-4.svg") center no-repeat;
  background-size: contain;
  margin-left: 10px;
  transition: 0.15s;
}

.footer-sublist {
  position: absolute;
  left: 0;
  bottom: 150%;
  padding: 15px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.footer-sublist li {
  margin-bottom: 10px;
}
.footer-sublist li:last-child {
  margin-bottom: 0px;
}
.footer-sublist a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #18191A;
  white-space: nowrap;
  transition: 0.15s;
}
.footer-sublist li.current_page_item > a {
  color: #D03333;
}

.footer-contacts li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  margin-bottom: 10px;
}
.footer-contacts li:last-child {
  margin-bottom: 0px;
}
.footer-contacts li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 30px;
  height: 30px;
}
.footer-contacts li:nth-child(1):before {
  background: url("../icons/elements/phone-1.svg") center no-repeat;
  background-size: contain;
}
.footer-contacts li:nth-child(2):before {
  background: url("../icons/elements/mail-1.svg") center no-repeat;
  background-size: contain;
}
.footer-contacts a {
  font-weight: 600;
  font-size: 15px;
  color: #18191A;
  margin-bottom: 7px;
  transition: 0.15s;
}
.footer-contacts a:last-child {
  margin-bottom: 0px;
}

.footer-lang {
  display: flex;
  align-items: center;
}
.footer-lang li {
  display: flex;
  align-items: center;
}
.footer-lang li:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #18191A;
  margin: 0px 7px;
}
.footer-lang li:last-child:after {
  display: none;
}
.footer-lang a {
  font-weight: 400;
  font-size: 18px;
  color: #5F5F5F;
  transition: 0.15s;
}
.footer-lang li.active a {
  font-weight: 600;
  color: #18191A;
}

.footer-socials {
  display: flex;
  align-items: center;
}
.footer-socials li {
  margin-right: 15px;
}
.footer-socials li:last-child {
  margin-right: 0px;
}
.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-socials svg {
  width: 35px;
  height: 35px;
  fill: #D03333;
  transition: 0.15s;
}

.footer-descr {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  margin-top: 30px;
}

.phone {
  position: fixed;
  z-index: 5;
  right: 30px;
  bottom: 30px;
}
.phone p {
  display: none !important;
}
.phone .wpcf7 form.invalid .wpcf7-response-output {
  position: absolute;
  left: 0;
  top: -30px;
  color: #D03333 !important;
  font-size: 16px;
  font-weight: 400;
  border: none !important;
  padding: 0px !important;
  margin: 0px !important;
}
.phone .wpcf7 form.sent .wpcf7-response-output {
  position: absolute;
  right: 0;
  top: 0;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  width: 240px;
  height: 100%;
  border-radius: 30px 0px;
  border: none !important;
  padding: 0px !important;
  margin: 0px !important;
  background: #D03333;
}

.phone-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #D03333;
  cursor: pointer;
  transition: 0.3s;
}

.phone-close {
  position: absolute;
  right: 0;
  top: -20px;
  display: none;
  cursor: pointer;
  stroke: #18191A;
  transition: 0.15s;
}

.phone-form {
  display: none;
  background: #F8F8F8;
  border-radius: 30px 0px;
}

.phone-form_wrap {
  display: flex;
  align-items: center;
  height: 60px;
}

.phone-input {
  display: block;
  width: 220px;
  height: 100%;
}

.phone-input_point {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 400;
  padding: 0px 20px;
}

.phone-submit {
  position: relative;
  right: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 100%;
  background: #D03333;
  border-radius: 30px 0px;
  cursor: pointer;
  transition: 0.3s;
}

.phone-submit_point {
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  border: none;
  background: transparent;
  cursor: pointer;
}

.phone.active .phone-btn {
  display: none;
}
.phone.active .phone-form {
  display: block;
}
.phone.active .phone-close {
  display: block;
}

@media (max-width: 1200px) {
  .footer-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    margin-bottom: 50px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  .footer-menu > li {
    margin: 0px 0px 40px 0px;
  }
  .footer-menu > li:last-child {
    margin: 0px;
  }

  li.footer-menu_point > a {
    display: none;
  }

  .footer-sublist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    box-shadow: none;
    background: none;
    padding: 0px;
  }
  .footer-sublist li {
    margin-bottom: 40px;
  }
  .footer-sublist li:last-child {
    margin-bottom: 0px;
  }
  .footer-sublist a {
    font-size: 18px;
    text-align: center;
  }

  .footer-contacts {
    margin-bottom: 30px;
  }

  .footer-lang {
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .footer-logo img {
    height: 35px;
    width: 103px;
  }

  .footer-contacts li {
    margin-bottom: 20px;
  }
  .footer-contacts li:last-child {
    margin-bottom: 0px;
  }
  .footer-contacts a {
    margin-bottom: 10px;
  }

  .phone {
    right: 10px;
  }

  .phone-btn {
    width: 40px;
    height: 40px;
  }
  .phone-btn svg {
    width: 20px;
    height: 20px;
  }

  .phone-form_wrap {
    height: 40px;
  }

  .phone-submit {
    width: 170px;
  }

  .phone-submit_point {
    font-size: 12px;
  }

  .phone .wpcf7 form.sent .wpcf7-response-output {
    width: 170px;
    font-size: 12px;
  }

  .phone .wpcf7 form.invalid .wpcf7-response-output {
    top: -22px;
    font-size: 14px;
  }

  .phone-input {
    width: 160px;
  }

  .phone-input_point {
    font-size: 14px;
    padding: 0px 15px;
  }
}
@media (min-width: 1200px) {
  .footer-menu > li > a:hover {
    color: #D03333;
  }

  .footer-menu_point:hover > a {
    color: #D03333;
  }

  .footer-menu_point:hover > a:after {
    transform: rotate(180deg);
    background: url("../icons/elements/arrow-3.svg") center no-repeat;
    background-size: contain;
  }

  .footer-sublist a:hover {
    color: #D03333;
  }

  .footer-contacts a:hover {
    color: #D03333;
  }

  .footer-lang a:hover {
    color: #D03333;
  }

  .footer-socials svg:hover {
    fill: #18191A;
  }

  .phone-btn:hover {
    box-shadow: 0px 5px 1px 0px rgba(208, 51, 51, 0.5);
    transform: scale(1.05);
  }

  .phone-close:hover {
    stroke: #D03333;
  }

  .phone-submit:hover {
    background: #18191A;
  }
}
/*-footer*/
/*start*/
.start {
  height: 100vh;
}

.start-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.start-text {
  position: relative;
  z-index: 1;
  width: 840px;
  padding-left: 90px;
}

.start-subtitle {
  position: absolute;
  left: -43px;
  bottom: 50px;
  display: block;
  width: 150px;
  font-weight: 500;
  font-size: 32px;
  line-height: 39px;
  transform: rotate(-90deg);
  text-transform: uppercase;
}

.start-title {
  width: fit-content;
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  text-transform: uppercase;
}
.start-title b {
  font-weight: 700;
  color: #D03333;
}

.start-img {
  position: relative;
  right: -70px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 504px;
  min-height: 580px;
}
.start-img img {
  width: 100%;
  height: 100%;
}

.start-bg_one {
  position: absolute;
  z-index: -2;
  top: -160px;
  left: -922px;
  display: block;
  min-width: 1277px;
  min-height: 841px;
  background: url("../icons/bg/bg-start-1.svg") center no-repeat;
  background-size: contain;
}

.start-bg_two {
  position: absolute;
  z-index: -1;
  left: -390px;
  top: 155px;
  display: block;
  width: 1089px;
  height: 1313px;
  background: url("../icons/bg/bg-start-2.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  .start {
    height: auto;
    padding-top: 170px;
  }

  .start-bg_one {
    left: -1200px;
  }

  .start-wrap {
    flex-direction: column;
  }

  .start-text {
    width: 100%;
  }

  .start-img {
    right: auto;
    min-width: 320px;
    min-height: 369px;
    margin-top: 50px;
  }
  .start-img img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 800px) {
  .start {
    padding-top: 100px;
  }

  .start-text {
    padding-left: 0px;
  }

  .start-subtitle {
    position: static;
    transform: rotate(0);
    width: 100%;
    font-weight: 400;
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .start-title {
    font-size: 52px;
    line-height: 52px;
  }

  .start-bg_one {
    min-width: 432px;
    min-height: 271px;
    left: -224px;
    top: -50px;
    background: url("../icons/bg/bg-start-4.svg") center no-repeat;
    background-size: contain;
  }

  .start-bg_two {
    left: -70px;
    top: 100px;
    width: 457px;
    height: 552px;
    background: url("../icons/bg/bg-start-3.svg") center no-repeat;
    background-size: contain;
  }
}
/*-start*/
/*plus*/
.plus {
  position: relative;
  padding-top: 150px;
}

.plus-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  height: 500px;
}

.plus-text {
  position: relative;
  z-index: 1;
  width: 600px;
  padding: 50px 0px 0px 90px;
  background: #FFFFFF;
}

.plus-title {
  position: absolute;
  left: -70px;
  top: 115px;
  transform: rotate(-90deg);
  width: 180px;
  height: 50px;
  font-weight: 700;
  font-size: 45px;
  text-shadow: -1px -1px 0 #18191A, 1px -1px 0 #18191A, -1px 1px 0 #18191A, 1px 1px 0 #18191A;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plus-list li {
  position: relative;
  padding-left: 70px;
  padding-bottom: 10px;
  cursor: pointer;
}
.plus-list li:last-child {
  padding-bottom: 50px;
}
.plus-list svg {
  position: absolute;
  left: 0;
  top: 6px;
  width: 45px;
  height: 45px;
  fill: #18191A;
  transition: 0.15s;
}
.plus-list h3 {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: 0.07em;
  text-shadow: -1px -1px 0 #18191A, 1px -1px 0 #18191A, -1px 1px 0 #18191A, 1px 1px 0 #18191A;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: 0.15s;
}
.plus-list p {
  display: none;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 27px;
  margin-top: 10px;
}

.plus-bg_one {
  position: absolute;
  z-index: -1;
  bottom: -497px;
  right: -1050px;
  display: block;
  min-width: 1349px;
  min-height: 1360px;
  background: url("../icons/bg/bg-plus-1.svg") center no-repeat;
  background-size: contain;
}

.plus-bg_two {
  position: absolute;
  z-index: -1;
  top: 240px;
  left: -40px;
  display: block;
  min-width: 161px;
  min-height: 246px;
  background: url("../icons/bg/bg-plus-2.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  .plus-bg_one {
    right: -1240px;
    top: auto;
    bottom: -498px;
  }

  .plus-title {
    position: static;
    transform: rotate(0);
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 40px;
  }

  .plus-wrap {
    height: auto;
  }

  .plus-text {
    padding: 0px;
    width: 550px;
  }

  .plus-list h3 {
    display: flex;
    align-items: center;
    width: fit-content;
    color: #D03333;
    text-shadow: none;
  }
  .plus-list svg {
    position: static;
    fill: #D03333;
    margin-right: 10px;
  }
  .plus-list p {
    display: block;
    text-align: center;
  }
  .plus-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
    margin-bottom: 70px;
    padding-bottom: 0px;
  }
  .plus-list li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
@media (max-width: 800px) {
  .plus {
    padding-top: 110px;
  }

  .plus-text {
    width: 100%;
    background: transparent;
  }

  .plus-title {
    font-size: 30px;
    line-height: 38px;
  }

  .plus-list h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .plus-list svg {
    width: 36px;
    height: 36px;
  }
  .plus-list p {
    font-size: 20px;
    line-height: 24px;
    margin-top: 15px;
  }

  .plus-bg_one {
    min-width: 500px;
    min-height: 500px;
    right: -410px;
    bottom: -200px;
    transform: rotate(-13deg);
  }

  .plus-bg_two {
    display: none;
  }
}
@media (min-width: 1200px) {
  .plus-list li:hover svg {
    fill: #D03333;
  }

  .plus-list li:hover h3 {
    color: #D03333;
    text-shadow: none;
  }
}
/*-plus*/
/*advertising*/
.advertising {
  position: relative;
  padding: 200px 0px 150px 0px;
}
.advertising::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 2560px;
  height: 100%;
  background: url("../icons/bg/bg-grey-1.svg") top no-repeat;
  background-size: cover;
}

.advertising-title {
  position: relative;
  display: flex;
  align-items: center;
  height: 236px;
  width: 350px;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: #D03333;
  margin-bottom: 50px;
}
.advertising-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 863px;
  height: 236px;
  background: url("../img/bg/bg-advertising-1.webp") center no-repeat;
  background-size: contain;
}

.advertising-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.advertising-tabs {
  overflow: visible;
  top: -15px;
  width: 300px;
  height: fit-content;
  margin-left: 0px;
}
.advertising-tabs .swiper-wrapper {
  list-style: none;
  counter-reset: num;
}

.advertising-tab {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #FFFFFF;
  cursor: pointer;
}
.advertising-tab:before {
  content: counter(num) "";
  counter-increment: num;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 50px;
  color: #2A2C31;
  text-shadow: -1px -1px 0 #6E6E6E, 1px -1px 0 #6E6E6E, -1px 1px 0 #6E6E6E, 1px 1px 0 #6E6E6E;
  opacity: 0;
}

.advertising-tab.swiper-slide-thumb-active {
  font-weight: 700;
  color: #FFFFFF;
}

.advertising-tab.swiper-slide-thumb-active:before {
  opacity: 1;
}

.advertising-slider {
  overflow: visible;
  width: 770px;
  margin-right: 0px;
}

.advertising-slide {
  width: 100%;
  min-height: 380px;
  padding: 50px 300px 0px 50px;
  border: 1px solid #6E6E6E;
  border-radius: 0px 0px 0px 86px;
  opacity: 0 !important;
  outline: none;
}

.advertising-slide.swiper-slide-active {
  opacity: 1 !important;
}

.advertising-slide_text h3 {
  position: absolute;
  left: 0;
  top: -154px;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #25282d;
  letter-spacing: 0.085em;
  text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}
.advertising-slide_text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.advertising-slide_text p:last-child {
  margin-bottom: 0px;
}

.advertising-slide_img {
  position: absolute;
  right: -190px;
  top: -220px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 500px;
  pointer-events: none;
}
.advertising-slide_img img {
  width: 100%;
  height: 100%;
}

.advertising-arrows {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
}

.advertising-arrow {
  width: 40px;
  height: 40px;
  stroke: #D03333;
  stroke-width: 2px;
  cursor: pointer;
  outline: none;
  margin-left: 40px;
}

.advertising-arrow.swiper-button-disabled {
  stroke: #6E6E6E;
}

.advertising-btn {
  margin: 40px 0px 0px auto;
}

.interior .advertising-title {
  margin-left: auto;
  text-align: right;
}
.interior .advertising-title::before {
  right: auto;
  left: -65px;
  width: 827px;
  height: 234px;
  background: url("../img/bg/bg-advertising-2.webp") center no-repeat;
  background-size: contain;
}

.interior-tabs {
  order: 1;
  margin-left: auto;
  margin-right: 0px;
}

.interior-tab:before {
  left: auto;
  right: -60px;
}

.interior-slider {
  order: 0;
  margin-left: 0px;
  margin-right: auto;
}
.interior-slider .advertising-slide {
  padding: 50px 50px 0px 300px;
}
.interior-slider .advertising-slide_img {
  right: auto;
  left: -190px;
}

.advertising-pagination {
  display: none;
}

@media (max-width: 1200px) {
  .advertising-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .advertising-tabs {
    width: 100%;
    margin-bottom: 130px;
  }

  .advertising-tab {
    width: fit-content;
  }
  .advertising-tab::before {
    display: none;
  }

  .advertising-slide_text h3 {
    display: none;
  }

  .advertising-slide_img {
    top: -150px;
  }

  .interior-tabs {
    order: 0;
  }

  .interior-slider {
    order: 1;
  }
}
@media (max-width: 800px) {
  .advertising {
    z-index: 2;
    padding: 140px 0px 70px 0px;
  }

  .advertising-title {
    font-size: 30px;
    line-height: 38px;
    width: 280px;
    height: 130px;
    margin-bottom: 40px;
  }
  .advertising-title::before {
    height: 130px;
    width: 490px;
  }

  .advertising-wrap {
    position: relative;
  }

  .advertising-tabs {
    display: none;
  }

  .advertising-slider {
    width: 100%;
  }

  .advertising-slide {
    padding: 0px;
    min-height: auto;
    border-radius: 0;
    border: none;
    padding-top: 300px;
  }
  .advertising-slide::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 300px;
    width: 900px;
    border: 1px solid #6E6E6E;
    border-radius: 0px 30px;
  }

  .advertising-slide_img {
    top: 0px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
  }

  .advertising-slide_text {
    margin-top: 100px;
  }
  .advertising-slide_text p {
    font-size: 16px;
    line-height: 26px;
  }
  .advertising-slide_text h3 {
    display: flex;
    align-items: center;
    top: -90px;
    height: 50px;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    color: #FFFFFF;
    text-shadow: none;
  }

  .advertising-arrows {
    display: none;
  }

  .interior .advertising-title::before {
    left: -15px;
    width: 455px;
    height: 130px;
  }
  .interior .advertising-slide {
    padding: 0px;
    padding-top: 300px;
  }
  .interior .advertising-slide::before {
    left: 0;
    right: auto;
  }
  .interior .advertising-slide_img {
    left: 50%;
  }

  .advertising-pagination {
    display: flex;
    justify-content: space-between;
    top: 370px !important;
    bottom: auto !important;
  }
  .advertising-pagination .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    font-weight: 400;
    font-size: 12px;
    color: #6E6E6E;
    width: 20px;
    height: auto;
  }
  .advertising-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    opacity: 0;
  }
  .advertising-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 700;
    color: #FFFFFF;
  }
  .advertising-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .advertising-arrow.swiper-button-disabled:hover {
    stroke: #6E6E6E;
  }

  .advertising-arrow:hover {
    stroke: #FFFFFF;
  }

  .advertising-tab:hover {
    color: #D03333;
  }
}
/*-advertising*/
/*practice*/
.practice {
  position: relative;
  padding: 150px 0px 100px 0px;
}
.practice::before {
  content: "";
  position: absolute;
  z-index: -6;
  top: 0;
  left: 50%;
  transform: translateX(-60%);
  width: 1670px;
  height: calc(100% + 200px);
  background: url("../img/bg/bg-practice-1.webp") right no-repeat;
  background-size: cover;
}

.practice-bg_one {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-60%);
  width: 2000px;
  height: 877px;
  background: url("../icons/bg/bg-practice-1.svg") center no-repeat;
  background-size: cover;
}

.practice-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  text-align: center;
  margin-bottom: 40px;
}

.practice-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.practice-day {
  display: flex;
  align-items: center;
}
.practice-day span {
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  color: #D03333;
  letter-spacing: 0.085em;
}
.practice-day b {
  font-weight: 700;
  font-size: 70px;
  color: #eeeeee;
  text-shadow: -1px -1px 0 #18191A, 1px -1px 0 #18191A, -1px 1px 0 #18191A, 1px 1px 0 #18191A;
  margin: 0px 30px;
}

.practice-timer {
  display: flex;
  align-items: center;
}
.practice-timer li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  width: 130px;
  color: #D03333;
  letter-spacing: 0.085em;
}
.practice-timer li:nth-child(even) {
  width: 90px;
}
.practice-timer span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 70px;
  color: #eeeeee;
  text-shadow: -1px -1px 0 #18191A, 1px -1px 0 #18191A, -1px 1px 0 #18191A, 1px 1px 0 #18191A;
  text-align: center;
}

.practice-list {
  position: absolute;
  right: 18%;
  top: 115%;
  display: flex;
  align-items: center;
}
.practice-list li {
  width: 110px;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  margin-left: 105px;
}

@media (max-width: 1200px) {
  .practice-list {
    right: 1%;
  }

  .practice-bg_one {
    top: auto;
    bottom: -250px;
    transform: translateX(-70%);
    width: 750px;
    height: 329px;
  }
}
@media (max-width: 800px) {
  .practice {
    padding: 70px 0px 30px 0px;
  }
  .practice::before {
    content: "";
    left: 0;
    transform: translateX(0);
    width: 100%;
    height: 110%;
    background: url("../img/bg/bg-practice-2.webp") bottom no-repeat;
    background-size: cover;
  }

  .practice-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .practice-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .practice-day span {
    display: flex;
    align-items: center;
    height: 110px;
    font-size: 50px;
    line-height: 60px;
  }
  .practice-day b {
    display: none;
  }

  .practice-timer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .practice-timer li {
    height: 110px;
    font-size: 50px;
    line-height: 60px;
  }
  .practice-timer li:nth-child(even) {
    display: none;
  }
  .practice-timer li:last-child {
    margin-bottom: 0px;
  }

  .practice-list {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .practice-list li {
    display: flex;
    align-items: flex-end;
    width: fit-content;
    height: 110px;
    font-size: 16px;
    line-height: 16px;
    margin-left: 0px;
  }

  .practice-bg_one {
    z-index: 5;
    bottom: -170px;
    transform: translateX(-60%);
    width: 300px;
    height: 660px;
    background: url("../icons/bg/bg-practice-2.svg") center no-repeat;
    background-size: cover;
  }
}
/*-practice*/
/*printing*/
.printing {
  padding: 150px 0px;
}

.printing-wrap {
  position: relative;
}

.printing-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  text-align: center;
  margin-bottom: 120px;
}

.printing-slider {
  height: 590px;
  overflow: visible;
}

.printing-slide {
  position: absolute;
  border: 1px solid #BBBBBB;
  border-radius: 0px 30px;
}
.printing-slide h3 {
  position: absolute;
  z-index: 2;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  transition: 0.4s;
}
.printing-slide p {
  position: absolute;
  z-index: 2;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #18191A;
  left: 0px;
  top: 45px;
  padding: 0px 20px;
  width: 100%;
  opacity: 0;
  transition: 0.4s;
}
.printing-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  min-width: 300px;
  min-height: 300px;
  transition: 0.5s;
}

.printing-slide:nth-child(1) {
  left: 0;
  top: 0;
  width: 320px;
  height: 250px;
}
.printing-slide:nth-child(1) h3 {
  left: 20px;
  bottom: 20px;
}
.printing-slide:nth-child(1) img {
  transform: translate(-65%, -65%);
}

.printing-slide:nth-child(2) {
  left: 340px;
  top: 90px;
  width: 220px;
  height: 250px;
}
.printing-slide:nth-child(2) h3 {
  left: 20px;
  bottom: 20px;
}
.printing-slide:nth-child(2) img {
  transform: translate(-50%, -65%);
}

.printing-slide:nth-child(3) {
  right: 380px;
  top: 50px;
  width: 210px;
  height: 200px;
}
.printing-slide:nth-child(3) h3 {
  left: 20px;
  bottom: 20px;
}
.printing-slide:nth-child(3) img {
  transform: translate(-50%, -65%);
}

.printing-slide:nth-child(4) {
  right: 130px;
  top: 100px;
  width: 230px;
  height: 230px;
}
.printing-slide:nth-child(4) h3 {
  left: 20px;
  bottom: 20px;
}
.printing-slide:nth-child(4) img {
  transform: translate(-50%, -65%);
}

.printing-slide:nth-child(5) {
  left: 100px;
  bottom: 50px;
  width: 220px;
  height: 270px;
}
.printing-slide:nth-child(5) h3 {
  left: 20px;
  top: 20px;
}
.printing-slide:nth-child(5) img {
  transform: translate(-65%, -35%);
}

.printing-slide:nth-child(6) {
  left: 340px;
  bottom: 60px;
  width: 220px;
  height: 170px;
}
.printing-slide:nth-child(6) h3 {
  left: 20px;
  top: 20px;
}
.printing-slide:nth-child(6) img {
  transform: translate(-45%, -20%);
}

.printing-slide:nth-child(7) {
  right: 380px;
  bottom: 10px;
  width: 210px;
  height: 310px;
}
.printing-slide:nth-child(7) h3 {
  left: 20px;
  top: 20px;
}
.printing-slide:nth-child(7) img {
  transform: translate(-50%, -40%);
}

.printing-slide:nth-child(8) {
  right: 36px;
  bottom: 50px;
  width: 320px;
  height: 190px;
}
.printing-slide:nth-child(8) h3 {
  left: 20px;
  top: 20px;
}
.printing-slide:nth-child(8) img {
  transform: translate(-50%, -40%);
}

.printing-btn {
  margin: 90px 0px 0px auto;
}

.printing-pagination {
  display: none;
}

@media (max-width: 1200px) {
  .printing-title {
    margin-bottom: 40px;
  }

  .printing-slider {
    height: auto;
    padding-bottom: 80px;
  }

  .printing-slide {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    height: 250px !important;
  }
  .printing-slide img {
    position: static;
    width: 290px;
    height: 290px;
    min-width: 290px;
    min-height: 290px;
    transform: translate(0) !important;
  }
  .printing-slide h3 {
    width: 100%;
    left: 0 !important;
    top: auto !important;
    bottom: -45px !important;
    right: auto !important;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }

  .printing-slide.swiper-slide-active {
    overflow: visible !important;
  }

  .printing-btn {
    margin: 40px 0px 0px auto;
  }

  .printing-pagination {
    display: flex;
    justify-content: space-between;
    bottom: 0px !important;
  }
  .printing-pagination .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    font-weight: 400;
    font-size: 12px;
    color: #6E6E6E;
    width: 20px;
    height: auto;
  }
  .printing-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #18191A;
    opacity: 0;
  }
  .printing-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 700;
  }
  .printing-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .printing {
    padding: 70px 0px;
  }

  .printing-title {
    font-size: 30px;
    line-height: 38px;
  }

  .printing-slider {
    padding-top: 45px;
    padding-bottom: 150px;
  }

  .printing-slide {
    overflow: visible !important;
  }
  .printing-slide h3 {
    top: -45px !important;
    bottom: auto !important;
  }
  .printing-slide p {
    font-size: 15px;
    line-height: 25px;
    left: 0;
    bottom: -150px;
    top: auto;
    height: 100px;
    padding: 0px;
  }

  .printing-slide.swiper-slide-active p {
    opacity: 1;
  }

  .printing-pagination {
    bottom: 120px !important;
  }
}
@media (min-width: 1200px) {
  .printing-slide:hover img {
    filter: blur(30px);
    transform: translate(-50%, -40%) scale(0.6) !important;
  }

  .printing-slide:hover h3 {
    color: #D03333;
    bottom: calc(100% - 40px) !important;
  }

  .printing-slide:hover p {
    opacity: 1;
  }
}
/*-printing*/
/*progress*/
.progress {
  padding-bottom: 100px;
}

.progress-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  text-align: center;
  margin-bottom: 70px;
}

.progress-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: auto;
}

.progress-number {
  width: fit-content;
  font-weight: 700;
  font-size: 150px;
  color: #FFFFFF;
  text-shadow: -1px -1px 0 #D03333, 1px -1px 0 #D03333, -1px 1px 0 #D03333, 1px 1px 0 #D03333;
  letter-spacing: 0.08em;
}

.progress-list li {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.progress-list li:last-child {
  margin-bottom: 0px;
}
.progress-list li:first-child {
  font-weight: 700;
}

.progress-bg_one {
  position: absolute;
  left: -530px;
  top: -470px;
  display: block;
  min-width: 490px;
  min-height: 951px;
  background: url("../icons/bg/bg-progress-1.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  .progress-number {
    font-size: 130px;
  }
}
@media (max-width: 800px) {
  .progress {
    padding: 70px 0px 300px 0px;
  }

  .progress-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }

  .progress-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .progress-number {
    font-size: 100px;
    line-height: 90px;
    color: #D03333;
    text-shadow: none;
    margin-bottom: 30px;
  }

  .progress-list {
    font-size: 16px;
    text-align: center;
  }

  .progress-bg_one {
    top: -160px;
    left: 50%;
    transform: translateX(-47%);
    width: 600px;
    height: 718px;
    background: url("../icons/bg/bg-progress-2.svg") center no-repeat;
    background-size: contain;
  }
}
/*-progress*/
/*coordination*/
.coordination {
  padding: 150px 0px;
}

.coordination-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.coordination-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 130px;
  letter-spacing: 0.02em;
}
.coordination-title b {
  color: #D03333;
}

.coordination-text {
  position: relative;
  top: -20px;
  width: 360px;
  min-width: 360px;
}
.coordination-text p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 40px;
}
.coordination-text p:last-child {
  margin-bottom: 0px;
}

.coordination-img {
  position: absolute;
  z-index: -2;
  top: -100px;
  right: -370px;
  min-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coordination-img img {
  width: 100%;
}

.coordination-btn {
  margin: 60px 0px 0px auto;
}

.coordination-bg_one {
  position: absolute;
  z-index: -1;
  top: -120px;
  left: -500px;
  width: 915px;
  height: 942px;
  background: url("../icons/bg/bg-coordination-1.svg") center no-repeat;
  background-size: contain;
}

.coordination-bg_two {
  position: absolute;
  z-index: -1;
  bottom: -320px;
  right: -380px;
  width: 510px;
  height: 709px;
  background: url("../icons/bg/bg-coordination-2.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  .coordination-bg_one {
    left: -800px;
  }

  .coordination-bg_two {
    right: -450px;
  }

  .coordination-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .coordination-text p {
    margin-bottom: 15px;
  }

  .coordination-title {
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 50px;
  }
}
@media (max-width: 800px) {
  .coordination {
    padding: 100px 0px 10px 0px;
  }

  .coordination-title {
    font-size: 38px;
    line-height: 45px;
  }
  .coordination-title b {
    display: block;
    font-size: 80px;
    line-height: 100px;
  }

  .coordination-text {
    min-width: 100%;
  }
  .coordination-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .coordination-img {
    top: -18px;
    left: 50%;
    transform: translateX(-20%);
    min-width: 1000px;
    min-height: 626px;
  }
  .coordination-img img {
    width: 100%;
    height: 100%;
  }

  .coordination-btn {
    margin: 100px 0px 0px auto;
  }

  .coordination-bg_one {
    left: -200px;
    top: -100px;
    height: 400px;
    width: 320px;
  }

  .coordination-bg_two {
    right: -20px;
    width: 250px;
    height: 330px;
  }
}
/*-coordination*/
/*decor*/
.decor {
  position: relative;
  padding: 200px 0px 150px 0px;
}
.decor::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 2560px;
  height: 100%;
  background: url("../icons/bg/bg-grey-2.svg") top no-repeat;
  background-size: cover;
}

.decor-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  color: #FFFFFF;
  margin-bottom: 70px;
}

.decor-slider {
  overflow: visible;
}
.decor-slider .swiper-wrapper {
  flex-direction: column;
}

.decor-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 150px;
}

.decor-slide_box {
  width: 370px;
}
.decor-slide_box h3 {
  display: none;
  letter-spacing: 0.085em;
}
.decor-slide_box p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
}

.decor-slide_box:nth-child(3) p {
  text-align: right;
}

.decor-slide_number {
  position: relative;
  font-weight: 700;
  font-size: 90px;
  line-height: 70px;
  text-shadow: -1px -1px 0 #6E6E6E, 1px -1px 0 #6E6E6E, -1px 1px 0 #6E6E6E, 1px 1px 0 #6E6E6E;
  color: #2A2C31;
}
.decor-slide_number::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 130px;
  background: url("../icons/elements/decor-1.svg") center no-repeat;
  background-size: contain;
}
.decor-slide_number span {
  display: none;
}

.decor-slide:last-child {
  justify-content: center;
  align-items: center;
  height: auto;
}

.decor-slide:nth-child(3) .decor-slide_number::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 98px;
  background: url("../icons/elements/decor-3.svg") center no-repeat;
  background-size: contain;
}

.decor-slide_up {
  position: relative;
  width: 450px;
  padding: 30px;
  border: 1px solid #818181;
  border-radius: 0px 30px;
}
.decor-slide_up h4 {
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 0.085em;
  margin-bottom: 20px;
}
.decor-slide_up p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  text-align: center;
}

.decor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.decor-top h3 {
  width: fit-content;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.085em;
  color: #D03333;
  text-transform: uppercase;
}
.decor-top b {
  color: #FFFFFF;
}
.decor-top span {
  font-weight: 700;
  font-size: 36px;
  text-shadow: -1px -1px 0 #6E6E6E, 1px -1px 0 #6E6E6E, -1px 1px 0 #6E6E6E, 1px 1px 0 #6E6E6E;
  color: #2A2C31;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.decor-pagination {
  display: none;
}

@media (max-width: 1200px) {
  .decor-top {
    display: none;
  }

  .decor-slider {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .decor-slider .swiper-wrapper {
    position: static;
    flex-direction: row;
  }

  .decor-slide {
    position: static;
    height: auto;
    display: block;
    opacity: 0 !important;
  }

  .decor-slide.swiper-slide-active {
    opacity: 1 !important;
  }

  .decor-slide_box {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #818181;
  }
  .decor-slide_box h3 {
    display: block;
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.085em;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .decor-slide_box h3 b {
    color: #D03333;
  }
  .decor-slide_box:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }
  .decor-slide_box:nth-child(3) p {
    text-align: left;
  }

  .decor-slide_number {
    position: absolute;
    display: flex;
    align-items: center;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.085em;
  }
  .decor-slide_number span {
    display: block;
    margin-right: 15px;
  }
  .decor-slide_number::before {
    display: none;
  }

  .decor-pagination {
    display: block;
    bottom: 0px !important;
  }
  .decor-pagination .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    font-weight: 400;
    font-size: 12px;
    color: #6E6E6E;
    width: 20px;
    height: auto;
    margin: 0px 10px !important;
  }
  .decor-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    opacity: 0;
  }
  .decor-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 700;
    color: #FFFFFF;
  }
  .decor-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .decor {
    padding: 140px 0px 70px 0px;
  }

  .decor-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }

  .decor-slide_box h3 {
    font-size: 25px;
    line-height: 30px;
  }
  .decor-slide_box p {
    font-size: 16px;
    line-height: 26px;
  }

  .decor-slide_up {
    width: 100%;
    border: none;
    padding: 0px 0px 50px 0px;
  }
  .decor-slide_up h4 {
    font-size: 30px;
  }
  .decor-slide_up p {
    font-size: 16px;
    line-height: 26px;
  }
}
/*-decor*/
/*clients*/
.clients {
  padding: 150px 0px;
}

.clients-wrap {
  position: relative;
}

.clients-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  text-align: right;
  margin-bottom: 70px;
}

.clients-slider {
  overflow: visible;
}
.clients-slider .swiper-wrapper {
  flex-direction: row;
}

.clients-slide img {
  width: 160px;
  height: 125px;
}
.clients-slide ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  width: 100%;
}
.clients-slide li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
  padding: 20px;
  border: 1px solid #818181;
  border-radius: 0px 30px;
}
.clients-slide li:nth-child(odd) {
  border-radius: 30px 0px;
}

.clients-bg_one {
  position: absolute;
  top: -230px;
  left: -400px;
  display: block;
  width: 420px;
  height: 320px;
  background: url("../icons/bg/bg-clients-1.svg") center no-repeat;
  background-size: contain;
}

.clients-bg_two {
  position: absolute;
  right: -380px;
  bottom: -180px;
  display: block;
  width: 280px;
  height: 150px;
  background: url("../icons/bg/bg-clients-2.svg") center no-repeat;
  background-size: contain;
}

.clients-pagination {
  display: none;
}

.clients-arrows {
  position: absolute;
  z-index: 3;
  left: 0px;
  bottom: -70px;
  display: flex;
  align-items: center;
}

.clients-arrow {
  width: 40px;
  height: 40px;
  stroke: #2A2C31;
  stroke-width: 2px;
  cursor: pointer;
  outline: none;
  margin-right: 40px;
}

.clients-arrow.swiper-button-disabled {
  stroke: #6E6E6E;
}

@media (max-width: 1200px) {
  .clients-slide ul {
    grid-template-columns: 1fr 1fr;
  }
  .clients-slide li:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .clients-slide li:nth-child(5) img {
    width: 250px;
    height: 196px;
  }
}
@media (max-width: 800px) {
  .clients {
    padding: 70px 0px;
  }

  .clients-title {
    position: relative;
    z-index: 2;
    padding: 0px 5px;
    font-size: 30px;
    line-height: 38px;
    margin: 0px auto 25px auto;
    text-align: center;
    width: fit-content;
    background: #FFFFFF;
  }

  .clients-slider {
    padding-bottom: 70px;
  }
  .clients-slider .swiper-wrapper {
    flex-direction: row;
  }

  .clients-slide {
    border-radius: 0px 20px;
    margin-top: 15px !important;
  }
  .clients-slide li {
    border: 0.6px solid #818181;
  }
  .clients-slide li:nth-child(1) {
    border-radius: 0px 30px;
  }
  .clients-slide li:nth-child(2) {
    border-radius: 30px 0px;
  }
  .clients-slide li:nth-child(5) {
    border-radius: 0px 30px;
  }

  .clients-bg_two {
    display: none;
  }

  .clients-bg_one {
    left: -90px;
    top: -160px;
    width: 270px;
    height: 270px;
    background: url("../icons/bg/bg-clients-3.svg") center no-repeat;
    background-size: contain;
  }

  .clients-pagination {
    display: block;
    bottom: 0px !important;
  }
  .clients-pagination .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    font-weight: 400;
    font-size: 12px;
    color: #6E6E6E;
    width: 20px;
    height: auto;
    margin: 0px 10px !important;
  }
  .clients-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #18191A;
    opacity: 0;
  }
  .clients-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 700;
    color: #18191A;
  }
  .clients-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
  }

  .clients-arrows {
    display: none;
  }
}
@media (max-width: 570px) {
  .clients-slide ul {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
  }
  .clients-slide li {
    height: 140px;
    padding: 10px;
  }
  .clients-slide img {
    width: 100px;
    height: 80px;
  }
  .clients-slide li:nth-child(5) img {
    width: 200px;
    height: 156px;
  }
}
@media (min-width: 1200px) {
  .clients-arrow:hover {
    stroke: #D03333;
  }
}
/*-clients*/
/*request*/
.request {
  padding: 150px 0px;
}

.request-wrap {
  position: relative;
}

.request-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  text-align: center;
  margin-bottom: 70px;
}

.request-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.request-form_wrap {
  width: 60%;
}

.request-input {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.request-input_point {
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: 400;
  color: #18191A;
  border: none;
  border-bottom: 1px solid #6E6E6E;
  padding-left: 20px;
  background: transparent;
}

.request-select {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.request-select_point {
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: 400;
  color: #18191A;
  border: none;
  border-bottom: 1px solid #6E6E6E;
  padding-left: 20px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  background: transparent;
  background-image: url("../icons/elements/arrow-1.svg");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 20px;
}

.request-textarea {
  display: block;
  width: 100%;
  margin-top: 60px;
}

.request-textarea_point {
  width: 100%;
  height: 180px;
  font-size: 20px;
  font-weight: 400;
  color: #18191A;
  border: none;
  background: transparent;
  border: 1px solid #6E6E6E;
  border-radius: 0px 30px;
  padding: 20px;
}

.request-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(40% - 60px);
  height: 454px;
  border: 1px solid #D03333;
  border-radius: 0px 30px;
  cursor: pointer;
  padding: 15px;
}

.request-file_name {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.request-file_name-name {
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin-top: 5px;
}

.request-file_point {
  position: relative;
  transform: translateX(-11%);
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
}

.request-file_point::-webkit-file-upload-button {
  visibility: hidden;
  user-select: none;
}

.request-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 60px;
  background: #D03333;
  border-radius: 30px 0px;
  padding: 0px 60px;
  transition: 0.3s;
  margin: 60px 0px 0px auto;
  cursor: pointer;
}

.request-button_point {
  width: 130px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 0px;
  margin: 0px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.request-bg_one {
  position: absolute;
  z-index: -1;
  left: -1150px;
  top: -150px;
  display: block;
  width: 1080px;
  height: 930px;
  background: url("../icons/bg/bg-request-1.svg") center no-repeat;
  background-size: contain;
}

.request-bg_two {
  position: absolute;
  z-index: -1;
  right: -1200px;
  top: -250px;
  display: block;
  width: 1180px;
  height: 1170px;
  background: url("../icons/bg/bg-request-2.svg") center no-repeat;
  background-size: contain;
}

.request-wrap .form-error {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #D03333;
  text-align: center;
  padding: 20px;
  max-width: 600px;
  border: 1px solid #D03333;
  border-radius: 0px 30px;
  margin: 20px auto 0px auto;
}

.request-wrap .form-success {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #14b74b;
  text-align: center;
  padding: 20px;
  max-width: 600px;
  border: 1px solid #14b74b;
  border-radius: 0px 30px;
  margin: 20px auto 0px auto;
}

@media (max-width: 800px) {
  .request {
    padding: 70px 0px;
  }

  .request-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }

  .request-form {
    display: block;
  }

  .request-form_wrap {
    width: 100%;
  }

  .request-input_point {
    font-size: 16px;
    height: 40px;
    padding-left: 15px;
  }

  .request-select_point {
    font-size: 16px;
    height: 40px;
    padding-left: 15px;
    background-position-y: 15px;
  }

  .request-textarea_point {
    font-size: 16px;
    height: 150px;
    padding: 15px;
    border-radius: 0px 20px;
  }

  .request-file {
    width: 100%;
    margin-top: 30px;
    height: 150px;
    border-radius: 0px 0px 20px 20px;
  }

  .request-file_name {
    font-size: 16px;
    line-height: 24px;
  }

  .request-textarea {
    margin-top: 0px;
  }

  .request-button {
    height: 50px;
    padding: 0px 40px;
  }

  .request-button_point {
    font-size: 16px;
    line-height: 18px;
  }

  .request-bg_one {
    width: 310px;
    height: 140px;
    left: -250px;
    top: -50px;
    background: url("../icons/bg/bg-request-3.svg") center no-repeat;
    background-size: contain;
  }

  .request-bg_two {
    width: 326px;
    height: 292px;
    right: -150px;
    top: auto;
    bottom: -140px;
    background: url("../icons/bg/bg-request-4.svg") center no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .request-button:hover {
    box-shadow: 0px 8px 1px 0px rgba(208, 51, 51, 0.5);
    border-radius: 30px;
    transform: scale(1.05);
  }
}
/*-request*/
/*faq*/
.faq {
  position: relative;
  padding: 200px 0px 150px 0px;
}
.faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2560px;
  height: 100%;
  background: url("../icons/bg/bg-grey-1.svg") top no-repeat;
  background-size: cover;
}

.faq-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 70px;
}

.faq-list {
  margin-bottom: 150px;
}
.faq-list li {
  cursor: pointer;
  margin-bottom: 40px;
}
.faq-list li:last-child {
  margin-bottom: 0px;
}
.faq-list h3 {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #FFFFFF;
  padding-left: 30px;
  transition: 0.15s;
}
.faq-list svg {
  position: absolute;
  left: 0;
  top: 8px;
  stroke: #FFFFFF;
  transition: 0.15s;
}
.faq-list p {
  font-size: 20px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.faq-list p:last-child {
  margin-bottom: 0px;
}
.faq-list a {
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
  transition: 0.15s;
}
.faq-list li.active svg {
  transform: rotate(90deg);
}
.faq-list li:nth-child(1) .faq-list_bottom {
  display: block;
}

.faq-list_bottom {
  display: none;
  margin-top: 30px;
  padding-left: 30px;
}

.faq-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-bottom_title {
  width: fit-content;
  font-weight: 400;
  font-size: 45px;
  line-height: 55px;
  color: #FFFFFF;
}
.faq-bottom_title b {
  display: block;
  font-weight: 700;
  color: #D03333;
}

.faq-bottom_list a {
  font-weight: 700;
  font-size: 50px;
  line-height: 75px;
  color: #2a2c31;
  letter-spacing: 0.08em;
  text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
  transition: 0.15s;
}

@media (max-width: 1200px) {
  .faq-bottom {
    display: block;
  }

  .faq-bottom_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .faq {
    padding: 140px 0px 70px 0px;
  }

  .faq-list {
    margin-bottom: 70px;
  }

  .faq-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }

  .faq-list li {
    margin-bottom: 30px;
  }
  .faq-list h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .faq-list p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .faq-list_bottom {
    margin-top: 15px;
    padding-left: 0px;
  }

  .faq-bottom_title {
    font-size: 30px;
    line-height: 38px;
  }

  .faq-bottom_list li {
    margin-bottom: 10px;
  }
  .faq-bottom_list li:last-child {
    margin-bottom: 0px;
  }
  .faq-bottom_list a {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.08em;
  }
}
@media (min-width: 1200px) {
  .faq-list li:hover h3 {
    color: #D03333;
  }
  .faq-list li:hover svg {
    stroke: #D03333;
  }

  .faq-list a:hover {
    color: #D03333;
  }

  .faq-bottom_list a:hover {
    color: #D03333;
    text-shadow: -1px -1px 0 #D03333, 1px -1px 0 #D03333, -1px 1px 0 #D03333, 1px 1px 0 #D03333;
  }
}
/*-faq*/
/*about*/
.about {
  position: relative;
  padding-bottom: 300px;
}

.about-text {
  position: relative;
  width: 500px;
}

.about-bg_one {
  position: absolute;
  z-index: -1;
  top: -50px;
  left: -750px;
  display: block;
  min-width: 1023px;
  min-height: 639px;
  background: url("../icons/bg/bg-about-1.svg") center no-repeat;
  background-size: contain;
}

.about-team {
  position: absolute;
  right: 0;
  top: 200px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  width: 45.313vw;
}
.about-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.about-list img {
  height: auto;
  margin-bottom: 15px;
  border-radius: 0px 30px;
}
.about-list li:nth-child(2) img,
.about-list li:nth-child(5) img {
  border-radius: 30px 0px;
}
.about-list h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 7px;
}
.about-list span {
  font-weight: 400;
  font-size: 18px;
}

.about-title {
  font-weight: 700;
  font-size: 70px;
  line-height: 107%;
  letter-spacing: 0.02em;
  text-shadow: -1px -1px 0 #A5A5A5, 1px -1px 0 #A5A5A5, -1px 1px 0 #A5A5A5, 1px 1px 0 #A5A5A5;
  color: #FFFFFF;
  margin-top: 50px;
}

@media (max-width: 1200px) {
  .about {
    padding-bottom: 150px;
  }

  .about-bg_one {
    left: -230px;
    min-width: 400px;
    min-height: 240px;
  }

  .about-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .about-text {
    width: 100%;
    margin-bottom: 100px;
  }

  .about-team {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .about-list {
    width: 100%;
    order: 1;
  }

  .about-title {
    order: 0;
    margin-bottom: 40px;
    margin-top: 0px;
  }
}
@media (max-width: 800px) {
  .about {
    padding-bottom: 70px;
  }

  .about-text {
    margin-bottom: 70px;
  }

  .about-title {
    font-size: 50px;
    line-height: 55px;
  }

  .about-list {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
  }
  .about-list li:nth-child(even) img {
    border-radius: 30px 0px;
  }
  .about-list li:nth-child(5) img {
    border-radius: 0px 30px;
  }
  .about-list h3 {
    font-size: 18px;
  }
  .about-list span {
    font-size: 16px;
  }

  /*-about*/
}
/*contacts*/
.contacts {
  position: relative;
}

.contacts-text {
  position: relative;
}

.contacts-bg_one {
  position: absolute;
  z-index: -1;
  top: -130px;
  left: -750px;
  display: block;
  min-width: 973px;
  min-height: 586px;
  background: url("../icons/bg/bg-contacts-1.svg") center no-repeat;
  background-size: contain;
}

.contacts-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contacts-list {
  max-width: 460px;
}
.contacts-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 45px;
}
.contacts-list li:last-child {
  margin-bottom: 0px;
}
.contacts-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
}
.contacts-list li:nth-child(1):before {
  background: url("../icons/contacts/contacts-1.svg") center no-repeat;
  background-size: contain;
}
.contacts-list li:nth-child(2):before {
  background: url("../icons/contacts/contacts-2.svg") center no-repeat;
  background-size: contain;
}
.contacts-list li:nth-child(3):before {
  background: url("../icons/contacts/contacts-3.svg") center no-repeat;
  background-size: contain;
}
.contacts-list li:nth-child(4):before {
  background: url("../icons/contacts/contacts-4.svg") center no-repeat;
  background-size: contain;
}
.contacts-list li:nth-child(5):before {
  background: url("../icons/contacts/contacts-5.svg") center no-repeat;
  background-size: contain;
}
.contacts-list a {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #18191A;
  margin-bottom: 10px;
  transition: 0.15s;
}
.contacts-list a:last-child {
  margin-bottom: 0px;
}
.contacts-list span {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #18191A;
  margin-bottom: 10px;
}
.contacts-list span b {
  display: block;
  font-weight: 600;
  margin-left: 10px;
}
.contacts-list span:last-child {
  margin-bottom: 0px;
}

.contacts-map {
  height: 520px;
  width: 55%;
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .contacts {
    padding-bottom: 450px;
  }

  .contacts-map {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    border-radius: 0;
  }
}
@media (max-width: 800px) {
  .contacts-bg_one {
    min-width: 600px;
    min-height: 350px;
    left: -400px;
    top: -60px;
  }

  .contacts-list li {
    margin-bottom: 30px;
  }
  .contacts-list a {
    font-size: 16px;
    line-height: 26px;
  }
  .contacts-list span {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .contacts-list a:hover {
    color: #D03333;
  }
}
/*-contacts*/
/*service*/
.service {
  padding-bottom: 0px;
}
.service .section-title {
  width: 70%;
}

.service .works-gallery {
  margin-top: 50px;
}

.service-text {
  position: relative;
}

.service-bg_one {
  position: absolute;
  z-index: -1;
  left: -850px;
  top: -100px;
  display: block;
  min-width: 1040px;
  min-height: 773px;
  background: url("../icons/bg/bg-service-1.svg") center no-repeat;
  background-size: contain;
}

.service-bg_two {
  position: absolute;
  z-index: -1;
  right: -500px;
  top: -50px;
  display: block;
  min-width: 954px;
  min-height: 350px;
  background: url("../icons/bg/bg-service-2.svg") center no-repeat;
  background-size: contain;
}

.service-contain {
  display: flex;
  align-items: flex-start;
  margin-top: 100px;
}

.service-tabs {
  overflow: visible;
  top: -13px;
  width: 320px;
  height: fit-content;
  margin-left: 0px;
}
.service-tabs .swiper-wrapper {
  flex-wrap: wrap;
}

.service-tab {
  position: relative;
  display: flex;
  align-items: center;
  height: 55px !important;
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #18191A;
  cursor: pointer;
  transition: 0.15s;
}

.service-tab.swiper-slide-thumb-active {
  color: #D03333;
  text-shadow: 1px 0px 0px #D03333;
}

.service-pagination {
  display: none;
}

.service-slider {
  width: 800px;
  overflow: visible;
  margin-right: 0px;
}

.service-slide {
  width: 100%;
  opacity: 0 !important;
  outline: none;
}

.service-slide.swiper-slide-active {
  opacity: 1 !important;
}

.service-slide_text img {
  float: right;
  width: 350px;
  height: 350px;
}
.service-slide_text h3 {
  display: none;
}

.service-boxs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  margin: 50px 0px;
}
.service-boxs li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-boxs img {
  height: auto;
  width: 100%;
}

.service-boxs.two {
  grid-template-columns: 1fr 1fr;
}
.service-boxs.two::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -700px;
  width: 1041px;
  height: 773px;
  background: url("../icons/bg/bg-service-4.svg") center no-repeat;
  background-size: contain;
}

.service-boxs.three {
  grid-template-columns: 1fr;
}
.service-boxs.three::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 300px;
  left: -350px;
  width: 271px;
  height: 263px;
  background: url("../icons/bg/bg-service-5.svg") center no-repeat;
  background-size: contain;
}

.service-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
}
.service-gallery a {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-in;
}
.service-gallery img {
  height: auto;
  width: 100%;
}
.service-gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 300px;
  left: -800px;
  width: 886px;
  height: 686px;
  background: url("../icons/bg/bg-service-6.svg") center no-repeat;
  background-size: contain;
}
.service-gallery::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 300px;
  right: -350px;
  width: 329px;
  height: 323px;
  background: url("../icons/bg/bg-service-7.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  .service .section-title {
    width: 100%;
  }

  .service-bg_one {
    top: 0;
    left: -200px;
    min-width: 300px;
    min-height: 200px;
  }

  .service-bg_two {
    right: -300px;
    top: 50px;
    display: block;
    min-width: 349px;
    min-height: 91px;
    background: url("../icons/bg/bg-service-3.svg") center no-repeat;
    background-size: contain;
  }

  .service-contain {
    display: block;
  }

  .service-tabs {
    top: 0;
    width: 100%;
    margin-bottom: 40px;
  }

  .service-tab {
    width: fit-content;
  }

  .service-slider {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .service .works-gallery {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .service-contain {
    position: relative;
    margin-top: 20px;
  }

  .service-tabs {
    display: none;
  }

  .service-slider {
    margin-top: 20px;
  }

  .service-slide {
    padding-top: 300px;
  }

  .service-slide_text {
    margin-top: 100px;
  }
  .service-slide_text img {
    float: none;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
  }
  .service-slide_text h3 {
    position: absolute;
    left: 0;
    top: 310px;
    display: flex;
    align-items: center;
    height: 50px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #D03333;
    letter-spacing: 0.085em;
    margin-bottom: 0px;
  }

  .service-pagination {
    display: flex;
    justify-content: space-between;
    top: 370px !important;
    bottom: auto !important;
  }
  .service-pagination .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    font-weight: 400;
    font-size: 12px;
    color: #6E6E6E;
    width: 20px;
    height: auto;
  }
  .service-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #18191A;
    opacity: 0;
  }
  .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 700;
    color: #18191A;
  }
  .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
  }

  .service-boxs {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    margin: 30px 0px;
  }

  .service-boxs.two {
    grid-template-columns: 1fr;
  }
  .service-boxs.two::before {
    display: none;
  }

  .service-boxs.three {
    grid-template-columns: 1fr;
  }
  .service-boxs.three::before {
    display: none;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
  }
  .service-gallery::before {
    display: none;
  }
  .service-gallery::after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .service-tab:hover {
    color: #D03333;
  }
}
/*-service*/
/*works*/
.works-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.works-bg_one {
  position: absolute;
  z-index: 2;
  left: -830px;
  top: -300px;
  width: 970px;
  height: 609px;
  background: url("../icons/bg/bg-works-1.svg") center no-repeat;
  background-size: contain;
}

.works-bg_two {
  position: absolute;
  z-index: -1;
  right: -430px;
  top: -70px;
  width: 190px;
  height: 190px;
  background: url("../icons/bg/bg-works-2.svg") center no-repeat;
  background-size: contain;
}

.works-bg_three {
  position: absolute;
  z-index: -1;
  left: -400px;
  top: 500px;
  width: 130px;
  height: 130px;
  background: url("../icons/bg/bg-works-3.svg") center no-repeat;
  background-size: contain;
}

.works-title {
  position: relative;
  z-index: 4;
  display: none;
}

.works-category {
  position: relative;
  z-index: 4;
  width: 320px;
}
.works-category a {
  transition: 0.1s;
}
.works-category > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.works-category > li:last-child {
  margin-bottom: 0px;
}
.works-category > li > a {
  position: relative;
  display: block;
  max-width: calc(100% - 36px);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #18191A;
}
.works-category > li.active > a {
  color: #D03333;
}
.works-category > li.active > a ~ ul {
  display: block;
}
.works-category > li.works-category_point > .works-category_plus {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  background: url("../icons/elements/plus.svg") center no-repeat;
  background-size: contain;
  cursor: pointer;
}
.works-category > li.works-category_point.active > .works-category_plus {
  background: url("../icons/elements/minus.svg") center no-repeat;
  background-size: contain;
}

.works-category_list {
  display: none;
  padding-left: 15px;
  margin-top: 20px;
}
.works-category_list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.works-category_list > li:last-child {
  margin-bottom: 0px;
}
.works-category_list > li > a {
  position: relative;
  display: block;
  max-width: calc(100% - 36px);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #18191A;
}
.works-category_list > li.active > a {
  color: #D03333;
}
.works-category_list > li.active > a ~ ul {
  display: block;
}
.works-category_list > li.works-category_point > a {
  font-weight: 600;
}
.works-category_list > li.works-category_point > .works-category_plus {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  background: url("../icons/elements/plus.svg") center no-repeat;
  background-size: contain;
  cursor: pointer;
}
.works-category_list > li.works-category_point.active > .works-category_plus {
  background: url("../icons/elements/minus.svg") center no-repeat;
  background-size: contain;
}

.works-content {
  width: 800px;
}

.works-text {
  margin-top: 100px;
}

.works-info {
  position: relative;
}

.works-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.works-slide {
  position: relative;
  height: 210px;
  border-radius: 5px;
  overflow: hidden;
}

.works-slide_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.works-slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-slide_text {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}
.works-slide_text span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.works-slide_text a {
  font-weight: 700;
  font-size: 18px;
  color: #18191A;
  text-transform: uppercase;
  transition: 0.15s;
}

.works-pagination {
  display: none;
}

.works-gallery {
  height: 600px;
  overflow: visible;
}
.works-gallery::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 100%;
  top: 0;
  height: 100%;
  width: 2000px;
  background: #FFFFFF;
}
.works-gallery .swiper-wrapper {
  align-items: center;
}

.works-gallery_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 216px;
  overflow: hidden;
  filter: blur(3px);
  border-radius: 5px;
  transition: 0.3s;
}
.works-gallery_slide a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.works-gallery_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.works-gallery_slide.swiper-slide-active {
  width: 100%;
  height: 600px;
  filter: none;
  transition: 0.3s;
}

.works-gallery a[data-fancybox]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: url("../icons/elements/play.svg") center no-repeat;
  background-size: contain;
}

.works-arrows {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -60px;
}

.works-arrow {
  width: 40px;
  height: 40px;
  stroke: #D03333;
  stroke-width: 2px;
  cursor: pointer;
  outline: none;
  margin-left: 30px;
}

.works-arrow.swiper-button-disabled {
  stroke: #6E6E6E;
}

.works-fraction {
  position: absolute;
  left: 0px;
  bottom: -50px;
  font-size: 16px;
  font-weight: 600;
  color: #D03333;
}
.works-fraction .swiper-pagination-total {
  color: #18191A;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .works-category {
    width: 250px;
  }

  .works-category > li > a {
    font-size: 16px;
  }

  .works-category_list > li > a {
    font-size: 16px;
  }

  .works-content {
    width: 500px;
  }

  .works-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .works-gallery {
    height: 310px;
  }

  .works-gallery_slide.swiper-slide-active {
    height: 310px;
  }
}
@media (max-width: 800px) {
  .works-wrap {
    display: block;
  }

  .works-bg_one {
    height: 300px;
    width: 400px;
    left: -300px;
    top: -200px;
  }

  .works-bg_two {
    display: none;
  }

  .works-bg_three {
    display: none;
  }

  .works-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: #18191A;
    margin-bottom: 15px;
  }

  .works-category {
    width: 100%;
    height: 205px;
    padding: 15px;
    border: 1px solid #D2D2D2;
    margin-bottom: 30px;
    overflow-y: auto;
  }

  .works-aside {
    position: relative;
  }
  .works-aside::after {
    content: "";
    position: absolute;
    left: 1px;
    bottom: 1px;
    width: calc(100% - 2px);
    height: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  }

  .works-category > li {
    margin-bottom: 15px;
  }

  .works-category_list {
    margin-top: 15px;
  }

  .works-category_list > li {
    margin-bottom: 15px;
  }

  .works-content {
    width: 100%;
  }

  .works-wrapper {
    display: flex;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .works-slide {
    height: auto;
  }

  .works-slide_img {
    height: 335px;
  }

  .works-slide_text {
    pointer-events: auto;
    position: static;
    align-items: end;
    background: transparent;
    padding: 0px;
    opacity: 1;
    height: fit-content;
    margin-top: 40px;
  }
  .works-slide_text span {
    width: 100%;
    font-weight: 600;
    text-align: left;
  }
  .works-slide_text a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 40px;
    height: 50px;
    width: fit-content;
    background: #D03333;
    border-radius: 25px 0px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .works-gallery::before {
    display: none;
  }

  .works-pagination {
    display: block;
    top: 360px !important;
    background: #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
  }
  .works-pagination .swiper-pagination-progressbar-fill {
    background: #D03333;
  }
}
@media (max-width: 570px) {
  .works-text {
    margin-top: 85px;
  }

  .works-slider {
    overflow: visible;
  }

  .works-slide_img {
    height: 58.772vw;
  }

  .works-pagination {
    display: block;
    top: 63.7vw !important;
  }

  .works-gallery {
    height: 54.386vw;
  }

  .works-gallery_slide.swiper-slide-active {
    height: 54.386vw;
  }
}
@media (min-width: 1200px) {
  .works-category a:hover {
    color: #D03333;
  }

  .works-slide:hover .works-slide_text a {
    color: #D03333;
  }

  .works-slide:hover .works-slide_text {
    opacity: 1;
  }
}
/*-works*/
/*how*/
.how {
  padding-bottom: 150px;
}

.how-wrap {
  position: relative;
}

.how-bg_one {
  position: absolute;
  z-index: -1;
  left: -120px;
  top: -100px;
  width: 140px;
  height: 140px;
  background: url("../icons/bg/bg-how-1.svg") center no-repeat;
  background-size: contain;
}

.how-bg_two {
  position: absolute;
  z-index: -1;
  right: -450px;
  top: -400px;
  width: 801px;
  height: 1214px;
  background: url("../icons/bg/bg-how-2.svg") center no-repeat;
  background-size: contain;
}

.how-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  margin-bottom: 50px;
}

.how-text {
  width: 920px;
}

@media (max-width: 1200px) {
  .how-text {
    width: 100%;
  }

  .how-bg_one {
    display: none;
  }

  .how-bg_two {
    display: none;
  }
}
@media (max-width: 800px) {
  .how {
    padding-bottom: 70px;
  }

  .how-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }
}
/*-how*/
/*similar*/
.similar {
  padding-bottom: 150px;
}

.similar-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  margin-bottom: 50px;
}

.similar-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.similar-list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 214px;
  border-radius: 5px;
  overflow: hidden;
}
.similar-list a:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.2s;
}
.similar-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .similar-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .similar {
    padding-bottom: 70px;
  }

  .similar-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }
}
@media (max-width: 570px) {
  .similar-list a {
    height: 28.07vw;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media (min-width: 1200px) {
  .similar-list a:hover:after {
    opacity: 1;
  }
}
/*-similar*/
/*mistake*/
@keyframes anim-1 {
  from {
    transform: translateY(5px) rotate(0deg);
  }
  to {
    transform: translateY(-5px) rotate(-5deg);
  }
}
.mistake-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mistake-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -380px;
  top: -100px;
  width: 448px;
  height: 448px;
  background: url("../icons/bg/bg-mistake-1.svg") center no-repeat;
  background-size: contain;
}
.mistake-wrap h1 {
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  color: #2A2C31;
  margin-bottom: 20px;
  max-width: 900px;
  margin-bottom: 50px;
}
.mistake-wrap b {
  font-weight: 700;
  color: #D03333;
}
.mistake-wrap img {
  position: absolute;
  right: 0;
  top: 0;
  animation: anim-1 5s infinite linear alternate;
}

@media (max-width: 1200px) {
  .mistake-wrap h1 {
    margin-bottom: 0px;
  }
  .mistake-wrap img {
    position: static;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .mistake-wrap::before {
    width: 250px;
    height: 250px;
    left: -150px;
    top: 0;
  }
  .mistake-wrap h1 {
    font-size: 50px;
    line-height: 52px;
  }
}
/*-mistake*/