.main-content {
  min-height: 100vh;
}

/* Booking Search Wrapper */
@media (max-width: 992px) {
  #searchForm, #widgetFilters {
    width: 100%;
  }
}

.booking-search-wrapper { 
  position: relative;
  background-color: white;
  border-radius: 100px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  padding-right: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .booking-search-wrapper {
    border-radius: 10px;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }
}
.booking-search-wrapper .search-icon {
  width: 40px;
  height: 40px;
  background-color: #103666;
  color: white;
  font-size: 18px;
  border-radius: 20px;
}
.booking-search-wrapper .separator {
  display: block;
  width: 1px;
  background-color: #cecece;
}
@media (max-width: 992px) {
  .booking-search-wrapper .separator {
    width: 100%;
    height: 1px;
  }
}
.booking-search-wrapper .group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.booking-search-wrapper .group .label {
  font-size: 14px;
  font-weight: bold;
  color: black;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}
.booking-search-wrapper .group .value {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-weight: 300;
  color: black;
  opacity: 0.7;
}
.booking-search-wrapper .search-button {
  background-color: #103666;
  border: 1px solid #103666;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 100px;
  padding: 8px 20px;
}
.booking-search-wrapper .search-button.disabled {
  opacity: 0.5;
}
.booking-search-wrapper .search-button span {
  font-size: 14px;
  font-weight: bold;
}
.booking-search-wrapper .search-button i {
  font-size: 16px;
  color: white;
}
.booking-search-wrapper .search-button:hover {
  background-color: white;
  color: #103666;
  transition: 0.2s;
  cursor: pointer;
}
.booking-search-wrapper .search-button:hover i {
  color: #103666;
}

/* End of Booking Search Wrapper */
/* Listing */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}
.section-title h3 {
  font-size: 30px;
  line-height: 38px;
  font-weight: bold;
  color: black;
  margin: 0px;
  padding: 0px;
}
.section-title .separator {
  width: 50px;
  height: 4px;
  background-color: #103666;
  border-radius: 2px;
}

.listing .inner {
  max-width: calc(100% - 20px);
  width: 1100px;
  margin: 0 auto;
}
.listing .filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 992px) {
  .listing .filters {
    gap: 10px;
  }
}
.listing .filters .group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .listing .filters .group {
    justify-content: center;
  }
}
.listing .filters .group .label {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0.6;
}
.listing .filters .group .options {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .listing .filters .group .options {
    justify-content: center;
  }
}
.listing .filters .group .options .item {
  font-size: 14px;
  font-weight: 300;
  border: 1px solid #103666;
  padding: 3px 10px;
  border-radius: 4px;
  background-color: white;
}
.listing .filters .group .options .item img {
  max-width: 18px;
  max-height: 18px;
  filter: invert(73%) sepia(41%) saturate(432%) hue-rotate(154deg) brightness(93%) contrast(92%);
}
.listing .filters .group .options .item i {
  color: #103666;
}
.listing .filters .group .options .item span {
  color: #103666;
}
.listing .filters .group .options .item:hover, .listing .filters .group .options .item.selected {
  cursor: pointer;
  background-color: #103666;
  color: white;
  transition: 0.2s;
}
.listing .filters .group .options .item:hover i, .listing .filters .group .options .item:hover span, .listing .filters .group .options .item.selected i, .listing .filters .group .options .item.selected span {
  color: white;
}
.listing .filters .group .options .item:hover img, .listing .filters .group .options .item.selected img {
  filter: invert(100%) sepia(2%) saturate(7480%) hue-rotate(326deg) brightness(108%) contrast(105%);
}
.listing .filters .reset-btn {
  font-size: 12px;
  background-color: #f32100;
  border: 1px solid #f32100;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 4px;
  color: rgb(80, 71, 24);
}
.listing .filters .reset-btn:hover {
  background-color: rgb(80, 71, 24);
  border: 1px solid rgb(80, 71, 24);
  color: white;
  transition: 0.2s;
  cursor: pointer;
}
.listing .grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.listing .grid-wrapper a:empty {
  display: none;
}

.apartment-box {
  width: calc(33.3333333333% - 25px);
  background-color: white;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .apartment-box {
    width: 100%;
  }
}
.apartment-box .image-wrapper {
  height: 200px;
  overflow: hidden;
}
.apartment-box .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apartment-box .title {
  font-size: 18px !important;
  font-weight: bold !important;
  color: black !important;
  margin: 0px !important;
  margin-bottom: 10px !important;
}
.apartment-box .details {
  padding: 15px;
}
.apartment-box .details .meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.apartment-box .details .meta .top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.apartment-box .details .meta .top .group {
  opacity: 0.7;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.apartment-box .details .meta .top .group i {
  font-size: 12px;
  color: black;
}
.apartment-box .details .meta .top .group span {
  font-size: 12px;
  font-weight: 300;
  color: black;
  text-transform: capitalize;
}
.apartment-box .details .meta .bottom {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.apartment-box .details .meta .bottom .group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-right: 13px;
  opacity: 0.4;
  position: relative;
  overflow: hidden;
}
.apartment-box .details .meta .bottom .group .strike {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: rotate(180deg);
}
.apartment-box .details .meta .bottom .group:last-child {
  margin-right: 0px;
}
.apartment-box .details .meta .bottom .group i {
  font-size: 14px;
  color: black;
}
.apartment-box .details .meta .bottom .group span {
  font-size: 14px;
  font-weight: 400;
  color: black;
  text-transform: capitalize;
}
.apartment-box .details .meta .bottom .group img {
  max-width: 16px;
  max-height: 16px;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
}
.apartment-box .details .meta .bottom .group.existing {
  opacity: 1;
}
.apartment-box .details .meta .bottom .group.existing .strike {
  display: none;
}
.apartment-box .details .meta .bottom .group.existing i {
  color: #103666;
}
.apartment-box .details .meta .bottom .group.existing span {
  color: #103666;
  font-weight: 700;
}
.apartment-box .details .meta .bottom .group.existing img {
  filter: invert(73%) sepia(41%) saturate(432%) hue-rotate(154deg) brightness(93%) contrast(92%);
}
.apartment-box:hover {
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.apartment-box:hover .image-wrapper img {
  transform: scale(1.1);
  transition: 0.2s;
}

/* End of Listing */
/* Apartment Page */
.apartment-page {
  position: relative;
}
.apartment-page .inner {
  max-width: calc(100% - 40px);
  width: 1100px;
  margin: 0 auto;
}
.apartment-page .inner .title {
  font-size: 32px;
  font-weight: bold;
  color: black;
  margin: 0px;
  padding: 0px;
  line-height: 40px;
}
.apartment-page .inner .images {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  display: flex;
  gap: 10px;
  position: relative;
}
.apartment-page .inner .images .see-all {
  position: absolute;
  z-index: 2;
  right: 10px;
  padding: 3px 10px;
  bottom: 10px;
  border-radius: 4px;
  border: 1px solid #103666;
  background-color: #103666;
  display: flex;
  align-items: center;
  gap: 5px;
}
.apartment-page .inner .images .see-all i {
  font-size: 14px;
  color: white;
}
.apartment-page .inner .images .see-all span {
  font-size: 14px;
  font-weight: 400;
  color: white;
}
.apartment-page .inner .images .see-all:hover {
  cursor: pointer;
  background-color: white;
  color: #103666;
  transition: 0.2s;
}
.apartment-page .inner .images .see-all:hover i {
  color: #103666;
}
.apartment-page .inner .images .see-all:hover span {
  color: #103666;
}
.apartment-page .inner .images .left {
  width: 50%;
}
@media (max-width: 992px) {
  .apartment-page .inner .images .left {
    width: 100%;
  }
}
.apartment-page .inner .images .left .image-wrapper {
  height: 100%;
  overflow: hidden;
}
.apartment-page .inner .images .left .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apartment-page .inner .images .right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .apartment-page .inner .images .right {
    display: none;
  }
}
.apartment-page .inner .images .right .image-wrapper {
  height: 50%;
  width: calc(50% - 5px);
  overflow: hidden;
  display: flex;
}
.apartment-page .inner .images .right .image-wrapper.first-row {
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .apartment-page .inner .images .right .image-wrapper.first-row {
    padding-bottom: 0px;
  }
}
.apartment-page .inner .images .right .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apartment-page .inner .features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.apartment-page .inner .features .item {
  padding: 12px 20px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: auto;
  position: relative;
  overflow: hidden;
  opacity: 0.4;
  background-color: #e9e9e9;
}
.apartment-page .inner .features .item .strike {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: rotate(180deg);
}
.apartment-page .inner .features .item img {
  max-width: 24px;
  max-height: 24px;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
}
.apartment-page .inner .features .item i {
  font-size: 22px;
  color: black;
}
.apartment-page .inner .features .item span {
  font-size: 16px;
  font-weight: 400;
  color: black;
}
.apartment-page .inner .features .item.existing {
  opacity: 1 !important;
  background-color: white;
}
.apartment-page .inner .features .item.existing .strike {
  display: none;
}
.apartment-page .inner .features .item.existing i {
  color: #103666;
}
.apartment-page .inner .features .item.existing span {
  color: #103666;
  font-weight: 700;
}
.apartment-page .inner .features .item.existing img {
  filter: invert(73%) sepia(41%) saturate(432%) hue-rotate(154deg) brightness(93%) contrast(92%);
}
.apartment-page .inner .details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.apartment-page .inner .details .left {
  flex: 1;
}
.apartment-page .inner .details .sidebar {
  width: 300px;
}
@media (max-width: 992px) {
  .apartment-page .inner .details .sidebar {
    width: 100%;
    margin-top: 20px;
  }
}
.apartment-page .inner .all-features .subtitle {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  color: black;
  margin: 0px;
  padding: 0px;
}
.apartment-page .inner .all-features .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.apartment-page .inner .all-features .features-list .item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: auto;
}
.apartment-page .inner .all-features .features-list .item i {
  font-size: 22px;
  color: black;
}
.apartment-page .inner .all-features .features-list .item span {
  font-size: 16px;
  font-weight: 400;
  color: black;
}

/* End of Apartment Page */
/* Booking Form */
.booking-form-ap {
  position: relative;
  width: 100%;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 15px;
}
.booking-form-ap .inner .title {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin: 0px;
  padding: 0px;
}
.booking-form-ap .inner .inputs {
  border: 1px solid #e9e9e9;
  border-radius: 6px;
}
.booking-form-ap .inner .group {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex: 1;
}
.booking-form-ap .inner .group:hover {
  background-color: #e8e8e8;
  cursor: pointer;
  transition: 0.2s;
}
.booking-form-ap .inner .group .label {
  font-size: 12px;
  font-weight: 600;
  color: black;
  margin: 0px;
  padding: 0px;
}
.booking-form-ap .inner .group .value {
  font-size: 14px;
  font-weight: 300;
  color: black;
  opacity: 0.7;
  margin-top: -2px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.booking-form-ap .inner .group.center .label, .booking-form-ap .inner .group.center .value {
  text-align: center;
}
.booking-form-ap .inner .inputs-row {
  display: flex;
  flex-wrap: wrap;
}
.booking-form-ap .inner .inputs-row:last-child {
  border-top: 1px solid #e9e9e9;
}
.booking-form-ap .inner .inputs-row .group {
  flex: 1;
}
.booking-form-ap .inner .inputs-row .group:last-child {
  border-left: 1px solid #e9e9e9;
}
.booking-form-ap .inner .inputs-row .group:first-child {
  border-left: none;
}
.booking-form-ap .inner button {
  width: 100%;
  background-color: #103666;
  border: 1px solid #103666;
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.booking-form-ap .inner button:hover {
  background-color: white;
  color: #103666;
  transition: 0.2s;
  cursor: pointer;
}

/* End of Booking Form */
/* Gallery Modal */
.hidden {
  display: none;
}

.gallery-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.gallery-modal .inner {
  max-width: calc(100% - 30px);
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.gallery-modal .inner .image-wrapper {
  height: 80vh;
  overflow: hidden;
}
.gallery-modal .inner .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-modal .inner .close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white;
  color: black;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal .inner .close:hover {
  background-color: #103666;
  color: white;
  transition: 0.2s;
}
.gallery-modal .inner .prev {
  position: absolute;
  top: calc(50% - 20px);
  left: 20px;
  background-color: white;
  color: black;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal .inner .prev:hover {
  background-color: #103666;
  color: white;
  transition: 0.2s;
}
.gallery-modal .inner .next {
  position: absolute;
  top: calc(50% - 20px);
  right: 20px;
  background-color: white;
  color: black;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal .inner .next:hover {
  background-color: #103666;
  color: white;
  transition: 0.2s;
}

/* End of Gallery Modal */
/* booking modal */
.bookingModalWrapper {
  position: relative;
}
.bookingModalWrapper .options-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.bookingModalWrapper .options-wrapper .option {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.bookingModalWrapper .options-wrapper .option span, .bookingModalWrapper .options-wrapper .option p {
  font-size: 16px;
  font-weight: 300;
  color: black;
  margin: 0px;
  padding: 0px;
}
.bookingModalWrapper .options-wrapper .option.selected, .bookingModalWrapper .options-wrapper .option:hover {
  background-color: #103666;
  color: white;
  border: 1px solid #103666;
  cursor: pointer;
  transition: 0.2s;
}
.bookingModalWrapper .options-wrapper .option.selected span, .bookingModalWrapper .options-wrapper .option.selected p, .bookingModalWrapper .options-wrapper .option:hover span, .bookingModalWrapper .options-wrapper .option:hover p {
  color: white;
  font-weight: 600;
}

/* End of booking modal */
/* Custom Modal */
.customModal {
  z-index: 99900;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customModal .wrapper {
  background-color: white;
  max-width: 90%;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  position: relative;
}

.customModal.largeModal .wrapper {
  max-width: 90%;
  width: 90%;
}

.customModal h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.customModal .actions {
  margin-top: 20px;
}

.customModal .close {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #103666;
  color: white;
  font-size: 24px;
  z-index: 99901;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
}

.customModal.hardToClose .close {
  position: absolute !important;
}

.customModal .close:hover {
  cursor: pointer !important;
}

.toFillWrapper {
  display: block;
  position: relative;
}

#toFill #overlay {
  background-color: rgb(255, 255, 255);
  z-index: 999;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}

#modalBookingForm .wrapper {
  width: auto !important;
}

/* End of Custom Modal */
.no-results-listing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.no-results-listing-wrapper h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
  color: black;
}
.no-results-listing-wrapper img {
  max-width: 300px;
  width: calc(100% - 40px);
  display: block;
  margin: auto;
}

/* Hero */
.hero {
  position: relative;
  background: url("/uploads/hero-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .inner {
  max-width: calc(100% - 40px);
  width: 1260px;
  padding: 30px 0px;
  position: relative;
  z-index: 2;
}
.hero .inner h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: bold;
  color: white;
  text-align: center;
}
.hero .inner p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  color: white;
  margin: 0px;
  padding: 0px;
  margin-top: 20px;
  text-align: center;
}
.hero .inner .checks {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hero .inner .checks .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.hero .inner .checks .item i {
  font-size: 28px;
  color: white;
}
.hero .inner .checks .item p {
  margin: 0px;
  padding: 0px;
}
.hero .shade {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* End of Hero */
/* Section Design */
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.section .title {
  font-size: 50px;
  color: black;
  font-weight: bold;
}
.section .subtitle {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section .subtitle .special {
  color: var(--color-1);
}
.section .title {
  margin-bottom: 20px;
}
.section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section .left {
  width: 50%;
  padding-right: 30px;
}
.section .right {
  width: 50%;
}
.section .right.text {
  padding-left: 30px;
}
.section .image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section img {
  display: block;
  width: 100%;
  max-width: 90%;
  border-radius: 20px;
}
.section.home-bg-1 {
  background-color: #f1f4ff;
}

@media (max-width: 992px) {
  .section .content {
    flex-wrap: wrap;
    text-align: center;
  }
  .section .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .section .left {
    width: 100%;
    margin-bottom: 50px;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .section .right {
    width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .section.reverse .right {
    order: 1;
    margin-bottom: 50px;
  }
  .section.reverse .left {
    order: 2;
  }
}
/* End of Section Desgin */
.full-title-bg {
  position: relative;
  background-color: #103666;
  padding: 30px 10px;
}
.full-title-bg h2 {
  font-size: 40px;
  font-weight: bold;
  color: white;
  margin: 0px;
  padding: 0px;
  text-align: center;
  z-index: 2;
  background-color: #103666;
  padding: 5px;
  border-radius: 10px;
  position: relative;
  width: fit-content;
  margin: auto;
}
.full-title-bg .stars {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.full-title-bg .stars i {
  font-size: 30px;
  color: white;
  opacity: 0.2;
}

.contact-section {
  padding: 50px 0px;
  background-color: #0b1c28;
}
.contact-section .inner {
  max-width: calc(100% - 40px);
  width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact-section .inner span {
  color: white;
}
.contact-section .inner h2 {
  font-size: 40px;
  line-height: 48px;
  color: white;
  text-align: center;
  font-weight: bold;
}
.contact-section .inner h2, .contact-section .inner p {
  color: white;
  text-align: center;
}

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