:root {
  --main-color: #fea900;
  --main-color-hover: #db9405;
}

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: black;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
body main {
  flex-grow: 1;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.red-text {
  color: #e00000;
}

@keyframes text-logo-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes text-logo-anim-2 {
  0% {
    width: 100%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.text-logo {
  font-weight: 900;
  font-size: 30px;
  width: 20%;
}

@media (max-width: 768px) {
  .text-logo {
    width: 50%;
  }
}

.text-logo img {
  width: 40%;
}
.text-logo > .custom-letter {
  display: inline-block;
  width: 1.8em;
  line-height: 0.8em;
  position: relative;
}
/* .text-logo > .custom-letter::before {
  content: "";
  display: block;
  position: absolute;
  background-color: white;
  width: 0%;
  height: 0.19em;
  top: 0em;
  left: 0.07em;
  animation: 7s ease-in 1.1s text-logo-anim-2 infinite;
}
.text-logo > .custom-letter::after {
  content: "";
  display: block;
  position: absolute;
  background-color: white;
  width: 0%;
  height: 0.13em;
  bottom: 0;
  left: 0.07em;
  animation: 7s ease-in 1.1s text-logo-anim-2 infinite;
} */
/* .text-logo > .custom-letter span {
  display: block;
  position: absolute;
  background-color: white;
  width: 0%;
  height: 0.12em;
  bottom: 0.32em;
  left: 0.07em;
  animation: 7s ease-in 1.1s text-logo-anim-2 infinite;
} */

.devider-white {
  border-top: 1px solid rgb(255, 255, 255);
  border-color: white;
  opacity: 1;
  margin: 0;
}
.devider-white.with-margins {
  margin-top: 60px;
  margin-bottom: 60px;
}

.menu a.text-logo,
.menu a.text-logo:active,
.menu a.text-logo:hover {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.menu .menu__item {
  font-weight: 900;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-right: 1px;
  margin-left: 1px;
}
.menu .menu__item a:active,
.menu .menu__item a:hover,
.menu .menu__item a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.menu .menu__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  bottom: 0;
  left: -100%;
  transition: all 0.2s;
}
.menu .menu__item:hover::after {
  left: 0;
}
.menu .menu__item.selected::after {
  left: 0;
}
.menu .menu__phone {
  display: flex;
  font-weight: 900;
  font-size: 24px;
}
.menu .menu__phone-small {
  font-weight: 900;
}

.link_tel {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.menu .menu__socials {
  display: flex;
  gap: 12px;
  align-items: end;
}
.menu .menu__socials img {
  height: 1em;
  width: auto;
  margin-bottom: 6px;
  transition: all 0.2s;
}
.menu .menu__socials img:hover {
  transform: scale(1.3);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.video-block {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  max-height: 1500px;
  position: relative;
}
.video-block .video-block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-block .video-block__overlay::before {
  content: "";
  position: absolute;
  height: 190px;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.431372549) 100%
  );
  z-index: -1;
}
.video-block .video-block__content .text-logo {
  font-size: 26px;
  line-height: 1.2em;
}

.video-block__video-mobile {
  display: none;
}
@media (max-width: 920px) {
  .video-block__video-mobile {
    display: block;
  }

  .video-block__video {
    display: none;
  }
}
@media (min-width: 576px) {
  .video-block .video-block__content .text-logo {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .video-block .video-block__content .text-logo {
    font-size: 80px;
  }
}
.video-block .video-block__content .request-btn {
  margin-bottom: 0.7em;
}
.video-block .video-block__video {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -50;
  animation: fadeIn 3s;
}

.request-btn {
  background-color: var(--main-color);
  height: -moz-fit-content;
  height: fit-content;
  color: white;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 18px;
  transition: 0.2s all;
}
.request-btn .title {
  font-size: 21px;
  line-height: 24px;
  font-weight: 900;
  margin-bottom: 0;
}
.request-btn .subtitle {
  font-size: 10px;
  list-style: 12px;
  margin-bottom: 0;
  text-align: center;
}
.request-btn:hover {
  background-color: #db9405;
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .request-btn .title {
    font-size: 27px;
    line-height: 32px;
    font-weight: 900;
  }
}

.main-second-section {
  overflow: hidden;
}
.main-second-section .rus-map {
  position: relative;
  height: 150px;
  opacity: 0.5;
  z-index: -10;
}
.main-second-section .rus-map img {
  position: absolute;
  top: 0px;
  width: 90%;
  height: auto;
}
@media (min-width: 992px) {
  .main-second-section .rus-map {
    opacity: 1;
  }
}
.main-second-section .sng-text {
  display: flex;
  align-items: center;
}
.main-second-section .sng-text img {
  width: 90%;
}
.main-second-section .main-second-section__text {
  border-radius: 24px;
  font-weight: 900;
  background-color: var(--main-color);
  position: relative;
  display: flex;
  align-items: center;
}
.main-second-section .main-second-section__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - 24px);
  width: 100vw;
  background-color: inherit;
}

.main-third-section {
  position: relative;
}
.main-third-section div img {
  width: 100%;
  max-height: 80vh;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 992px) {
  .main-third-section div img {
    max-height: 80vh;
  }
}
.main-third-section::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
.main-third-section > .container {
  position: relative;
}
.main-third-section .carousel-item {
  position: relative;
}
.main-third-section .main-third-section__content {
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0px;
  font-weight: 500;
  font-size: 20px;
  z-index: 10;
}
@media (min-width: 992px) {
  .main-third-section .main-third-section__content {
    font-size: 40px;
  }
}
.main-third-section .main-third-section__content p,
.main-third-section .main-third-section__content a {
  font-weight: 600;
  margin: 0;
  z-index: 2;
  position: relative;
}
.main-third-section .main-third-section__content a {
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.main-third-section .main-third-section__content a span {
  font-size: 1.2em;
  transform: translateX(0px);
  display: inline-block;
  transition: all 0.2s;
}
.main-third-section .main-third-section__content a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  bottom: 0;
  left: -100%;
  transition: all 0.2s;
}
.main-third-section .main-third-section__content a:hover span {
  transform: translateX(10px);
}
.main-third-section .main-third-section__content a:hover::after {
  left: 0;
}

.sng-china-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.sng-china-block .sng-china-block__title {
  font-weight: 900;
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .sng-china-block .sng-china-block__title {
    font-weight: 900;
    font-size: 130px;
    line-height: 130px;
    margin-bottom: 0;
  }
}
.sng-china-block .sng-china-block__subtitle {
  font-weight: 900;
  font-size: 16px;
}
@media (min-width: 768px) {
  .sng-china-block .sng-china-block__subtitle {
    font-weight: 900;
    font-size: 24px;
  }
}
.sng-china-block .request-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .sng-china-block .request-btn {
    width: auto;
  }
}
.sng-china-block .sng-china-block__planet-container {
  top: 0;
  bottom: 0;
  z-index: -40;
  right: 0;
  position: absolute;
}
.sng-china-block .sng-china-block__planet-container img {
  height: 100%;
}

.autopark-block {
  position: relative;
  overflow: hidden;
}
.autopark-block h1 {
  font-weight: 900;
}
.autopark-block .text {
  font-size: 20px;
}
.autopark-block a:active,
.autopark-block a:hover,
.autopark-block a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.autopark-block .see-btn {
  background-color: #045889;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 18px;
  transition: 0.2s all;
  font-size: 21px;
  line-height: 24px;
  font-weight: 900;
  margin-bottom: 0;
}
.autopark-block .see-btn .subtitle {
  font-size: 10px;
  list-style: 12px;
  margin-bottom: 0;
  text-align: center;
}
.autopark-block .see-btn:hover {
  background-color: #044971;
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .autopark-block .see-btn {
    font-size: 27px;
    line-height: 32px;
    font-weight: 900;
  }
}
.autopark-block::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 184px;
  background-color: var(--main-color);
  z-index: -40;
  top: 0;
  transform: rotate(345deg) translatex(-30%);
}
@media (min-width: 768px) {
  .autopark-block::before {
    /* top: 38%; */
  }
}

.width-text {
  width: 100%;
}

.main-fourth-section,
.main-fifth-section {
  overflow: hidden;
}
.main-fourth-section .text-logo .custom-letter::before,
.main-fifth-section .text-logo .custom-letter::before {
  height: 0.19em;
}
.main-fourth-section .main-fourth-section__text,
.main-fifth-section .main-fourth-section__text {
  font-weight: 900;
}
.main-fourth-section .main-fourth-section__text a,
.main-fifth-section .main-fourth-section__text a {
  color: inherit;
}
.main-fourth-section .main-fourth-section__text-big,
.main-fifth-section .main-fourth-section__text-big {
  font-weight: 900;
  font-size: 18px;
  text-align: justify;
}
@media (min-width: 768px) {
  .main-fourth-section .main-fourth-section__text-big,
  .main-fifth-section .main-fourth-section__text-big {
    font-size: 28px;
  }
}
.main-fourth-section .main-fourth-section__text-title,
.main-fifth-section .main-fourth-section__text-title {
  font-size: 20px;
}
@media (min-width: 768px) {
  .main-fourth-section .main-fourth-section__text-title,
  .main-fifth-section .main-fourth-section__text-title {
    font-size: 36px;
  }
}
.main-fourth-section img,
.main-fifth-section img {
  margin-top: 20px;
  width: 100%;
}
.main-fourth-section .container,
.main-fifth-section .container {
  position: relative;
}
.main-fourth-section .container .main-fourth-section__blue-strip,
.main-fifth-section .container .main-fourth-section__blue-strip {
  content: "";
  position: absolute;
  height: 200%;
  width: 240px;
  background-color: var(--main-color);
  z-index: -40;
  top: 50%;
  right: 100%;
  transform: rotate(26deg) translateY(-53%);
}
@media (min-width: 576px) {
  .main-fourth-section .container .main-fourth-section__blue-strip,
  .main-fifth-section .container .main-fourth-section__blue-strip {
    top: 50%;
    right: 83%;
    transform: rotate(29deg) translateY(-63%);
  }
}
@media (min-width: 1200px) {
  .main-fourth-section .container .main-fourth-section__blue-strip,
  .main-fifth-section .container .main-fourth-section__blue-strip {
    top: 60%;
    right: 27%;
    z-index: -40;
    transform: rotate(22deg) translateY(-73%);
  }
}
.main-fourth-section .main-fourth-section_advanteges,
.main-fifth-section .main-fourth-section_advanteges {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .main-fourth-section .main-fourth-section_advanteges,
  .main-fifth-section .main-fourth-section_advanteges {
    margin-top: 145px;
  }
}
.main-fourth-section .main-fourth-section_advanteges p,
.main-fifth-section .main-fourth-section_advanteges p {
  font-weight: 900;
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 0;
}
.main-fourth-section .main-fourth-section_advanteges div > span,
.main-fifth-section .main-fourth-section_advanteges div > span {
  font-size: 24px;
  font-weight: 900;
}

.footer-btn {
  cursor: pointer;
  width: 100%;
  height: 80px;
  background-color: var(--main-color);
  margin-top: 140px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
.footer-btn:hover {
  background-color: var(--main-color-hover);
}
@media (min-width: 768px) {
  .footer-btn .title {
    height: 100px;
    font-size: 27px;
    line-height: 32px;
    font-weight: 900;
  }
}

footer .footer-info {
  color: #8e8e8e;
  font-size: 16px;
}
footer .footer-info .address-block span {
  display: block;
}
footer .footer-info .address {
  font-size: 18px;
  color: white;
  font-weight: 600;
}
footer .social-media {
  display: flex;
  gap: 12px;
  align-items: end;
}
footer .social-media img {
  height: 1em;
  width: auto;
  margin-bottom: 6px;
  transition: all 0.2s;
}
footer .social-media img:hover {
  transform: scale(1.3);
}
footer .text-logo {
  font-size: 23px;
}
footer a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

#requestModal {
  background-color: rgba(169, 169, 169, 0.1490196078);
}
#requestModal .modal-title {
  font-weight: 600;
  text-align: center;
}
#requestModal .modal-content {
  background-color: rgb(20, 20, 20);
  border: #292929 6px solid;
}
#requestModal .modal-header,
#requestModal .modal-body,
#requestModal .modal-footer {
  border: none;
}
#requestModal .modal-footer {
  justify-content: center;
  gap: 32px;
}
#requestModal .send-btn {
  background-color: white;
  height: -moz-fit-content;
  height: fit-content;
  color: black;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 8px 16px;
  transition: 0.2s all;
  font-weight: 600;
}
#requestModal .send-btn:hover:not(:disabled) {
  transform: scale(1.05);
}
#requestModal .send-btn:disabled {
  opacity: 0.5;
}
#requestModal .close-btn {
  background-color: transparent;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
  border: none;
  outline: none;
  transition: 0.2s all;
  font-weight: 600;
}
#requestModal .close-btn:hover {
  transform: scale(1.05);
}
#requestModal input {
  background-color: transparent;
  color: white;
  border: 3px solid #8e8e8e;
  border-radius: 8px;
}

main {
  margin-top: 30px;
  margin-bottom: 60px;
}
main h1,
main h3 {
  font-weight: 900;
}

.vacancy-block p,
.vacancy-block label {
  font-weight: 900;
}
.vacancy-block label {
  margin-top: 8px;
}
.vacancy-block input {
  width: 100%;
  background-color: transparent;
  color: white;
  border: 1px solid #8e8e8e;
  border-radius: 8px;
  padding: 6px;
  transition: all 0.3s;
}
.vacancy-block input:focus {
  outline: none;
  border-color: white;
}
.vacancy-block input::-moz-placeholder {
  color: rgb(255, 255, 255);
  opacity: 0.5; /* Firefox */
}
.vacancy-block input::placeholder {
  color: rgb(255, 255, 255);
  opacity: 0.5; /* Firefox */
}
.vacancy-block .error-text {
  text-align: start;
  font-weight: 300;
  margin-top: 16px;
}
.vacancy-block .send-contact {
  margin-top: 16px;
  background-color: white;
  height: -moz-fit-content;
  height: fit-content;
  color: black;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 8px 16px;
  transition: 0.2s all;
  font-weight: 600;
}
.vacancy-block .send-contact:hover:not(:disabled) {
  transform: scale(1.05);
}
.vacancy-block .send-contact:disabled {
  opacity: 0.5;
}

.map-container iframe {
  border-radius: 18px;
  height: 300px;
}
@media (min-width: 576px) {
  .map-container iframe {
    height: 600px;
  }
}

.contact-block {
  font-weight: 900;
}
.contact-block .address {
  font-size: 18px;
}
.contact-block .address span {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #8e8e8e;
}
.contact-block .phone {
  font-size: 18px;
  display: flex;
  align-self: end;
}

.error-text {
  color: red;
  margin-bottom: 0;
  margin-top: 24px;
  text-align: center;
}

.photo-allWidth {
  position: relative;
}
.photo-allWidth div img {
  width: 100%;
  max-height: 90vh;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 992px) {
  .photo-allWidth div img {
    height: 100vh;
    max-height: 100vh;
  }
}
.photo-allWidth::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
.photo-allWidth > .container {
  position: relative;
}
.photo-allWidth .carousel-item {
  position: relative;
}
.photo-allWidth .main-third-section__content {
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0px;
  font-weight: 600;
  font-size: 20px;
  z-index: 10;
}
@media (min-width: 992px) {
  .photo-allWidth .main-third-section__content {
    font-size: 24px;
  }
}
.photo-allWidth .main-third-section__content p,
.photo-allWidth .main-third-section__content a {
  font-weight: 600;
  margin: 0;
  z-index: 2;
  position: relative;
}
.photo-allWidth .main-third-section__content a {
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.photo-allWidth .main-third-section__content a span {
  font-size: 1.2em;
  transform: translateX(0px);
  display: inline-block;
  transition: all 0.2s;
}
.photo-allWidth .main-third-section__content a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  bottom: 0;
  left: -100%;
  transition: all 0.2s;
}
.photo-allWidth .main-third-section__content a:hover span {
  transform: translateX(10px);
}
.photo-allWidth .main-third-section__content a:hover::after {
  left: 0;
}

/* styles */

h2 {
  font-size: 42px;
}

.mt-80 {
  margin-top: 5rem;
}

.bold {
  font-weight: 600;
}

.line-contact {
  content: "";
  position: absolute;
  height: 180%;
  width: 240px;
  background-color: var(--main-color);
  z-index: -40;
  top: 50%;
  right: 90%;
  transform: rotate(26deg) translateY(-53%);
}

/* / styles */

/* advantages */

.advantages {
  /* background-color: #1e1e1e; */
  padding: 100px 20px;
}

.advantages__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantages__item {
  background: #0000009c;
  border: #ffffff87 solid;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
}

.advantages__item:hover {
  background: var(--main-color-hover);
  transition: 0.3s;
}

.advantages__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.advantages__description {
  font-size: 18px;
}

/* / advantages */

/* contact */

.form-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
}

.form-container label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.form-container input {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
  border: 2px solid #ccc;
  border-radius: 25px;
  outline: none;
  background-color: transparent;
  color: white;
}

.error-text {
  color: red;
  font-size: 14px;
  display: none;
}

button {
  /* width: 50%; */
  margin: auto;
  padding: 10px;
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  cursor: pointer;
}

button:disabled {
  background: #ccc;
}

/* / contact */

/* utils */

.text-orange {
  color: var(--main-color);
}

.link__company:hover {
  color: var(--main-color) !important;
}

.align-center {
  align-items: center;
}

@media (max-width: 768px) {
  .row .gx-3 {
    justify-content: center;
  }
}

/* / utils */

.mob {
  display: none !important;
}

.menu__pos {
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none;
  }

  .remove-mob {
    display: none;
  }
}

/* language-switcher */

.language-switcher {
  position: relative;
  display: inline-block;
  z-index: 1000;
  font-family: inherit;
}

.lang-btn {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.lang-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 140px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  padding: 0;
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
}

.lang-menu li a {
  color: #333;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

.lang-menu li a:hover {
  background-color: #ffa500;
  color: white;
}

.language-select {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.lang-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.lang-options li {
  padding: 5px 10px;
}

.lang-options li:hover {
  background: #f0f0f0;
}

.lang-options a {
  text-decoration: none;
  color: #333;
  display: block;
}

.lang-options.active {
  display: block;
}

/* #language-switcher */

/* Slider */

.main-color {
  color: var(--main-color);
}

.projects {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 20px;
  /* background-color: #fff; */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.projects__top {
  text-align: center;
  margin-bottom: 20px;
}

.projects__heading {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}

.projects__subheading {
  font-size: 16px;
  color: #d4cdcd;
}

.projects__highlight {
  color: #e67e22;
}

.projects__slider {
  position: relative;
}

.projects__slides {
  position: relative;
  margin: 80px 0;
}

@media (max-width: 768px) {
  .projects__slides {
    min-height: 580px;
  }
}

.projects__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.projects__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.projects__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.projects__text {
  flex: 1;
}

.projects__title {
  margin-bottom: 25px;
}

.projects__image img {
  max-width: 500px;
  min-height: 300px;
  max-height: 300px;
  border-radius: 10px;
}

.projects__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.projects__btn {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.projects__btn:hover {
  background: #d35400;
}

.projects__counter {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .projects {
    height: auto;
    margin-bottom: 50px;
  }

  .projects__content {
    flex-direction: column;
    align-items: center;
  }

  .projects__image img {
    max-width: 100%;
  }

  .projects__text {
    text-align: center;
  }
}

/* /Slider */

/* Gallery */

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery__heading {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 40px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;

  margin: 40px auto 150px auto;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__image:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.lightbox__image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 36px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 100;
}

.lightbox__btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.lightbox__btn--prev {
  left: 5%;
}

.lightbox__btn--next {
  right: 5%;
}

/* #Gallery */
