@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100;
  src: url("./assets/fonts/Montserrat-Thin.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 200;
  src: url("./assets/fonts/Montserrat-ExtraLight.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  src: url("./assets/fonts/Montserrat-Light.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: url("./assets/fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: url("./assets/fonts/Montserrat-Medium.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: url("./assets/fonts/Montserrat-SemiBold.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url("./assets/fonts/Montserrat-ExtraBold.ttf");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: url("./assets/fonts/Montserrat-Black.ttf");
}
body {
  font-family: "Montserrat";
}

textarea, input, button, select, input::placeholder {
  font-family: inherit;
  background-color: #000;
}

.main-header {
  height: 100px;
  width: 100%;
  position: absolute;
  z-index: 11;
}
.main-header.dark .main-container .header-base .logo-black {
  display: block;
}
.main-header.dark .main-container .header-base .logo-white {
  display: none;
}
.main-header.dark .main-container .header-base .menu-toggle {
  color: #000;
}
.main-header.dark .main-container .header-base .menu-toggle svg {
  fill: #000;
}
.main-header.light .main-container .header-base .logo-black {
  display: none;
}
.main-header.light .main-container .header-base .logo-white {
  display: block;
}
.main-header.light .main-container .header-base .menu-toggle {
  color: #fff;
}
.main-header.light .main-container .header-base .menu-toggle svg {
  fill: #fff;
}
.main-header .main-container {
  height: 100%;
}
.main-header .main-container .header-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main-header .main-container .header-base .logo {
  max-width: 113px;
}
.main-header .main-container .header-base .logo-black {
  display: block;
}
.main-header .main-container .header-base .logo-white {
  display: none;
}
.main-header .main-container .header-base .menu-toggle {
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.main-header .main-container .header-base .menu-toggle svg {
  margin-left: 10px;
}
.main-header .side-menu-overlay {
  z-index: 9;
  opacity: 0.45;
  background-color: #121212;
  width: 100%;
  height: 130vh;
  padding-top: 0;
  display: none;
  position: fixed;
  inset: -20% 0 auto auto;
  overflow: hidden;
  transition: 0.5s;
}
.main-header .side-menu {
  position: absolute;
  width: 600px;
  transform: translateX(600px);
  display: none;
  transition: 0.5s;
  background-color: #fff;
  right: 0;
  top: 0;
  height: 100vh;
  padding: 50px;
  z-index: 99;
}
.main-header .side-menu.active {
  transform: translateX(0);
}
.main-header .side-menu .close-side-menu {
  display: inline-block;
  float: right;
  cursor: pointer;
  opacity: 0;
}
.main-header .side-menu .close-side-menu.active {
  transition: 1s;
  opacity: 1;
}
.main-header .side-menu .close-side-menu img {
  width: 16px;
}
.main-header .side-menu .menu-container {
  margin-top: 30%;
  opacity: 0;
}
.main-header .side-menu .menu-container.active {
  transition: 1s;
  opacity: 1;
}
.main-header .side-menu .menu-container .menu {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.main-header .side-menu .menu-container .menu li {
  margin-bottom: 15px;
  list-style: none;
}
.main-header .side-menu .menu-container .menu li a {
  color: #181818;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  width: max-content;
  text-decoration: none;
  display: inline-block;
}
.main-header .side-menu .menu-container .menu li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 5px;
  background-color: #272727;
  transition: 0.6s;
}
.main-header .side-menu .menu-container .menu li a:hover::after {
  content: "";
  width: 100%;
}
.main-header .side-menu .menu-container .menu li .sub-menu {
  display: none;
  padding-left: 20px;
  padding-top: 10px;
}
.main-header .side-menu .menu-container .menu li .sub-menu a {
  font-size: 18px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .main-header .side-menu {
    width: 100%;
    transform: translateX(100%);
  }
}
.main-footer {
  background-color: #181818;
  padding: 4rem 0 2rem 0;
  height: 90vh;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.main-footer .main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.main-footer .main-container .footer-main-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.main-footer .main-container .footer-main-container .footer-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.main-footer .main-container .footer-main-container .footer-left .footer-left-top a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.main-footer .main-container .footer-main-container .footer-left .footer-left-top a h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 400;
  line-height: 83px;
  margin-right: 30px;
  letter-spacing: -0.04em;
  text-indent: -0.07em;
}
.main-footer .main-container .footer-main-container .footer-left .footer-left-top p {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.main-footer .main-container .footer-main-container .footer-right {
  margin-top: 50px;
}
.main-footer .main-container .footer-main-container .footer-right .social {
  display: flex;
  align-items: center;
  padding: 0;
}
.main-footer .main-container .footer-main-container .footer-right .social li {
  list-style: none;
  margin-right: 20px;
}
.main-footer .main-container .footer-main-container .footer-right .address,
.main-footer .main-container .footer-main-container .footer-right .phone p,
.main-footer .main-container .footer-main-container .footer-right .phone a,
.main-footer .main-container .footer-main-container .footer-right .fax p {
  color: #bebdb9;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.3;
  text-decoration: none;
}
.main-footer .main-container .footer-main-container .footer-right .phone p,
.main-footer .main-container .footer-main-container .footer-right .fax p {
  margin: 0;
}
.main-footer .main-container .footer-main-container .footer-right .address,
.main-footer .main-container .footer-main-container .footer-right .phone,
.main-footer .main-container .footer-main-container .footer-right .fax {
  margin-bottom: 20px;
}
.main-footer .main-container .footer-main-container .footer-right .email {
  font-size: 22px;
  line-height: 1.2;
  color: white;
  text-decoration: none;
  display: block;
}
.main-footer .main-container .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer .main-container .footer-bottom .footer-copyright,
.main-footer .main-container .footer-bottom .footer-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.main-footer .main-container .footer-bottom .footer-copyright p,
.main-footer .main-container .footer-bottom .footer-links a p {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .main-footer {
    padding: 40px 0;
    height: 80vh;
    position: fixed;
  }
  .main-footer .main-container .footer-main-container {
    flex-direction: column;
    justify-content: flex-start;
  }
  .main-footer .main-container .footer-main-container .footer-left {
    width: 100%;
    height: max-content;
  }
  .main-footer .main-container .footer-main-container .footer-left .footer-left-top a h2 {
    font-size: 32px;
  }
  .main-footer .main-container .footer-main-container .footer-left .footer-left-bottom {
    position: absolute;
    bottom: 0;
  }
  .main-footer .main-container .footer-main-container .footer-right {
    width: 100%;
    padding-bottom: 70px;
  }
  .main-footer .main-container .footer-main-container .footer-right .address,
  .main-footer .main-container .footer-main-container .footer-right .phone,
  .main-footer .main-container .footer-main-container .footer-right .fax {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .main-footer .main-container .footer-main-container .footer-left .footer-left-top a {
    justify-content: center;
  }
  .main-footer .main-container .footer-main-container .footer-left .footer-left-top p {
    text-align: center;
  }
  .main-footer .main-container .footer-main-container .footer-left .footer-left-bottom {
    width: 100%;
    left: 0;
    text-align: center;
  }
  .main-footer .main-container .footer-main-container .footer-right .social {
    justify-content: center;
  }
  .main-footer .main-container .footer-main-container .footer-right .email {
    text-align: center;
  }
  .main-footer .main-container .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }
}
.btn {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  width: fit-content;
  border-radius: 4px;
  height: 64px;
  color: #fff;
  white-space: nowrap;
}
.btn:hover {
  color: #fff;
}
.btn:focus {
  box-shadow: none !important;
}
.btn.btn-main {
  background-color: #2D8D5F;
}
.btn.btn-black {
  background-color: #181818;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 180px;
    height: 50px;
  }
}
.marquee {
  padding: 80px 0 20px 0;
  --marquee-speed: 5s;
  --marquee-gap: 40px;
  text-transform: uppercase;
  will-change: transform;
  text-decoration: none;
  color: #fff;
  transform: translateX(0);
  white-space: nowrap;
  font-size: 32px;
  font-weight: 400;
  width: max-content;
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  display: flex;
  animation: marquee var(--marquee-speed) linear infinite;
  flex-wrap: nowrap;
}
.marquee .marquee-item {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
}
.marquee .marquee-item div {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
}
@keyframes marquee {
  to {
    transform: translate(calc(-25% - var(--marquee-gap) / 4));
  }
}

#about section.hero {
  background-size: cover;
  background-position: center;
  height: 75vh;
  width: 80%;
  margin: 150px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about section.hero .hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#about section.hero .hero-content h1 {
  font-size: 42px;
  line-height: 67px;
  font-weight: 500;
  width: 60%;
  text-align: center;
}
#about div.main-container section.about {
  margin-top: 60px;
}
#about div.main-container section.about .desc {
  color: #FEFEFE;
  font-size: 21px;
  font-weight: 500;
  line-height: 33px;
}
#about div.main-container section.about .image {
  text-align: center;
  margin: 40px 0;
}
#about div.main-container section.about .image img {
  max-width: 70%;
}
#about .portfolio {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
#about .portfolio .main-container {
  display: flex;
  justify-content: center;
}
#about .portfolio .main-container .portfolio-items {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#about .portfolio .main-container .portfolio-items a {
  margin-left: 30px;
  margin-bottom: 30px;
  text-decoration: none;
  color: unset;
}
#about .portfolio .main-container .portfolio-items a img {
  max-width: 120px;
  max-height: 35px;
}

@media screen and (max-width: 991px) {
  #about section.hero {
    width: 90%;
  }
  #about section.hero .hero-content {
    padding: 0 20px;
  }
  #about section.hero .hero-content h1 {
    font-size: 32px;
    line-height: 47px;
    width: 90%;
  }
  #about section.about .image img {
    max-width: 100%;
  }
  #about .portfolio .main-container .portfolio-items {
    width: 100%;
  }
}
#home .video-banner {
  position: relative;
  height: 100vh;
  min-height: fit-content;
  width: 100vw;
}
#home .video-banner .main-content {
  padding-top: 13%;
  margin: auto;
  opacity: 0;
  transition: all 0.5s;
  z-index: 9;
  position: relative;
}
#home .video-banner .main-content.active {
  opacity: 1;
}
#home .video-banner .main-content h1 {
  color: #fefefe;
  font-size: 64px;
  font-weight: 900;
  line-height: 78px;
  width: 70%;
}
#home .video-banner .main-content .banner-desc {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  padding-bottom: 50px;
}
#home .video-banner .main-content .banner-desc .desc {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  width: 50%;
}
#home .video-banner .link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#home .video-banner .banner-motion-wrapper {
  position: absolute;
  top: 30%;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: fit-content;
}
#home .video-banner .banner-motion-wrapper.video {
  transition: all 0.5s;
}
#home .video-banner .banner-motion-wrapper.video.active {
  margin: auto;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
}
#home .video-banner .banner-motion-wrapper.video.active img {
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home .video-banner .banner-motion-wrapper .banner-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .home-description {
  padding: 40px 0;
}
#home .home-description .contact-desc {
  margin-top: 20px;
  font-size: 32px;
  line-height: 51px;
}
#home .home-description .portfolio {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
#home .home-description .portfolio .portfolio-items {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
#home .home-description .portfolio .portfolio-items a {
  margin-left: 30px;
  margin-bottom: 30px;
  text-decoration: none;
  color: unset;
}
#home .home-description .portfolio .portfolio-items a img {
  max-width: 120px;
  max-height: 35px;
}
#home .home-description .top-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
#home .services {
  padding: 80px 0 120px 0;
}
#home .services .main-title-line {
  margin-bottom: 40px;
}
#home .services .col-12 {
  margin-bottom: 20px;
}
#home .services .col-12 .service-card {
  background-color: #181818;
  border-radius: 12px;
  padding: 15px;
  display: block;
  text-decoration: none;
  height: 100%;
}
#home .services .col-12 .service-card .card-main-image {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  height: 420px;
  display: inline-block;
}
#home .services .col-12 .service-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
#home .services .col-12 .service-card .desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#home .services .col-12 .service-card .desc p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
  width: 80%;
}
#home .services .col-12 .service-card .desc img {
  width: 32px;
}
#home .blogs .main-title-line {
  margin-bottom: 40px;
}
#home .blogs .col-12 {
  margin-bottom: 20px;
}
#home .blogs .col-12 .blog-card {
  background-color: #181818;
  border-radius: 12px;
  padding: 15px;
  display: block;
  text-decoration: none;
  height: 100%;
}
#home .blogs .col-12 .blog-card .blog-image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  height: 420px;
  display: inline-block;
}
#home .blogs .col-12 .blog-card h4 {
  font-size: 21px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
}

@media screen and (max-width: 991px) {
  #home .video-banner .main-content {
    padding-top: 200px;
  }
  #home .video-banner .main-content h1 {
    font-size: 40px;
    width: 100%;
    line-height: 48px;
  }
  #home .video-banner .main-content .banner-desc {
    flex-direction: column;
    margin-top: 25px;
  }
  #home .video-banner .main-content .banner-desc .desc {
    width: 100%;
  }
  #home .video-banner .main-content .banner-desc .link {
    justify-content: flex-start;
  }
  #home .home-description .contact-desc {
    font-size: 20px;
    line-height: 25px;
  }
  #home .home-description .portfolio .portfolio-items {
    width: 100%;
  }
  #home .services {
    padding: 40px 0 60px 0;
  }
}
@media screen and (max-width: 575px) {
  #home .video-banner .main-content {
    padding-top: 200px;
  }
  #home .video-banner .main-content h1 {
    font-size: 40px;
    width: 100%;
    line-height: 48px;
  }
  #home .video-banner .main-content .banner-desc {
    display: none;
  }
  #home .services .col-12 .service-card .card-main-image {
    height: 270px;
  }
  #home .blogs .col-12 .blog-card .blog-image img {
    height: 270px;
  }
}
#service .top-title {
  margin-top: 150px;
}
#service .top-title h1,
#service .top-title h2,
#service .service-description h1,
#service .service-description h2 {
  font-size: 56px;
  line-height: 72px;
  font-weight: 400;
  margin: 0;
}
#service .top-title h4,
#service .top-title h5,
#service .top-title h6,
#service .service-description h4,
#service .service-description h5,
#service .service-description h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
}
#service .top-title p,
#service .service-description p {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  line-height: 51px;
}
#service .service-banner {
  margin: 37px 0 70px 0;
}
@media screen and (max-width: 767px) {
  #service .service-banner {
    margin: 30px 0 30px 0;
  }
}
#service .service-banner img {
  width: 100%;
  height: 100%;
  transform: scale(0);
  opacity: 0;
  object-fit: cover;
}
#service .group-images {
  margin: 40px 0;
}
#service .group-images .main-container {
  display: flex;
  position: relative;
  grid-column-gap: 25px;
}
#service .group-images .main-container .image {
  width: 100%;
}
#service .group-images .main-container .image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
#service .item-desc {
  padding: 40px 80px;
}
#service .item-desc .desc {
  font-size: 21px;
  font-weight: 500;
  line-height: 33px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  #service .top-title h1,
  #service .top-title h2,
  #service .service-description h1,
  #service .service-description h2 {
    font-size: 32px;
    line-height: 43px;
  }
  #service .top-title p,
  #service .service-description p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (max-width: 768px) {
  #service .group-images .main-container {
    flex-wrap: wrap;
  }
  #service .group-images .main-container .image {
    margin-bottom: 20px;
  }
  #service .item-desc {
    padding: 0 0;
  }
  #service .item-desc .desc {
    font-size: 16px;
    line-height: 25px;
  }
}
#contact .row {
  overflow: hidden;
}
#contact .details {
  padding-top: 150px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
#contact .details h1 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 50px;
}
#contact .form {
  padding-top: 150px;
}
#contact .form .form-item {
  margin-bottom: 35px;
  width: 100%;
}
#contact .form .form-item label {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
#contact .form .form-item input,
#contact .form .form-item textarea {
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(18, 18, 18, 0.2);
  border-radius: 0.3rem;
  outline: none;
  padding-top: 13px;
  width: 100%;
  padding-bottom: 13px;
  padding-left: 12px;
  font-family: Montserrat;
  font-size: 16px;
  transition: all 0.25s;
  resize: none;
}
#contact .form .form-item:hover input,
#contact .form .form-item:hover textarea {
  border: 1px solid rgba(18, 18, 18, 0.2);
  padding-left: 20px;
}
#contact .row > div {
  opacity: 0;
  transform: translateY(100px);
  visibility: hidden;
}

#post-single .post-banner {
  margin-top: 100px;
}
#post-single .post-banner img {
  width: 100%;
  border-radius: 12px;
  height: 500px;
  object-fit: cover;
}
#post-single .post-content {
  margin-top: 40px;
}
#post-single .post-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
}
#post-single .post-content .content h1,
#post-single .post-content .content h2 {
  font-size: 24px;
  font-weight: 400;
}
#post-single .post-content .content h3,
#post-single .post-content .content h4,
#post-single .post-content .content h5,
#post-single .post-content .content h6 {
  font-size: 20px;
  font-weight: 400;
}
#post-single .post-content .content ul {
  margin: 0;
  padding: 0;
}
#post-single .post-content .content p,
#post-single .post-content .content li {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #post-single .post-banner img {
    height: 300px;
  }
}
html,
body {
  overflow-x: hidden;
  background-color: #272727;
  color: #fff;
}

main {
  margin: 0 auto;
  background-color: #272727;
  overflow-x: hidden;
  margin-bottom: 90vh;
  position: relative;
  height: fit-content;
  z-index: 10;
}

img {
  max-width: 100%;
  display: inline-block;
}

.main-container {
  padding: 0 4rem;
}

@media screen and (max-width: 991px) {
  .main-container {
    padding: 0 30px;
  }
  main {
    margin-bottom: 80vh;
  }
}
@media screen and (max-width: 768px) {
  .main-container {
    padding: 0 20px;
  }
}
.main-title-line {
  align-items: center;
  display: flex;
  margin-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .main-title-line {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 479px) {
  .main-title-line {
    margin-bottom: 20px;
  }
}
.main-title-line .title-name-line {
  color: #fefefe;
  width: 200px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px !important;
  line-height: 24px;
}

.mt-30px {
  margin-top: 30px;
}

.line-block {
  background-color: #9f9f9f;
  width: 100%;
  height: 1px;
}

.group-images {
  position: relative;
  z-index: 9;
}
.group-images .image {
  opacity: 0;
}

.main-title-line .title-name-line {
  color: #fefefe;
  width: 200px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.main-title-line .line-block {
  background-color: #9f9f9f;
  width: 100%;
  height: 1px;
}