* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Red Hat Display", sans-serif;
  color: #242424;
  font-size: 16px;
}

a {
  color: #242424;
  transition: color 0.3s ease;
}
a:hover {
  color: #D42020;
}

p {
  margin-bottom: 15px;
}

strong {
  font-weight: 700;
}

.flex {
  display: flex;
}

.button {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button--search {
  width: 45px;
  height: 45px;
  background: white;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 50%;
  font-size: 18px;
  z-index: 1000;
}
.button--main {
  padding: 8px 8px 8px 20px;
  background: #D42020;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  outline: 3px solid transparent;
}
@media (max-width: 600px) {
  .button--main {
    padding: 8px 8px 8px 20px;
    border-radius: 40px;
  }
}
.button--main:hover {
  gap: 20px;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
  color: white;
}
.button--main > i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  font-size: 18px;
  color: #D42020;
}
@media (max-width: 600px) {
  .button--main > i {
    width: 30px;
    height: 30px;
  }
}
.button--main-mini {
  padding: 5px 5px 5px 20px;
  background: #D42020;
  color: white;
  border-radius: 40px;
  font-weight: 600;
}
.button--main-mini > i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  font-size: 18px;
  color: #D42020;
}
.button--hr {
  font-weight: 600;
  color: #D42020;
}
@media (max-width: 600px) {
  .button--hr {
    font-size: 14px;
  }
}
.button--hr:hover {
  gap: 20px;
}

.title-page {
  margin-top: -120px;
  width: 100%;
  padding: 190px 20px 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 600px) {
  .title-page {
    margin-top: -70px;
    padding: 100px 10px 50px 10px;
  }
}
.title-page__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.title-page::before, .title-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, white, transparent);
  opacity: 0.9;
}
.title-page::after {
  background: linear-gradient(to bottom, white, transparent);
}
.title-page__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  z-index: 10;
}
.title-page__texts {
  width: 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column;
}
.title-page__texts > h2 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .title-page__texts > h2 {
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    font-size: 14px;
  }
}
.title-page__texts > h1 {
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 600px) {
  .title-page__texts > h1 {
    font-size: 40px;
  }
}

.title-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .title-main {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
}
.title-main--blogs h3 {
  font-size: 42px !important;
}
@media (max-width: 600px) {
  .title-main--blogs h3 {
    font-size: 32px !important;
  }
}
.title-main__texts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 600px) {
  .title-main__texts {
    margin-bottom: 10px;
  }
}
.title-main__texts > h4 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
@media (max-width: 600px) {
  .title-main__texts > h4 {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.title-main__texts > h3 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 600px) {
  .title-main__texts > h3 {
    font-size: 32px;
  }
}

.logo {
  display: flex;
}
.logo img {
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
}
@media (max-width: 600px) {
  .logo img {
    max-height: 50px;
  }
}

.header {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}
@media (max-width: 600px) {
  .header {
    padding: 10px;
  }
}
.header__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  width: 100%;
  max-width: 850px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .header__menu {
    position: absolute;
    top: 100%;
    left: 10px;
    background: white;
    padding: 20px;
    width: calc(100% - 20px);
    border-radius: 8px;
    border: 1px solid rgba(36, 36, 36, 0.062745098);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .header__menu.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
.header__menu > ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .header__menu > ul {
    flex-direction: column;
  }
}
.header__menu > ul > li {
  position: relative;
  display: flex;
}
.header__menu > ul > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header__menu > ul > li:hover > a::before {
  width: 100%;
  opacity: 1;
}
.header__menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 600px) {
  .header__menu > ul > li > a {
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0;
    width: 100%;
  }
}
.header__menu > ul > li > a:hover::before {
  width: 100%;
  opacity: 1;
}
.header__menu > ul > li > a::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s ease;
  background: #D42020;
  display: block;
}
@media (max-width: 600px) {
  .header__menu > ul > li > a::before {
    display: none;
  }
}
.header__menu > ul > li > a > i {
  font-size: 14px;
  color: #D42020;
}
@media (max-width: 600px) {
  .header__menu > ul > li > a > i {
    display: none;
  }
}
.header__menu > ul > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 230px;
  padding-top: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}
@media (max-width: 600px) {
  .header__menu > ul > li > .sub-menu {
    display: none;
  }
}
.header__menu > ul > li > .sub-menu > ul {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 0 16px 16px 16px;
  background: white;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
}
.header__menu > ul > li > .sub-menu > ul li {
  width: 100%;
  display: flex;
}
.header__menu > ul > li > .sub-menu > ul a {
  width: 100%;
  display: flex;
  padding: 8px 15px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__right i.mobile-menu {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  color: white;
  background: #D42020;
  border-radius: 8px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 2px;
  transition: background-size 0.25s ease;
}
.header__right i.mobile-menu::before, .header__right i.mobile-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}
.header__right i.mobile-menu::before {
  top: 16px;
}
.header__right i.mobile-menu::after {
  bottom: 16px;
}
.header__right i.mobile-menu.active {
  background-size: 0 2px;
}
.header__right i.mobile-menu.active::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__right i.mobile-menu.active::after {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 600px) {
  .header__right i.mobile-menu {
    display: flex;
  }
}
.header__search {
  display: flex;
  position: relative;
  z-index: 1000;
}
@media (max-width: 600px) {
  .header__search {
    display: none;
  }
}
.header__search-input {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 55px;
  height: 55px;
  border-radius: 55px;
  background: white;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  display: flex;
  padding: 5px 50px 5px 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__search-input.active {
  width: 350px;
  opacity: 1;
  visibility: visible;
}
.header__search-input input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 45px;
  padding: 0 10px;
  background: none;
  margin-right: 5px;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.header__search-input input:focus {
  border: 1px solid #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.header__languages {
  display: flex;
  position: relative;
}
.header__languages:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header__languages-active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.header__languages-active img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.header__languages-active span {
  font-weight: 600;
  text-transform: uppercase;
}
.header__languages-active i {
  font-size: 14px;
  color: #D42020;
}
.header__languages .sub-menu {
  position: absolute;
  top: 100%;
  right: 0px;
  width: 130px;
  padding-top: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  font-weight: 600;
}
.header__languages .sub-menu > ul {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px 0 16px 16px;
  background: white;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  gap: 10px;
}
.header__languages .sub-menu > ul li {
  width: 100%;
  display: flex;
}
.header__languages .sub-menu > ul a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__languages .sub-menu > ul a.active {
  color: #D42020;
}
.header__languages .sub-menu > ul a img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.hero {
  margin-top: -120px;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .hero {
    margin-top: -70px;
  }
}
.hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__item {
  padding: 160px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}
@media (max-width: 600px) {
  .hero__item {
    padding: 100px 10px;
    min-height: 500px;
    max-height: 700px;
  }
}
.hero__item::before, .hero__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, white, transparent);
  opacity: 0.9;
}
.hero__item::after {
  background: linear-gradient(to bottom, white, transparent);
}
.hero__item-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
  z-index: 10;
}
.hero__item-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 750px;
}
.hero__item-texts > h3 {
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .hero__item-texts > h3 {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.hero__item-texts > h2 {
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .hero__item-texts > h2 {
    font-size: 32px;
  }
}
.hero__item-texts > span {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .hero__item-texts > span {
    margin-bottom: 20px;
  }
}
.hero__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(36, 36, 36, 0.062745098);
  z-index: 0;
}
.hero__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(36, 36, 36, 0.062745098);
  z-index: 0;
}
.hero__pagination {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 100;
  background: white;
  padding: 10px;
  border-radius: 35px;
  top: initial !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
}
@media (max-width: 600px) {
  .hero__pagination {
    padding: 5px;
    border-radius: 20px;
    bottom: 20px;
  }
}
.hero__pagination > span {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: rgba(36, 36, 36, 0.1254901961);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
  opacity: 1 !important;
}
@media (max-width: 600px) {
  .hero__pagination > span {
    width: 10px;
    height: 10px;
  }
}
.hero__pagination > span:hover {
  background: #242424;
}
.hero__pagination > span.swiper-pagination-bullet-active {
  width: 40px;
}
.hero__pagination > span.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #D42020;
  animation: loading 5.5s linear infinite;
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.services {
  width: 100%;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #242424 0%, #0e0e0e 100%);
  position: relative;
  z-index: 10;
}
@media (max-width: 600px) {
  .services {
    padding: 60px 10px;
  }
}
.services__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: white;
}
@media (max-width: 600px) {
  .services__container {
    gap: 20px;
  }
}
.services__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
}

.service-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service-item__img {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: white;
}
.service-item__img:hover img {
  transform: scale(1.1);
}
.service-item__img:hover::after {
  opacity: 1;
}
.service-item__img:hover h2 span::before {
  background: white;
}
.service-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 6/4;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1254901961);
  z-index: 1;
  transition: all 0.3s ease;
}
.service-item__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8784313725), rgba(0, 0, 0, 0.3137254902));
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.service-item__img h2 {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 30px;
  z-index: 10;
  font-weight: 900;
  font-size: 36px;
}
@media (max-width: 600px) {
  .service-item__img h2 {
    font-size: 24px;
  }
}
.service-item__img h2 span {
  display: flex;
  position: relative;
  width: 100%;
  padding: 3px 13px;
}
.service-item__img h2 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #D42020;
  border-radius: 3px;
}
.service-item__list {
  width: calc(100% - 30px);
  padding: 5px 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  position: relative;
  margin: 20px 0 0 30px;
}
.service-item__list::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 3px;
  height: 100%;
  background: #D42020;
  border-radius: 3px;
}
.service-item__list li {
  display: flex;
}
.service-item__list a {
  display: flex;
  color: white;
  transition: all 0.3s ease;
}
.service-item__list a:hover {
  padding-left: 10px;
}

.service-areas {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
}
@media (max-width: 600px) {
  .service-areas {
    padding: 0;
  }
}
.service-areas__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 0 0 18px 18px;
}
@media (max-width: 600px) {
  .service-areas__container {
    padding: 30px 10px;
    border-radius: 0;
  }
}
.service-areas__description {
  font-size: 24px;
}
@media (max-width: 600px) {
  .service-areas__description {
    font-size: 18px;
  }
}
.service-areas__description p:last-child {
  margin-bottom: 0;
}
.service-areas__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media (max-width: 600px) {
  .service-areas__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-area {
  background: white;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.service-area:hover {
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
  border: 1px solid #D42020;
  background: rgba(212, 32, 32, 0.062745098);
}
.service-area:hover span {
  color: #D42020;
}
.service-area > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  max-width: 60px;
}
.service-area > span {
  font-size: 18px;
  font-weight: 600;
}

.about {
  width: 100%;
  padding: 110px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  position: relative;
}
@media (max-width: 600px) {
  .about {
    padding: 60px 10px;
  }
}
.about::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url("../images/about-numers-bg.jpg") bottom center no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.about__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.about__title {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about__title-texts {
  width: 100%;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .about__title-texts {
    font-size: 18px;
  }
}
.about__title-texts p:last-child {
  margin-bottom: 0;
}
.about__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 600px) {
  .about__numbers {
    flex-direction: column;
    gap: 20px;
  }
}
.about__numbers-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .about__numbers-list {
    flex-direction: row;
    gap: 20px;
    text-align: center !important;
  }
}
.about__numbers-list--left {
  text-align: right;
}
.about__numbers-img {
  display: flex;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}
@media (max-width: 600px) {
  .about__numbers-img {
    border-radius: 16px;
  }
}
.about__numbers-img:hover > img {
  transform: scale(1.1);
}
.about__numbers-img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 78/55;
  transition: all 0.9s ease;
}

.about-number {
  display: flex;
  flex-direction: column;
}
.about-number .count {
  font-size: 64px;
  font-weight: 900;
  color: #D42020;
  line-height: 1;
}
@media (max-width: 600px) {
  .about-number .count {
    font-size: 46px;
  }
}
.about-number .text {
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .about-number .text {
    font-size: 14px;
  }
}

.blogs {
  width: 100%;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .blogs {
    padding: 60px 10px;
  }
}
.blogs__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs__container {
    gap: 20px;
  }
}
.blogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.blog-item__img {
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .blog-item__img {
    margin-bottom: 10px;
  }
}
.blog-item__img:hover i {
  width: 11%;
  background: rgba(212, 32, 32, 0.1254901961);
  color: #D42020 !important;
}
.blog-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 425/325;
  object-fit: cover;
  background: rgba(36, 36, 36, 0.062745098);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='425' height='325' viewBox='0 0 425 325' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M349.629 0C358.431 0 365.566 7.16344 365.566 16V44C365.566 52.8366 372.702 60 381.504 60H409.063C417.865 60 425 67.1634 425 76V309C425 317.837 417.865 325 409.063 325H15.9375C7.13545 325 0 317.837 0 309V16C0 7.16344 7.13546 0 15.9375 0H349.629Z' fill='%23D9D9D9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='425' height='325' viewBox='0 0 425 325' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M349.629 0C358.431 0 365.566 7.16344 365.566 16V44C365.566 52.8366 372.702 60 381.504 60H409.063C417.865 60 425 67.1634 425 76V309C425 317.837 417.865 325 409.063 325H15.9375C7.13545 325 0 317.837 0 309V16C0 7.16344 7.13546 0 15.9375 0H349.629Z' fill='%23D9D9D9'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.blog-item__img i {
  width: 12%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #D42020;
  color: white;
  font-size: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.blog-item > h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.blog-item > span {
  line-height: 1.6;
}

.environmental-policy {
  width: 100%;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/environmental-policy-bg.jpg") center center no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .environmental-policy {
    padding: 60px 10px;
  }
}
.environmental-policy__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
}
.environmental-policy__texts {
  width: 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .environmental-policy__texts {
    width: 100%;
  }
}
.environmental-policy__texts > h4 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .environmental-policy__texts > h4 {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.environmental-policy__texts > h3 {
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .environmental-policy__texts > h3 {
    font-size: 32px;
  }
}
.environmental-policy__desc {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .environmental-policy__desc {
    margin-bottom: 20px;
  }
}

.contact {
  width: 100%;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .contact {
    padding: 60px 10px;
    flex-direction: column;
    gap: 20px;
  }
}
.contact__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  position: relative;
  z-index: 10;
}
.contact__wrapper {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .contact__wrapper {
    gap: 20px;
  }
}
.contact__title {
  display: flex;
  flex-direction: column;
  max-width: 450px;
}
.contact__title > h4 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .contact__title > h4 {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.contact__title > h3 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 600px) {
  .contact__title > h3 {
    font-size: 32px;
  }
}
.contact__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  background: white;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 16px;
}
@media (max-width: 600px) {
  .contact__items {
    padding: 20px;
    gap: 20px;
  }
}
.contact__items-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .contact__items-row {
    flex-direction: column;
    gap: 20px;
  }
}
.contact__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact__item > span:first-child {
  color: #D42020;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .contact__item > span:first-child {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.contact__item > a, .contact__item > span:last-child {
  font-size: 32px;
  color: #242424;
}
@media (max-width: 600px) {
  .contact__item > a, .contact__item > span:last-child {
    font-size: 22px;
  }
}
.contact__map {
  display: flex;
  position: absolute;
  right: 0px;
  top: 0px;
  border: none;
  width: calc(60% - 20px);
  height: 100%;
  background: rgba(36, 36, 36, 0.062745098);
  min-width: 600px;
}
@media (max-width: 600px) {
  .contact__map {
    min-width: 100%;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
  }
}

.footer {
  width: 100%;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #242424 0%, #0e0e0e 100%);
  color: white;
  overflow: hidden;
}
@media (max-width: 600px) {
  .footer {
    padding: 60px 10px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__container {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__copyright {
  width: 550px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .footer__copyright {
    width: 100%;
  }
}
.footer__copyright .logo {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .footer__copyright .logo {
    margin-bottom: 20px;
  }
}
.footer__copyright > h4 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .footer__copyright > h4 {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.footer__copyright > h3 {
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .footer__copyright > h3 {
    font-size: 32px;
  }
}
.footer__copyright-texts {
  font-size: 18px;
  line-height: 1.6;
}
.footer__copyright-texts p:last-child {
  margin-bottom: 0;
}
.footer__menu {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__menu {
    gap: 10px;
  }
}
.footer__menu h4 {
  padding-left: 13px;
  font-weight: 900;
  font-size: 22px;
  position: relative;
}
@media (max-width: 600px) {
  .footer__menu h4 {
    font-size: 18px;
  }
}
.footer__menu h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #D42020;
  border-radius: 3px;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 13px;
  position: relative;
}
.footer__menu ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #D42020;
  border-radius: 3px;
}
.footer__menu ul li {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .footer__menu ul li {
    font-size: 16px;
  }
}
.footer__menu ul li a {
  color: white;
  transition: all 0.3s ease;
}
.footer__menu ul li a:hover {
  color: #D42020;
  padding-left: 10px;
}

.about-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 600px) {
  .about-page {
    padding: 60px 10px;
  }
}
.about-page__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
}
.about-page__description {
  width: 100%;
  max-width: 900px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .about-page__description {
    margin-bottom: 40px;
  }
}
.about-page__description p:last-child {
  margin-bottom: 0;
}
.about-page__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 90px;
}
@media (max-width: 600px) {
  .about-page__wrapper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.about-page__video {
  width: 670px;
  height: auto;
  aspect-ratio: 67/46;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-page__video {
    width: 100%;
  }
}
.about-page__video:hover > img {
  transform: scale(1.1);
}
.about-page__video:hover::before {
  height: 100%;
}
.about-page__video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(36, 36, 36, 0.062745098);
  z-index: 1;
  transition: all 0.3s ease;
}
.about-page__video::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(36, 36, 36, 0.8), rgba(36, 36, 36, 0));
  z-index: 2;
  transition: all 0.3s ease;
}
.about-page__video-button {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .about-page__video-button {
    font-size: 20px;
    bottom: 20px;
    left: 20px;
  }
}
.about-page__video-button > i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 36, 36, 0.5647058824);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1254901961);
}
@media (max-width: 600px) {
  .about-page__video-button > i {
    width: 50px;
    height: 50px;
  }
}
.about-page__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 600px) {
  .about-page__info {
    gap: 20px;
  }
}
.about-page__numbers {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 30px;
  border: 1px solid #D42020;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .about-page__numbers {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}
.about-page__numbers-item {
  display: flex;
  flex-direction: column;
}
.about-page__numbers-item .count {
  font-size: 44px;
  font-weight: 900;
  color: #D42020;
  line-height: 1;
}
.about-page__numbers-item .text {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.about-page__content {
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
}
.about-page__content p:last-child {
  margin-bottom: 0;
}
.about-page__slogans {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .about-page__slogans {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-slogan {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #D42020;
  border-radius: 16px;
  background: transparent;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .about-slogan {
    padding: 20px;
  }
}
.about-slogan:hover {
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
  background: rgba(212, 32, 32, 0.062745098);
}
.about-slogan > img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .about-slogan > img {
    margin-bottom: 10px;
  }
}
.about-slogan > h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-slogan > span {
  line-height: 1.6;
}

.library-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .library-page {
    padding: 60px 10px;
  }
}
.library-page__container {
  width: 100%;
  max-width: 1340px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .library-page__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.file-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #D42020;
  border-radius: 16px;
  padding: 30px 30px 40px 30px;
  position: relative;
  background: transparent;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .file-item {
    padding: 20px 20px 30px 20px;
  }
}
.file-item:hover {
  background: rgba(212, 32, 32, 0.062745098);
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.file-item > i {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background: rgba(212, 32, 32, 0.062745098);
  color: #D42020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.file-item > h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.file-item > span {
  line-height: 1.6;
  color: #242424;
}
.file-item .button {
  position: absolute;
  bottom: -20px;
  left: 30px;
}

.hr-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .hr-page {
    padding: 60px 10px;
  }
}
.hr-page__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
@media (max-width: 600px) {
  .hr-page__container {
    gap: 40px;
  }
}
.hr-page__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.hr-page__texts {
  width: 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .hr-page__texts {
    gap: 20px;
  }
}
.hr-page__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .hr-page__list {
    gap: 10px;
  }
}
.hr-page__list > h3 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
@media (max-width: 600px) {
  .hr-page__list > h3 {
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
}
.hr-page__content {
  width: 100%;
  font-size: 22px;
  line-height: 1.6;
}
.hr-page__img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hr-page__img {
    display: none;
  }
}
.hr-page__img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 55/67;
}
.hr-page__info {
  width: 100%;
  padding: 70px;
  border-radius: 32px;
  color: white;
  background: url("../images/hr-info-bg.jpg") center center no-repeat #242424;
  background-size: cover;
}
@media (max-width: 600px) {
  .hr-page__info {
    padding: 40px 20px;
    border-radius: 16px;
  }
}
.hr-page__info-texts {
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
}
.hr-page__info-texts > h4 {
  font-size: 16px;
  font-weight: 500;
  color: #D42020;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .hr-page__info-texts > h4 {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.hr-page__info-texts > h3 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .hr-page__info-texts > h3 {
    font-size: 32px;
  }
}
.hr-page__info-description {
  font-size: 18px;
  line-height: 1.6;
}
.hr-page__info-description p:last-child {
  margin-bottom: 0;
}
.hr-page__info-description ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px;
}
.hr-page__info-description ul li {
  position: relative;
  padding-left: 15px;
}
.hr-page__info-description ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #D42020;
  border-radius: 50%;
}

.hr-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 16px;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .hr-item {
    padding: 20px;
  }
}
.hr-item:hover {
  border: 1px solid #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.hr-item__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hr-item__title > h2 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .hr-item__title > h2 {
    font-size: 18px;
  }
}
.hr-item__description {
  width: 100%;
  line-height: 1.6;
  margin-top: 10px;
}
.hr-item__description p:last-child {
  margin-bottom: 0;
}

.projects-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .projects-page {
    padding: 60px 10px;
  }
}
.projects-page__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
}
.projects-page__description {
  width: 100%;
  max-width: 900px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .projects-page__description {
    margin-bottom: 40px;
  }
}
.projects-page__description p:last-child {
  margin-bottom: 0;
}
.projects-page__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .projects-page__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.project-item {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='425' height='440' viewBox='0 0 425 440' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M350 0C358.837 0 366 7.16344 366 16V44C366 52.8366 373.163 60 382 60H409.001C417.838 60 425.001 67.1634 425.001 76V424C425.001 432.837 417.838 440 409.001 440H16C7.16343 440 0 432.837 0 424V16C0 7.16346 7.16344 0 16 0H350Z' fill='white'/%3E%3Cpath d='M16 0.5H350C358.56 0.5 365.5 7.43959 365.5 16V44C365.5 53.1127 372.887 60.5 382 60.5H409.001C417.561 60.5 424.501 67.4396 424.501 76V424C424.501 432.56 417.561 439.5 409.001 439.5H16C7.43959 439.5 0.5 432.56 0.5 424V16C0.500006 7.43959 7.43959 0.5 16 0.5Z' stroke='%23242424' stroke-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 425/440;
}
@media (max-width: 600px) {
  .project-item {
    border: 1px solid rgba(36, 36, 36, 0.062745098);
    background-image: none;
    padding: 20px;
    border-radius: 16px;
    aspect-ratio: auto;
  }
}
.project-item > i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #D42020;
  color: white;
  font-size: 24px;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .project-item > i {
    display: none;
  }
}
.project-item > h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.project-item > span {
  line-height: 1.6;
  margin-bottom: 15px;
}
.project-item__img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.project-item__img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 36/24;
  object-fit: cover;
  background: rgba(36, 36, 36, 0.062745098);
}

.services-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .services-page {
    padding: 60px 10px;
  }
}
.services-page__container {
  width: 100%;
  max-width: 1340px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .services-page__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.services-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services-item__img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .services-item__img {
    margin-bottom: 10px;
  }
}
.services-item__img:hover i {
  width: 11%;
  background: rgba(212, 32, 32, 0.1254901961);
  color: #D42020 !important;
}
.services-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 425/280;
  object-fit: cover;
  background: rgba(36, 36, 36, 0.062745098);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='425' height='280' viewBox='0 0 425 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M349 0C357.837 0 365 7.16344 365 16V44C365 52.8366 372.163 60 381 60H409C417.837 60 425 67.1634 425 76V264C425 272.837 417.837 280 409 280H16C7.16345 280 0 272.837 0 264V16C0 7.16344 7.16344 0 16 0H349Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='425' height='280' viewBox='0 0 425 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M349 0C357.837 0 365 7.16344 365 16V44C365 52.8366 372.163 60 381 60H409C417.837 60 425 67.1634 425 76V264C425 272.837 417.837 280 409 280H16C7.16345 280 0 272.837 0 264V16C0 7.16344 7.16344 0 16 0H349Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.services-item__img i {
  width: 12%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #D42020;
  color: white;
  font-size: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.services-item > h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .services-item > h2 {
    font-size: 28px;
  }
}
.services-item > span {
  line-height: 1.6;
}

.contact-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .contact-page {
    padding: 60px 10px;
  }
}
.contact-page__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-page__map {
  width: 100%;
  height: auto;
  aspect-ratio: 1340/550;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(36, 36, 36, 0.062745098);
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .contact-page__map {
    margin-bottom: 40px;
    aspect-ratio: 1/1;
  }
}
.contact-page__wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 600px) {
  .contact-page__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-page__info {
  width: 100%;
  max-width: 610px;
  display: flex;
  flex-direction: column;
}
.contact-page__description {
  width: 100%;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .contact-page__description {
    margin-bottom: 20px;
  }
}
.contact-page__description p:last-child {
  margin-bottom: 0;
}
.contact-page__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  background: white;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 16px;
}
@media (max-width: 600px) {
  .contact-page__items {
    padding: 20px;
    gap: 20px;
  }
}
.contact-page__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-page__item > span:first-child {
  color: #D42020;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .contact-page__item > span:first-child {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.contact-page__item > a, .contact-page__item > span:last-child {
  font-size: 32px;
  color: #242424;
}
@media (max-width: 600px) {
  .contact-page__item > a, .contact-page__item > span:last-child {
    font-size: 22px;
  }
}
.contact-page__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 16px;
}
@media (max-width: 600px) {
  .contact-page__form {
    padding: 20px;
  }
}
.contact-page__form > h3 {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .contact-page__form > h3 {
    font-size: 24px;
  }
}
.contact-page__form input {
  padding: 15px;
  font-size: 18px;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 8px;
  background: #F6F6F6;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.contact-page__form input:focus {
  border: 1px solid #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.contact-page__form textarea {
  padding: 15px;
  min-height: 150px;
  font-size: 18px;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 8px;
  background: #F6F6F6;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.contact-page__form textarea:focus {
  border: 1px solid #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242424;
}
.contact-item:hover i {
  background: rgba(212, 32, 32, 0.062745098);
  border: 1px solid #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.contact-item > i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  color: #D42020;
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 32px;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .contact-item > i {
    display: none;
  }
}
.contact-item__wrapper {
  display: flex;
  flex-direction: column;
}
.contact-item__wrapper > span:first-child {
  color: #D42020;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 14px;
}
@media (max-width: 600px) {
  .contact-item__wrapper > span:first-child {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
.contact-item__wrapper > span:last-child {
  line-height: 1.6;
  font-size: 22px;
  color: #242424;
}
@media (max-width: 600px) {
  .contact-item__wrapper > span:last-child {
    font-size: 18px;
  }
}

.contact-social {
  display: flex;
  gap: 15px;
}
.contact-social li {
  display: flex;
}
.contact-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 8px;
  font-size: 24px;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.contact-social a:hover {
  background: rgba(212, 32, 32, 0.062745098);
  border: 1px solid #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}

.service-detail {
  width: 100%;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 600px) {
  .service-detail {
    padding: 60px 10px;
  }
}
.service-detail__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 140px;
}
@media (max-width: 600px) {
  .service-detail__container {
    gap: 40px;
  }
}
.service-detail__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  scroll-margin-top: 60px;
}
@media (max-width: 600px) {
  .service-detail__item {
    gap: 20px;
    flex-direction: column !important;
    scroll-margin-top: 10px;
  }
}
.service-detail__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.service-detail__item:nth-child(2n) .service-detail__item-img::before {
  left: calc(-100vw + 250px);
  right: auto;
  border-radius: 0 16px 0 0;
}
.service-detail__item-texts {
  width: 100%;
  max-width: 700px;
}
.service-detail__item-texts > h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .service-detail__item-texts > h2 {
    font-size: 24px;
  }
}
.service-detail__item-texts > h2 > i {
  width: 55px;
  height: 55px;
  display: flex;
  background: url("../images/icon-service-detail.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 600px) {
  .service-detail__item-texts > h2 > i {
    width: 40px;
    height: 40px;
  }
}
.service-detail__item-content {
  width: 100%;
  font-size: 22px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .service-detail__item-content {
    font-size: 18px;
  }
}
.service-detail__item-content p:last-child {
  margin-bottom: 0;
}
.service-detail__item-img {
  max-width: 450px;
  width: 100%;
  display: flex;
  position: relative;
}
.service-detail__item-img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(36, 36, 36, 0.062745098);
  position: relative;
  z-index: 10;
}
.service-detail__item-img::before {
  width: 100vw;
  height: 260px;
  right: calc(-100vw + 250px);
  content: "";
  position: absolute;
  top: -50px;
  background: #D42020;
  z-index: 1;
  border-radius: 16px 0 0 0;
}
@media (max-width: 600px) {
  .service-detail__item-img::before {
    display: none;
  }
}
.service-detail__slider {
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 16px;
}
.service-detail__slider-wrapper {
  display: flex;
  width: 100%;
}
.service-detail__slider-wrapper > img {
  max-width: 450px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .blogs-page {
    padding: 60px 10px;
  }
}
.blogs-page__container {
  width: 100%;
  max-width: 1340px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs-page__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
}
@media (max-width: 600px) {
  .blog-detail {
    padding: 60px 10px;
  }
}
.blog-detail__container {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 600px) {
  .blog-detail__container {
    gap: 10px;
  }
}
.blog-detail__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-detail__title > h1 {
  font-size: 36px;
  font-weight: 900;
}
@media (max-width: 600px) {
  .blog-detail__title > h1 {
    font-size: 28px;
  }
}
.blog-detail__title-description {
  font-size: 22px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .blog-detail__title-description {
    font-size: 18px;
  }
}
.blog-detail__title-description p:last-child {
  margin-bottom: 0;
}
.blog-detail__img {
  height: auto;
  aspect-ratio: 16/9;
  width: calc(100vw - 40px);
  max-width: 1415px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .blog-detail__img {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 16px;
  }
}
.blog-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-detail__info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-detail__info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-detail__info-left > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D42020;
}
.blog-detail__info-left > span {
  opacity: 0.8;
}
.blog-detail__info-left > a {
  font-weight: 600;
}
.blog-detail__info-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-detail__info-right > span {
  opacity: 0.8;
}
.blog-detail__info-right ul {
  display: flex;
  gap: 10px;
}
.blog-detail__info-right ul li {
  display: flex;
}
.blog-detail__info-right ul a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(36, 36, 36, 0.062745098);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}
.blog-detail__info-right ul a:hover {
  background: rgba(212, 32, 32, 0.1254901961);
  color: #D42020;
}
.blog-detail__content {
  line-height: 1.6;
  font-size: 18px;
}
.blog-detail__content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .blog-detail__content h1 {
    font-size: 24px;
  }
}
.blog-detail__content h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .blog-detail__content h2 {
    font-size: 22px;
  }
}
.blog-detail__content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .blog-detail__content h3 {
    font-size: 20px;
  }
}
.blog-detail__content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .blog-detail__content h4 {
    font-size: 18px;
  }
}
.blog-detail__content h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .blog-detail__content h5 {
    font-size: 16px;
  }
}
.blog-detail__gallery {
  width: 100%;
  display: flex;
}
.blog-detail__gallery ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-detail__gallery ul li {
  width: 100%;
}
.blog-detail__gallery ul a {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
.blog-detail__gallery ul a:hover img {
  transform: scale(1.05);
}
.blog-detail__gallery ul a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.error-page {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .error-page {
    padding: 60px 10px;
  }
}
.error-page__container {
  width: 100%;
  max-width: 600px;
  display: flex;
}
.error-page__container > svg {
  width: 100%;
  height: auto;
}

.category-tabs {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .category-tabs {
    margin-bottom: 20px;
  }
}
.category-tabs__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-tabs__nav::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .category-tabs__nav {
    gap: 5px;
  }
}
.category-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(36, 36, 36, 0.062745098);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  outline: 3px solid transparent;
}
@media (max-width: 600px) {
  .category-tabs__button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.category-tabs__button:hover {
  border-color: #D42020;
  background: rgba(212, 32, 32, 0.062745098);
  color: #D42020;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.category-tabs__button.active {
  background: #D42020;
  border-color: #D42020;
  color: white;
  outline: 3px solid rgba(212, 32, 32, 0.1254901961);
}
.category-tabs__button.active:hover {
  background: #D42020;
  color: white;
}
.category-tabs__button span {
  display: block;
}
.category-tabs__content {
  display: none;
}
.category-tabs__content.active {
  display: block;
}

@media (max-width: 600px) {
  .category-tabs__nav {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

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