@font-face {
  font-family: "Akitv-light";
  src: url("../../fonts/AktivGrotesk-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Akitv";
  src: url("../../fonts/AktivGrotesk-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* header style */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  padding-bottom: 0px;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    padding: 22px;
  }
}
.site-header .header-inner .site-logo img {
  width: 160px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header .header-inner .site-logo img {
    width: 120px;
  }
}
.site-header .header-inner .site-logo {
  z-index: 100;
}
.site-header .header-inner .home-page-logo {
  display: none;
}
.site-header .header-inner .home-page-logo img {
  width: 160px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header .header-inner .home-page-logo img {
    width: 120px;
  }
}
.site-header .header-inner .main-navigation ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 768px) {
  .site-header .header-inner .main-navigation ul {
    flex-direction: column;
    padding: 0;
  }
}
.site-header .header-inner .main-navigation ul li a {
  text-decoration: none;
  color: #888;
  font-size: 30px;
  font-weight: 700;
  font-family: "Akitv", sans-serif;
  transition: all 0.3s ease;
}
.site-header .header-inner .main-navigation ul li a:hover {
  color: #42546d;
  cursor: pointer;
}
@media (max-width: 768px) {
  .site-header .header-inner .main-navigation {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.873);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 99;
    height: 100vh;
  }
  .site-header .header-inner .main-navigation.active {
    opacity: 1;
    pointer-events: auto;
  }
}
.site-header .header-inner .hamburger {
  display: none;
}
@media (max-width: 768px) {
  .site-header .header-inner .hamburger {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 100;
  }
}
.site-header .header-inner .hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #42546d;
  left: 0;
  transition: 0.4s ease;
}
.site-header .header-inner .hamburger span:nth-child(1) {
  top: 0;
}
.site-header .header-inner .hamburger span:nth-child(2) {
  top: 9px;
}
.site-header .header-inner .hamburger span:nth-child(3) {
  top: 18px;
}
.site-header .header-inner .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #42546d;
}
.site-header .header-inner .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header .header-inner .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #42546d;
}

/* style for only for home page */
.page-id-9 .site-header {
  position: relative;
  background-color: inherit;
}
.page-id-9 .site-header .header-inner .home-page-logo {
  display: block;
}
.page-id-9 .site-header .header-inner .home-page-logo img {
  width: 160px;
  height: auto;
}
@media (max-width: 768px) {
  .page-id-9 .site-header .header-inner .home-page-logo img {
    width: 120px;
  }
}
.page-id-9 .site-header .header-inner .site-logo {
  display: none;
  z-index: 100;
}
@media (max-width: 768px) {
  .page-id-9 .site-header .header-inner .site-logo img {
    width: 120px;
  }
}
.page-id-9 .site-header .header-inner .main-navigation ul li a {
  text-decoration: none;
  color: white;
  font-size: 30px;
  font-weight: 700;
  font-family: "Akitv", sans-serif;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .page-id-9 .site-header .header-inner .main-navigation ul li a {
    color: black;
  }
}
.page-id-9 .site-header .header-inner .main-navigation ul li a:hover {
  color: #a2a2a2;
  cursor: pointer;
}
.page-id-9 .site-header .header-inner .main-navigation ul li.active a {
  color: #42546d;
}
.page-id-9 .site-header .header-inner .hamburger {
  display: none;
}
@media (max-width: 768px) {
  .page-id-9 .site-header .header-inner .hamburger {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 100;
  }
}
.page-id-9 .site-header .header-inner .hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  left: 0;
  transition: 0.4s ease;
}
.page-id-9 .site-header .header-inner .hamburger span:nth-child(1) {
  top: 0;
}
.page-id-9 .site-header .header-inner .hamburger span:nth-child(2) {
  top: 9px;
}
.page-id-9 .site-header .header-inner .hamburger span:nth-child(3) {
  top: 18px;
}
.page-id-9 .site-header .header-inner .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #42546d;
}
.page-id-9 .site-header .header-inner .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.page-id-9 .site-header .header-inner .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #42546d;
}

/* responsive toggle */
.site-header.menu-open .site-logo {
  display: block !important;
}
.site-header.menu-open .home-page-logo {
  display: none !important;
}

.footer {
  padding: 50px 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer p {
  font-family: "Akitv-light", sans-serif;
  font-size: 20px;
}
@media (max-width: 768px) {
  .footer p {
    font-size: 16px;
  }
}
.footer .social-container {
  display: flex;
  align-items: center;
  gap: 29px;
}
.footer .social-container img {
  width: 20px;
}

.home-container {
  width: 100%;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  top: 0;
  overflow: hidden;
}
.home-container .custom-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-container .custom-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.home-container .custom-slider .slide.active {
  opacity: 1;
}
.home-container .custom-slider .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 15%), linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 30%), linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 30%);
  pointer-events: none;
}
.home-container .custom-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-container .custom-slider .slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.home-container .custom-slider .slider-nav .nav-dot {
  width: 25px;
  height: 7px;
  background: rgba(219, 219, 219, 0.3019607843);
  cursor: pointer;
  transition: background 0.3s;
}
.home-container .custom-slider .slider-nav .nav-dot.active {
  background: #ffffff;
}

.work-container {
  padding: 0px 40px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .work-container {
    padding: 0px 20px;
    padding-top: 100px;
  }
}
.work-container .filter-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Akitv", sans-serif;
}
.work-container .filter-container p {
  padding: 0;
  margin: 0;
  color: #1e2a38;
}
.work-container .filter-container .plus-toggle {
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-container .filter-container .plus-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  transition: all 0.4s ease;
}
.work-container .filter-container .plus-toggle span:nth-child(1) {
  transform: rotate(0deg);
}
.work-container .filter-container .plus-toggle span:nth-child(2) {
  transform: rotate(90deg);
}
.work-container .filter-container .plus-toggle.active {
  transform: rotate(180deg);
}
.work-container .filter-container .plus-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}
.work-container .filter-container .plus-toggle.active span:nth-child(2) {
  transform: rotate(-45deg);
}
.work-container .filter-box {
  width: 350px;
  margin-left: auto;
  /*  margin-top: 15px;
   margin-bottom: 15px; */
  overflow: hidden;
  max-height: 0;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.work-container .filter-box.open {
  max-height: 500px;
  opacity: 1;
  z-index: 20;
}
.work-container .filter-box .filter-group .filter-group-header p {
  margin: 0;
  font-family: "Akitv", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e2a38;
}
.work-container .filter-box .filter-group .filter-group-body {
  max-height: 0;
  position: absolute;
  z-index: 20;
  background-color: white;
  border-radius: 10px;
  width: 350px;
  overflow: auto;
  transition: max-height 0.35s ease;
  font-family: "Akitv", sans-serif;
  color: #1e2a38;
}
.work-container .filter-box .filter-group .filter-group-body .checkbox-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
}
.work-container .filter-box .filter-group .filter-group-body .checkbox-item input {
  width: 18px;
  height: 18px;
}
.work-container .filter-box .filter-group.open .filter-group-body {
  max-height: 300px;
}
.work-container .projects-wrapper {
  display: grid;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(425px, 1fr));
}
@media (max-width: 768px) {
  .work-container .projects-wrapper {
    grid-template-columns: 1fr;
  }
}
.work-container .projects-wrapper .project-item {
  position: relative;
  height: 280px;
}
.work-container .projects-wrapper .project-item .project-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.work-container .projects-wrapper .project-item .project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-container .projects-wrapper .project-item .project-info {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: start;
  align-items: start;
  opacity: 0;
  padding-left: 20px;
  transition: opacity 0.4s ease;
}
.work-container .projects-wrapper .project-item .project-info .project-title {
  font-size: 26px;
  color: white;
  font-family: "Akitv", sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-bottom: 0px;
}
.work-container .projects-wrapper .project-item .project-info .project-location {
  font-size: 20px;
  color: white;
  font-family: "Akitv-light", sans-serif;
  margin-top: 9px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.work-container .projects-wrapper .project-item:hover .project-info {
  opacity: 1;
}
.work-container .projects-wrapper .project-item:hover .project-title {
  opacity: 1;
  transform: translateY(0px);
}
.work-container .projects-wrapper .project-item:hover .project-location {
  opacity: 1;
  transform: translateY(0px);
}

.office-page-container {
  padding: 40px 40px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 768px) {
  .office-page-container {
    padding: 0px 20px;
    padding-top: 100px;
  }
}
.office-page-container .profile-section,
.office-page-container .contact-section,
.office-page-container .employment-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.office-page-container .hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  width: 100%;
}
.office-page-container .hero-section .hero-image {
  height: 90vh;
  width: 100%;
}
@media (max-width: 768px) {
  .office-page-container .hero-section .hero-image {
    height: 200px;
  }
}
.office-page-container .hero-section .hero-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.office-page-container .hero-section .hero-heading {
  font-family: "Akitv", sans-serif;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 65px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .office-page-container .hero-section .hero-heading {
    font-size: 25px;
  }
}
.office-page-container .profile-section .profile-content {
  font-family: "Akitv-light", sans-serif;
  font-size: 20px;
  line-height: 35px;
}
@media (max-width: 768px) {
  .office-page-container .profile-section .profile-content {
    font-size: 16px;
    line-height: 29px;
  }
}
.office-page-container .contact-section .contact-content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .office-page-container .contact-section .contact-content {
    flex-direction: column;
    gap: 20px;
  }
}
.office-page-container .contact-section .contact-content .contact-item h2 {
  font-size: 25px;
  font-weight: 700;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .office-page-container .contact-section .contact-content .contact-item h2 {
    margin: 0;
    font-size: 20px;
  }
}
.office-page-container .contact-section .contact-content .contact-item p {
  font-size: 18px;
  font-weight: 100;
  line-height: 35px;
  font-family: "Akitv-light", sans-serif;
}
.office-page-container .contact-section .contact-content .contact-item p a {
  text-decoration: none;
  color: black;
}
@media (max-width: 768px) {
  .office-page-container .contact-section .contact-content .contact-item p {
    margin: 0;
    font-size: 16px;
  }
}
.office-page-container .employment-section .employment-content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 768px) {
  .office-page-container .employment-section .employment-content {
    flex-direction: column;
  }
}
.office-page-container .employment-section .employment-content .employment-item {
  width: 100%;
}
.office-page-container .employment-section .employment-content .employment-item h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .office-page-container .employment-section .employment-content .employment-item h2 {
    font-size: 30px;
    margin: 0;
  }
}
.office-page-container .employment-section .employment-content .employment-item p {
  font-size: 18px;
  font-family: "Akitv-light", sans-serif;
  font-weight: 100;
  line-height: 35px;
}
@media (max-width: 768px) {
  .office-page-container .employment-section .employment-content .employment-item p {
    font-size: 16px;
    margin: 0px 10;
    line-height: 28px;
  }
}
.office-page-container .employment-section .employment-content .employment-item .employment-btn button {
  background-color: white;
  font-family: "Akitv", sans-serif;
  border: solid black 2px;
  font-size: 14px;
  font-weight: 100;
  padding: 20px 40px;
  transition: all 0.8s;
}
.office-page-container .employment-section .employment-content .employment-item .employment-btn button:hover {
  background-color: black;
  color: white;
}
.office-page-container .employment-section .current-vacancies {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.office-page-container .employment-section .current-vacancies h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .office-page-container .employment-section .current-vacancies h1 {
    font-size: 30px;
    margin: 0;
  }
}
.office-page-container .employment-section .current-vacancies .job-list-container {
  border-top: solid 3px black;
  border-bottom: solid 3px black;
  padding: 10px 0px;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  overflow: hidden;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header h3 {
  margin: 0;
  font-size: 25px;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header h3 {
    font-size: 20px;
  }
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header .job-toggle {
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header .job-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header .job-toggle span:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-header .job-toggle.active span:nth-child(2) {
  transform: translateY(-50%) rotate(0deg);
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-body p {
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Akitv-light", sans-serif;
  line-height: 1.6;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-body .apply-btn {
  display: inline-block;
  color: black;
  font-size: 20px;
  border-bottom: solid 2px gray;
  text-decoration: none;
  font-family: "Akitv-light", sans-serif;
  transition: background 0.3s;
}
@media (max-width: 768px) {
  .office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-body .apply-btn {
    font-size: 18px;
  }
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item .job-body .apply-btn:hover {
  border-color: black;
}
.office-page-container .employment-section .current-vacancies .job-list-container .job-item.open .job-body {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0px);
}
.office-page-container .blogs-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.office-page-container .blogs-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .office-page-container .blogs-section h1 {
    font-size: 30px;
  }
}
.office-page-container .blogs-section .blogs-items {
  display: grid;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(425px, 1fr));
  width: 100%;
}
@media (max-width: 768px) {
  .office-page-container .blogs-section .blogs-items {
    grid-template-columns: 1fr;
  }
}
.office-page-container .blogs-section .blogs-items .blog-item a {
  text-decoration: none;
}
.office-page-container .blogs-section .blogs-items .blog-item h3 {
  font-family: "Akitv", sans-serif;
  color: #000;
  font-size: 22px;
}
@media (max-width: 768px) {
  .office-page-container .blogs-section .blogs-items .blog-item h3 {
    font-size: 20px;
  }
}
.office-page-container .blogs-section .blogs-items .blog-item .blog-thumb {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.office-page-container .blogs-section .blogs-items .blog-item .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.office-page-container .blogs-section .blogs-items .blog-item .blog-thumb img:hover {
  scale: 1.2;
}

.single-blog-container {
  padding: 40px 40px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .single-blog-container {
    padding: 0px 20px;
    padding-top: 100px;
  }
}
.single-blog-container .single-blog-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .single-blog-container .single-blog-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.single-blog-container .single-blog-wrapper .single-blog-left .blog-date {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  font-family: "Akitv-light", sans-serif;
}
.single-blog-container .single-blog-wrapper .single-blog-left .blog-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .single-blog-container .single-blog-wrapper .single-blog-left .blog-title {
    font-size: 30px;
  }
}
.single-blog-container .single-blog-wrapper .single-blog-left .blog-content {
  font-size: 18px;
  line-height: 1.7;
  font-family: "Akitv-light", sans-serif;
}
@media (max-width: 768px) {
  .single-blog-container .single-blog-wrapper .single-blog-left .blog-content {
    font-size: 16px;
  }
}
.single-blog-container .single-blog-wrapper .single-blog-left .blog-content img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .single-blog-container .single-blog-wrapper .single-blog-right {
    grid-row-start: 1;
  }
}
.single-blog-container .single-blog-wrapper .single-blog-right img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.single-blog-container .other-blogs-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-blog-container .other-blogs-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .single-blog-container .other-blogs-section h2 {
    font-size: 30px;
  }
}
.single-blog-container .other-blogs-section .other-blogs-wrapper {
  display: grid;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(425px, 1fr));
  width: 100%;
}
@media (max-width: 768px) {
  .single-blog-container .other-blogs-section .other-blogs-wrapper {
    grid-template-columns: 1fr;
  }
}
.single-blog-container .other-blogs-section .other-blogs-wrapper .other-blog-item a {
  text-decoration: none;
  color: #000;
}
.single-blog-container .other-blogs-section .other-blogs-wrapper .other-blog-item a .blog-thumb {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.single-blog-container .other-blogs-section .other-blogs-wrapper .other-blog-item a .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.single-blog-container .other-blogs-section .other-blogs-wrapper .other-blog-item a .blog-thumb img:hover {
  scale: 1.2;
}
.single-blog-container .other-blogs-section .other-blogs-wrapper .other-blog-item a .other-blog-title {
  font-family: "Akitv", sans-serif;
  color: #000;
  font-size: 22px;
}
@media (max-width: 768px) {
  .single-blog-container .other-blogs-section .other-blogs-wrapper .other-blog-item a .other-blog-title {
    font-size: 20px;
  }
}

.single-projects-container {
  padding: 20px 40px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .single-projects-container {
    padding: 0px 1px;
    padding-top: 100px;
  }
}
.single-projects-container .project-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.single-projects-container .project-slider-container .project-slider {
  width: 100%;
  height: 80vh;
}
@media (max-width: 768px) {
  .single-projects-container .project-slider-container .project-slider {
    height: 300px;
  }
}
.single-projects-container .project-slider-container .project-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-projects-container .project-slider-container .swiper-button-next,
.single-projects-container .project-slider-container .swiper-button-prev {
  color: #ffffff;
  padding: 30px 15px;
  border-radius: 4px;
  transition: 0.2s ease;
}
@media (max-width: 768px) {
  .single-projects-container .project-slider-container .swiper-button-next,
  .single-projects-container .project-slider-container .swiper-button-prev {
    display: none;
  }
}
.single-projects-container .project-slider-container .swiper-button-next svg,
.single-projects-container .project-slider-container .swiper-button-prev svg {
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.7));
}
.single-projects-container .project-slider-container .slide-counter {
  text-align: center;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  font-family: sans-serif;
  display: flex;
  justify-content: flex-start;
  font-family: "Akitv-light", sans-serif;
}
@media (max-width: 768px) {
  .single-projects-container .project-slider-container .slide-counter {
    padding: 0px 20px;
  }
}
.single-projects-container .single-project-contents {
  margin-top: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents {
    margin-top: 50px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper {
  display: flex;
  align-items: start;
  flex-direction: column;
  width: 50%;
  gap: 30px;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents .contents-wrapper {
    padding: 0px 20px;
    width: 100%;
    gap: 10px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper h1 {
  font-family: "Akitv", sans-serif;
  font-size: 36px;
  margin: 0;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents .contents-wrapper h1 {
    font-size: 30px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper .description {
  font-size: 18px;
  font-family: "Akitv-light", sans-serif;
  line-height: 35px;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents .contents-wrapper .description {
    font-size: 16px;
    line-height: 28px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper .project-details-container {
  width: 100%;
}
.single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details {
  gap: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 20px;
  border-top: solid 3px black;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 5px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details h2 {
  font-family: "Akitv", sans-serif;
  font-size: 20px;
  flex: 1 25%;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details h2 {
    margin: 0;
    font-size: 18px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details p {
  font-family: "Akitv-light", sans-serif;
  font-size: 20px;
  flex: 1 75%;
}
@media (max-width: 768px) {
  .single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details p {
    margin: 0;
    font-size: 18px;
  }
}
.single-projects-container .single-project-contents .contents-wrapper .project-details-container .project-details:last-child {
  border-bottom: 3px solid #000;
}

.application-container {
  padding: 40px 40px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .application-container {
    padding: 0px 20px;
    padding-top: 100px;
  }
}
.application-container .application-header {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
}
.application-container .application-header h1 {
  font-size: 36px;
  font-family: "Akitv", sans-serif;
}
@media (max-width: 768px) {
  .application-container .application-header h1 {
    font-size: 30px;
    margin: 0;
  }
}
.application-container .application-header p {
  font-size: 16px;
  font-family: "Akitv-light", sans-serif;
}
.application-container .application-form {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.application-container .application-form label {
  font-family: "Akitv-light", sans-serif;
  font-size: 20px;
}
.application-container .application-form label span {
  color: red;
}
.application-container .application-form input,
.application-container .application-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  font-family: "Akitv-light", sans-serif;
  color: rgb(92, 92, 92);
}
.application-container .application-form textarea {
  height: 150px;
}
.application-container .application-form button {
  padding: 12px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}
.application-container .application-form .success-message {
  margin-top: 20px;
  padding: 15px;
  background: #e8ffe8;
  font-family: "Akitv-light", sans-serif;
  color: #0f7f0f;
  border: 1px solid #89cc89;
  border-radius: 4px;
}

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