body,
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.site-header {
    max-width: 100%;
}

.customHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.headerMenu ul {
    list-style: none;
}

.headerMenu ul li {
    display: inline-block;
    margin: 0 15px;
}

.headerMenu ul li a {
    position: relative;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.headerMenu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    transition: width 0.3s ease-in-out;
}

.headerMenu ul li:hover a {
    color: #FFFFFF;
    /* color: #c28555; */
}

.headerMenu ul li:hover a::after {
    width: 100%;
}

.mainMenu {
    background: #5272F9;
    padding: 8px 20px;
    border-radius: 50px;
}

.sideToggleBtn {
    display: none;
}


.customHeader .logo img {
    width: 158px;
}




/* footer */

footer#colophon {
    background: #201E1E;
    padding: 50px 0;
    border-top: 10px solid #5272F9;
    border-bottom: 10px solid #5272F9;
}

.socialIconWrapper ul {
    list-style: none;
}

.socialIconWrapper ul li {
    display: inline-block;
    margin-right: 2px;
    background: #5272F9;
    padding: 5px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.socialIconWrapper ul li:hover {
    transform: scale(1.3);
}

.socialIconWrapper ul li a {
    width: 14px;
    height: 14px;
    display: inline-block;
}

.socialIconWrapper ul li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footerContent p {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.5;
    font-family: "DM Sans", sans-serif;
    margin: 25px 0;
}

.footerWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footerLogo {
    width: 33%;
}

.footerMenuWrapper {
    width: 66%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footerCol>span {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 20px;
    display: block;
}

.footerCol ul {
    list-style: none;
}

.footerCol ul li {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: "DM Sans", sans-serif;
}

.footerCol ul li a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.footerCol.footerContact ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.footerCol ul li a {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    transition: color 0.3s ease-in-out;
    position: relative;
}

.footerCol {
    width: 32%;
    padding-left: 50px;
}

.footerCol ul li:hover a {
    color: #5272F9;
}

.footerLogo a img.footerLogoImage {
        width: 180px;
    background: #FFF;
    padding: 10px;
}

.footerHours ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.footerHours ul li img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.footerCol .menu-main-menu-container ul li {
    position: relative;
    padding-left: 18px;
}

.footerCol .menu-main-menu-container ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -5px;
    transform: translateY(-50%);
    background-image: url("../images/right-arrow.svg");
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}

/*  */

.form-box {
    background: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 100%;
    max-width: 500px;
/*     border: 15px solid #c28555; */
}

.form-box h2 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 900;
    color: #000000;
    font-family: "DM Sans", sans-serif;
    line-height: 1.3;
}

.form-box p {
    margin: 0 0 20px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.3;
    color: #666;
}

.trusted {
    color: #0ac00a;
    float: right;
    font-weight: 800;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.3;
    margin-top: -14px;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.form-box button {
    background: #5272F9;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-box button:hover {
    background: #4a2dc2;
}

.form-box .disclaimer {
    font-size: 11px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.3;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

ul.sub-menu {
    position: absolute;
    background: #5272F9;
    padding: 10px;
    z-index: 999;
    border-radius: 10px;
    top: 30px;
    width: 290px;
    left: -25px;
    right: 0;
    margin: 0 auto;
	display: none;
}

ul.sub-menu li {
    margin-bottom: 15px !important;
    display: block;
    width: fit-content;
}
body .sub-menu li a {
    font-size: 16px;
    display: block;
    text-transform: capitalize;
}



.menu-item-has-children {
    padding-right: 25px;
    position: relative;

}
.menu-item-has-children::before {
        content: '';
    width: 16px;
    height: 16px;
    background-image: url(/wp-content/uploads/2025/09/arrow-down-filled-triangle-svgrepo-com-1.svg);
    position: absolute;
    top: 5px;
    bottom: 0;
    right: 6px;
    background-size: contain;
}
.menu-item-has-children:hover ul.sub-menu{
display: block;
}

.footerCol ul.sub-menu li a {
    color: #FFFFFF;
}

.mortgage-form{
	    background-image: linear-gradient(139deg, #5272F9 0%, #141F39 100%);
    padding: 15px;
    border-radius: 40px;
}

.socialIconWrapper {
    margin-top: 20px;
}



.custom-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-cat {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #666;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  font-family: 'outfit';
}

.blog-body {
  padding: 20px;
  font-family: 'outfit';
}

.blog-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.author-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ddd url('https://www.gravatar.com/avatar/?d=mp') center/cover;
  margin-right: 10px;
}
.blog-title {
    font-size: 21px;
    margin: 10px 0;
    font-family: 'Outfit';
}
.blog-title a {
  color: #000;
  text-decoration: none;
      font-family: 'Outfit';

}
.blog-title a:hover {
  color: #5272F9;
}

.blog-excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
      font-family: 'Outfit';

}

.blog-readmore {
  color: #5272F9;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
      font-family: 'Outfit';

}
.blog-readmore:hover {
  text-decoration: underline;
}

.blog-meta {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

