@charset "UTF-8";
/*
Theme Name: Rent Manager Core Child for Meridian Group
Text Domain: rmcorechild
Template: rmcore
Author: Rent Manager
Author URI: https://www.rentmanager.com
Description: Custom theme created by Rent Manager
Version: 1.1.5
License: Proprietary, non-distributed
*/
/* Reset and base */
* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  margin: 0px;
  padding: 0px;
}

h1, h2, h3, h4, h5 {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
}

h3 {
  font-size: 1.8em;
}

h2 {
  font-size: 2.3em;
}

a {
  color: #122c4b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  transition: transform 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
}

/* Container */
.container {
  padding: 1rem 2rem;
}

/* Utility */
.text-center {
  text-align: center;
}

.align-left {
  float: left;
}

.align-right {
  float: right;
}

.text-right {
  text-align: right;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Label styles */
.oj-owner-form-wrap label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* Input field styles */
.oj-owner-form-wrap input[type=text],
.oj-owner-form-wrap input[type=tel],
.oj-owner-form-wrap input[type=email],
.oj-owner-form-wrap input[type=number],
.oj-owner-form-wrap textarea {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

/* Radio button and checkbox styles */
.oj-owner-form-wrap input[type=radio] {
  margin-right: 8px;
}

/* Textarea specific styles */
.oj-owner-form-wrap textarea {
  height: 120px;
  resize: vertical;
}

/* Submit button styles */
.oj-owner-form-wrap input[type=submit] {
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Optional: Styling for radio button options */
.oj-form-row-4 input[type=radio] + label {
  margin-left: 10px;
  font-weight: normal;
}

.fab {
  font-size: 35px;
}

/* Header */
header {
  background-color: #efefee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

header img {
  max-width: 150px;
}

header .logo svg, header .logo .logo-text {
  color: #821e29;
}

.top-menu-containers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

nav {
  margin: 0.5em;
}

header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

header nav ul li {
  margin-left: 3rem;
  position: relative;
}

header nav ul li:hover > ul {
  display: block;
}

header nav ul li a {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Dropdown */
header nav ul li ul {
  position: absolute;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 140px;
  padding: 0.3rem 0;
  display: none;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

header nav ul li ul li {
  margin: 0;
}

header nav ul li ul li a {
  padding: 0.5rem 1rem;
  display: block;
  font-weight: normal;
}

header nav ul li ul li a:hover {
  background-color: #f5f5f5;
}

/* Arrow down icon for menu */
.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 0.6em;
}

.custom-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.custom-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 1;
}

.custom-header .header-content {
  position: relative;
  z-index: 2;
}

.header-title {
  font-size: 3rem;
  margin: 0;
}

/* Footer main */
.footer-container {
  padding: 1rem 4rem;
}
.footer-container .title {
  text-transform: uppercase;
  margin-bottom: 0px;
}
.footer-container h3 {
  font-size: 1.8em;
}
.footer-container #affiliates {
  display: flex;
  justify-content: right;
  align-items: center;
}

.footer-container .strong {
  font-size: 1.5rem;
  font-weight: 300;
}

.footer-container img {
  width: 75px;
  margin-left: 0.7rem;
  vertical-align: middle;
}

/* Footer bottom */
.bottom-footer {
  background: #efefee;
  padding: 1rem 2rem;
}

.additional-bottom p {
  text-align: center;
  font-style: italic;
}
.additional-bottom .bottom-links {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}
.additional-bottom .bottom-links span {
  padding: 0 30px;
  position: relative;
}
.additional-bottom .bottom-links {
  /* Add "|" separator after each span except the last */
}
.additional-bottom .bottom-links span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  padding-left: 10px;
}

/* Footer nav lists */
#menu-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem 4rem;
  list-style: none;
}

#menu-footer-menu li {
  margin-bottom: 0.35rem;
  font-weight: 600;
  list-style: none;
}

#menu-footer-menu li ul li {
  font-weight: 400;
  color: #222;
  text-decoration: none;
  font-weight: 400;
}

#menu-footer-menu li ul li a:hover {
  text-decoration: underline;
  font-weight: 600;
}

/* Gutenberg alignment sample */
@media screen and (min-width: 68em) {
  .main-wrapper {
    overflow: hidden;
  }
  .main {
    margin: 0 auto;
  }
  .entry-content .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
  }
  .entry-content .alignwide {
    margin-left: -4em;
    margin-right: -4em;
    max-width: 68em;
  }
}
/* Gutenberg custom color sample */
.has-branding-color {
  color: #821e29;
}

.has-branding-background-color {
  background-color: #821e29;
}

/* Hero section */
.hero {
  position: relative;
  text-align: center;
  color: white;
  font-family: Georgia, serif;
}

.hero img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
}

.hero h1 {
  margin: 0 0 0.2rem;
  font-size: 3.5rem;
  letter-spacing: 0.06em;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.hero h2 {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Three columns section */
.services {
  max-width: 1120px;
  margin: 3rem auto 4rem;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
}

.service {
  flex: 1 1 30%;
  font-family: Georgia, serif;
  box-sizing: border-box;
}

.service .service-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.service img {
  width: 100%;
  display: block;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service .service-title {
  position: absolute;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  bottom: 12px;
  left: 12px;
  right: 12px;
  line-height: 1.2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}

.service p {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 0.94rem;
  color: #222;
  margin: 1rem 0 1.3rem;
  line-height: 1.4;
}

.service button {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid #444;
  background: transparent;
  color: #222;
  letter-spacing: 0.02em;
  transition: background-color 0.2s, color 0.2s;
}

.service button:hover {
  background-color: #444;
  color: #fff;
}

/* Welcome section */
.welcome-section {
  max-width: 900px;
  margin: 4rem auto 4rem;
  background-color: #f2f0ed;
  padding: 3rem 2rem 2.5rem;
  font-family: Georgia, serif;
  text-align: center;
  border-radius: 2px;
}

.welcome-section h2 {
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.welcome-section hr {
  width: 50px;
  border: 1px solid #aaa;
  margin: 0 auto 1.6rem;
}

.welcome-section p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.welcome-section button {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border: 1px solid #444;
  background: transparent;
  color: #222;
  letter-spacing: 0.04em;
}

.welcome-section button:hover {
  background-color: #444;
  color: white;
}

/* Testimonials section */
.testimonial-section {
  position: relative;
  margin: 4rem 0 1rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-section img.bg-img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.testimonial-text {
  position: absolute;
  top: 30%;
  left: 3rem;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  padding: 1.75rem 2rem 1.75rem 2rem;
  font-family: Georgia, serif;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.testimonial-text h3 {
  margin: 0 0 1.25rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/*** Accordion Styles ***/
.oj-accordion-row {
  padding: 20px;
}

.accordion-toggle {
  background-color: #fff;
  border: 1px solid #A59081 !important;
  color: #444;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 1rem;
  cursor: pointer;
}

.accordion-toggle.active, .accordion-toggle:hover {
  background-color: #ccc;
}

.accordion-content {
  padding: 12px !important;
  background-color: white;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  width: 100%;
}

.accordion-content:not(:last-child) {
  border-bottom: none;
}

.accordion-content p {
  width: 100%;
}

.accordion-toggle:after {
  content: "+";
  font-size: 1.5rem;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "−";
}

.oj-accordion-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/*** Big Text Block Styles ***/
.oj-big-text-block {
  background-color: #fff;
}

/*** Video Background Hero Section Styles ***/
.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.unit-search {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
}

.hero-content .unit-search label {
  color: #fff !important;
}

#hero-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.hero-fallback-image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 50%;
  bottom: 50%;
  z-index: 1;
  text-align: center;
  width: 100%;
  color: white;
  box-sizing: border-box;
  padding: 0px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content h1 {
  font-size: 5em;
  text-transform: uppercase;
  margin: 0px;
}
.hero-content h2 {
  font-size: 3em;
  margin: 20px;
}

.quarter-column-layout {
  display: flex;
  margin: 20px auto;
  padding: 0;
  align-items: center;
}
.quarter-column-layout .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.quarter-column-layout .column-left {
  width: 30%;
}
.quarter-column-layout .column-right {
  width: 70%;
}

/*** Two Coloumn Block Styles ***/
.two-column-layout {
  display: flex;
  margin: 20px auto;
  padding: 0;
}

.two-column-layout.reverse-layout {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.image-column {
  overflow: hidden;
}

.image-column img {
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-column.oj-border {
  padding: 20px;
  box-sizing: border-box;
}

.content-column h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 20px;
}

.content-column p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.fa-ul {
  padding-left: 0;
  list-style-type: none;
}

.fa-ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.fa-ul li .fa-li {
  margin-right: 10px;
  color: #007bff;
}

.vid-column {
  align-items: center;
}

@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column-reverse !important;
  }
  .column:last-child {
    margin-left: 20px;
  }
  .image-column, .content-column {
    padding: 10px;
  }
  .content-column h2 {
    font-size: 24px;
  }
  .content-column p, .fa-ul li {
    font-size: 14px;
  }
}
/*** Contact Styles ***/
.wp-block-contact-form-7-contact-form-selector {
  padding: 50px 0;
  background-color: #f9f9f9;
}

/* General form container styles */
.oj-owner-form-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Styling each form row */
.oj-form-row-1,
.oj-form-row-2,
.oj-form-row-3,
.oj-form-row-4,
.oj-form-row-5 {
  margin-bottom: 20px;
}

.oj-form-row-1 {
  display: flex;
  justify-content: space-between;
}

.oj-form-row-4 p {
  color: black;
}

/* Label styles */
.oj-owner-form-wrap label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* Input field styles */
.oj-owner-form-wrap input[type=text],
.oj-owner-form-wrap input[type=tel],
.oj-owner-form-wrap input[type=email],
.oj-owner-form-wrap input[type=number],
.oj-owner-form-wrap textarea {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

/* Radio button and checkbox styles */
.oj-owner-form-wrap input[type=radio] {
  margin-right: 8px;
}

/* Textarea specific styles */
.oj-owner-form-wrap textarea {
  height: 120px;
  resize: vertical;
}

/* Submit button styles */
.oj-owner-form-wrap input[type=submit] {
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Optional: Styling for radio button options */
.oj-form-row-4 input[type=radio] + label {
  margin-left: 10px;
  font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .oj-owner-form-wrap {
    padding: 15px;
  }
}
/*Portfolio Items Block */
.portfolio-block {
  text-align: center;
  padding: 2em 0;
}

.portfolio-block__content {
  width: 80%;
  margin: 3em auto;
}
.portfolio-block__content > p {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.portfolio-block__content h2 {
  padding: 0 0 15px;
}
.portfolio-block__content .description {
  text-align: left;
}

.portfolio-container {
  display: flex;
  justify-content: space-between;
  margin: 2em;
}
@media (max-width: 800px) {
  .portfolio-container {
    flex-direction: column;
  }
}

.portfolio-items {
  width: 32%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 800px) {
  .portfolio-items {
    width: 100%;
    height: auto;
  }
}

.portfolio-hasBGIMG {
  height: 300px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-hasBGIMG .title {
  position: absolute;
  color: white;
  font-size: 2em;
  font-family: "Bodoni Moda", serif;
}

.link-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.port-links, .frm_button_submit {
  padding: 10px 15px !important;
  border: 1px solid #333 !important;
  background-color: white !important;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333 !important;
}

.port-links:hover, .frm_button_submit:hover {
  text-decoration: none;
  background-color: #333 !important;
  color: white !important;
  transform: translateY(-3px);
}

.fullwidth_heading {
  font-size: 2.8em;
  margin: 20px;
}

.choose-side {
  display: flex;
}
.choose-side .whitebkgrd {
  background: rgba(255, 255, 255, 0.35);
  text-align: center;
}
.choose-side .column-style {
  display: flex;
  justify-content: center;
  width: 50%;
  height: 40%;
  align-items: center;
  top: 50%;
  left: 10%;
  position: absolute;
}

/* Responsive */
@media (max-width: 920px) {
  .services {
    flex-direction: column;
    gap: 2rem;
  }
  .service {
    max-width: 100%;
  }
  .testimonial-text {
    top: 16%;
    left: 1rem;
    max-width: 90vw;
    font-size: 0.9rem;
    padding: 1.3rem 1.5rem;
  }
  header nav ul li a::after {
    display: none;
  }
  header nav ul {
    font-size: 0.85rem;
    gap: 1.2rem;
  }
  .footer-nav-sections {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding-left: 1rem;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1rem;
  }
}
/* Responsive adjustments */
@media (max-width: 800px) {
  .portfolio-items {
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .oj-owner-form-wrap {
    padding: 15px;
  }
  .site-header {
    flex-direction: column;
  }
  .top-menu-containers {
    width: 100%;
    align-items: stretch;
  }
  #menu-top-menu {
    flex-direction: column;
    width: 100%;
  }
  #menu-top-menu li {
    margin-left: 0px;
  }
  #menu-top-menu a {
    width: 100%;
    position: relative;
    display: block;
  }
}/*# sourceMappingURL=style.css.map */