@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
  position: relative;
  font-family: "Poppins", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px 0;
}
#header.sticky {
  top: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
#header.hidden {
  transform: translateY(-100%);
}
#header .logo {
  filter: brightness(0) invert(1);
  width: 320px;
  height: 76px;
}
#header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
#header .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header .lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
#header .lang-switch span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
#header .lang-switch a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
#header .lang-switch a:hover, #header .lang-switch a.active {
  color: #c99790;
}

#menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
#menu .container {
  height: 100%;
  display: flex;
  align-items: center;
}
#menu .container ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#menu .container ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
}
#menu .container ul li:hover a, #menu .container ul li.active a {
  color: #c99790;
}
#menu.active {
  opacity: 1;
  visibility: visible;
backdrop-filter: blur(5px);
}

#hamburger-icon {
  width: 40px;
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
#hamburger-icon:hover {
  transform: scale(0.9);
}
#hamburger-icon .line {
  width: 40px;
  background: #fff;
  margin: 6px 0;
  height: 4px;
  display: block;
  transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
#hamburger-icon .line-1 {
  margin-top: 0;
}
#hamburger-icon.active .line-1 {
  transform: translateY(10px) rotate(45deg);
  transform-origin: center;
}
#hamburger-icon.active .line-2 {
  opacity: 0;
}
#hamburger-icon.active .line-3 {
  transform: translateY(-10px) rotate(-45deg);
  transform-origin: center;
}

#home-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#home-slider .swiper {
  width: 100%;
  height: 100%;
}
#home-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-slider .swiper-pagination {
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}
#home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 4px;
  border-radius: 100px;
  background: #fff;
  opacity: 1;
  transition: 200ms all;
}
#home-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #c99790;
  width: 100px;
}
#home-slider .slider-button {
  z-index: 10;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home-slider .slider-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  background: #000;
  border: 1px solid #fff;
  padding: 10px 30px;
  border-radius: 100px;
  transition: 200ms all;
}
#home-slider .slider-button a:hover {
  background: #6d5855;
}
#home-slider .slider-button a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

#page {
  padding: 170px 0 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
#page .container {
  position: relative;
  z-index: 1;
}
#page h1 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

#about {
  padding: 100px 0;
}
#about .video-wrapper iframe {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#about .content-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #6c6c6c;
  line-height: 1.6;
}
#about .content-wrapper h2 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-title {
  margin-bottom: 60px;
}
.page-title h2 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

#our-values .item {
  padding: 40px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: 200ms all;
}
#our-values .item:hover {
  transform: translateY(-10px);
}
#our-values .item .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
#our-values .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#our-values .item h3 {
  font-size: 21px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  margin-bottom: 6px;
}
#our-values .item p {
  font-size: 16px;
  font-weight: 400;
  color: #6c6c6c;
  line-height: 1.6;
}

#gallery {
  margin-top: 100px;
}
#gallery .bg-page-title {
  position: relative;
}
#gallery .bg-page-title span {
  display: block;
  width: 100%;
  text-align: center;
  color: #000;
  background-color: transparent;
  padding: 6px 18px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 800;
  font-size: 72px;
  pointer-events: none;
  user-select: none;
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.2);
}
#gallery .bg-page-title .title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#gallery .bg-page-title .title h2 {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}

.gallery-item {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 200ms all;
}

#projects {
  margin: 100px 0;
}
#projects .item {
  position: relative;
  display: block;
  overflow: hidden;
}
#projects .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  width: 100%;
  height: 100%;
}
#projects .item:hover .img img {
  transform: scale(1.05);
}
#projects .item:hover .content h3 {
  color: #c99790;
}
#projects .item:hover .readmore img {
  transform: translateX(10px);
}
#projects .item .img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
#projects .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 200ms all;
}
#projects .item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
}
#projects .item .content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  transition: 200ms all;
}
#projects .item .readmore {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-decoration: none;
  z-index: 2;
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 100%;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
#projects .item .readmore img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: 200ms all;
}

#contact {
  padding: 100px 0;
}
#contact .row {
  margin-bottom: 60px;
}
#contact .contact-info .contact-image {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}
#contact .contact-info .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contact .contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #032532;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
#contact .contact-info > p {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #696969;
  line-height: 1.875;
  margin-bottom: 40px;
}
#contact .contact-info .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
#contact .contact-info .contact-details .contact-item .contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  margin-top: 5px;
}
#contact .contact-info .contact-details .contact-item .contact-icon i {
  font-size: 20px;
  color: #000;
}
#contact .contact-info .contact-details .contact-item .contact-text {
  flex: 1;
}
#contact .contact-info .contact-details .contact-item .contact-text h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #032532;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
#contact .contact-info .contact-details .contact-item .contact-text p {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #696969;
  line-height: 1.6875;
  margin: 0;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link i {
  font-size: 12px;
  color: #696969;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.facebook {
  background-color: #000;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.facebook i {
  color: #fff;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.twitter, #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.linkedin, #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.instagram {
  border: 1px solid rgba(2, 6, 38, 0.1);
  background-color: transparent;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.twitter:hover, #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.linkedin:hover, #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.instagram:hover {
  background-color: #000;
}
#contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.twitter:hover i, #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.linkedin:hover i, #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link.instagram:hover i {
  color: #fff;
}
#contact .contact-form-wrapper {
  background-color: #eee;
  padding: 50px;
  border-radius: 8px;
  height: 100%;
}
#contact .contact-form-wrapper .form-header {
  margin-bottom: 40px;
}
#contact .contact-form-wrapper .form-header h3 {
  font-family: "Inter", sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #032532;
  margin-bottom: 15px;
  text-transform: uppercase;
}
#contact .contact-form-wrapper .form-header p {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4f545a;
  line-height: 2.0625;
  margin: 0;
}
#contact .contact-form-wrapper .contact-form .form-group {
  margin-bottom: 25px;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper {
  position: relative;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #032532;
  font-size: 16px;
  z-index: 2;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper input,
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: none;
  border-bottom: 1px solid #d4dce0;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #5e5f63;
  outline: none;
  transition: all 0.3s ease;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper input::placeholder,
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper textarea::placeholder {
  color: #5e5f63;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper input:focus,
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper textarea:focus {
  border-bottom-color: #000;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 20px;
}
#contact .contact-form-wrapper .contact-form .form-group .input-wrapper.textarea-wrapper i {
  top: 20px;
  transform: none;
}
#contact .contact-form-wrapper .contact-form .submit-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 20px 30px;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
#contact .contact-form-wrapper .contact-form .submit-btn i {
  font-size: 18px;
}
#contact .contact-form-wrapper .contact-form .submit-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#contact .map-area h4 {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
#contact .map-area iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

#project-detail img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#project-detail .content {
  padding: 40px 0;
}
#project-detail .content p {
  font-size: 16px;
  font-weight: 400;
  color: #6c6c6c;
  text-align: center;
}
#project-detail .content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  background: #000;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: 200ms all;
}
#project-detail .content img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
#project-detail .content a:hover {
  background: #c99790;
}

#projects-detail-banner {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  margin-bottom: 50px;
}
#projects-detail-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#projects-detail-banner p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

#projects-location {
  padding: 40px 0;
  margin-bottom: 50px;
}
#projects-location .image {
  width: 100%;
  position: relative;
  padding-right: 100px;
}
#projects-location .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#projects-location .image .big-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#projects-location .image .small-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  position: absolute;
  bottom: -50px;
  right: 50px;
}
#projects-location p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.tab {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 40px;
  margin-top: 100px;
}

.tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.tab button:hover,
.tab button.active {
  border-color: #000;
}

.tabcontent {
  display: none;
}
.tabcontent img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

#project-technical {
  margin: 100px 0;
}
#project-technical .technical-content {
  margin-bottom: 40px;
}
#project-technical .technical-content h3 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
}
#project-technical .technical-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  min-height: 180px;
}
#project-technical .technical-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #666;
  line-height: 1.6;
}
#project-technical .technical-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

#footer {
  background-color: #000;
  padding: 60px 0;
  margin-top: 80px;
}
#footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
#footer .footer-copyright {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
#footer .footer-copyright p {
  color: #999;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}
#footer .footer-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}
#footer .footer-logo a:hover {
  transform: scale(1.05);
}
#footer .footer-logo a img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
#footer .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer .footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}
#footer .footer-menu ul li a:hover {
  color: #c99790;
  transform: translateY(-2px);
}
#footer .footer-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c99790;
  transition: width 0.3s ease;
}
#footer .footer-menu ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  #footer {
    padding: 40px 0;
    margin-top: 60px;
  }
  #footer .footer-content {
    gap: 30px;
  }
  #footer .footer-logo a img {
    height: 50px;
  }
  #footer .footer-menu ul {
    gap: 25px;
    flex-direction: column;
  }
  #footer .footer-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #footer {
    padding: 30px 0;
    margin-top: 40px;
  }
  #footer .footer-content {
    gap: 25px;
  }
  #footer .footer-logo a img {
    height: 45px;
  }
  #footer .footer-menu ul {
    gap: 20px;
  }
  #footer .footer-menu ul li a {
    font-size: 13px;
  }
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #c99790;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 151, 144, 0.3);
}
.scroll-to-top-btn svg {
  color: #fff;
  transition: transform 0.3s ease;
}
.scroll-to-top-btn:hover {
  background-color: #b8867b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 151, 144, 0.4);
}
.scroll-to-top-btn:hover svg {
  transform: translateY(-2px);
}
.scroll-to-top-btn:active {
  transform: translateY(0);
}
.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .scroll-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .scroll-to-top-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 1199.98px) {
  #contact .contact-form-wrapper {
    padding: 40px;
  }
  #contact .contact-form-wrapper .form-header h3 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  #contact {
    padding: 80px 0;
  }
  #contact .row {
    margin-bottom: 40px;
  }
  #contact .contact-info {
    margin-bottom: 50px;
  }
  #contact .contact-info h2 {
    font-size: 36px;
  }
  #contact .contact-info .contact-details .contact-item {
    margin-bottom: 25px;
  }
  #contact .contact-form-wrapper {
    padding: 30px;
  }
  #contact .contact-form-wrapper .form-header h3 {
    font-size: 28px;
  }
  #contact .map-area {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  #header {
    padding: 10px 0;
  }
  #header .logo {
    width: 200px;
  }
  #header .lang-switch {
    display: none;
  }
  #contact {
    padding: 60px 0;
  }
  #contact .contact-info h2 {
    font-size: 32px;
  }
  #contact .contact-info .contact-details .contact-item .contact-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
  }
  #contact .contact-info .contact-details .contact-item .contact-icon i {
    font-size: 16px;
  }
  #contact .contact-info .contact-details .contact-item .contact-text h4 {
    font-size: 16px;
  }
  #contact .contact-info .contact-details .contact-item .contact-text p {
    font-size: 14px;
  }
  #contact .contact-info .contact-details .contact-item .contact-text .social-links {
    gap: 10px;
  }
  #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link {
    width: 30px;
    height: 30px;
  }
  #contact .contact-info .contact-details .contact-item .contact-text .social-links .social-link i {
    font-size: 11px;
  }
  #contact .contact-form-wrapper {
    padding: 25px;
  }
  #contact .contact-form-wrapper .form-header {
    margin-bottom: 30px;
  }
  #contact .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
  #contact .contact-form-wrapper .form-header p {
    font-size: 14px;
  }
  #contact .contact-form-wrapper .contact-form .form-group {
    margin-bottom: 20px;
  }
  #contact .contact-form-wrapper .contact-form .form-group .input-wrapper input,
  #contact .contact-form-wrapper .contact-form .form-group .input-wrapper textarea {
    padding: 12px 12px 12px 40px;
    font-size: 16px;
  }
  #contact .contact-form-wrapper .contact-form .form-group .input-wrapper i {
    left: 12px;
    font-size: 14px;
  }
  #contact .contact-form-wrapper .contact-form .submit-btn {
    padding: 15px 25px;
    font-size: 14px;
  }
  #contact .contact-form-wrapper .contact-form .submit-btn i {
    font-size: 16px;
  }
  #contact .map-area .map-placeholder {
    height: 250px;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .bg-page-title span {
    font-size: 40px !important;
  }
  #contact {
    padding: 50px 0;
  }
  #contact .contact-info h2 {
    font-size: 28px;
  }
  #contact .contact-info .contact-image {
    height: 150px;
    margin-bottom: 20px;
  }
  #contact .contact-form-wrapper {
    padding: 20px;
  }
  #contact .contact-form-wrapper .form-header h3 {
    font-size: 20px;
  }
  #contact .map-area .map-placeholder {
    height: 200px;
  }
}