@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

img {
  max-width: 100%;
}

span, label {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

input, textarea {
  outline: none;
  border: 0;
  background: transparent;
  font-weight: 400;
}

button, select {
  border: none;
  cursor: pointer;
  background: transparent;
  outline: 0;
  font-weight: 400;
}

address {
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 100svh;
}

ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-weight: 400;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-Light.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-LightItalic.otf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-Regular.otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-RegularItalic.otf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-Medium.otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-MediumItalic.otf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-Bold.otf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-BoldItalic.otf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-Black.otf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Font/Gordita-BlackItalic.otf");
  font-weight: 900;
  font-style: italic;
}
body {
  background: #010101;
  color: white;
  font-family: "Gordita", sans-serif;
  font-weight: 400;
  font-style: normal;
   word-spacing: 0.1em;
}

button,
input,
textarea,
select {
  font-family: "Gordita", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1170px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .container {
    width: calc(100% - 30px);
  }
}

.sec-title {
  font-size: 72px;
  color: rgb(1, 1, 1);
  line-height: 1.2;
  gap: 72px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .sec-title {
    font-size: 50px;
    gap: 35px;
  }
}
@media screen and (max-width: 600px) {
  .sec-title {
    font-size: 30px;
    font-weight: 500;
    gap: 14px;
  }
}
.sec-title span {
  flex-shrink: 0;
}
.sec-title .line {
  height: 1px;
  width: 100%;
  background: #e2dfdd;
  transform: translateY(-20px);
}
@media screen and (max-width: 600px) {
  .sec-title .line {
    transform: translateY(-10px);
  }
}

.swp-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeebe8;
}
.swp-btn.btn-prev img {
  transform: rotateZ(180deg);
}

.view-all {
  transition: all 0.2s linear;
}
.view-all svg,
.view-all svg path {
  transition: all 0.2s linear;
}
.view-all:hover {
  color: #d30d0c;
}
.view-all:hover svg {
  transform: translateX(10px);
}
.view-all:hover svg path {
  fill: #d30d0c;
}

@media screen and (max-width: 600px) {
  .header {
    padding-top: 66px;
  }
  .header.active {
    padding-top: 0;
  }
}
.header-top {
  gap: 42px;
  padding: 17px 0 25px;
}
@media screen and (max-width: 1024px) {
  .header-top {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .header-top {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #010101;
    z-index: 9999;
    display: flex !important;
    padding: 15px;
    margin-inline: auto;
    justify-content: space-between;
  }
  .header-top.active {
    display: none !important;
  }
  .header-top > li {
    display: block;
  }
}
.header-top li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .header-top li {
    gap: 10px;
    font-size: 13px;
  }
}
.header-top svg {
  width: 17px;
  height: auto;
}
.header-top a {
  color: white;
  gap: 12px;
  transition: all 0.2s linear;
}
.header-top a path {
  transition: all 0.2s linear;
}
.header-top a:hover {
  color: #d30d0c;
}
.header-top a:hover path {
  fill: #d30d0c;
}
@media screen and (max-width: 1024px) {
  .header-logo img {
    display: none;
  }
}
.header-logo img.mb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-logo img.mb {
    display: block;
  }
}
.header-bars {
  width: 110px;
  height: 110px;
  background: #ff0100;
  margin-left: -20px;
}
@media screen and (min-width: 1024px) {
  .header-bars {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .header-bars {
    width: 66px;
    height: 59px;
    margin-left: -15px;
  }
}
.header-bars img:nth-child(2) {
  display: none;
}
.header-bars.active {
  background: transparent;
}
.header-bars.active img {
  display: none;
}
.header-bars.active img:nth-child(2) {
  display: block;
}
.header-bottom {
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-bottom {
    border-top: 0;
  }
}
.header-bottom .left-text {
  padding-right: 59px;
  height: 110px;
  position: relative;
  z-index: 1;
  gap: 42px;
}
@media screen and (max-width: 1100px) {
  .header-bottom .left-text {
    padding-right: 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header-bottom .left-text {
    display: none !important;
  }
}
.header-bottom .left-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  min-width: 100vw;
  height: 101%;
  background: #ff0100;
  z-index: -1;
}
.header-bottom .left-text li:nth-child(1) {
  position: relative;
  transition: all 0.2s linear;
}
.header-bottom .left-text li.active::before {
  opacity: 1;
}
.header-bottom .left-text li {
  position: relative;
}
.header-bottom .left-text li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 20px;
  height: 2px;
  background: white;
  opacity: 0;
  transition: all 0.2s linear;
}
.header-bottom .left-text li:hover::before {
  opacity: 1;
  width: 100%;
}
.header-bottom .left-text a {
  font-size: 17px;
  line-height: 1.412;
  font-weight: 500;
}
.header-bottom .right-text {
  padding-left: 58px;
  gap: 42px;
}

.header-bottom .right-text {
  padding-left: 58px;
  gap: 42px;
   position: relative;
}

.header-bottom .right-text li::before {
  content: "";
  position: absolute;

  bottom: -10px;
  width: 20px;
  height: 2px;
  background: white;
  opacity: 0;
  transition: all 0.2s linear;
}
.header-bottom .right-text li.active::before {
  opacity: 1;
}


@media screen and (max-width: 1100px) {
  .header-bottom .right-text {
    padding-left: 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header-bottom .right-text {
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .header-bottom .right-text {
    display: none !important;
  }
}
.header-bottom .right-text .media-blok__link {
  display: none;
}
@media screen and (max-width: 600px) {
  .header-bottom .right-text .media-blok__link {
    display: block;
  }
}
.header-bottom .right-text a {
  font-size: 17px;
  line-height: 1.412;
  transition: all 0.2s linear;
  position: relative;
}
.header-bottom .right-text a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  -webkit-transform: translate(-50%, 100%);
  background-color: #d30d0c;
  opacity: 0;
  transition: all 0.2s linear;
  transform: scaleX(0);
  transform-origin: left;
}
.header-bottom .right-text a:hover::before {
  width: 100%;
  transform: scaleX(1);
  opacity: 1;
}

.menu {
  background: #010101;
  position: absolute;
  z-index: 4;
  top: 110px;
  left: 0;
  width: 100%;
  display: none;
}
@media screen and (max-width: 992px) {
  .menu.active {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .menu {
    top: 59px;
  }
}
.menu-container {
  padding: 45px 0 110px;
}
.menu-navs {
  gap: 28px;
  margin-bottom: 50px;
}
.menu-navs a {
  font-size: 17px;
  line-height: 1.412;
  font-weight: 500;
}
.menu-navs li.active {
  position: relative;
}
.menu-navs li.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 20px;
  height: 2px;
  background: #ff0100;
}
.menu p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 10px;
}
.menu-networks {
  gap: 10px;
}
.menu-networks li {
  gap: 16px;
}
.menu-networks a {
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.home {
  position: relative;
  padding-top: 40px;
}
.home .slide-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease-in-out;
  animation: fade 0.2s linear;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home-container {
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}
.home-swp {
  position: unset !important;
}
@media screen and (max-width: 700px) {
  .home-swp {
    position: relative;
  }
}
.home-swp .swiper {
  width: 100%;
  height: 100%;
  position: unset !important;
}
@media screen and (max-width: 1300px) {
  .home-swp .swiper {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 700px) {
  .home-swp .swiper {
    padding: 0 0 136px 0;
  }
}
.home-swp .swiper-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-swp .swiper-slide ul.d-flex {
  transform: translateX(-28px);
  z-index: 10;
  position: relative;
  padding-bottom: 45px;
}
@media screen and (max-width: 1300px) {
  .home-swp .swiper-slide ul.d-flex {
    transform: translateX(-28px) translateY(10px);
  }
}
@media screen and (max-width: 700px) {
  .home-swp .swiper-slide ul.d-flex {
    position: absolute;
    bottom: -144px;
    left: 15px;
    transform: none;
  }
  .home-swp .swiper-slide ul.d-flex img {
    width: 46px;
  }
}
@media screen and (max-width: 1300px) {
  .home-swp .swiper-slide > div {
    justify-content: start;
  }
  .home-swp .swiper-slide > div .slide-img {
    position: absolute;
    top: 0;
    z-index: -1;
    right: -100px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 700px) {
  .home-swp .swiper-slide > div .slide-img {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 700px) {
  .home-swp .swiper-slide > div {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1024px) {
  .home-swp .swiper-slide .slide-img {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 700px) {
  .home-swp .swiper-slide .slide-img {
    width: 300px;
    height: 185px;
    -o-object-fit: contain;
       object-fit: contain;
    position: unset;
    transform: scale(1);
  }
}
.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
@media screen and (max-width: 700px) {
  .home-bg {
    height: 383px;
  }
}

///////
@media screen and (max-width: 700px) {
  .home-swp {
    position: relative;
    height: 705px;
  }
}
.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 700px) {
  .home-bg {
    height: 383px;
  }
}
.home-container {
  padding: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .home-container {
    flex-direction: row !important;
    align-items: flex-end !important;
    gap: 80px;
  }
}
@media screen and (max-width: 700px) {
  .home-container {
    padding: 0 0 35px;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
}
@media screen and (max-width: 700px) {
  .home-head {
    margin: 0;
    padding-left: 15px;
  }
}
.home-head h1 {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.2;
  font-size: 50px;
}
.home-head h1 span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .home-head h1 span {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .home-head h1 {
    font-size: 55.249px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 700px) {
  .home-head h1 {
    margin-bottom: 24px;
  }
}
.home-head ul {
  padding: 35px;
  background: #ff0100;
      margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .home-head ul {
    width: 300px;
    min-width: 300px;
    margin-left: -20px;
    padding: 30px 40px;
  }
}
@media screen and (max-width: 700px) {
  .home-head ul {
    padding: 20px 60px 20px 15px;
  }
}
@media screen and (max-width: 600px) {
  .home-head ul {
    margin-left: -15px;
  }
}
.home-head ul li {
  font-size: 17px;
  color: rgb(255, 255, 255);
  line-height: 2.118;
  font-weight: bold;
}
.home-head ul li span {
  font-weight: 400;
}
.home-bottom {
  width: 100%;
}
.home-bottom ul {
  gap: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .home-bottom ul {
    gap: 16px;
  }
}
.home-bottom ul li {
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .home-bottom ul img {
    width: 46px;
  }
}
.home-bottom__right {
  gap: 240px;
}
@media screen and (max-width: 1024px) {
  .home-bottom__right {
    gap: 0px;
  }
}
.home-bottom .swp-fraction {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  line-height: 1.333;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .home-bottom .swp-fraction {
    display: none;
  }
}
.home-bottom .swp-fraction span {
  font-size: 36px;
  color: rgb(255, 255, 255);
  line-height: 0.667;
}
.home-bottom .swp-btns {
  gap: 20px;
}
.home-bottom .swp-btns button {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid white;
}
@media screen and (max-width: 1024px) {
  .home-bottom .swp-btns button {
    width: 50px;
    height: 50px;
  }
}
.home-text {
  background: #ff0000;
  padding: 24px 0;
}

@media screen and (max-width: 1024px) {
  .home-text {
    padding: 13px 0;
  }
}
.home-text .container {
  gap: 25px;
}
@media screen and (max-width: 600px) {
  .home-text .container {
    gap: 12px;
  }
}
.home-text img {
  flex-shrink: 0;
}
.home-text p {
  font-size: 20px;
  color: rgb(252, 250, 250);
  text-transform: uppercase;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .home-text p {
    font-size: 15px;
  }
}

.popular {
  background: white;
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .popular {
    padding-top: 70px;
  }
}
@media screen and (max-width: 600px) {
  .popular {
    padding-top: 70px;
  }
}
.popular-head {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .popular-head {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .popular-head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.popular-head h2 {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .popular-head h2 {
    max-width: 320px;
  }
}
.popular-head__right {
  max-width: 372px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .popular-head__right {
    max-width: 272px;
  }
}
.popular-head__right p {
  margin-bottom: 45px;
  font-size: 20px;
  color: rgb(25, 25, 25);
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .popular-head__right p {
    font-size: 17px;
    margin-bottom: 25px;
  }
}
.popular-head__right a {
  font-size: 17px;
  color: rgb(1, 1, 1);
  line-height: 1.2;
  font-weight: 500;
  gap: 19px;
}
.popular-swp {
  max-width: 1920px;
  margin: 0 auto;
  border-top: 1px solid #eceae9;
  position: relative;
  z-index: 1;
}
.popular-swp .swiper-wrapper {
  align-items: stretch;
}
.popular-swp .swiper-slide {
  height: auto;
}
.popular-swp .swp-btn {
  position: absolute;
  top: 130px;
  z-index: 2;
}
.popular-swp .swp-btn.swiper-button-disabled {
  display: none;
}
.popular-swp .btn-prev {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .popular-swp .btn-prev {
    left: 25px;
  }
}
@media screen and (max-width: 600px) {
  .popular-swp .btn-prev {
    left: 15px;
  }
}
.popular-swp .btn-next {
  right: 0;
}
@media screen and (max-width: 1024px) {
  .popular-swp .btn-next {
    right: 25px;
  }
}
@media screen and (max-width: 600px) {
  .popular-swp .btn-next {
    right: 15px;
  }
}
.popular-card {
  border-right: 1px solid #eceae9;
  height: 100%;
}
.popular-card__text {
  padding: 0 80px 80px;
}
@media screen and (max-width: 1024px) {
  .popular-card__text {
    padding: 0 50px 50px;
  }
}
@media screen and (max-width: 600px) {
  .popular-card__text {
    padding: 0 15px 70px;
  }
}
.popular-card__text .main-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.popular-card__text h3 {
  font-size: 26px;
  color: rgb(18, 18, 18);
  line-height: 1.2;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
}
.popular-card__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: #ff0100;
}
.popular-card__text ul {
  list-style-type: disc;
  padding-left: 20px;
}
.popular-card__text li {
  font-size: 16px;
  color: rgba(18, 18, 18, 0.702);
  line-height: 1.875;
}
.popular-card__text li::marker {
  color: #ff0100;
}

.work-container {
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .work-container {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 600px) {
  .work-container {
    padding: 70px 0 50px;
  }
}
.work .sec-title {
  color: white;
  max-width: 450px;
}
@media screen and (max-width: 1024px) {
  .work .sec-title {
    max-width: 320px;
  }
}
@media screen and (max-width: 700px) {
  .work .sec-title {
    max-width: 100%;
    overflow: hidden;
  }
}
.work .sec-title:nth-child(1) {
  position: relative;
  z-index: 1;
}
.work .sec-title:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: -30px;
  width: 200px;
  height: 1px;
  background: #605d5c;
}
@media screen and (max-width: 1024px) {
  .work .sec-title:nth-child(1)::before {
    width: 125px;
    right: -40px;
  }
}
@media screen and (max-width: 700px) {
  .work .sec-title:nth-child(1)::before {
    width: 100%;
    right: inherit;
    left: 250px;
    bottom: 14px;
  }
}
@media screen and (max-width: 600px) {
  .work .sec-title:nth-child(1)::before {
    left: 150px;
  }
}
.work .sec-title:nth-child(2) {
  text-align: right;
  max-width: 650px;
  margin: -45px 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .work .sec-title:nth-child(2) {
    max-width: 450px;
  }
}
@media screen and (max-width: 700px) {
  .work .sec-title:nth-child(2) {
    margin-top: 45px;
  }
}
@media screen and (max-width: 600px) {
  .work .sec-title:nth-child(2) {
    max-width: 270px;
  }
}
.work-video {
  width: 100%;
  height: 800px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .work-video {
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .work-video {
    height: 370px;
  }
}
.work-video .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-video .play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff0100;
  font-size: 17px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .work-video .play-btn {
    width: 90px;
    height: 90px;
  }
}

.partner {
  background: white;
}
.partner-card {
  width: 25%;
  gap: 75px;
  padding: 25px 50px 50px;
}
@media screen and (max-width: 1800px) {
  .partner-card {
    padding: 25px 30px 50px;
  }
}
@media screen and (max-width: 1700px) {
  .partner-card {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .partner-card {
    gap: 80px;
    min-height: 600px;
  }
}
@media screen and (max-width: 700px) {
  .partner-card {
    width: 100%;
    padding: 25px 15px 30px;
    min-height: 470px;
  }
}
.partner-card:nth-child(1) {
  background-color: rgb(217, 1, 1);
}
.partner-card:nth-child(2) {
  background-color: rgb(228, 0, 0);
}
.partner-card:nth-child(3) {
  background-color: rgb(245, 245, 245);
}
.partner-card:nth-child(4) {
  background-color: rgba(245, 245, 245, 0.612);
}
.partner-card__head {
  gap: 40px;
}
.partner-card__head h3 {
  font-size: 30px;
  color: rgb(1, 1, 1);
  line-height: 1.2;
  font-weight: 500;
}
.partner-card__bottom {
  gap: 10px;
}
.partner-card__bottom a {
  font-size: 16px;
  color: rgb(1, 1, 1);
  line-height: 2;
  height: 80px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 30px;
  background: linear-gradient(to right, #fffcfc, #f6f5f5);
  transition: all 0.2s linear;
}
.partner-card__bottom a:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.partner-card__bottom a img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .partner-card__bottom a img {
    /*display: none;*/
  }
}
.partner-card.bg-red h3 {
  color: white;
}
.partner-card.bg-red a {
  background: linear-gradient(90deg, #f52222, #e40000);
  transition: all 0.2s linear;
  color: white;
}
@media screen and (max-width: 700px) {
  .partner-card.bg-red a img {
    display: block;
  }
}

.news {
  background: white;
  padding: 70px 0 100px;
}
@media screen and (max-width: 1024px) {
  .news {
    padding: 90px 0 95px;
  }
}
@media screen and (max-width: 600px) {
  .news {
    padding: 70px 0;
  }
}
.news-head {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .news-head {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .news-head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.news-head h2 {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .news-head h2 {
    max-width: 320px;
  }
}
.news-head__right {
  max-width: 268px;
  width: 100%;
}
.news-head__right p {
  margin-bottom: 45px;
  font-size: 20px;
  color: rgb(25, 25, 25);
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .news-head__right p {
    font-size: 17px;
    margin-bottom: 25px;
  }
}


.models-page .bottom-info .mainintro {
  font-size: 26px;
  line-height: 44px;
  font-weight: 500;
   padding-bottom: 20px;
}


.news-head__right a {
  font-size: 17px;
  color: rgb(1, 1, 1);
  line-height: 1.2;
  font-weight: 500;
  gap: 19px;
}
.news-card {
  width: 600px;
  flex-shrink: 0;
  gap: 14px;
}
.news-card h3 {
  transition: all 0.2s linear;
  position: relative;
  width: fit-content;
}
.news-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translate(-50%, 100%);
  background-color: #d30d0c;
  opacity: 0;
  transition: all 0.2s linear;
  transform: scaleX(0);
  transform-origin: left;
}
.news-card:hover h3 {
  color: #d30d0c;
}
.news-card:hover h3::before {
  transform: scaleX(1);
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .news-card {
    width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .news-card {
    width: 100%;
  }
}
.news-card__wrap {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
@media screen and (max-width: 1200px) {
  .news-card__wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .news-card__wrap {
    flex-direction: column;
    width: calc(100% + 40px);
    margin-left: -20px;
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .news-card__wrap {
    gap: 40px;
  }
}
.news-card__item {
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .news-card__item {
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .news-card__item {
    gap: 40px;
  }
}
.news-card__item .news-card {
  width: 100%;
  gap: 45px;
}
@media screen and (max-width: 1024px) {
  .news-card__item .news-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .news-card__item .news-card .main-img {
    width: 239px;
    height: 168px;
  }
}
@media screen and (max-width: 1024px) {
  .news-card__item .news-card .main-img {
    width: 100%;
    object-position: center top;
  }
}
@media screen and (min-width: 1024px) {
  .news-card__item .news-card__text {
    padding-left: 0;
  }
}
.news-card .main-img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .news-card .main-img {
    height: 280px;
  }
}
.news-card__text {
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .news-card__text {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 600px) {
  .news-card__text {
    padding: 20px 15px 0;
  }
}
.news-card p {
  font-size: 12px;
  color: rgba(1, 1, 1, 0.6);
  line-height: 2;
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 16px;
  color: rgb(1, 1, 1);
  line-height: 1.5;
  font-weight: 500;
}

.service {
  background: #f6f5f5;
  padding: 70px 0 100px;
}
@media screen and (max-width: 1024px) {
  .service {
    padding: 90px 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .service {
    padding: 70px 0 85px;
  }
}
.service-list {
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .service-list {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 24px;
  }
}
.service-list__wrap {
  gap: 70px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .service-list__wrap {
    gap: 40px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 600px) {
  .service-list__wrap {
    gap: 45px;
    margin-top: 30px;
  }
}
.service-list .main-img {
  width: 270px;
  height: 180px;
  flex-shrink: 0;
  object-fit: cover;
}
@media screen and (max-width: 750px) {
  .service-list .main-img {
    width: 200px;
    height: 140px;
  }
}
@media screen and (max-width: 600px) {
  .service-list .main-img {
    width: 100%;
    height: auto;
  }
}
.service-list__content {
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .service-list__content {
    gap: 35px;
  }
}
@media screen and (max-width: 600px) {
  .service-list__content {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
    gap: 24px;
  }
}
.service-list__content .number {
  font-size: 40px;
  color: rgb(0, 0, 0);
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .service-list__content .number {
    margin-bottom: -25px;
  }
}
.service-list__content h3 {
  font-size: 40px;
  color: rgb(0, 0, 0);
  line-height: 1.2;
  max-width: 510px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .service-list__content h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .service-list__content h3 {
    font-size: 20px;
  }
}
.service-list .link-arrow {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e5e3;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .service-list .link-arrow {
    width: 50px;
    height: 50px;
  }
}
.service-list .link-arrow svg {
  transition: 0.2s ease-in-out;
}
.service-list .link-arrow svg path {
  transition: 0.2s ease-in-out;
}
.service-list .link-arrow:hover {
  background: #ff0100;
  border-color: #ff0100;
}
.service-list .link-arrow:hover svg {
  transform: rotateZ(45deg);
}
.service-list .link-arrow:hover svg path {
  fill: white;
}

.footer {
  padding: 70px 0 52px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 80px 0 30px;
  }
}
.footer-head {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .footer-head {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 600px) {
  .footer-head {
    flex-direction: column;
    align-items: center !important;
    gap: 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
}
.footer-left p {
  font-size: 15px;
  color: rgb(153, 153, 153);
  line-height: 1.733;
  max-width: 270px;
  margin: 20px 0 48px;
}
@media screen and (max-width: 1024px) {
  .footer-left p {
    margin: 10px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .footer-left p {
    display: none;
  }
}
.footer-left ul {
  gap: 18px;
}
@media screen and (max-width: 600px) {
  .footer-left ul {
    justify-content: center;
  }
}
.footer-left ul svg {
  width: 16px;
  height: 16px;
}
.footer-left ul svg path {
  transition: all 0.2s linear;
}
.footer-left ul svg:hover path {
  fill: #d30d0c;
}
.footer-navs__wrap {
  gap: 70px;
}

.news-cards .news-title {
  position: relative;
  display: inline-block;
}

.news-cards .news-title a:hover {
  color: #d30d0c;
}

.news-cards .news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #d30d0c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.news-cards .news-title:hover::after {
  transform: scaleX(1);
}


.red-simple-btn {
  background-color: #f50e04;
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 17px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  border: 1px solid transparent;
  white-space: nowrap;
}

.red-simple-btn:hover {
  box-shadow: 0 4px 12px rgba(213, 13, 12, 0.6);
  transform: translateY(-2px);
}
.red-simple-btn {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


@media screen and (max-width: 1024px) {
  .footer-navs__wrap {
    display: none !important;
  }
}
.footer-navs .title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer-navs a {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
  color: #919191;
  transition: all 0.2s linear;
  position: relative;
}
.footer-navs a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translate(-50%, 100%);
  background-color: #d30d0c;
  opacity: 0;
  transition: all 0.2s linear;
  transform: scaleX(0);
  transform-origin: left;
}
.footer-navs a:hover {
  color: #d30d0c;
}
.footer-navs a:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.footer-right {
  width: 320px;
  flex-shrink: 0;
  gap: 36px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .footer-right {
    gap: 30px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 600px) {
  .footer-right {
    width: 100%;
    padding: 45px 0 59px;
    gap: 50px;
    margin-right: -15px;
  }
}
.footer-right::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120px;
  left: 0;
  width: 100%;
  height: 1000px;
  background: #161616;
}
@media screen and (max-width: 600px) {
  .footer-right::before {
    width: calc(100% + 40px);
    height: 100%;
    left: -15px;
    top: 0;
  }
}
.footer-right h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.footer-right a {
  width: 170px;
  aspect-ratio: 1/1;
  color: #919191;
  border: 1px solid #262626;
  border-radius: 50%;
  gap: 5px;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
  transition: all 0.2s linear;
}
.footer-right a path,
.footer-right a svg {
  transition: all 0.2s linear;
}
.footer-right a:hover {
  background-color: #d30d0c;
  color: #fff;
}
.footer-right a:hover svg path {
  fill: #fff;
}
.footer-right a:hover svg {
  transform: rotate(45deg);
}
.footer-right a svg {
  width: 12px;
}
.footer .copyright {
  font-size: 15px;
  color: rgb(153, 153, 153);
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .footer .copyright {
    text-align: center;
  }
}

.breadcrumb {
  position: relative;
  font-size: 26px;
  line-height: 30px;
  position: relative;
  padding-left: 90px;
}
@media screen and (max-width: 700px) {
  .breadcrumb {
    font-size: 18px;
    line-height: 23px;
    padding-left: 60px;
  }
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 72px;
  height: 1px;
  background-color: #b3b3b2;
}
@media screen and (max-width: 700px) {
  .breadcrumb::before {
    width: 50px;
  }
}

.custom-select {
  position: relative;
  border: 1px solid #010101;
  border-radius: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.2s linear;
}
.custom-select:hover {
  background-color: #f0f0f0;
}
@media screen and (max-width: 700px) {
  .custom-select {
    height: 40px;
  }
}
.custom-select.active .select-options {
  display: flex;
}
.custom-select.active .select-head img {
  transform: rotate(180deg);
}
.custom-select .select-head {
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding-inline: 24px;
}
@media screen and (max-width: 700px) {
  .custom-select .select-head {
    padding-inline: 16px;
  }
}
.custom-select .select-head img {
  transition: all 0.2s linear;
}
.custom-select .select-options {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  border: 1px solid #010101;
  border-radius: 10px;
  display: none;
  overflow: hidden;
}
.custom-select .select-option {
  cursor: pointer;
  padding: 10px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.custom-select .select-option:hover, .custom-select .select-option.active {
  color: #fff;
  background-color: #878787;
}
.custom-select .select-option.active {
  border-color: #000;
}

.paginations {
  display: flex;
  gap: 10px;
  margin-top: 57px;
}
@media screen and (max-width: 700px) {
  .paginations {
    margin-top: 30px;
  }
}
.paginations .pagination {
  padding-inline: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  height: 45px;
  font-size: 17px;
  border-radius: 20px;
  transition: all 0.2s linear;
}
.paginations .pagination.active, .paginations .pagination:hover {
  border-color: #010101;
}
.paginations .right-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.paginations .right-btn.rotate {
  transform: rotate(-180deg);
}
.paginations .right-btn:hover {
  border-color: #010101;
}

.news-page {
  background-color: #fff;
  padding: 70px 0 70px 0;
  color: #010101;
}
@media screen and (max-width: 700px) {
  .news-page {
    padding: 50px 0;
  }
}
.news-page__title {
  font-size: 70px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .news-page__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 700px) {
  .news-page__title {
    font-size: 35px;
  }
}
.news-page__desc {
  font-size: 20px;
  line-height: 30px;
  max-width: 330px;
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .news-page__desc {
    margin-left: 0;
    max-width: 100%;
    font-size: 16px;
    line-height: 26px;
  }
}
.news-page .title-box {
  margin-bottom: 70px;
}
@media screen and (max-width: 700px) {
  .news-page .title-box {
    margin-bottom: 30px;
  }
}
.news-page .news-cards {
  margin-top: 50px;
  row-gap: 45px;
  text-align: justify;
}
.news-page .news-cards .news-img {
  height: 370px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .news-page .news-cards .news-img {
    height: 270px;
  }
}
.news-page .news-cards .news-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 1, 1, 0.519);
  opacity: 0;
  transition: all 0.2s linear;
  visibility: hidden;
}
.news-page .news-cards .news-img img {
  object-fit: cover;
}
.news-page .news-cards .news-img:hover::before,
.news-page .news-cards .news-img:hover .read-more {
  visibility: visible;
  opacity: 1;
}
.news-page .news-cards .news-img .read-more {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 107px;
  height: 107px;
  background-color: #d30d0c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.news-page .news-cards .news-date {
  color: #8c8c8c;
  font-size: 12px;
  margin-block: 21px;
}
@media screen and (max-width: 992px) {
  .news-page .news-cards .news-date {
    margin-block: 15px;
  }
}
.news-page .news-cards .news-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #010101;
  display: block;
}

.news-page .news-cards .news-title:hover {

  color: #d30d0c;
}

@media screen and (max-width: 992px) {
  .news-page .news-cards .news-title {
    font-size: 18px;
    line-height: 22px;
  }
}

.contact-intro {
  overflow: hidden;
  position: relative;
}
.contact-intro .container {
  padding: 70px 0 120px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact-intro .container {
    position: unset;
    padding: 80px 0;
  }
}
.contact-intro__bg {
  position: absolute;
  top: 0;
  right: -150px;
  width: 1082px;
  z-index: -1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .contact-intro__bg {
    object-fit: cover;
    width: calc(100% + 30px);
    right: unset;
    left: 0;
  }
}
.contact-intro .title {
  font-size: 72px;
  font-weight: 500;
  margin-top: 38px;
  letter-spacing: -2px;
}
@media screen and (max-width: 1200px) {
  .contact-intro .title {
    font-size: 35px;
  }
}
.contact-intro__desc {
  transform: translateY(50px);
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .contact-intro__desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .contact-intro__desc {
    transform: translateY(0);
    margin-top: 20px;
  }
}

.contact-info {
  background-color: #fff;
  padding: 80px 0 60px 0;
  color: #010101;
}
@media screen and (max-width: 992px) {
  .contact-info {
    padding-block: 50px;
  }
}
.contact-info__title {
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .contact-info__title {
    font-size: 30px;
  }
  .contact-info__title br {
    display: none;
  }
}
.contact-info__text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .contact-info__text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 20px;
  }
}
.contact-info__text.text-mute {
  color: #555555;
  margin-bottom: 33px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-info__text.text-mute {
    margin-bottom: 15px;
  }
}
.contact-info .line {
  width: 40px;
  height: 2px;
  background-color: #d30d0c;
  margin-left: 8px;
}
.contact-info .info-box {
  margin-top: 57px;
}
@media screen and (max-width: 768px) {
  .contact-info .info-box {
    margin-top: 16px;
  }
}
.contact-info .email-text {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 100px;
  font-weight: 500;
  margin-top: 50px;
}
.contact-info .email-text .line {
  width: 70px;
}
@media screen and (max-width: 1024px) {
  .contact-info .email-text {
    font-size: 60px;
  }
  .contact-info .email-text .line {
    min-width: 50px;
    max-width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact-info .email-text {
    font-size: 30px;
    margin-top: 20px;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 10px;
  }
  .contact-info .email-text .line {
    min-width: 30px;
    max-width: 30px;
  }
}

.contact-us {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .contact-us {
    flex-direction: column;
  }
}
.contact-us > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .contact-us > div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact-us .map {
    height: 300px;
  }
}
.contact-us .contact {
  padding: 80px 0 80px 85px;
}
@media screen and (max-width: 1100px) {
  .contact-us .contact {
    padding: 80px 0 80px 40px;
  }
}
@media screen and (max-width: 992px) {
  .contact-us .contact {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact-us .contact {
    padding-inline: 15px;
  }
}
.contact-us .contact form {
  width: 430px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .contact-us .contact form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact-us .contact form {
    gap: 20px;
  }
}
.contact-us .contact h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 78px;
}
@media screen and (max-width: 992px) {
  .contact-us .contact h3 {
    margin-bottom: 20px;
  }
}
.contact-us .contact label {
  font-size: 15px;
  line-height: 30px;
  display: block;
}
.contact-us .contact input,
.contact-us .contact textarea {
  height: 68px;
  font-size: 20px;
  line-height: 30px;
  padding: 22px 0 15px 0;
  border-bottom: 1px solid #303130;
  width: 100%;
  color: #fff;
  resize: none;
}
.contact-us .contact input::placeholder,
.contact-us .contact textarea::placeholder {
  color: #585757;
}
@media screen and (max-width: 768px) {
  .contact-us .contact input,
  .contact-us .contact textarea {
    padding-block: 15px;
    font-size: 16px;
  }
}

.contact-home-text p {
  letter-spacing: 5px;
}

.red-btn {
  width: 100%;
  background-color: #f50e04;
  padding: 18px;
  border-radius: 100px;
  font-size: 17px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  border: 1px solid transparent;
}
.red-btn:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(255, 94, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .red-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
  }
}

.section-title {
  font-size: 72px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .section-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.services-sec {
  background-color: #fff;
  color: #010101;
  padding: 70px 0 70px 0;
}
@media screen and (max-width: 768px) {
  .services-sec {
    padding-block: 50px;
  }
}
.services-sec .section-title {
  margin: 40px 0 80px;
}
@media screen and (max-width: 768px) {
  .services-sec .section-title {
    margin: 20px 0 30px 0;
  }
}
.services-sec .red-btn {
  width: 260px;
  height: 50px;
}
.services-sec .info-title {
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .services-sec .info-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .services-sec .info-title {
    font-size: 25px;
  }
}
.services-sec .service-img {
  height: 640px;
}
@media screen and (max-width: 768px) {
  .services-sec .service-img {
    height: 300px;
  }
}
.services-sec .service-img img {
  padding-right: 40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .services-sec .service-img img {
    padding-right: 0;
  }
}
.services-sec .right-box {
  padding-top: 22px;
}
@media screen and (max-width: 992px) {
  .services-sec .right-box {
    padding-top: 0;
  }
}
.services-sec .line-top {
  position: relative;
}
.services-sec .line-top::before {
  content: "";
  position: absolute;
  top: -122px;
  left: 18px;
  width: 1px;
  background: #b3b3b3;
  height: 100px;
}
@media screen and (max-width: 1200px) {
  .services-sec .line-top::before {
    display: none;
  }
}
.services-sec .line-box {
  position: relative;
  padding-bottom: 98px;
}
.services-sec .line-box::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -30px;
  width: 1px;
  background: #b3b3b3;
  height: 90%;
}
@media screen and (max-width: 1200px) {
  .services-sec .line-box::before {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .services-sec .line-box {
    padding-bottom: 30px;
  }
}
.services-sec .line-box.line-box__right::before {
  left: unset;
  right: -87px;
  height: 90%;
}
.services-sec .info-box {
  padding: 45px 0 48px 0;
}
@media screen and (max-width: 768px) {
  .services-sec .info-box {
    padding: 20px 0;
  }
}
.services-sec .desc,
.services-sec li {
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .services-sec .desc,
  .services-sec li {
    font-size: 16px;
  }
}
.services-sec b {
  font-weight: 500 !important;
  margin-block: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .services-sec b {
    margin-block: 20px;
  }
}
.services-sec ul {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .services-sec ul {
    padding-bottom: 20px;
  }
}
.services-sec li {
  padding-left: 22px;
  position: relative;
}
.services-sec li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #eb0e09;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
@media screen and (max-width: 768px) {
  .services-sec .bottom-box {
    margin-top: 26px;
  }
}
.services-sec .bottom-box .right-box {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .services-sec .bottom-box .right-box {
    text-align: left;
  }
}
.services-sec .bottom-box .desc {
  width: 493px;
}
@media screen and (max-width: 1024px) {
  .services-sec .bottom-box .desc {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .services-sec .bottom-box .desc br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .services-sec .bottom-box .service-img {
    order: -1;
  }
}
.services-sec .bottom-box .service-img img {
  padding-right: 0;
  padding-left: 40px;
}
@media screen and (max-width: 1024px) {
  .services-sec .bottom-box .service-img img {
    padding-left: 0;
  }
}
.services-sec .bottom-box .red-btn {
  margin-left: auto;
}
.services-sec .bottom-box .info-box {
  padding-bottom: 37px;
}
@media screen and (max-width: 768px) {
  .services-sec .red-btn {
    width: 100%;
  }
}

.about-sec {
  background-color: #fff;
  padding: 60px 0 40px 0;
  color: #010101;
}
@media screen and (max-width: 768px) {
  .about-sec {
    padding-block: 50px;
  }
}
.about-sec .section-title {
  padding: 43px 0 70px 0;
}
@media screen and (max-width: 768px) {
  .about-sec .section-title {
    padding-block: 20px;
  }
  .about-sec .section-title br {
    display: none;
  }
}
.about-sec .desc-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: justify;
}
.about-sec .desc-box p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.about-sec .left-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-sec .left-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.about-sec .left-box .red-box {
  padding: 34px 34px 34px 47px;
  background-color: #f50e04;
  color: #fff;
  position: absolute;
  top: 180px;
  left: 25px;
  width: 247px;
}
@media screen and (max-width: 768px) {
  .about-sec .left-box .red-box {
    padding: 32px 20px;
  }
}
.about-sec .left-box .red-box h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .about-sec .left-box .red-box h3 {
    font-size: 18px;
  }
}
.about-sec .left-box .red-box h2 {
  font-size: 72px;
  font-weight: 500;
  margin-block: 24px;
}
@media screen and (max-width: 768px) {
  .about-sec .left-box .red-box h2 {
    font-size: 50px;
    margin-block: 15px;
  }
}
.about-sec .sidebars {
  display: flex;
  align-items: start;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about-sec .sidebars {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.about-sec .sidebars .left-sidebar {
  width: 370px;
}
@media screen and (max-width: 768px) {
  .about-sec .sidebars .left-sidebar {
    width: 100%;
    margin-bottom: 80px;
  }
}
.about-sec .sidebars .right-sidebar {
  max-width: 670px;
}
@media screen and (max-width: 992px) {
  .about-sec .sidebars .right-sidebar {
    max-width: 400px;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .about-sec .sidebars .right-sidebar {
    margin-left: 0;
    max-width: 100%;
  }
  .about-sec .sidebars .right-sidebar .desc-box {
    gap: 20px;
  }
  .about-sec .sidebars .right-sidebar p {
    font-size: 16px;
    line-height: 22px;
  }
}
.about-sec .sidebars .about-logo {
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .about-sec .sidebars .about-logo {
    margin-left: 0;
  }
}

.about-gallerys {
  background-color: #fff;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .about-gallerys {
    padding-bottom: 50px;
  }
}
.about-gallerys .container {
  display: flex;
  align-items: start;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .about-gallerys .container {
    flex-direction: column;
    gap: 15px;
  }
}
.about-gallerys .left-images {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 246px;
  max-width: 246px;
}
@media screen and (max-width: 992px) {
  .about-gallerys .left-images {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
  }
  .about-gallerys .left-images img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about-gallerys .left-images {
    flex-direction: column;
  }
}
.about-gallerys .left-images img {
  object-fit: cover;
  width: 100%;
}
.about-gallerys .left-images img:first-child {
  height: 180px;
}
@media screen and (max-width: 992px) {
  .about-gallerys .left-images img:first-child {
    height: 240px;
  }
}
.about-gallerys .left-images img:last-child {
  height: 240px;
}
.about-gallerys .midle-img {
  width: 570px;
  height: 500px;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .about-gallerys .midle-img {
    width: 100%;
  }
}
.about-gallerys .right-image {
  width: 248px;
  height: 292px;
  object-fit: cover;
  margin-top: auto;
}
@media screen and (max-width: 992px) {
  .about-gallerys .right-image {
    width: 100%;
  }
}

.our-services {
  padding: 70px 0 70px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .our-services {
    padding: 50px 0;
  }
}
.our-services .bird-logo {
  position: absolute;
  bottom: -178px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(10%) sepia(8%) saturate(920%) hue-rotate(350deg);
}
.our-services .desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .our-services .desc {
    font-size: 16px;
    line-height: 22px;
  }
}
.our-services .info-box {
  width: 665px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-bottom: 70px;
}
@media screen and (max-width: 1090px) {
  .our-services .info-box {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .our-services .info-box {
    width: 100%;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 50px;
  }
}
.our-services .line-box {
  height: calc(100% + 152px);
  position: absolute;
  left: -82px;
  top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .our-services .line-box {
    left: -50px;
    height: calc(100% + 100px);
  }
}
@media screen and (max-width: 768px) {
  .our-services .line-box {
    display: none;
  }
}
.our-services .line-box .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f50e04;
}
.our-services .line-box .line {
  height: 100%;
  width: 1px;
  background-color: #605e5c;
}
.our-services .bird-video {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: translateX(-180px);
  position: relative;
}
@media screen and (max-width: 992px) {
  .our-services .bird-video {
    transform: translateX(-155px);
  }
}
@media screen and (max-width: 768px) {
  .our-services .bird-video {
    transform: none;
    margin-top: -20px;
  }
}
.our-services .bird-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-services .bird-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.our-services .bird-video .play-btn img {
  width: 12px;
  height: 15px;
}

.customer-services {
  background-color: #fff;
  padding: 60px 0 50px 0;
  color: #010101;
}
.customer-services a {
  color: #010101;
}
.customer-services a:hover {
  color: #d30d0c;
}

@media screen and (max-width: 768px) {
  .customer-services {
    padding: 50px 0;
  }
}
.customer-services h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .customer-services h4 {
    padding-left: 60px;
  }
}
.customer-services h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 70px;
  height: 2px;
  background-color: #f50e04;
}
@media screen and (max-width: 768px) {
  .customer-services h4::before {
    left: 0;
    width: 50px;
  }
}
.customer-services .email {
  margin-top: 24px;
  font-weight: 500;
  font-size: 100px;
}
@media screen and (max-width: 992px) {
  .customer-services .email {
    font-size: 75px;
  }
}
@media screen and (max-width: 768px) {
  .customer-services .email {
    font-size: 38px;
    margin-top: 15px;
  }
}

.printers-intro .top-box {
  display: flex;
  justify-content: space-between;
  padding: 130px 70px 90px 0;
}
@media screen and (max-width: 992px) {
  .printers-intro .top-box {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .printers-intro .top-box {
    flex-direction: column;
    row-gap: 20px;
  }
}
.printers-intro .top-box h2 {
  width: 534px;
  font-size: 72px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .printers-intro .top-box h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .printers-intro .top-box h2 {
    width: 100%;
    font-size: 40px;
  }
}
.printers-intro .top-box p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  width: 300px;
}
@media screen and (max-width: 992px) {
  .printers-intro .top-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .printers-intro .top-box p {
    width: 100%;
    font-weight: 400;
  }
}
.printers-intro .bottom-box {
  display: flex;
  align-items: start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .printers-intro .bottom-box {
    flex-direction: column;
  }
}
.printers-intro .bottom-box .scroll-down {
  width: 120px;
  height: 120px;
  transition: all 0.2s linear;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background-color: #f50e04;
  position: absolute;
  top: 110px;
  right: 78px;
}
@media screen and (max-width: 768px) {
  .printers-intro .bottom-box .scroll-down {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .printers-intro .bottom-box .scroll-down {
    display: none;
  }
}
.printers-intro .bottom-box .speed-box {
  min-width: 100px;
  max-width: 100px;
  height: 500px;
  background: linear-gradient(to bottom, #ff0000 0%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .printers-intro .bottom-box .speed-box {
    width: 100%;
    max-width: 100%;
    height: 60px;
  }
}
.printers-intro .bottom-box .speed-box span {
  writing-mode: vertical-lr;
  font-size: 15px;
  line-height: 30px;
  text-transform: uppercase;
  transform: rotate(180deg);
  margin-left: -10px;
  color: #f2f2f2;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .printers-intro .bottom-box .speed-box span {
    writing-mode: horizontal-tb;
    transform: rotate(0);
  }
}
.printers-intro .bottom-box .speed-box img {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .printers-intro .bottom-box .speed-box img {
    display: none;
  }
}
.printers-intro .bottom-box .speed-table {
  height: 500px;
  width: 100%;
}
.printers-intro .bottom-box .speed-table .swiper-wrapper {
  flex-direction: column;
}
.printers-intro .bottom-box .speed-table .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.printers-intro .bottom-box .speed-table .swiper-slide img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 450px) {
  .printers-intro .bottom-box .speed-table {
    height: fit-content;
    overflow: hidden;
  }
}

.choos-sec {
  background-color: #f2f2f2;
  padding: 62px 0 64px 0;
}
@media screen and (max-width: 768px) {
  .choos-sec {
    padding: 50px 0;
  }
}
.choos-sec__container {
  display: grid;
  grid-template-columns: 310px 445px 270px;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 1120px) {
  .choos-sec__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 992px) {
  .choos-sec__container {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.choos-sec .choos-box h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .choos-sec .choos-box h2 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 15px;
  }
}
.choos-sec .choos-box .choos-btns {
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .choos-sec .choos-box .choos-btns {
    gap: 10px;
  }
}
.choos-sec .choos-box .choos-btn {
  padding: 0 35px;
  border: 1px solid #a9a9a9;
  border-radius: 100px;
  height: 45px;
  color: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.2s linear;
}
@media screen and (max-width: 768px) {
  .choos-sec .choos-box .choos-btn {
    flex: 1 1 auto;
    height: 40px;
    font-size: 16px;
  }
}
.choos-sec .choos-box .choos-btn.active, .choos-sec .choos-box .choos-btn:hover {
  color: #fff;
  background-color: #010101;
}

.water-intro__top {
  display: flex;
  align-items: stretch;
}
.water-intro__top .left-box {
  width: 785px;
  position: relative;
  padding-top: 189px;
}
@media screen and (max-width: 768px) {
  .water-intro__top .left-box {
    padding-top: 100px;
  }
}
.water-intro__top .water-1 {
  position: absolute;
  top: 67px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .water-intro__top .water-1 {
    top: 30px;
  }
}
.water-intro__top .desc-box {
  gap: 39px;
  margin-top: 115px;
}
@media screen and (max-width: 768px) {
  .water-intro__top .desc-box {
    margin-top: 20px;
    gap: 22px;
  }
}
.water-intro__top .info {
  max-width: 390px;
}
.water-intro__top .desc {
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .water-intro__top .desc {
    font-size: 16px;
    line-height: 22px;
  }
}
.water-intro__top .right-box {
  position: relative;
  flex: 1 1 auto;
  z-index: 1;
  padding-top: 67px;
}
@media screen and (max-width: 768px) {
  .water-intro__top .right-box {
    display: none;
  }
}
.water-intro__top .right-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-color: #e40000;
  z-index: -1;
}
.water-intro__top .right-box .water-2 {
  min-width: 351px;
  height: 510px;
}
@media screen and (max-width: 820px) {
  .water-intro__top .right-box .water-2 {
    min-width: 300px;
    width: 300px;
  }
}
.water-intro__bottom {
  padding: 95px 0;
  display: flex;
  align-items: center;
  gap: 80px;
          align-items: flex-start;
}
@media screen and (max-width: 1065px) {
  .water-intro__bottom {
    gap: 10px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .water-intro__bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .water-intro__bottom {
    padding: 50px 0;
  }
}
.water-intro__bottom h3 {
  display: flex;
  gap: 31px;
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .water-intro__bottom h3 {
    gap: 15px;
    font-size: 30px;
  }
}
.water-intro__bottom h3 .line {
  width: 70px;
  height: 2px;
  background-color: #e40000;
  margin-top: 17px;
}
@media screen and (max-width: 992px) {
  .water-intro__bottom h3 .line {
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .water-intro__bottom h3 .line {
    display: none;
  }
}
.water-intro__bottom ul {
  padding-left: 26px;
}
.water-intro__bottom li {
  list-style: disc;
  font-size: 16px;
  margin-bottom: 34px;
}
@media screen and (max-width: 992px) {
  .water-intro__bottom li {
    margin-bottom: 16px;
  }
}
.water-intro__bottom li:last-child {
  margin-bottom: 0;
}
.water-intro__bottom li::marker {
  color: #e40000;
}

.agfa-makes {
  padding: 70px 0 70px 0;
  background-color: #fff;
  color: #010101;
}
@media screen and (max-width: 992px) {
  .agfa-makes {
    padding: 50px 0;
  }
}
.agfa-makes .title-box {
  margin-bottom: 16px;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .agfa-makes .title-box {
    margin-bottom: 30px;
  }
}
.agfa-makes .title-box h2 {
  width: 565px;
}
@media screen and (max-width: 992px) {
  .agfa-makes .title-box h2 {
    width: 100%;
  }
}
.agfa-makes .title-box p {
  width: 370px;
  font-size: 20px;
  line-height: 30px;
  color: #191919;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .agfa-makes .title-box p {
    width: 100%;
    font-size: 17px;
  }
}
.agfa-makes .boxes .box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .box {
    gap: 30px;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .agfa-makes .boxes .box {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .agfa-makes .boxes .box {
    flex-direction: column;
  }
}
.agfa-makes .boxes .box:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .agfa-makes .boxes .box.left-box {
    flex-direction: column-reverse;
  }
}
.agfa-makes .boxes .box.left-box .img-box img {
  transform: translateX(110px);
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .box.left-box .img-box img {
    transform: translateX(0);
  }
}
.agfa-makes .boxes .box.left-box .title {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .agfa-makes .boxes .box.left-box .title {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.agfa-makes .boxes .box.left-box .desc {
  /*text-align: right;*/
}
@media screen and (max-width: 768px) {
  .agfa-makes .boxes .box.left-box .desc {
    text-align: left;
  }
}
.agfa-makes .boxes .box.right-box .img-box img {
  transform: translateX(-110px);
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .box.right-box .img-box img {
    transform: translateX(0);
  }
}
.agfa-makes .boxes .box.right-box .desc {
  margin-left: auto;
}
.agfa-makes .boxes .box.right-box .info-box::before {
  right: unset;
  left: -11px;
}
.agfa-makes .boxes .info-box {
  width: 570px;
  padding-top: 60px;
  min-height: 370px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .agfa-makes .boxes .info-box {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .info-box {
    min-height: unset;
    padding-top: 0;
  }
}
.agfa-makes .boxes .info-box::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 165px;
  height: 70%;
  width: 1px;
  background-color: #b3b3b4;
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .info-box::before {
    display: none;
  }
}
.agfa-makes .boxes .info-box.first {
  position: relative;
}
.agfa-makes .boxes .info-box.first::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -100px;
  height: 140px;
  width: 1px;
  background-color: #b3b3b4;
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .info-box.first::after {
    display: none;
  }
}
.agfa-makes .boxes .img-box {
  flex: 1 1 auto;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .agfa-makes .boxes .img-box {
    width: 100%;
    height: 300px;
  }
}
.agfa-makes .boxes .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agfa-makes .boxes .title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 38px;
  width: fit-content;
}
.agfa-makes .boxes .desc {
  width: 493px;
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
  text-align: justify;
}
@media screen and (max-width: 1400px) {
  .agfa-makes .boxes .desc {
    width: 100%;
  }
}

.models-intro {
  padding: 30px 0 75px 0;
  background: url(../images/mountin.png) no-repeat;
  background-position: 70% -45px;
}
@media screen and (max-width: 992px) {
  .models-intro {
    background-position: center;
    padding-bottom: 80px;
  }
}
.models-intro .breadcrumbs {
  gap: 10px;
  font-size: 14px;
}
.models-intro .breadcrumbs a {
  color: #595858;
  font-size: 14px;
  font-weight: 300;
}
.models-intro__wrapper {
  display: flex;
  align-items: start;
  gap: 48px;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .models-intro__wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .models-intro__wrapper {
    flex-direction: column-reverse;
  }
}
.models-intro__wrapper .content {
  min-width: 322px;
  max-width: 322px;
  padding-top: 84px;
}
@media screen and (max-width: 992px) {
  .models-intro__wrapper .content {
    min-width: 100%;
    max-width: 100%;
    padding-top: 30px;
  }
}
.models-intro__wrapper .content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding: 42px 0 84px 0;
}
@media screen and (max-width: 768px) {
  .models-intro__wrapper .content p {
    padding: 20px 0;
    font-size: 16px;
  }
}
.models-intro__wrapper .content .red-btn {
  height: 50px;
}
.models-intro__wrapper .content .red-btn:hover {
  background-color: transparent;
  border-color: red;
}
.models-intro__wrapper .content .red-btn:last-child {
  margin-top: 20px;
}
.models-intro__wrapper .right-box {
  flex: 1 1 auto;
}
@media screen and (max-width: 992px) {
  .models-intro__wrapper .right-box {
    width: 100%;
  }
}
.models-intro__wrapper .right-box .logos {
  gap: 20px;
}
.models-intro__wrapper .right-box__info {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.models-intro__wrapper .right-box__img {
  margin: 21px 0 13px 0;
}
.models-intro__wrapper .model-info {
  padding-left: 18px;
}
.models-intro__wrapper .model-info li {
  list-style: disc;
  font-size: 17px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .models-intro__wrapper .model-info li {
    font-size: 16px;
  }
}
.models-intro__wrapper .model-info li::marker {
  color: #e40000;
}

.text-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(360deg, #000 -29.48%, rgba(0, 0, 0, 0) 105.72%, rgba(0, 0, 0, 0) -23%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 1;
}

/* ?????: ?????????? :has() ??? ???????? ??????? ?????? .expanded */
.text-container:has(.expanded)::after,
.text-container.expanded::after {
  opacity: 0;
}

.models-page .bottom-info {
  padding-bottom: 70px;
  /* ???????? ??????, ???? ????? ?? ????????? 670px */
}
@media screen and (max-width: 768px) {
  .models-page .bottom-info {
    padding-bottom: 50px;
  }
}
.models-page .bottom-info h3 {
  font-size: 26px;
  line-height: 44px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .models-page .bottom-info h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
.models-page .bottom-info p {
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  margin: 53px 0 0 0;
  position: relative;
}
.models-page .bottom-info p.active {
  padding-bottom: 20px;
}
.models-page .bottom-info p.active::after {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .models-page .bottom-info p {
    font-size: 16px;
    line-height: 22px;
    margin: 30px 0 20px 0;
  }
}
.models-page .bottom-info .show-more {
  gap: 21px;
  color: #fff;
  font-size: 20px;
}
.models-page .bottom-info .show-more img {
  transition: all 0.2s linear;
}
.models-page .bottom-info .show-more.active img {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .models-page .bottom-info .show-more {
    font-size: 16px;
  }
}
.models-page .bottom-info .show-more.hidden {
  display: none;
}
.models-page .bottom-info .right {
  width: 306px;
}
@media screen and (max-width: 768px) {
  .models-page .bottom-info .right {
    width: 100%;
  }
}
.models-page .bottom-info .right .btns {
  gap: 10px;
  margin-top: 24px;
      flex-direction: column;
}
.models-page .bottom-info .right button {
  color: #fff;
  border: 1px solid #444444;
  font-size: 17px;
  width: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

.models-slider {
  position: relative;
  padding-left: 58px;
  cursor: none;
}
@media screen and (max-width: 1200px) {
  .models-slider {
    padding-left: 20px;
  }
}
.models-slider .swiper-notification {
  display: none !important;
}
.models-slider .drag-box {
  border-radius: 50%;
  background-color: rgb(228, 0, 0);
  width: 120px;
  height: 121px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(0, 0); /* Bu qism olib tashlanadi */
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 768px) {
  .models-slider .drag-box {
    width: 80px;
    left: 78%;
    height: 80px;
    font-size: 16px;
  }
}
.models-slider .swiper-slide {
  height: 502px;
}
@media screen and (max-width: 1200px) {
  .models-slider .swiper-slide {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .models-slider .swiper-slide {
    height: 300px;
  }
}
.models-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.models-printer {
  padding-top: 92px;
  background-color: #fff;
  color: #010101;
}
@media screen and (max-width: 992px) {
  .models-printer {
    padding-top: 50px;
  }
}
.models-printer .title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 73px;
}
@media screen and (max-width: 992px) {
  .models-printer .title {
    margin-bottom: 30px;
  }
}
.models-printer .scroll-box {
  overflow-x: auto;
}
.models-printer .scroll-box::-webkit-scrollbar {
  background: #e0dedc;
  height: 5px;
  border-radius: 10px;
}
.models-printer .scroll-box::-webkit-scrollbar-thumb {
  background: #434241;
  height: 5px;
  border-radius: 10px;
}
.models-printer .models {
  min-width: min-content;
  /* ????????? ? ????? ?????? ???????? ???????? ??? ?????? */
}
.models-printer .models .models-container {
  display: flex;
  flex-wrap: nowrap; /* ?? ?????????? ???????? */
  overflow-x: auto; /* ?????????????? ?????? ??? ????????????? */
}
.models-printer .models .model-card {
  display: flex;
  flex-direction: column;
  min-width: 250px; /* ??????????? ?????? ???????? */
  margin-left: 15px; /* ?????? ????? ?????????? */
  padding: 20px;
  box-sizing: border-box;
}
.models-printer .models .model-card h3,
.models-printer .models .model-card .info {
  width: 100%;
}
.models-printer .models .models-container h3 {
  min-width: 200px; /* ??????????? ?????? ???????? ????????? */
  flex: 1 1 auto; /* ????????? ????????? ??????????? ??? ????????? */
  margin-left: 15px; /* ??????? ????? ?????????? */
  padding: 20px;
  box-sizing: border-box;
}
.models-printer .models .models-container h3,
.models-printer .models .models-container .info {
  min-width: 200px; /* ??? ?????? ?????????? ???????? */
  width: auto; /* ????? ?? ???? ??????? ???????? */
}
.models-printer .models .thead {
  border-top: 1px solid #e0dedc;
  border-bottom: 1px solid #e0dedc;
}
.models-printer .models .thead h3 {
  font-size: 25px;
  font-weight: 500;
  position: relative;
  flex: 0 0 auto;
  min-width: 300px;
  padding: 35px 20px 19px;
  box-sizing: border-box;
}
@media screen and (max-width: 1400px) {
  .models-printer .models .thead h3 {
    min-width: 250px;
  }
}
.models-printer .models .thead h3:not(:last-child) {
  border-right: 1px solid #e0dedc;
}
.models-printer .models .thead h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: 50px;
  height: 1px;
  background-color: #e30611;
}
.models-printer .models .tbody .model-info {
  min-width: 200px; /* ??????????? ?????? ????? ? ??????????? */
  flex: 1 1 auto;
  padding: 40px 20px 73px;
  box-sizing: border-box;
}
@media screen and (max-width: 1400px) {
  .models-printer .models .tbody .model-info {
    min-width: 250px;
    padding-right: 15px;
  }
}
.models-printer .models .tbody .model-info:not(:last-child) {
  border-right: 1px solid #e0dedc;
}
.models-printer .models .tbody .child-info {
  padding-left: 20px;
}
.models-printer .models .tbody .child-info li {
  position: relative;
  list-style: none;
}
.models-printer .models .tbody .child-info li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: #e40000;
}
.models-printer .models .tbody li {
  font-size: 16px;
  line-height: 30px;
  color: #121212;
  list-style: disc;
}
.models-printer .models .tbody li::marker {
  color: #e40000;
}

.configurations {
  background-color: #f3f2f2;
  padding-top: 70px;
  padding-bottom: 70px;
  color: #010101;
}

.video-container
{

    margin: 60px 0;
}

@media screen and (max-width: 768px) {
  .configurations {
    padding-top: 50px;
  }
}
.configurations .title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .configurations .title {
    margin-bottom: 30px;
    font-size: 35px;
  }
}
.configurations .flex-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-right: 70px;
}
@media screen and (max-width: 1100px) {
  .configurations .flex-box {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .configurations .flex-box {
    flex-direction: column;
    gap: 30px;
  }
}
.configurations .img-box {
  margin-top: 82px;
  width: 370px;
}
@media screen and (max-width: 768px) {
  .configurations .img-box {
    margin-top: 0;
    width: 100%;
  }
}
.configurations .img-box img {
  width: 100%;
  object-fit: contain;
}
.configurations .config-box {
  width: 631px;
}
@media screen and (max-width: 768px) {
  .configurations .config-box {
    width: 100%;
  }
}
.configurations .config-box.first h3 {
  position: relative;
}
.configurations .config-box.first h3::before {
  content: "";
  position: absolute;
  top: -75px;
  left: 12px;
  width: 1px;
  height: 50px;
  background: #dcdcdc;
}
@media screen and (max-width: 1200px) {
  .configurations .config-box.first h3::before {
    display: none;
  }
}
.configurations .config-box.last ul {
  padding-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .configurations .config-box.last ul {
    padding-bottom: 50px;
  }
}
.configurations .config-box.last ul::before {
  height: 100%;
}
.configurations .config-box .red-btn {
  width: fit-content;
  height: 45px;
}
@media screen and (max-width: 768px) {
  .configurations .config-box .red-btn {
    height: 40px;
  }
}
.configurations .config-box h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  transform: translateX(-88px);
  margin-bottom: 39px;
}
@media screen and (max-width: 768px) {
  .configurations .config-box h3 {
    transform: translateX(0);
    margin-bottom: 20px;
  }
}
.configurations .config-box ul {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .configurations .config-box ul {
    padding-bottom: 40px;
    padding-left: 20px;
    gap: 10px;
  }
}
.configurations .config-box ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: -77px;
  width: 1px;
  height: 80%;
  background: #dcdcdc;
}
@media screen and (max-width: 1200px) {
  .configurations .config-box ul::before {
    display: none;
  }
}
.configurations .config-box ul li {
  list-style: disc;
  font-size: 17px;
  color: rgb(25, 25, 25);
  line-height: 1.765;
}
.configurations .config-box ul li::marker {
  color: #e40000;
}
@media screen and (max-width: 768px) {
  .configurations .config-box ul li {
    font-size: 16px;
  }
}

.technical-data {
  background-color: #fff;
  padding: 70px 0 70px 0;
  color: #010101;
}
@media screen and (max-width: 992px) {
  .technical-data {
    padding: 50px 0;
  }
}
.technical-data .title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .technical-data .title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
.technical-data .scroll-box {
  overflow-x: auto;
}
.technical-data .scroll-box::-webkit-scrollbar {
  background: #e0dedc;
  height: 5px;
  border-radius: 10px;
}
.technical-data .scroll-box::-webkit-scrollbar-thumb {
  background: #434241;
  height: 5px;
  border-radius: 10px;
}
.technical-data__box {
  min-width: 1100px;
}
.technical-data__box-head {
  border-top: 1px solid #e2dfdd;
  border-bottom: 1px solid #e2dfdd;
  text-align: center;
  padding: 32px 0 27px 0;
}
.technical-data__box-head h3 {
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .technical-data__box-head h3 {
    text-align: left;
  }
}
.technical-data__box-content {
  display: flex;
  align-items: stretch;
}
.technical-data__box-content.middle .box {
  padding-bottom: 20px;
}
.technical-data__box-content.last {
  display: flex;
}
.technical-data__box-content.last .box {
  padding-bottom: 16px;
  padding-top: 26px;
  border-bottom: 1px solid #e2dfdd;
}
.technical-data__box-content.last .box.last-box {
  flex: 1 1 auto;
  border-bottom: 1px solid #e2dfdd;
}
.technical-data__box-content .box {
  padding-top: 41px;
  border-right: 1px solid #e2dfdd;
  width: 284px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 19px;
}
.technical-data__box-content .box:first-child {
  padding-left: 0;
}
.technical-data__box-content .box:last-child {
  border: none;
}
.technical-data__box-content h4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  margin-bottom: 48px;
}
.technical-data__box-content h4::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e30611;
}
.technical-data__box .info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.technical-data__box .info p,
.technical-data__box .info li {
  font-size: 17px;
  line-height: 24px;
  font-weight: 300;
  color: #555555;
}
.technical-data__box .info b {
  font-size: 17px;
  line-height: 24px;
}
.technical-data__box .info ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.technical-data__box .info li {
  list-style: disc;
  line-height: 40px;
}
.technical-data__box .info li::marker {
  color: #e40000;
}

.models-printer {
  padding: 70px 0 0 0;
  background-color: #fff;
  color: #010101;
}
@media screen and (max-width: 992px) {
  .models-printer {
    padding-top: 50px;
  }
}
.models-printer .title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .models-printer .title {
    margin-bottom: 30px;
  }
}
.models-printer .scroll-box {
  overflow-x: auto;
}
.models-printer .scroll-box::-webkit-scrollbar {
  background: #e0dedc;
  height: 5px;
  border-radius: 10px;
}
.models-printer .scroll-box::-webkit-scrollbar-thumb {
  background: #434241;
  height: 5px;
  border-radius: 10px;
}
.models-printer .models-grid {
  min-width: 1276px;
}
.models-printer .models-grid .models-grid {
  display: flex;
  flex-wrap: nowrap;
}
.models-printer .models-grid .thead-grid .models-grid > * {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}
.models-printer .models-grid .thead-grid h3 {
  font-size: 25px;
  font-weight: 500;
  position: relative;
  padding: 35px 50px 19px !important;
  margin: 0;
  border-right: 1px solid #e0dedc;
  border-top: 1px solid #e0dedc;
}
.models-printer .models-grid .thead-grid h3:last-child {
  border-right: none;
}
.models-printer .models-grid .thead-grid h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50px;
  width: 50px;
  height: 1px;
  background-color: #e30611;
}
@media screen and (max-width: 1400px) {
  .models-printer .models-grid .thead-grid h3::before {
    left: 50px;
  }
}
.models-printer .models-grid .tbody-grid .models-grid > * {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}
.models-printer .models-grid .tbody-grid .info-grid {
  padding: 40px 70px 73px;
  margin: 0;
  min-height: 323px;
  border-right: 1px solid #e0dedc;
  border-top: 1px solid #e0dedc;
}
.models-printer .models-grid .tbody-grid .info-grid:last-child {
  border-right: none;
}
.models-printer .models-grid .child-info {
  padding-left: 20px;
}
.models-printer .models-grid .child-info li {
  position: relative;
  list-style: none;
}
.models-printer .models-grid .child-info li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: #e40000;
}
.models-printer .models-grid li {
  font-size: 16px;
  line-height: 30px;
  color: #121212;
  list-style: disc;
}
.models-printer .models-grid li::marker {
  color: #e40000;
}

.printer-models {
  padding-top: 92px;
  background-color: #fff;
  color: #010101;
}
@media screen and (max-width: 768px) {
  .printer-models {
    padding-top: 50px;
  }
}
.printer-models .title {
  margin-bottom: 64px;
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .printer-models .title {
    margin-bottom: 30px;
    font-size: 35px;
  }
}
.printer-models .models {
  border-bottom: 1px solid #e0dedc;
}
@media screen and (max-width: 1300px) {
  .printer-models .models {
    border-bottom: none;
  }
}
.printer-models .models.first-child {
  border-top: 1px solid #e0dedc;
}
@media screen and (max-width: 992px) {
  .printer-models .models {
    padding-bottom: 0;
  }
}
.printer-models .models-container {
  max-width: 1824px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1850px) {
  .printer-models .models-container {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1300px) {
  .printer-models .models-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .printer-models .models-container::-webkit-scrollbar {
    background: #e0dedc;
    height: 5px;
    border-radius: 10px;
  }
  .printer-models .models-container::-webkit-scrollbar-thumb {
    background: #434241;
    height: 5px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 700px) {
  .printer-models .models-container {
    grid-template-columns: 1fr;
  }
}
.printer-models .models-card {
  border-right: 1px solid #e2dfdd;
  padding: 50px;
}
.printer-models .models-card__name {
  padding-bottom: 30px;
  position: relative;
}
.printer-models .models-card__name:before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e30611;
}
.printer-models .models-card__info {
  list-style: disc;
  padding-left: 20px;
}
.printer-models .models-card__info li {
  list-style: disc;
  font-size: 16px;
  line-height: 30px;
  color: #777776;
}
.printer-models .models-card__info li::marker {
  color: #e30611;
}
.printer-models .models-card:nth-child(4n+1) {
  padding-left: 25px;
}
.printer-models .models-card:nth-child(4n) {
  border-right: none;
}
@media screen and (max-width: 1300px) {
  .printer-models .models-card {
    padding: 30px;
  }
  .printer-models .models-card:nth-child(odd) {
    border-right: 1px solid #e2dfdd;
    border-bottom: 1px solid #e2dfdd;
  }
  .printer-models .models-card:nth-child(even) {
    border-right: none;
    border-bottom: 1px solid #e2dfdd;
  }
}
@media screen and (max-width: 700px) {
  .printer-models .models-card {
    padding: 20px;
  }
  .printer-models .models-card:first-child {
    padding-left: 20px !important;
  }
  .printer-models .models-card:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid #e2dfdd;
  }
  .printer-models .models-card:nth-child(even) {
    border-bottom: 1px solid #e2dfdd;
  }
}
.printer-models .models-card:hover .models-card__img img {
  transform: scale(1.1);
}
.printer-models .models-card__img {
  min-width: 230px;
  height: 180px;
}
.printer-models .models-card__img img {
  transition: all 0.2s linear;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.section {
  max-width: 800px;
  width: 100%;
  background-color: transparent;
  border-radius: 16px;
}

.section__title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
}

.section__content {
  position: relative;
  max-height: 130px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.section__content.collapsed {
  max-height: 130px;
}

.section__content.expanded {
  max-height: 2000px;
}

.section__text {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: 0 !important;
}

/* ???????? ??? ??????? ????? ?????? */
.section__content.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  pointer-events: none;
}

.section__button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.section__button:hover {
  color: #aaa;
}

.section__button-icon {
  margin-left: 12px;
  transition: transform 0.4s ease;
  width: 20px;
  height: 20px;
}

.section__button-icon.rotated {
  transform: rotate(180deg);
}

/*# sourceMappingURL=style.css.map */

.service-list__content {
  position: relative;
  text-decoration: none; /* ????? ?????? ????????????? */
  color: inherit; /* ???? ?????? ?? ???????? */
  overflow: visible;
}

.service-list__content h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 5px; /* ????? ????? ???? ???? ???? ?????? */
}

.service-list__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #d30d0c; /* ??????? ???? ????? */
  transition: width 0.3s ease;
}

.service-list__content:hover h3::after {
  width: 100%;
}
.service-list__content h3:hover
{
  color: #d30d0c; 
}


///////////
@media (min-width: 1300px) {
  .home-swp .slide-img {
    width: 75%;
    margin-left: -347px;
  }
}
.home-swp .swiper-slide > div {
  display: block;
}

.home-swp .logolar {
  margin-left: 30px;
}

.home-head ul {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}

@media (max-width: 1300px) {
  .home-swp .swiper-slide > div .slide-img {
    right: 0;
  }
}
@media (max-width: 1014px) {
  .home-swp .swiper-slide > div .slide-img {
    right: -100px;
  }
}
@media (min-width: 768px) {
  .home-head {
    z-index: 10;
    position: relative;
  }
}

.news-page .news-cards .news-title
{
text-align: left;
}
