@import url("../../../css2");
*,
::after,
::before {
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1000%;
    padding: 0 130px;
  }
}
@media (min-width: 1650px) {
  .container {
    max-width: 1620px;
    padding: 0;
  }
}
@font-face {

}
body {
  line-height: 1;
  font-family: "Poppins", sans-serif;
  background-color: #111111;
}

html {
  scroll-behavior: smooth;
  zoom: 75%;
}

.landing_page {
  zoom: 70%;
}

@media (max-width: 576px) {
  html {
    z-index: 100% !important;
  }
}
input,
select,
textarea,
button {
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

header.site_head {
  padding: 55px 0;
  position: relative;
  transition: 0.2s ease-in-out;
  max-height: 152px;
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: transparent;
}
header.site_head .wrapper {
  align-items: center;
  justify-content: space-between;
}
header.site_head .site_logo a {
  width: 230px;
  display: flex;
}
header.site_head .site_logo a img {
  width: 100%;
}
header.site_head .side_nav {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #111111;
  z-index: 999;
  width: 100%;
  height: calc(100vh + 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
header.site_head .side_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
header.site_head .side_nav ul.menu {
  gap: 5px;
  margin-bottom: 112px;
}
header.site_head .side_nav ul.menu li.nav-item a.nav-link {
  font-weight: 600;
  font-size: 36px;
  color: white;
  padding: 10px;
  display: block;
}
header.site_head .side_nav ul.social_media {
  margin-bottom: 112px;
  gap: 35px;
}
header.site_head .side_nav ul.social_media li a svg {
  height: 22px;
}
header.site_head .side_nav ul.contact li a {
  color: white;
  font-size: 36px;
  font-weight: 800;
  text-decoration: underline;
}
header.site_head .right {
  display: flex;
  align-items: center;
  gap: 55px;
}
header.site_head .right a.offer_btn {
  padding: 12px 30px;
  border: 1px solid #25D366;
  border-radius: 8px;
  color: white;
  background-color: #25D366;
  font-weight: 500;
  transition: 0.2s ease;
}
header.site_head .right a.offer_btn:hover {
  background-color: #128C7E;
  color: white;
  border-color: transparent;
}
header.site_head .toggle_button {
  cursor: pointer;
}
header.site_head .toggle_button .line {
  width: 33px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
header.site_head .toggle_button.is-active .line:nth-child(2) {
  opacity: 0;
}
header.site_head .toggle_button.is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
header.site_head .toggle_button.is-active .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
header.site_head.open_menu {
  background-color: #111111;
}
header.site_head.open_menu .side_nav {
  opacity: 1;
  visibility: visible;
}
header.site_head .project_detail_logo {
  display: flex;
  align-items: center;
  margin: -100% 0;
}
header.site_head .project_detail_logo img {
  height: 70px;
}
header.site_head.is_visible {
  transform: translateY(0);
  background-color: #111111;
  z-index: 99;
}
header.site_head.is_hidden {
  transform: translateY(-100%);
  background-color: transparent;
  z-index: 99;
}

@media (max-width: 1200px) {
  header.site_head .project_detail_logo img {
    height: 50px;
  }
}
@media (max-width: 991px) {
  header.site_head {
    padding: 32px 0;
  }
  header.site_head .right {
    gap: 15px;
  }
  header.site_head .side_nav {
    padding: 30px 30px 20px;
    overflow: hidden;
    height: calc(100vh - 130px);
  }
  header.site_head .side_nav ul.menu {
    flex-direction: column;
    align-items: flex-start;
  }
  header.site_head .side_nav ul.menu li.nav-item a.nav-link {
    font-size: 28px;
  }
  header.site_head .side_nav ul.contact li a {
    font-size: 28px;
  }
  header.site_head .project_detail_logo {
    display: none;
  }
}
@media (max-width: 576px) {
  header.site_head {
    position: relative;
    padding: 32px 0 84px;
  }
  header.site_head .site_logo {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
  header.site_head .site_logo a {
    width: 200px;
  }
  header.site_head .right {
    width: 0;
    justify-content: flex-end;
  }
  header.site_head a.offer_btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  header.site_head .side_nav {
    padding: 5px 5px 40px;
  }
  header.site_head .side_nav ul.menu {
    margin-bottom: 40px;
  }
  header.site_head .side_nav ul.social_media {
    margin-bottom: 40px;
  }
}
section.hero {
  height: 113vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
section.hero .wrapper {
  width: 100%;
}
section.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_hero {
  overflow: hidden;
  background-image: url(../images/heroImage.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_hero::before {
  background-color: rgba(0, 0, 0, 0.37);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.home_hero > * {
  z-index: 1;
  position: relative;
}
.home_hero .content {
  width: 35%;
  color: white;
}
.home_hero .content h1 {
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.home_hero .content h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.home_hero .content p {
  font-size: 22px;
  line-height: 1.3;
}
.home_hero .contact_form {
  width: 600px;
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  margin-left: auto;
}
.home_hero .contact_form form input,
.home_hero .contact_form form textarea {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 2.1px solid #111111;
  padding: 16px;
  font-weight: 500;
  font-size: 20px;
}
.home_hero .contact_form form input {
  height: 65px;
}
.home_hero .contact_form form textarea {
  width: 100% !important;
  min-height: 60px;
  max-height: 250px;
  height: 140px;
}
.home_hero .contact_form form .checkbox {
  margin-bottom: 20px;
  display: block;
}
.home_hero .contact_form form .checkbox input {
  width: 20px;
  display: none;
}
.home_hero .contact_form form .checkbox input:checked + .inner .icon svg {
  opacity: 1;
}
.home_hero .contact_form form .checkbox .inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home_hero .contact_form form .checkbox .icon {
  width: 25px;
  height: 25px;
  border-radius: 3px;
  display: block;
  border: 1.4px solid #111111;
}
.home_hero .contact_form form .checkbox .icon svg {
  width: 100%;
  height: auto;
  fill: #111111;
  opacity: 0;
  transform: translate(4px, -4px);
}
.home_hero .contact_form form .call_btn {
  background-color: #111111;
  color: white;
  padding: 25px 40px;
  font-size: 22px;
  border-radius: 10px;
  transition: 0.2s ease-in;
  cursor: pointer;
}
.home_hero .contact_form form .call_btn:hover {
  opacity: 0.9;
}
.home_hero .contact_form h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.home_hero .contact_form p {
  font-size: 18px;
  margin-bottom: 30px;
}

@media (min-width: 991px) {
  .home_hero .form_btn {
    display: none;
  }
}
@media (max-width: 991px) {
  section.hero {
    min-height: auto;
    height: auto;
    z-index: 2;
  }
  section.hero .contact_form {
    width: 100%;
    margin-bottom: 30px;
    padding: 35px 20px;
  }
  section.hero .content {
    width: 100%;
    margin-bottom: 40px;
    padding-top: 50px;
  }
  section.hero .content h1 {
    font-size: 10px;
  }
  .home_hero {
    z-index: inherit !important;
  }
  .home_hero .container {
    z-index: inherit;
  }
  .home_hero .contact_form {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6117647059);
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in;
  }
  .home_hero .contact_form.opened {
    opacity: 1;
    visibility: visible;
  }
  .home_hero .contact_form.opened .form_inner {
    transform: translateY(0);
  }
  .home_hero .content {
    padding: 60px 0;
    margin-bottom: 0;
  }
  .home_hero .content h2 {
    margin-bottom: 300px;
  }
  .home_hero .content p {
    display: none;
  }
  .home_hero .form_inner {
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(-40px);
    transition: 0.3s ease-out;
  }
  .home_hero .form_btn {
    font-size: 22px;
    background-color: white;
    color: #111111;
    padding: 16px 40px;
    font-weight: 600;
    margin-top: 40px;
    border-radius: 4px;
    cursor: pointer;
  }
}
.page_head {
  width: 100%;
  margin-bottom: 90px;
}
.page_head h1 {
  font-weight: 700;
  font-size: 50px;
  padding-bottom: 45px;
}
.page_head p {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .page_head {
    margin-bottom: 0;
  }
  .page_head h5 {
    font-size: 16px;
    padding-bottom: 35px;
  }
  .page_head p {
    font-size: 24px;
  }
}
.btn-1 {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: underline;
  font-size: 36px;
  font-weight: 700;
  color: #111111;
}

.btn-2 {
  padding: 20px 30px;
  border: 1px solid #DADADA;
  border-radius: 10px;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: black;
  line-height: 80%;
  transition: 0.2s ease;
}
.btn-2:hover {
  background-color: #DADADA;
}

section.featured_projects {
  background-color: white;
  padding: 90px 0 80px;
}
section.featured_projects .page_head {
  color: #111111;
}
section.featured_projects .projects_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 90px;
}
section.featured_projects .projects_grid .project {
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.featured_projects .projects_grid .project .inner {
  z-index: 1;
  background-color: white;
  border-radius: 15px;
}
section.featured_projects .projects_grid .project .image {
  position: relative;
  overflow: hidden;
  border: 1px solid #C6C6C6;
  border-radius: 15px 15px 0 0;
  border-bottom: 0;
  margin-top: -1px;
}
section.featured_projects .projects_grid .project .image a {
  display: flex;
  margin: -1px;
}
section.featured_projects .projects_grid .project .image img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: 0.4s ease;
}
section.featured_projects .projects_grid .project .image .categories {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
section.featured_projects .projects_grid .project .image .categories li a {
  color: white;
  background-color: #00ADBA;
  padding: 10px 20px;
  border-radius: 15px;
  display: block;
}
section.featured_projects .projects_grid .project .detail {
  padding: 25px 10px 35px 35px;
  border: 1px solid #C6C6C6;
  border-radius: 0 0 15px 15px;
  border-top: 0;
  z-index: 2;
}
section.featured_projects .projects_grid .project .detail h2.title {
  font-size: 36px;
  padding-bottom: 25px;
}
section.featured_projects .projects_grid .project .detail p {
  font-weight: 400;
  font-size: 16px;
  line-height: 139.5%;
  padding-bottom: 18px;
}
section.featured_projects .projects_grid .project .detail .view_btn {
  padding: 20px 30px;
  border: 1px solid #DADADA;
  border-radius: 10px;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: black;
  line-height: 80%;
}
section.featured_projects .projects_grid .project::after {
  content: "";
  transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.1019607843);
  filter: blur(25px);
  border-radius: 15px;
  width: 70%;
  height: 120px;
  position: absolute;
  bottom: -30px;
  z-index: 0;
}

section.all_projects .projects_grid .project .image {
  border: unset;
}

@media (max-width: 1200px) {
  section.featured_projects .projects_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 991px) {
  section.featured_projects .projects_grid .project:hover {
    z-index: 3;
  }
  section.featured_projects .projects_grid .project:hover .image img {
    transform: scale(1.02);
  }
  section.featured_projects .projects_grid .project:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  section.featured_projects {
    padding: 30px 0 60px;
  }
  section.featured_projects .page_head {
    margin-bottom: 25px;
  }
  section.featured_projects .projects_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 22px;
    margin-bottom: 60px;
  }
  section.featured_projects .projects_grid .project:first-child {
    width: 100%;
  }
  section.featured_projects .projects_grid .project:not(:first-child) {
    width: calc(50% - 5px);
  }
  section.featured_projects .projects_grid .project .image .categories {
    display: none;
  }
  section.featured_projects .projects_grid .project .detail h2.title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-bottom: 22px !important;
    margin-bottom: 6px;
  }
  section.all_projects .projects_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  section.all_projects .projects_grid .project {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  section.featured_projects .projects_grid .project .detail {
    padding: 6px 10px 10px;
  }
  section.featured_projects .projects_grid .project .detail h2.title {
    font-size: 24px;
    padding-bottom: 10px;
  }
  section.featured_projects .projects_grid .project .detail .btn-2 {
    padding: 20px 15px;
  }
  section.all_projects .projects_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  section.all_projects .projects_grid .project {
    width: 100% !important;
  }
  section.all_projects .projects_grid .project .detail {
    padding: 25px;
  }
}
section.about_us {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 220px 0;
}
section.about_us .before,
section.about_us .after {
  width: 350px;
  position: absolute;
  z-index: -1;
}
section.about_us .before svg,
section.about_us .after svg {
  width: 100%;
}
section.about_us .before {
  left: -40px;
  bottom: 50px;
}
section.about_us .after {
  right: -40px;
  top: 80px;
}
section.about_us .content {
  max-width: 1050px;
  margin: 0 auto;
  color: white;
  text-align: center;
}
section.about_us .content .h3 {
  font-weight: 400;
  font-size: 40px;
  padding-bottom: 45px;
}
section.about_us .content .swap-text {
  height: 90px;
  position: relative;
  display: flex;
  justify-content: center;
}
section.about_us .content .swap-text .text {
  position: absolute;
  display: flex;
  bottom: 0;
}
section.about_us .content .swap-text .text svg {
  width: 100%;
}
section.about_us .content .swap-text .text.hidden {
  opacity: 0;
  visibility: hidden;
}
section.about_us .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  margin: 70px 0;
}
section.about_us .content a.moreinfo_btn {
  font-size: 36px;
  font-weight: 700;
  color: white;
  text-decoration: underline;
}

@media (max-width: 991px) {
  section.about_us {
    padding: 250px 0;
  }
  section.about_us .content p {
    font-size: 16px;
    margin: 35px 0;
  }
  section.about_us .content a.moreinfo_btn {
    font-size: 24px;
  }
  section.about_us .before,
section.about_us .after {
    width: 210px;
  }
  section.about_us .before svg,
section.about_us .after svg {
    height: auto;
  }
}
section.latest_blog {
  background-color: white;
  padding: 80px 0;
}
section.latest_blog .blogs_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 85px;
  width: 100%;
}
section.latest_blog .blogs_grid li.article {
  transition: 0.2s ease;
  position: relative;
  display: flex;
  justify-content: center;
}
section.latest_blog .blogs_grid li.article::after {
  content: "";
  transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.1019607843);
  filter: blur(25px);
  border-radius: 15px;
  width: 70%;
  height: 120px;
  position: absolute;
  bottom: -30px;
  z-index: 1;
}
section.latest_blog .blogs_grid li.article .inner {
  z-index: 3;
  background: #FFFFFF;
  border: 1px solid #C6C6C6;
  border-radius: 15px;
}
section.latest_blog .blogs_grid li.article .image {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
section.latest_blog .blogs_grid li.article .image a {
  display: flex;
  overflow: hidden;
}
section.latest_blog .blogs_grid li.article .image a img {
  aspect-ratio: 5/3;
  object-fit: cover;
  width: 100%;
  transition: 0.4s ease;
}
section.latest_blog .blogs_grid li.article .detail {
  padding: 25px 34px 32px;
}
section.latest_blog .blogs_grid li.article .detail h2.title {
  color: #111111;
  font-weight: 700;
  font-size: 32px;
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-bottom: 4px;
  margin-bottom: 20px;
}
section.latest_blog .blogs_grid li.article .detail p {
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 28px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  padding-bottom: 3px;
  -webkit-box-orient: vertical;
}
section.latest_blog .blogs_grid li.article .detail .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.latest_blog .blogs_grid li.article .detail .bottom .date {
  display: flex;
  align-items: center;
  gap: 13px;
}
section.latest_blog .blogs_grid li.article .detail .bottom .date img {
  width: 20px;
}
section.latest_blog .blogs_grid li.article .detail .bottom .date span {
  font-weight: 300;
  font-size: 20px;
}

@media (min-width: 991px) {
  section.latest_blog .blogs_grid.desktop_hide {
    display: none !important;
  }
  section.latest_blog .blogs_grid li.article:hover {
    z-index: 3;
  }
  section.latest_blog .blogs_grid li.article:hover .image a img {
    transform: scale(1.02);
  }
  section.latest_blog .blogs_grid li.article:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  section.latest_blog .blogs_grid {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  section.latest_blog .blogs_grid li.article .detail {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  section.latest_blog {
    overflow: hidden;
    padding: 37px 0 25px;
  }
  section.latest_blog .page_head {
    margin-bottom: 20px;
  }
  section.latest_blog .blogs_grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  section.latest_blog .blogs_grid.mobile_hide {
    display: none !important;
  }
  section.latest_blog .blogs_grid .slick-dots {
    bottom: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.latest_blog .blogs_grid .slick-dots li {
    border: 1px solid #C6C6C6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.latest_blog .blogs_grid .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background: #C6C6C6;
    border-radius: 50%;
    color: #C6C6C6;
  }
  section.latest_blog .blogs_grid .slick-dots li button::before {
    display: none;
  }
  section.latest_blog .blogs_grid .slick-list {
    margin: 0 -15px;
    overflow: hidden;
  }
  section.latest_blog .blogs_grid li.article {
    margin: 15px;
  }
  section.latest_blog .blogs_grid li.article:active {
    transform: scale(1.03);
    transition-duration: 1s;
  }
  section.latest_blog .btn-1 {
    display: none;
  }
}
@media (max-width: 576px) {
  section.latest_blog .blogs_grid {
    display: flex;
    flex-wrap: wrap;
  }
  section.latest_blog .blogs_grid li.article .detail .bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
section.what_we_doing {
  padding: 250px 0;
}
section.what_we_doing .page_head {
  color: white;
}
section.what_we_doing .boxes_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 95px;
  width: 100%;
}
section.what_we_doing .boxes_grid .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
  width: 100%;
  border: 6px solid #EB5328;
  border-radius: 15px;
  aspect-ratio: 3/2;
  position: relative;
  transition: 0.2s ease;
}
section.what_we_doing .boxes_grid .box h2.title {
  font-weight: 900;
  font-size: 32px;
  color: white;
  transition: 0.6s;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
section.what_we_doing .boxes_grid .box .detail {
  opacity: 0;
  visibility: hidden;
  transition-duration: 1s;
  transition-property: 0.3s;
  margin-top: 64px;
}
section.what_we_doing .boxes_grid .box .detail p {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  padding-bottom: 3px;
  -webkit-box-orient: vertical;
}
section.what_we_doing .boxes_grid .box .detail img {
  display: block;
  margin: 0 auto;
  height: 100px;
}

@media (min-width: 991px) {
  section.what_we_doing .boxes_grid .box:hover {
    border-color: transparent;
    border-image: url(../images/border_image.svg) 50/10 round;
  }
  section.what_we_doing .boxes_grid .box:hover h2.title {
    top: 72px;
    transform: unset !important;
  }
  section.what_we_doing .boxes_grid .box:hover .detail {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  section.what_we_doing .boxes_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  section.what_we_doing {
    padding: 35px 0 120px;
  }
  section.what_we_doing .boxes_grid {
    margin-top: 70px;
  }
  section.what_we_doing .boxes_grid .box {
    padding: 30px;
    border: 3px solid #EB5328;
  }
  section.what_we_doing .boxes_grid .box h2.title {
    font-size: 23px;
    height: 23px;
  }
  section.what_we_doing .boxes_grid .box .detail {
    margin-top: 35px;
  }
  section.what_we_doing .boxes_grid .box .detail svg {
    height: 80px;
  }
  section.what_we_doing .boxes_grid .box.active {
    border-color: transparent;
    border-width: 6px;
    border-image: url(../images/border_image.svg) 50/10 round;
  }
  section.what_we_doing .boxes_grid .box.active h2.title {
    top: 50px;
    transform: unset !important;
  }
  section.what_we_doing .boxes_grid .box.active .detail {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 768px) {
  section.what_we_doing .boxes_grid {
    gap: 10px;
  }
  section.what_we_doing .boxes_grid .box {
    padding: 10px;
  }
  section.what_we_doing .boxes_grid .box h2.title {
    font-size: 16px;
    height: auto;
    line-height: 1.3;
    text-align: center;
    max-width: 120px;
  }
  section.what_we_doing .boxes_grid .box.active {
    border-image: url(../images/border_image.svg) 66/7 round;
  }
  section.what_we_doing .boxes_grid .box.active h2.title {
    top: 35px;
    max-width: max-content;
  }
  section.what_we_doing .boxes_grid .box .detail p {
    font-size: 13px;
    margin-bottom: 5px;
  }
  section.what_we_doing .boxes_grid .box .detail svg {
    height: 60px;
  }
}
@media (max-width: 576px) {
  section.what_we_doing .boxes_grid .box .detail svg {
    display: none;
  }
}
section.what_is_aduket {
  overflow: hidden;
  background-color: white;
  padding: 95px 0;
}
section.what_is_aduket .images {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 120px;
}
section.what_is_aduket .images img:nth-child(3n+1) {
  height: 800px;
}
section.what_is_aduket .images img:nth-child(2n+0) {
  height: 550px;
}
section.what_is_aduket .content {
  color: #111111;
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
}
section.what_is_aduket .content h2 {
  font-weight: 300;
  font-size: 96px;
  padding-bottom: 50px;
}
section.what_is_aduket .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  section.what_is_aduket .images {
    margin-bottom: 36px;
  }
  section.what_is_aduket .images img:nth-child(odd) {
    height: 320px;
  }
  section.what_is_aduket .images img:nth-child(even) {
    height: 200px;
  }
  section.what_is_aduket .content h2 {
    font-size: 36px;
    padding-bottom: 36px;
  }
  section.what_is_aduket .content p {
    font-size: 16px;
  }
}
footer.site_foot {
  background-color: #111111;
  color: white;
}
footer.site_foot .foot_top {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid rgba(152, 152, 152, 0.2509803922);
}
footer.site_foot .foot_top .left_col {
  width: 50%;
}
footer.site_foot .foot_top .left_col h2 {
  font-weight: 300;
  font-size: 96px;
  display: block;
  color: currentColor;
  padding-bottom: 60px;
  padding-top: 100px;
}
footer.site_foot .foot_top .left_col a {
  font-weight: 400;
  font-size: 36px;
  text-decoration: underline;
  display: block;
  color: currentColor;
}
footer.site_foot .foot_top .right_col {
  width: 50%;
}
footer.site_foot .foot_top .right_col p {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: currentColor;
  display: block;
}
footer.site_foot .foot_top .right_col p.top_text {
  padding-bottom: 130px;
}
footer.site_foot .foot_top .right_col .contact_links {
  display: flex;
  align-items: center;
  gap: 50px;
}
footer.site_foot .foot_top .right_col .contact_links {
  margin-bottom: 40px;
}
footer.site_foot .foot_top .right_col .contact_links li a {
  font-weight: 400;
  font-size: 32px;
  color: currentColor;
  text-decoration: underline;
}
footer.site_foot .foot_top .right_col .adress {
  display: flex;
  align-items: center;
  gap: 25px;
}
footer.site_foot .foot_top .right_col .adress p.text {
  max-width: 330px;
}
footer.site_foot .foot_top .right_col .adress .go_btn {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 300;
  font-size: 24px;
  color: currentColor;
}
footer.site_foot .foot_top .right_col .adress .go_btn svg {
  width: 80px;
}
footer.site_foot .foot_top .right_col .adress .go_btn svg path {
  fill: currentColor;
}
footer.site_foot .foot_main {
  padding: 100px 0 90px;
  width: 100%;
}
footer.site_foot .foot_main ul.menu_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
footer.site_foot .foot_main ul.menu_grid li.menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer.site_foot .foot_main ul.menu_grid li.menu h4 {
  color: currentColor;
  font-weight: 800;
  font-size: 36px;
  padding-bottom: 25px;
}
footer.site_foot .foot_main ul.menu_grid li.menu ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer.site_foot .foot_main ul.menu_grid li.menu ul li a {
  font-weight: 300;
  font-size: 36px;
  color: currentColor;
  padding: 12px 0;
  display: block;
}
footer.site_foot .foot_main ul.menu_grid li.menu ul li a:hover {
  text-decoration: underline;
}
footer.site_foot .foot_main ul.social_media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  gap: 35px;
}
footer.site_foot .foot_main ul.social_media li a {
  color: currentColor;
}
footer.site_foot .foot_main ul.social_media li a svg {
  width: 24px;
}
footer.site_foot .foot_main ul.social_media li a svg path {
  fill: currentColor;
}

@media (max-width: 1200px) {
  footer.site_foot .foot_top {
    flex-direction: column;
    padding: 80px 0 50px;
  }
  footer.site_foot .foot_top .left_col,
footer.site_foot .foot_top .right_col {
    width: 100%;
  }
  footer.site_foot .foot_top .left_col {
    margin-bottom: 34px;
  }
  footer.site_foot .foot_top .left_col a {
    font-size: 24px;
  }
  footer.site_foot .foot_top .left_col h2 {
    padding-top: 0;
  }
  footer.site_foot .foot_top .right_col .contact_links li a {
    font-size: 24px;
  }
  footer.site_foot .foot_top .right_col p.top_text {
    display: none;
  }
  footer.site_foot .foot_main {
    padding: 40px 0;
  }
  footer.site_foot .foot_main ul.menu_grid {
    display: flex;
    flex-wrap: wrap;
  }
  footer.site_foot .foot_main ul.menu_grid li.menu {
    width: 50%;
  }
  footer.site_foot .foot_main ul.menu_grid li.menu h4 {
    font-size: 24px;
  }
  footer.site_foot .foot_main ul.menu_grid li.menu ul li a {
    font-size: 16px;
  }
  footer.site_foot .foot_main ul.menu_grid li.menu:first-child {
    margin-right: 1px;
    margin-bottom: 40px;
  }
  footer.site_foot .foot_main ul.menu_grid li.menu:last-child {
    display: none;
  }
  footer.site_foot .foot_main ul.social_media {
    margin-top: 74px;
  }
}
@media (max-width: 768px) {
  footer.site_foot .foot_top .left_col h2 {
    font-size: 36px;
    padding-bottom: 17px;
  }
  footer.site_foot .foot_top .right_col .contact_links,
footer.site_foot .foot_top .right_col .adress {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page_head1 {
  color: white;
  background-color: #111111;
  margin-bottom: 0;
  z-index: 1;
  height: 780px;
  display: flex;
  align-items: flex-start;
}
.page_head1 .wrapper {
  flex-direction: column;
}
.page_head1 img {
  height: 200px;
  width: auto;
  display: block;
  margin: -70px auto -20px;
}
.page_head1.contact_head img {
  margin-bottom: 15px;
}
.page_head1.contact_head h5 {
  text-align: center;
}
.page_head1.contact_head p {
  text-align: center;
  line-height: 0.7;
  margin-bottom: 10px;
}
.page_head1.contact_head .contact_form {
  max-width: 1200px;
  width: 100%;
  margin: 70px auto 0;
}
.page_head1.contact_head .contact_form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  column-gap: 45px;
}
.page_head1.contact_head .contact_form form .form_element input,
.page_head1.contact_head .contact_form form .form_element textarea {
  height: 60px;
  background-color: unset;
  color: white;
  border: unset;
  border-bottom: 1px solid white;
  width: 100%;
  font-size: 24px;
}
.page_head1.contact_head .contact_form form .form_element input::placeholder,
.page_head1.contact_head .contact_form form .form_element textarea::placeholder {
  color: white;
  line-height: 1;
}
.page_head1.contact_head .contact_form form .form_element input:autofill, .page_head1.contact_head .contact_form form .form_element input:-webkit-autofill, .page_head1.contact_head .contact_form form .form_element input:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px #282828 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.page_head1.contact_head .contact_form form .form_element textarea {
  min-height: 60px;
  height: fit-content;
  background-color: unset;
  color: white;
  border: unset;
  border-bottom: 1px solid white;
  width: 100%;
  padding: 0;
}
.page_head1.contact_head .contact_form form .form_element textarea::placeholder {
  color: white;
  line-height: 1;
}
.page_head1.contact_head .contact_form form .form_element:first-child, .page_head1.contact_head .contact_form form .form_element:nth-child(2), .page_head1.contact_head .contact_form form .form_element:nth-child(3) {
  width: calc(33.333333% - 30px);
  margin-bottom: 85px;
}
.page_head1.contact_head .contact_form form .form_element:nth-child(5) {
  width: 100%;
  margin-bottom: 72px;
}
.page_head1.contact_head .contact_form form button.send_btn {
  display: block;
  background-color: unset;
  border: unset;
  cursor: pointer;
}
.page_head1.contact_head .contact_form form button.send_btn span {
  text-decoration: underline;
  color: white;
  font-weight: 900;
  font-size: 36px;
}

@media (max-width: 1200px) {
  .page_head1 svg {
    height: 130px;
  }
}
@media (max-width: 991px) {
  .page_head1 {
    height: 660px;
  }
  .page_head1 svg {
    height: 100px;
    margin-top: -25px;
  }
  .page_head1.contact_head {
    height: 700px;
  }
  .page_head1.contact_head .contact_form form .form_element {
    margin-bottom: 40px !important;
  }
  .page_head1.contact_head .contact_form form .form_element:first-child, .page_head1.contact_head .contact_form form .form_element:nth-child(3) {
    width: 100%;
  }
  .page_head1.contact_head .contact_form form .form_element:nth-child(4) {
    width: 100%;
  }
  .page_head1.contact_head .contact_form form .form_element:nth-child(5) {
    width: 100%;
  }
  .contact_info {
    margin-top: 250px;
  }
}
@media (max-width: 768px) {
  .page_head1 {
    margin-top: 20px;
    padding-bottom: 440px;
    height: 600px;
  }
  .page_head1 svg {
    display: none;
  }
  .page_head1.contact_head h5 {
    text-align: left;
  }
  .page_head1.contact_head p {
    text-align: left;
    line-height: 1.2;
  }
  .page_head1.contact_head p br {
    display: none;
  }
  .page_head1.contact_head .contact_form form .form_element:first-child, .page_head1.contact_head .contact_form form .form_element:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .page_head1 {
    margin-top: 20px;
    padding-bottom: 440px;
    height: 640px;
  }
  .page_head1 p {
    font-size: 20px;
  }
}
.page_sec {
  padding-top: 0 !important;
}
.page_sec .top_sec {
  margin-top: -380px;
}
.page_sec.what_we_doing {
  background-color: white;
}
.page_sec.what_we_doing .image {
  width: 100%;
  margin-top: -140px;
}
.page_sec.what_we_doing .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  aspect-ratio: 6/2;
}
.page_sec.what_we_doing .boxes_grid .box h2.title {
  color: #111111;
}
.page_sec.what_we_doing .boxes_grid .box .detail p {
  color: #111111;
}
.page_sec.main_blog .blogs_grid {
  margin-top: -410px;
}
.page_sec.main_blog .blogs_grid li.article .inner {
  border: unset;
}
.page_sec.main_blog .blogs_grid li.article .detail {
  border: 1px solid #C6C6C6;
  border-top: unset;
  border-radius: 0 0 15px 15px;
}
.page_sec.contact_info .google_map {
  margin-top: -90px;
}

@media (max-width: 1200px) {
  .page_sec.what_we_doing .image {
    margin-top: -100px;
  }
  .page_sec.main_blog {
    overflow: visible;
    margin-top: 200px;
  }
  .page_sec.main_blog .blogs_grid {
    margin-top: -360px;
  }
  .page_sec.main_blog .blogs_grid li.article {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .page_sec.what_we_doing .image {
    margin-top: -100px;
  }
  .page_sec.what_we_doing .image img {
    aspect-ratio: 6/3;
  }
}
@media (max-width: 576px) {
  .page_sec.main_blog .blogs_grid {
    margin-top: -415px;
  }
}
.about_text {
  background-color: white;
  overflow: hidden;
  padding-bottom: 120px;
}
.about_text .wrapper {
  align-items: center;
  position: relative;
}
.about_text .image {
  width: 40%;
}
.about_text .image img {
  width: 100%;
  border-radius: 15px;
}
.about_text .content {
  width: 60%;
  max-width: 800px;
  margin-left: auto;
  padding-right: 75px;
  color: #111111;
}
.about_text .content h2 {
  max-width: 480px;
  margin-right: auto;
  font-size: 36px;
  margin-bottom: 40px;
}
.about_text .content p {
  font-size: 24px;
  line-height: 1.4;
}
.about_text .content svg {
  position: absolute;
  right: -40px;
  top: 0;
}

@media (max-width: 1200px) {
  section.about_text .content {
    padding-right: 0;
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  section.about_text .content,
section.about_text .image {
    width: 100%;
  }
  section.about_text .content {
    padding-left: 0;
    padding-top: 40px;
  }
  section.about_text .content svg {
    right: -80px;
    top: unset;
    bottom: 0;
    width: 150px;
  }
  section.about_text .content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  section.about_text .content p {
    font-size: 18px;
  }
}
section.blog_detail_head {
  position: relative;
  margin-top: -152px;
  background-image: url(../images/article_image.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
section.blog_detail_head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.5;
}
section.blog_detail_head .wrapper {
  flex-direction: column;
  height: 100vh;
  min-height: 700px;
  justify-content: center;
  z-index: 1;
}
section.blog_detail_head .content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.blog_detail_head .content h1 {
  display: block;
  max-width: 1150px;
  margin: 0 auto;
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.4;
}
section.blog_detail_head .content p {
  display: block;
  max-width: 1150px;
  margin: 0 auto;
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
}
section.blog_detail_head .content .bottom_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  bottom: 70px;
}

@media (max-width: 991px) {
  section.blog_detail_head .content p {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  section.blog_detail_head .content p {
    font-size: 18px;
  }
  section.blog_detail_head .wrapper {
    min-height: unset;
    max-width: 660px;
  }
}
section.blog_content {
  background-color: white;
  padding: 90px 0;
  overflow: hidden;
}
section.blog_content .breadcrumb {
  list-style-type: none;
  padding: 0;
}
section.blog_content li {
  display: inline-block;
  position: relative;
}
section.blog_content li:last-child a {
  cursor: default;
}
section.blog_content li:last-child::before, section.blog_content li:last-child::after {
  background: #ffffc0;
}
section.blog_content li:not(:last-child):hover::before, section.blog_content li:not(:last-child):hover::after {
  background: lightsalmon;
}
section.blog_content li::before, section.blog_content li::after {
  content: "";
  position: absolute;
  left: 0;
  height: 50%;
  width: 100%;
  background: white;
  border-left: 2px solid #666;
  border-right: 2px solid #666;
  z-index: -2;
}
section.blog_content li::before {
  top: -2px;
  transform: skew(30deg);
  border-top: 2px solid #666;
}
section.blog_content li::after {
  bottom: -2px;
  transform: skew(-30deg);
  border-bottom: 2px solid #666;
}
section.blog_content a {
  display: inline-block;
  position: relative;
  line-height: 2.5;
  padding: 0 20px;
  color: #666;
  text-decoration: none;
}
section.blog_content li:first-child {
  background-color: white;
  border-left: 2px solid #666;
  left: -5px;
  box-sizing: content-box;
}
section.blog_content li:first-child:hover {
  background-color: lightsalmon;
}
section.blog_content li:first-child::before, section.blog_content li:first-child::after {
  left: 5px;
}
section.blog_content p {
  font-size: 24px;
  line-height: 1.4;
}
section.blog_content p.content_text {
  margin-bottom: 60px;
  padding: 0 30px;
}
section.blog_content h3 {
  font-weight: 400;
  font-size: 40px;
  padding-bottom: 45px;
  padding-top: 45px;
}
section.blog_content h4 {
  font-weight: 400;
  font-size: 30px;
  padding-bottom: 35px;
  padding-top: 35px;
}
section.blog_content ul {
  font-size: 24px;
  line-height: 1.4;
  padding: 45px;
}
section.blog_content .about_text {
  margin-bottom: 80px;
  padding-bottom: 0;
  overflow: visible;
}
section.blog_content .about_text .content {
  padding-left: 40px;
  max-width: 700px;
  margin-top: 20px;
}
section.blog_content .about_text .image img {
  aspect-ratio: 2/3;
}
section.blog_content img {
  max-width: 1000px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
section.blog_content .accordion {
  font-family: "Poppins", sans-serif;
}
section.blog_content .accordion .accordion-item {
  border-bottom: 1px solid #DADADA;
}
section.blog_content .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #111111;
}
section.blog_content .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #111111;
  font-size: 1.15rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: none;
  background: none;
  outline: none;
}
section.blog_content .accordion button:hover, section.blog_content .accordion button:focus {
  cursor: pointer;
  color: #111111;
}
section.blog_content .accordion button:hover::after, section.blog_content .accordion button:focus::after {
  cursor: pointer;
  color: #111111;
  border: 1px solid #111111;
}
section.blog_content .accordion button .accordion-title {
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 45px;
}
section.blog_content .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
section.blog_content .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
section.blog_content .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
section.blog_content .accordion button[aria-expanded=true] {
  color: #111111;
}
section.blog_content .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
section.blog_content .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
section.blog_content .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
section.blog_content .accordion .accordion-content p {
  font-size: 22px;
  font-weight: 300;
  margin: 2em 0;
}

@media (min-width: 1400px) {
  section.blog_content .wrapper {
    padding: 0 100px;
  }
}
@media (max-width: 1200px) {
  section.blog_content .about_text .image,
section.blog_content .about_text .content {
    width: 100%;
  }
  section.blog_content .about_text .content {
    max-width: 100%;
    padding: 0;
  }
  section.blog_content .about_text .content svg {
    bottom: 0;
    top: unset;
    width: 120px;
  }
  section.blog_content .about_text .image img {
    aspect-ratio: 1/1;
    max-width: 800px;
    margin: 0 0 auto;
  }
  section.blog_content p.content_text {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  section.blog_content .about_text .content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  section.blog_content .about_text .content p {
    font-size: 18px;
  }
  section.blog_content p {
    font-size: 18px;
  }
}
section.contact_info {
  background-color: white;
  padding-bottom: 80px;
}
section.contact_info .wrapper {
  width: 100%;
}
section.contact_info .google_map {
  padding: 14% 0;
  display: flex;
  justify-content: center;
  width: 100%;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}
section.contact_info .google_map a {
  font-weight: 800;
  font-size: 36px;
  color: #111111;
  text-decoration: underline;
}
section.contact_info ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-bottom: 70px;
}
section.contact_info ul.contact_links {
  gap: 50px;
  margin-top: 70px;
}
section.contact_info ul.contact_links li a {
  font-weight: 800;
  font-size: 36px;
  color: #111111;
}
section.contact_info ul.social_media {
  gap: 36px;
}
section.contact_info ul.social_media li a svg path {
  fill: #111111;
}
section.contact_info img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section.contact_info .google_map a.go_adress {
    font-size: 24px;
  }
  section.contact_info ul.contact_links {
    gap: 24px;
  }
  section.contact_info ul.contact_links li a {
    font-size: 28px;
  }
}
section.references {
  padding: 200px 0 40px;
}
section.references .page_head {
  color: white;
}
section.references .references_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 100px;
  column-gap: 40px;
  width: 100%;
}
section.references .references_grid li {
  text-align: center;
  opacity: 0.5;
  transition: 0.1s ease;
}
section.references .references_grid li a {
  pointer-events: none;
}
section.references .references_grid li a img {
  aspect-ratio: 1/1;
  width: 201px;
}
section.references .references_grid li:hover {
  opacity: 1;
}

@media (max-width: 1200px) {
  section.references .references_grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 100px;
    column-gap: 40px;
  }
  section.references .references_grid li a img {
    aspect-ratio: 1/1;
    width: 201px;
  }
}
@media (max-width: 991px) {
  section.references {
    padding: 50px 0;
  }
  section.references .references_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  section.references .references_grid li a img {
    width: 100%;
  }
}
section.project_detail_head {
  position: relative;
  margin-top: -152px;
  background-image: url(../images/qfxO6h2KkvPfYaYM6zox.jpg);
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.project_detail_head .wrapper {
  flex-direction: column;
  height: 135vh;
  min-height: 700px;
  justify-content: center;
  z-index: 1;
}
section.project_detail_head .content {
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  color: white;
}
section.project_detail_head .content h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}
section.project_detail_head .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
section.project_detail_head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.5;
}

@media (max-width: 991px) {
  section.project_detail_head .content h3 {
    font-size: 24px;
  }
  section.project_detail_head .content p {
    font-size: 16px;
  }
  section.project_detail_head .wrapper {
    min-height: unset;
    max-height: 600px;
  }
}
@media (max-width: 768px) {
  section.project_detail_head {
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-position: center;
    background-attachment: scroll;
  }
  section.project_detail_head .wrapper {
    height: auto;
  }
}
section.project_detail_content {
  background-color: white;
  padding: 90px 0;
}
section.project_detail_content .video_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 27px;
  margin-bottom: 90px;
}
section.project_detail_content .video_grid video {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 15px;
  background-color: rgb(202, 202, 202);
}
section.project_detail_content .content {
  display: flex;
  justify-content: flex-end;
  color: #111111;
  width: 100%;
  margin-bottom: 90px;
}
section.project_detail_content .content h2 {
  line-height: 1.7;
  font-size: 39px;
  margin: 30px 51px;
}
section.project_detail_content .content h3 {
  max-width: 473px;
  margin-left: auto;
  margin-right: 45px;
  font-weight: 800;
  font-size: 36px;
}
section.project_detail_content .content p {
  max-width: 800px;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
}
section.project_detail_content .image img {
  width: 100%;
  aspect-ratio: 5/2;
  object-fit: cover;
  border-radius: 15px;
}
section.project_detail_content ul.images_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 80px;
}
section.project_detail_content ul.images_grid li img {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  section.project_detail_content .video_grid {
    grid-template-columns: 1fr 1fr;
  }
  section.project_detail_content .content p {
    max-width: 600px;
    width: 100%;
  }
  section.project_detail_content .content h3 {
    max-width: 350px;
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  section.project_detail_content .video_grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
  }
  section.project_detail_content .content {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  section.project_detail_content .content p,
section.project_detail_content .content h3 {
    max-width: unset;
    width: 100%;
    margin: 0;
  }
  section.project_detail_content .content h3 {
    margin-bottom: 15px;
    font-size: 24px;
  }
  section.project_detail_content .content p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  section.project_detail_content .video_grid {
    grid-template-columns: 1fr;
  }
}
section.project_image_gallery {
  padding: 90px 0;
}
section.project_image_gallery .head {
  color: white;
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
}
section.project_image_gallery .head h2 {
  display: block;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 30px;
}
section.project_image_gallery .head p {
  font-weight: 400;
  font-size: 24px;
  max-width: 1050px;
  margin: 0 auto;
  line-height: 1.4;
}
section.project_image_gallery .images_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
section.project_image_gallery .images_grid li {
  width: calc(33.333% - 24px);
}
section.project_image_gallery .images_grid li img {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 15px;
}

@media (max-width: 991px) {
  section.project_image_gallery .head h2 {
    font-size: 24px;
  }
  section.project_image_gallery .head p {
    font-size: 18px;
  }
  section.project_image_gallery .images_grid {
    justify-content: center;
  }
  section.project_image_gallery .images_grid li {
    width: calc(50% - 12.6315789474px);
  }
}
.project_detail_page footer.site_foot {
  color: #111111;
  background-color: white;
}

section.prev_next_project {
  background-color: white;
  padding: 90px 0 0;
}
section.prev_next_project .wrapper {
  justify-content: center;
  gap: 100px;
}
section.prev_next_project .wrapper a.btn {
  display: flex;
  flex-direction: column;
}
section.prev_next_project .wrapper a.btn span {
  display: block;
  color: #111111;
  font-weight: 400;
  font-size: 24px;
}
section.prev_next_project .wrapper a.btn svg {
  width: 100%;
  max-width: 200px;
  min-width: 120px;
  transition: 0.2s ease;
}
section.prev_next_project .wrapper a.prev_btn {
  align-items: flex-end;
}
section.prev_next_project .wrapper a.prev_btn:hover svg {
  transform: translateX(-10px);
}
section.prev_next_project .wrapper a.next_btn {
  align-items: flex-start;
}
section.prev_next_project .wrapper a.next_btn:hover svg {
  transform: translateX(10px);
}

section.corporate_content {
  background-color: white;
}
section.corporate_content .image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}
section.corporate_content .image img {
  width: 100%;
}
section.corporate_content .image.image1 {
  margin-top: -240px;
}
section.corporate_content .image.image1 img {
  max-width: 1023px;
}
section.corporate_content .image.image2 img {
  max-width: 1240px;
}
section.corporate_content .image.image3 img {
  max-width: 963px;
}
section.corporate_content .image.image4 img {
  max-width: 877px;
}
section.corporate_content .content {
  max-width: 790px;
  margin: 0 auto 90px;
  text-align: center;
}
section.corporate_content .content h3 {
  padding: 0 100px;
  padding-bottom: 25px;
  font-weight: 800;
  font-size: 36px;
  color: #111111;
}
section.corporate_content .content p {
  font-weight: 400;
  font-size: 24px;
  color: #111111;
}
section.corporate_content p.p1 {
  color: #111111;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
section.corporate_content p.p1.p1 {
  width: 100%;
  max-width: 80%;
  margin: 0 auto 60px;
}

@media (max-width: 768px) {
  section.corporate_content .image.image1 {
    margin-top: -140px;
  }
  section.corporate_content .content h3 {
    padding: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  section.corporate_content .image.image1 {
    margin-top: -170px;
  }
  section.corporate_content .content h3 {
    font-size: 24px;
  }
  section.corporate_content .content p {
    font-size: 18px;
  }
  section.corporate_content p.p1.p1 {
    margin: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
