@charset "UTF-8";
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, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  white-space: normal;
}

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

body {
  line-height: 1;
}

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;
}

* {
  box-sizing: border-box;
}

button, a {
  outline: 0;
  cursor: pointer;
  appearance: none;
  font: inherit;
}

img {
  max-width: 100%;
}

a {
  color: #111;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

body {
  font-family: "Poppins", sans-serif;
  color: #111;
  margin: 0;
  padding: 0;
  background-color: #fff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.text-section__content {
  column-count: 2;
  column-gap: 40px;
}
.text-section__content.single {
  column-count: 1;
}
.text-section__content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 24px;
  break-inside: avoid;
}
.text-section__content p b {
  font-weight: 600;
}
.text-section__content ul {
  /* padding-left: 15px; */
  list-style: none;
  margin-top: 20px;
}
.text-section__content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.text-section__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c1101a;
  font-size: 20px;
  line-height: 1;
  top: 3px;
}
@media (max-width: 768px) {
  .text-section {
    /* padding: 40px 0; */
  }
  .text-section__content {
    column-count: 1;
  }
}

.title {
  color: #c1101a;
  border-bottom: 1px solid #ebebeb;
  font-size: 20px;
}
.title.no-border {
  border: none;
}

.title-half {
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .title-half {
    width: 100%;
  }
}

.split-section {
  width: 100%;
  /* padding: 60px 0; */
}
.split-section__title {
  color: #c1101a;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 20px;
}
.split-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.split-section__image {
  flex: 1 1 45%;
}
.split-section__image img {
  width: 100%;
  height: auto;
  display: block;
}
.split-section__text {
  flex: 1 1 50%;
  font-size: 16px;
  line-height: 24px;
}
.split-section__text p {
  margin-bottom: 15px;
}
.split-section__text p b {
  font-weight: 600;
}
.split-section__text ul {
  /* padding-left: 15px; */
  list-style: none;
  margin-top: 20px;
}
.split-section__text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.split-section__text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c1101a;
  font-size: 20px;
  line-height: 1;
  top: 3px;
}
@media (max-width: 768px) {
  .split-section__content {
    flex-direction: column;
    gap: 0;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

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

.mt-60 {
  margin-top: 60px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.visible {
  display: block !important;
}

.not-visible {
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  will-change: transform;
  transform: translateZ(0);
}
.header__content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.header .logo {
  height: 55px;
}
.header .header-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
}
.header .header-icons .contact .circle {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header .header-icons .contact .circle img {
  width: 20px;
  height: 20px;
}
.header .header-icons .contact.phone {
  position: relative;
}
.header .header-icons .contact.phone a {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.header .header-icons .contact.phone a .label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  background-color: #eee;
  color: #111;
  padding: 9px 40px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  z-index: 1;
}
.header .header-icons .contact.phone a:hover .label {
  transform: translateY(-50%) scaleX(1);
}
.header .header-icons .hamburger {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.header .header-icons .hamburger span {
  width: 20px;
  height: 2px;
  background: black;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.header .header-icons .hamburger.active span:first-child {
  transform: rotate(45deg);
  position: absolute;
  top: 14px;
}
.header .header-icons .hamburger.active span:last-child {
  transform: rotate(-45deg);
  position: absolute;
  top: 14px;
}

.content {
  padding: 20px;
  margin-top: 100vh;
  background: #f5f5f5;
}

.header__icon,
.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hamburger {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #111;
  transform: translateX(-50%);
  transform-origin: center;
  transition: all 0.3s ease;
}
.hamburger span:first-child {
  top: 10px;
}
.hamburger span:last-child {
  top: 20px;
}
.hamburger.active span:first-child {
  top: 14px;
  left: 25%;
  transform: rotate(45deg);
}
.hamburger.active span:last-child {
  top: 14px;
  left: 25%;
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #3A3C3F;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 90;
  padding: 80px 20px 20px;
  /* Ensure the nav container is vertically scrollable */
}
.menu.active {
  transform: translateX(0);
}
.menu nav {
  height: calc(100% - 100px); /* Take up the available space minus top padding */
  overflow-y: auto;
  padding-right: 10px;
  padding-bottom: 20px;
}
.menu nav ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.menu nav ul li {
  margin-bottom: 15px;
  position: relative;
  /* Chevron icon styles */
  /* Submenu toggle and chevron rotation */
}
.menu nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.menu nav ul li a:hover {
  color: #ccc;
}
.menu nav ul li a.active {
  color: #c4202a;
}
.menu nav ul li.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background-color: white;
  -webkit-mask: url("/assets/img/chevron_down.svg") no-repeat center;
  mask: url("/assets/img/chevron_down.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.3s ease, background-color 0.2s ease;
}
.menu nav ul li .submenu {
  display: none; /* Hide submenu by default */
  margin-top: 10px;
  list-style: none;
  padding-left: 20px;
}
.menu nav ul li .submenu li {
  border-bottom: 1px solid rgba(204, 204, 204, 0.1);
  padding: 8px 0;
  margin-bottom: 0px;
}
.menu nav ul li .submenu li a {
  font-size: 13px;
}
.menu nav ul li.has-submenu > a:hover::after {
  background-color: #ccc;
}
.menu nav ul li.has-submenu > a:active::after {
  background-color: #c4202a;
}
.menu nav ul li.open .submenu {
  display: block; /* Show submenu when parent is open */
}
.menu nav ul li.open > a::after {
  transform: rotate(180deg); /* Rotate chevron when submenu is open */
}

@media (max-width: 768px) {
  .menu {
    width: 220px;
  }
}
.footer {
  background: #2e3033;
  color: #fff;
  padding: 50px 0 15px 0;
  font-size: 16px;
  margin-top: 60px;
}
.footer a {
  color: #fff;
}
.footer .footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .footer__left {
  flex: 0 0 calc(45% - 20px);
  display: flex;
  margin-right: 20px;
}
.footer .footer__left .footer__brand {
  flex: 0 0 calc(45% - 50px);
  max-width: 100%;
  margin-right: 50px;
}
.footer .footer__left .footer__brand img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}
.footer .footer__left .footer__links {
  flex: 0 0 50%;
}
.footer .footer__right {
  width: 50%;
  display: flex;
}
.footer .footer__right .footer__office {
  flex: 0 0 calc(50% - 20px);
  margin-right: 20px;
}
.footer .footer__right .footer__newsletter {
  flex: 0 0 50%;
}
.footer .footer__links .footer__title,
.footer .footer__office .footer__title,
.footer .footer__newsletter .footer__title {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer .footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__links ul li {
  margin-bottom: 10px;
}
.footer .footer__links ul li a {
  color: #fff;
  text-decoration: none;
}
.footer .footer__links ul li a:hover {
  text-decoration: underline;
}
.footer .footer__newsletter form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer__newsletter form .newsletterWrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer__newsletter form .form-group {
  display: flex;
  flex-direction: column;
}
.footer .footer__newsletter form .form-group input[type=text],
.footer .footer__newsletter form .form-group input[type=checkbox] {
  padding: 15px;
  border: none;
  border-bottom: 1px solid #999;
  background: transparent;
  color: #fff;
  font-size: 16px;
}
.footer .footer__newsletter form .form-group label.error {
  color: #c1101a;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}
.footer .footer__newsletter form .checkbox-label {
  /* display: inline-flex;
  align-items: flex-start; // aligns text to top of checkbox
  gap: 8px; */
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.footer .footer__newsletter form .checkbox-label input[type=checkbox] {
  flex: 0 0 auto;
  margin-top: 3px;
}
.footer .footer__newsletter form .checkbox-label span {
  display: inline;
}
.footer .footer__newsletter form .checkbox-label a {
  color: #c1101a;
}
.footer .footer__newsletter form button {
  background: #c1101a;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 32px;
  cursor: pointer;
  align-self: flex-start;
  text-transform: uppercase;
}
.footer .footer__newsletter form button:hover {
  background: #a81f1f;
}
.footer .footer__bottom {
  margin-top: 15px;
  border-top: 1px solid #444;
  padding-top: 16px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer .footer__top,
  .footer .footer__left,
  .footer .footer__right {
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer__left,
  .footer .footer__right,
  .footer .footer__brand,
  .footer .footer__links,
  .footer .footer__office,
  .footer .footer__newsletter {
    width: 100%;
  }
}

.hero-wrapper {
  position: relative;
  height: 100vh;
  margin-bottom: 30px;
}
.hero-wrapper #hero {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-wrapper #hero .hero {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-wrapper #hero .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 60, 63, 0.7);
  z-index: 1;
}
.hero-wrapper #hero .hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
}
.hero-wrapper #hero .hero__content {
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 100%;
  color: white;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
  will-change: opacity;
  backface-visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  will-change: opacity, visibility; /* Hint browser for optimization */
}
.hero-wrapper #hero .hero__content.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Prevent interaction when hidden */
}
.hero-wrapper #hero .hero__content h1 {
  margin: 0 0 15px;
  font-size: 46px;
  line-height: 1.2;
}
.hero-wrapper #hero .hero__content .hero__text {
  line-height: 1.5;
  font-size: 18px;
  max-width: 100%;
}
.hero-wrapper #hero .hero__content.with-margin {
  bottom: 25%;
}
.hero-wrapper.hero-wrapper--short {
  height: 400px;
}
.hero-wrapper.hero-wrapper--short #hero {
  height: 400px;
}
.hero-wrapper.hero-wrapper--short #hero .hero {
  height: 400px;
}
.hero-wrapper.hero-wrapper--short #hero .hero__content {
  bottom: 30px;
}
.hero-wrapper.hero-wrapper--short #hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 60, 63, 0.7);
  z-index: 1;
}
.hero-wrapper .hero__landing {
  font-size: 60px;
}
.hero-wrapper .hero__landing-text p {
  font-size: 32px;
}
@media (max-width: 768px) {
  .hero-wrapper {
    height: 100vh;
  }
  .hero-wrapper #hero,
  .hero-wrapper .hero {
    height: 100%;
  }
  .hero-wrapper .hero__landing {
    font-size: 48px;
  }
  .hero-wrapper .hero__landing-text p {
    font-size: 24px;
  }
  .hero-wrapper #hero .hero__content {
    bottom: 20%;
  }
  .hero-wrapper #hero .hero__content h1 {
    font-size: 36px;
    line-height: 1.1;
  }
  .hero-wrapper.hero-wrapper--short {
    height: 400px;
  }
  .hero-wrapper.hero-wrapper--short #hero,
  .hero-wrapper.hero-wrapper--short .hero {
    height: 400px;
  }
  .hero-wrapper.hero-wrapper--short #hero .hero__content {
    bottom: 25px;
  }
}

.services {
  padding: 80px 0;
  background-color: #f5f5f5;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}
.services .service {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.services .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.services .service h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #111;
}
.services .service p {
  font-size: 14px;
  color: #666;
}

.team-section .team-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 100px;
}
.team-section .team-member {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  border-top: 1px solid #ebebeb;
  padding: 30px 0;
  width: calc(45% - 20px);
  position: relative;
}
.team-section .team-member__info {
  flex: 1;
}
.team-section .team-member__info .team-member__name {
  color: #c1101a;
  font-size: 20px;
  margin: 0 0 8px;
}
.team-section .team-member__info .team-member__position {
  margin: 0 0 6px;
  font-size: 16px;
  color: #555;
}
.team-section .team-member__info .team-member__email {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.team-section .team-member__info .team-member__email:hover {
  text-decoration: underline;
}
.team-section .team-member__photo {
  max-width: 45%;
  flex-shrink: 0;
  position: relative;
  top: -30px;
}
.team-section .team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .team-section .container {
    flex-direction: column;
  }
  .team-section .team-member {
    width: 100%;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0;
    gap: 0;
  }
  .team-section .team-member__photo {
    top: 0;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-width: none;
  }
  .team-section .team-member__photo img {
    width: 100%;
    height: auto;
  }
}

.market-report-section .market-report-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}
.market-report-section .report-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  border-top: 1px solid #ebebeb;
  padding: 30px 0;
  width: calc(50% - 15px);
  position: relative;
}
.market-report-section .report-card__photo {
  max-width: 45%;
  flex: 0 0 45%;
  position: relative;
  top: -30px;
}
.market-report-section .report-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.market-report-section .report-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.market-report-section .report-card__info .report-card__date {
  font-size: 16px;
  color: #c1101a;
  margin-bottom: 10px;
}
.market-report-section .report-card__info .report-card__title {
  text-transform: uppercase;
  color: #333;
  font-size: 18px;
  line-height: 1.4;
}
.market-report-section .report-card__info .report-card__button {
  display: inline-flex;
  align-items: center;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.market-report-section .report-card__info .report-card__button .report-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  border-radius: 50%;
}
.market-report-section .report-card__info .report-card__button .report-card__icon svg {
  width: 15px;
  height: 15px;
}
.market-report-section .report-card__info .report-card__button:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .market-report-section .report-card {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .market-report-section .report-card__photo {
    max-width: 100%;
    width: 100%;
    height: auto;
    order: 1;
  }
  .market-report-section .report-card__info {
    order: 2;
    margin-top: 20px;
  }
  .market-report-section .report-card .report-card__title {
    margin-bottom: 15px;
  }
}

.contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-section .contact-item__label {
  width: 30%;
  font-weight: bold;
  color: #333;
}
.contact-section .contact-item__data {
  width: 70%;
  color: #555;
  line-height: 1.6;
}
.contact-section .contact-item__data a {
  color: #c1101a;
  text-decoration: none;
}
.contact-section .contact-item__data a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-section .contact-item {
    flex-direction: column;
  }
  .contact-section .contact-item__label, .contact-section .contact-item__data {
    width: 100%;
  }
  .contact-section .contact-item__label {
    margin-bottom: 5px;
  }
}

.contact-form-section {
  padding: 60px 0;
  background-color: #fff;
}
.contact-form-section .contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-form-section .contact-form .form-group {
  position: relative;
}
.contact-form-section .contact-form .form-group input,
.contact-form-section .contact-form .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #333;
  padding: 25px 10px 10px;
  background: transparent;
  font-size: 16px;
  color: #111;
  outline: none;
  transition: background-color 0.3s ease;
}
.contact-form-section .contact-form .form-group input:hover,
.contact-form-section .contact-form .form-group textarea:hover {
  background-color: #f8f8f8;
}
.contact-form-section .contact-form .form-group input:focus + label, .contact-form-section .contact-form .form-group input:valid + label,
.contact-form-section .contact-form .form-group textarea:focus + label,
.contact-form-section .contact-form .form-group textarea:valid + label {
  top: 3px;
  font-size: 10px;
}
.contact-form-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form-section .contact-form .form-group label {
  position: absolute;
  left: 10px;
  top: 15px;
  color: #111;
  font-size: 16px;
  transition: all 0.2s ease;
}
.contact-form-section .contact-form .form-group label.error {
  position: relative;
  top: 0;
  color: #c1101a;
}
.contact-form-section .contact-form .form-group .error-msg {
  display: none;
  color: #c1101a;
  font-size: 13px;
  margin-top: 5px;
}
.contact-form-section .contact-form .checkbox-group {
  display: flex;
  align-items: center;
}
.contact-form-section .contact-form .checkbox-group label {
  display: inline-block;
  align-items: center;
  cursor: pointer;
  color: #333;
  width: 100%;
  top: 0;
  left: 0;
}
.contact-form-section .contact-form .checkbox-group label input[type=checkbox] {
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  cursor: pointer;
}
.contact-form-section .contact-form .checkbox-group label a {
  color: #c1101a;
  text-decoration: none;
}
.contact-form-section .contact-form .checkbox-group label a:hover {
  text-decoration: underline;
}
.contact-form-section .contact-form .btn-send {
  align-self: flex-start;
  padding: 5px 35px;
  background-color: #c1101a;
  border-radius: 35px;
  border-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}
.contact-form-section .contact-form .btn-send:hover {
  background-color: #c1101a;
  color: #fff;
}
@media (max-width: 768px) {
  .contact-form-section .contact-form {
    width: 100%;
  }
}

.map-wrapper {
  width: 100%;
  margin-top: 60px;
}
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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