/*
Theme Name:     Xzopro Child
Description:    Child theme for Xzopro
Template:       xzopro
Author: 		ThemeDraft
Version: 		1.1.0
*/



.banner-top-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* Adjust as needed */
}

.banner-top-home h1,
.banner-top-home p,
.banner-top-home .styled-button {
    margin: 10px 0; /* Adjust margin as needed */
}

.banner-top-home .styled-button {
    padding: 15px 30px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size as needed */
    color: #fff; /* White text color */
    background: linear-gradient(90deg, #FF7E31, #FF5000); /* Orange gradient background */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    text-decoration: none; /* Remove underline from link */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    cursor: pointer; /* Pointer cursor on hover */
}

.banner-top-home .styled-button:hover {
    background: linear-gradient(90deg, #FF5000, #FF7E31); /* Reverse gradient on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    color: #fff; /* Ensure text stays white on hover */
}

.step {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    text-align: center; /* Center align text */
}

.step-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px; /* Adjusted height to accommodate both texts */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.step-circle span {
    font-size: 14px; /* Same font size for the number */
    margin-left: 5px; /* Small margin to separate STEP and number */
}

.step1 .step-circle {
    background-color: #00bcd4; /* Specific color for step 1 */
}

.step2 .step-circle {
    background-color: #8bc34a; /* Specific color for step 2 */
}

.step3 .step-circle {
    background-color: #ff9800; /* Specific color for step 3 */
}

.step4 .step-circle {
    background-color: #00bcd4; /* Specific color for step 4 */
}

.step p {
    margin-top: 40px; /* Space below the circle */
    font-size: 18px;
    font-weight: 300; /* Thin font weight */
}

@media (max-width: 768px) {
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .step-circle span {
        font-size: 12px;
    }

    .step p {
        font-size: 16px;
    }
}

.mortgage-free-fast-full-height-section {
    display: flex;
    height: 100vh; /* Make the row full height */
    padding: 0; /* Remove padding */
}

.mortgage-free-fast-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    padding: 40px; /* Add padding to the left column */
    background-color: #f9f9f9; /* Light grey background for left column */
    height: 100vh; /* Ensure the left column takes full height */
    text-align: center; /* Center-align text */
}

.mortgage-free-fast-left-column h2,
.mortgage-free-fast-left-column p,
.mortgage-free-fast-left-column form {
    width: 100%; /* Ensure content takes full width */
    max-width: 400px; /* Optional: Limit max width for better readability */
}

.mortgage-free-fast-right-column {
    flex: 1;
    height: 100vh; /* Ensure the right column takes full height */
    overflow: hidden; /* Hide overflow */
}

.mortgage-free-fast-right-column img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the whole area */
}


.solidlinebottom {
    border-bottom: 1px solid #f9f9f9;
}


.custom-footer {
    background-color: #ffffff;
    padding: 20px 0;
    text-align: center;
    width: 100%; /* Ensure full width */
    border-top: 2px solid #f9f9f9;
}

.footer-top-area {
    width: 100%; /* Ensure full width */
}

.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    border-bottom: 2px solid #f9f9f9;
}

.footer-item {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.footer-item img {
    max-width: 150px;
}

.footer-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #6fafb2; /* Icon color */
}

.footer-item span {
    font-size: 16px;
    color: #333;
}

.footer-contact-area {
    padding: 20px 0;
    background-color: #f9f9f9; /* Light grey background */
    border-bottom: 2px solid #f9f9f9;
    width: 100%; /* Ensure full width */
    text-align: left;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.footer-contact-area .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-contact-area h3 {
    font-size: 24px;
    color: #333;
    text-align: left;
}

.footer-contact-area p {
    font-size: 16px;
    color: #666;
}

.footer-contact-area a {
    color: #6fafb2; /* Link color matching the icon color */
    text-decoration: none;
}

.footer-contact-area a:hover {
    text-decoration: underline;
}

.footer-bottom-area {
    width: 100%; /* Ensure full width */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #666;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    border-top: 2px solid #f9f9f9;
    flex-wrap: wrap;
}

.footer-bottom-left, .footer-bottom-right, .footer-contact-area {
    flex: 1 1 100%;
    text-align: center;
    padding: 10px 0;
}

.footer-bottom a {
    color: #00bcd4;
    text-decoration: none;
}

.footer-bottom-right a {
    margin: 0 10px;
    font-size: 20px;
}

.footer-bottom-right a i {
    color: #6fafb2; /* Icon color */
}

@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-item {
        padding: 10px 0;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-bottom-left, .footer-contact-area, .footer-bottom-right {
        text-align: center;
        padding: 10px 0;
    }
}

.calculator-container {
  flex: 100%;
  display: flex;
  align-items: stretch;
	justify-content: center;}

.calc-bg1, .calc-bg4 {
  background: linear-gradient(90deg, #e18038, #de4e24);
	background-color: rgba(0, 0, 0, 0);}

.calc-bg2 {
  background: linear-gradient(90deg, #58b1b3, #449bb3);
    background-color: rgba(0, 0, 0, 0);
}

.calc-bg3 {
  background: linear-gradient(90deg, #b7cb7d, #8fbc7d);
    background-color: rgba(0, 0, 0, 0);
}

.flex-grow1 {
  flex-grow: 1;
}

.white.bold {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
	color: #ffffff;
}
.flex-grow1 {flex-grow: 1; color: white;
font-size: 0.9em;}


.aboutbanhome {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    margin: auto; /* Center the container itself */
}

.amatic-font {
    font-family: 'Amatic SC', cursive;
}

.lineheightnormal {
    line-height: normal;
}

.black {
    color: black;
}

.font70 {
    font-size: 50px;
}

.center {
    text-align: center;
}

.testimonial-girl-dog {
  margin-bottom: -360px;
  margin-top: 60px;
}

.whatourheros-section {
  display: unset;
}

.padding3030 {
  padding: 30px;
}

.testimonial-blue-hero {
  background: linear-gradient(90deg, #58b1b3, #449bb3);
  margin: 0px 30px !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: -1;
}

.xzopro-post-thumb {

	max-height: 300px;
}


