@font-face {
    font-family: 'Light';
    src: url('./light.otf') format('opentype'); /* Use 'opentype' not 'otf' */
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Medium';
    src: url('./medium.otf') format('opentype'); /* Use 'opentype' not 'otf' */
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Book';
    src: url('./book.otf') format('opentype'); /* Use 'opentype' not 'otf' */
    font-weight: normal;
    font-style: normal;
  }
  body{
    font-family: "Roboto" !important;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
   
 
  }
button:hover{
  cursor: url("./cursor-image61489.png"),auto !important

}
body,*:hover  {
  cursor: url("./cursor-image61489.png"),auto
}
  header{
    background-color: rgb(72, 116, 199);
    border-bottom: 2px solid #ccc;
  }
  .header{
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .header .upper-header{
    display: flex;
    justify-content: end;
    gap: 15px;
    align-items: center;
  }
  .header .lower-header .rating-image-box {
    display: flex;
    margin-right: 8px;
    /* gap:10px; */
  }
  .header .lower-header .rating-image-box  img{
    width: 60px;
    height: 35px;

  }
  .header .logo-box img{
    width: 170px;
    height: auto;
  }
  .header .upper-header .button-group button{
    background-color: rgb(83, 176, 2);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    padding: 2px 20px;
    outline: none;
    
  }
  .header .upper-header .button-group button:hover{
    background-color: rgb(70, 147, 3);
    transition: all .1s ease-in-out;
  }
  .header .upper-header .button-group{
    display: flex;
    justify-content: normal;
    align-items: center;
    gap: 5px;
  }
  .header .lower-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
  
  }
  .header .lower-header .navigation ul{
    display: flex;
    margin: 0;
    list-style: none;
    gap: 15px;
  }
  .header .lower-header .navigation ul li i{
    position: relative;
    top: 2px;
  }
  .header .lower-header .navigation ul li {
    color: #fff;
    cursor: url("./cursor-image61489.png"),auto;
    font-size: 14px;
  }
  .header .lower-header .navigation ul li:hover{
    font-weight: 600;
  }
  .header .lower-header .cell_phone a{
    color: #fff;
    text-decoration:none ;
    font-size: 14px;
  }
  .header .lower-header .cell_phone i{
    color: #fff;
  }
  .section-1 h1{
    color: #000;
    text-align: center;
    margin-bottom: 0px;
  }
  .section-1  p{
text-align: center;
font-style: italic;
font-size: 14px;
color: #777;
font-family: "Roboto";
  }
  .section-1 {
    margin-top: 14px;
  }
  .section-1  .box-parent{
    display: flex;
    margin-top: 10px;

    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .section-1  .box-parent .box{
    background-color: rgb(71, 115, 196);
    width: 160px;
    height: 120px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    align-items: center;

  }
  .section-1  .box-parent .box:hover{
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    
  }
  .section-1  .box-parent .box p{
    color: #fff;
    font-size: 15px;
    font-family: "Roboto";
    font-style: normal;
    text-align: center;
  }
  .section-2 h6{
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
  }
  .section-2 .content{
    /* padding-right: 140px; */
  }
  .section-2 .content p {
    margin-bottom: 0px;
    font-family: "Roboto";
    font-size: 14px;
  }
  .section-2 h5{
    font-size: 18px;
    margin-top:5px;
    color: rgb(72, 116, 199);
    text-align: center;
    margin-bottom: 0px;
  }
  .slider-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
  padding-bottom: 0px !important;
    padding: 20px;
  }
  
  .slider-container {
    position: relative;
    width: 100%;
  }
  .slider-label {
    position: absolute;
    top: -32px;
    background-color: #f7f2e1!important;
    padding: 0px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-weight: 500;
    color: rgb(72, 116, 199);
    font-size:18px;
    border: 2px solid #28527b !important;
    white-space: nowrap;
    transform: translateX(-50%);
    transition: left 0.1s;
    z-index: 5;
  }
  .slider-label::after{
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-top-color: inherit;
    content: "";
      position: absolute;
  }
  input[type="range"].styled-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right,rgb(72, 116, 199)  0%, rgb(72, 116, 199) 50%, #f5f5f5 50%, #f5f5f5 100%);
    border-radius: 5px;
    outline: none;
    margin: 10px 0 10px 0;
    position: relative;
    z-index: 2;
  }
  
  input[type="range"].styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 3px solid #007bff;
    border-radius: 50%;
    cursor: url("./cursor-image61489.png"),auto;
    margin-top: -6px;
    position: relative;
    z-index: 3;
  }
  
  input[type="range"].styled-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 3px solid #007bff;
    border-radius: 50%;
    cursor: url("./cursor-image61489.png"),auto;
  }
  
  .ticks-container {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: -20px;
  }
  
  .tick {
    position: absolute;
    width: 2px;
    height: 20px;
    bottom: 14px;
    background-color: #e6e6e6;
    z-index: 1;
    transition: background-color 0.3s;
  }
  
  .min-max-labels {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #7a7a7a;
    margin-top: -10px;
  }
  table{
    width: 100%;
  }
  table th{
    background-color: #4674C6;
    color: #fff;
    font-family: "Roboto";
    font-weight: 400;
    padding: 5px;
    font-size: 13px;
  }
  .first-col td{
    background-color: rgb(220, 234, 245);
    font-family: "Roboto";
    
  }
  table td{
border: 1px solid #fff;
padding: 5px;
font-family: "Roboto";
font-size: 13px;
  }
  table tbody tr:nth-child(even){
    background-color: rgb(235, 240, 250);
  }.highlight , table td span{
    color: red;
  }
  .section-3 h6{
    color: rgb(72, 116, 199);
    text-align: center;
    font-size: 20px;
    margin-top: 14px;
  }
  .section-3 .list{
    width: 280px;
    margin-top: 20px;
  }
  .section-3 .list p{
    margin-bottom: 0px;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-4{
    margin-top: 40px;

  }
  .section-4 p span{
    color: rgb(72, 116, 199);
    font-family: "Roboto";
    font-weight: 600;
  }
  .section-4 p {
    margin-bottom: 10px;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 14px;
  }
  @media only screen and (max-width:1200px){
    .respo-menu{
      display: block !important;
    }
    .header .phone-review-area{display: none !important;}
      .header{
      flex-direction: row !important;
      justify-content: space-between;
      align-items: center;
    }
    .header .navigation{
      display: none !important;
    }
    .respo-menu i{
      font-size: 28px;
      color: #fff;
    }
    .header .upper-header{
        display: none;
    }
    .header .logo-box img{
        width: 140px !important;
        height: auto;
        
    }
    .header .logo-box{
        width: 100%;
        display: flex;
        justify-content: center;
    }
  }
  @media only screen and (max-width:600px){
    .title-section{
      font-size: 22px !important;
    }
    .table-scrollable-container {
      width: 100% !important;
    }
    .special-request-page .section-1 .form-right{
      min-width: 100% !important;
      border-left: none !important;
    }
    .special-request-page .section-1 .step-left h1 {
      font-size: 100px !important;
    }
    .form-right h3{
      font-size: 18px !important;
    }
    .resort-btn, .year-btn {
      font-size: 13px !important;
    }
    .action-buttons button {
      font-size: 12px !important;
    }
    .special-request-page .searchBtn{
      font-size: 13px !important;
      width: 200px !important;
    }
    .thumb{
      width: 35px !important;
      height: 30px !important;
      font-size: 12px !important;

    }
    .range-inputs input {
      font-size: 12px !important;
      width: auto !important  ;
    }
    .range-inputs{
      justify-content: center;
    }
    .responsive-menu.active{
      display: flex !important;
    }
    .special-request-page .section-1 h2{
      font-size: 22px !important;
      margin-bottom: 30px !important;
    }
    .special-request-page section{
      padding: 10px !important;
    }
    .special-request-page{
      margin: 14px 0 !important;
    }
    .special-request-page .section-1 .step-left {
      min-width: 100% !important;
    }

  
    .box-parent{
        flex-wrap: wrap;
    }
    .box{
        height: 120px !important;
        width: 100% !important;
    }
    .box p{
        font-size: 14px !important;
    }
    .section-2 .content {
        padding-right: 0px !important;
    }
    .section-2 .content p{
        font-size: 14px !important;
        
    }
    table{
        width: 1200px;
    }
    .table-container{
        width: 100%;
        overflow: auto;
    }
    .section-4 p {
        font-size: 14px;
    }
    .header .navigation{
        display: none;
    }
    .header .cell_phone{
        display: none;
    }
  }
  .hero-section {
    background-color: rgb(72, 116, 199);
    padding-top: 3rem;
    padding-bottom: 3rem;
    height: fit-content;
    /* position: relative; */
    overflow: hidden;
  }
  
   .ts-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-section .parent {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  
.hero-section  .phone-container {
  position: relative;

    width: 300px;
    height: 600px;
}
.hero-section  .phone-container  .phone-img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 275px;
}
.hero-section  .phone-container  .slider-container{


  position: absolute;
    top: 48px;
    left: 22px;
    width: 225px;
    height: 77%;
    overflow: hidden;
    border-bottom-left-radius: 38px;
    border-bottom-right-radius: 37px;
    z-index: 20;
    background-size: cover;
    transform: rotate(2.5deg);
}
.hero-section  .phone-container  .slider-container .slide-img{
  object-fit: cover;
  /* width: 100%;
  height: 100%; */
}

.hero-section  .phone-container  .slider-container  .slide{
  flex: 0 0 100%;
  height: 100%;
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}
.hero-section  .phone-container  .slider-container  .slide .slide-img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  user-drag: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  max-width:100%;
  opacity: 1;

}
.phone-animation {
  /* opacity: 0; */
  animation: phoneSlideUp 1.2s ease-out forwards;
}

.floating {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.2s;
  /* transform-origin: center center; */
}

@keyframes phoneSlideUp {
  0% {
      opacity: 0;
      transform: translateY(100px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
  100% {
      transform: translateY(0px);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.hero-section .parent .part-1 h2{
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  font-style: italic;
  font-family: "Book" !important;
}
.hero-section .parent .part-1 p{
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  font-family: "Roboto";
  margin-top: 20px;
}
.hero-section .parent .part-1 .sub-title{
  display: flex;
  justify-content: normal;
  align-items: center;
  gap: 15px;
}
.hero-section .parent .part-1 .sub-title .rate-percent{
  color: #fff;
  font-size: 72px;
  font-weight: 600;
  font-family: "Roboto";
}
.hero-section .parent .part-1 .sub-title .commission_text{
  font-size: 24px;
  font-family: "Roboto";
  color: #fff;
  font-weight: 300;
}
.hero-section .part-1 .button-group{
  padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    gap: .5rem;
    display: flex;
    justify-content: normal;
    align-items: center;
}
.hero-section .part-1 .button-group button{
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 7px;
    padding-bottom: 7px;
    border-radius: .5rem;
    border: 2px solid #fff;
    font-size: 14px;
    color: #fff;
    outline: none;
    font-family: "Roboto";
    background-color: transparent;
    font-weight: 500;
}
.hero-section .part-1 .button-group button.active{
  background-color: #fff;
  color: rgb(72, 116, 199);
}
.hero-section .part-1 .button-group button:hover{
  background-color: #fff;
  color: rgb(72, 116, 199);
  transition: all .1s ease-in-out;
}
.hero-section .part-1  .des_text{
  font-size: 18px !important;
  font-family: "roboto";
  margin-top: 20px;
  line-height: 28px;
}
.hero-section .part-1 {
  width: 50%;
  margin-top: 30px;
}



.mega-menu {
  position: fixed;
  top: 70px;
  z-index: 1000;
  left: 50%;
  font-family: "Roboto";
  transform: translateX(-50%) translateY(-10px);
  width: 70% !important;
  
  border: 1px solid #000;
  margin: auto;
  background-color: #fff;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  display: flex;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}



/* Listings Section */
.listings {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 8px;
  min-width: 300px;
}

.listings .title {
  text-decoration: none;
  color: #000;
  display: block;
font-weight: 400;
  padding: 8px 0;

  font-size: 12px;
  margin-bottom: 0px;

  border-bottom: 1px solid #ccc ;

}

.listings-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.column {
  flex: 1;
  min-width: 150px;
}
.column a:not(:last-child){
  border:none;

}
.column a {
  text-decoration: none;
  color: #000;
  display: block;
font-weight: 400;
  padding: 8px 0;

  font-size: 12px;
}
.column a:hover{
 font-weight: 600;
}

/* Image Card */
.image-card {
  flex: 0.3;
  background: transparent;
  border-radius: 8px;

  text-align: center;
  margin: 15px;
  min-height: 200px;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-card img {
  width: 100%;
  height: 150px;
 
}

.section-5 .button-group{
  padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    margin-top: .25rem;
    margin-bottom: .25rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.section-5{

  margin-bottom: 60px;
}
.section-5 .button-group button{
  opacity: 1 !important;
    color:  rgb(70, 116, 198) !important;
    font-size: 16px !important;
    line-height: 2rem !important;
    background-color: #fff;
    outline: none;
    border: 1px solid  rgb(70, 116, 198);
    padding: 0px 25px;
    font-family: "Roboto";
    border-radius: 4px;
    font-weight: normal !important;
}
.section-5 .button-group button:hover{
  background-color:rgb(70, 116, 198) ;
  color: #fff !important;
  transition: all .1s ease-in-out;
}
.section-5 h3{
  opacity: 1 !important;
  color: #4674C6 !important;
  font-size: 25px !important;
  font-family: "Roboto";
  border-bottom: 2px solid #4674C6;
  line-height: 2rem !important;
  width: fit-content;
  font-weight: normal !important;
 
}
.section-5 .boxes-parent{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.section-5 .boxes-parent .box{
  display: flex;
  justify-content: normal;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.section-5 .boxes-parent .box h4{
  opacity: 1 !important;
  color: #4674C6 !important;
  font-size: 20px !important;
  line-height: 2rem !important;
  font-weight: normal !important;
  margin-bottom: 0px;
}
.section-5 .boxes-parent .box p{
  opacity: 1 !important;
    color: #374151 !important;
    font-size: 16px !important;
    line-height: 2rem !important;
    font-weight: normal !important;
}
.section-6 h3{
  opacity: 1 !important;
  color: #4674C6 !important;
  font-size: 25px !important;
  font-family: "Roboto";
  border-bottom: 2px solid rgb(229, 231, 235);
  line-height: 2rem !important;
  width: fit-content;
  font-weight: normal !important;
 
}
.section-6{
  margin-bottom: 60px;
}


.section-6 .slider {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  overflow: hidden;
}

.section-6 .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.section-6 .testimonial {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  cursor: url("./cursor-image61489.png"),auto;
}

.section-6 .stars {
  color: #df5c2e;
  font-size: 1.5rem;
}

.section-6 .testimonial-text {
  font-size:20px;
  color: rgb(34, 82, 124);
  margin: 1rem 0;
  max-width: 90%;
  margin-left: auto;
  font-family: "Book";
  margin-right: auto;
}

.section-6  .author {
  color: rgb(55, 65, 81);
  font-weight: bold;
  margin-top: 1rem;
}

.section-6 .sub {
  font-size: 0.9rem;
  color: rgb(55, 65, 81);
}

.section-6 .google-reviews {
  margin-top:0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.section-6 .google-reviews span{
  color: #facc15;
  fill: #facc15;
}
.section-6 .view-all {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.section-6    .view-all button {
  padding: 8px 20px;

  border: 2px solid rgb(70, 116, 198);
  color: rgb(70, 116, 198);
  background: white;
  border-radius: 4px;
  font-size: 14px;
  cursor: url("./cursor-image61489.png"),auto;
}
.section-6    .view-all button:hover{
  background-color: rgb(70, 116, 198);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.section-6 .view-all button strong {
  font-weight: 700;
}
.section-7{
  display: flex;
  justify-content: center;
  align-items: normal;
  gap: 20px;
}
.section-7 .part-1{
  width: 440px;
  position: relative;
}
.section-7 .part-1 .phone-container{
  right: -38px;
  position: relative;
}
.section-7 .part-1 .phone-container img{
  width: 15rem;

}
.section-7 .part-1 .phone-container img:nth-child(1){
  width: 15rem;
position: absolute;
right: 48px;
top: -27px;
}
.section-7{
  margin-bottom: 60px;
}
.section-7 .part-1 .message-box{
  position: absolute;
  right: -2rem;
  font-family: "Book";
  padding: .5rem;
  border: 1px solid #ccc;
  width: 17rem;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
}
.section-7 .part-1 .message-box img{
  width: 20px;
  margin-bottom: .125rem;
}
.section-7 .part-1 .message-box h6{
  color: rgb(70, 116, 198);
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 700;
  margin-top: 0px;
}
.section-7 .part-1 .message-box p{
  font-size: 13px;
  color: #000;
  margin-bottom: 0px;
}
.section-7 .part-2 h5{
font-size: 36px;
color: rgb(70, 116, 198)  ;
}
.section-7 .part-2  p{
  font-size: 14px;
}
.section-7 .part-2{
  width: 50%;
}
.section-7 .part-2 ul li{
  font-size: 14px;
  margin-bottom: 14px;
}.section-7 .part-2 ul{
  margin: 0px;
  padding-left: 1rem;
}
.section-8 {
  margin-bottom: 60px;
}
.section-8 h3{
  opacity: 1 !important;
  color: #4674C6 !important;
  font-size: 25px !important;
  font-family: "Roboto";
  border-bottom: 2px solid #4674C6;
  line-height: 2rem !important;
  width: fit-content;
  font-weight: normal !important;
  margin-bottom: 20px;
}
.section-8 h6{
  opacity: 1 !important;
  color: #4674C6 !important;
  font-size: 20px !important;
  line-height: 2rem !important;
  margin-bottom: 0px;
  font-weight: normal !important;
}
.section-8  p{
  font-size: 14px;
  line-height: 25px;
}
.section-9{
  margin-bottom: 60px;
}
.section-9 h3{
  opacity: 1 !important;
  color: #4674C6 !important;
  font-size: 25px !important;
  font-family: "Roboto";
  border-bottom: 2px solid #4674C6;
  line-height: 2rem !important;
  width: fit-content;
  font-weight: normal !important;
  /* margin-bottom: 20px; */
}

.section-9 .blog-section {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem;
  flex-wrap: wrap;
}

.section-9 .blog-card {
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.section-9 .blog-card:hover {
  transform: translateY(-5px);
}

.section-9 .blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.section-9   .blog-card h4 {
  color: #4674C6;
  font-size: 1.1rem;
  padding: 1rem 1rem 0.5rem;
}

.section-9   .blog-card p {
  padding: 0 1rem;
  font-weight: 500;
  color: #555;
  font-size: 0.95rem;
  flex-grow: 1;
}

.section-9 .read-more {
  margin: 1rem;
  display: inline-block;
  color: #3c6fc8;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #3c6fc8;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.3s, color 0.3s;
}

.section-9 .read-more:hover {
  background: #3c6fc8;
  color: white;
}




.footer {
  background-color: #4173cc;
  color: white;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-col {

  
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer .logo img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.footer .social-icons {
  margin-top: 10px;
}

.footer .social-icons a {
  margin-right: 10px;
  color: white;
  text-decoration: none;
  font-size: 18px;
}


.footer .phone-wrapper {
  align-self: flex-end;
  margin-top: 0 ;
}

 
.footer .phone-img {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
  
    align-items: flex-start;
  }

 
.footer  .phone-wrapper {
    align-self: center;
    margin-top: 20px;
  }
}

@media only screen and (max-width:600px){
  .phone-review-area{
    display: none !important;
  }
  .hero-section .parent .part-1 h2{
    font-size: 40px !important;
  }
  .section-10 h2{
    font-size: 30px !important  ;
  }
  .section-10 p{
    font-size: 14px !important;
  }
  .section-10 table td{
    font-size: 13px !important;
  }
  .hero-section .part-1 {
    width: 100% !important;
    margin-top: 0px !important;
  }
  .hero-section .parent {
    flex-wrap: wrap;
  }
  .hero-section .part-1 .button-group  , .section-5 .button-group
  {
    flex-wrap: wrap;
  }
  .hero-section .part-1 .button-group button , .section-5 .button-group button {
    width: 100% !important;
  }
  .hero-section .parent .part-1 .sub-title .commission_text {
    font-size: 16px !important;
  }
  .section-5 h3 {
    font-size: 18px !important;
  }
  .section-5 .boxes-parent .box p{
    font-size: 13px !important;
    line-height: 24px !important;
  }
  .section-5 .boxes-parent .box h4 {
    font-size: 18px !important;
  }
  .section-6 h3 {
    font-size: 18px !important;
    text-align: center;
  }
  .section-6 .slider {
    max-width: 100% !important;
  }
  .section-7 {
    flex-wrap: wrap;
  }
  .section-7 .part-1 {
width: 100% !important;
  }
  .section-7 .part-2 {
    width: 100% !important;
  }
  .section-7 .part-1 .phone-container{
    right: 0 !important;
  }
  .section-7 .part-1 .message-box{
right: 0px !important;
  }
  .section-8 h3{
    font-size: 18px !important;
    text-align: center;
  }
  .section-8 .col-md-6{
    width: 100% !important;
  }
}



.section-10 table {
  width: 50%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.section-10 table thead tr{
  background-color: #fff !important;
}
.section-10 table tr.total{
border-top: 3px solid #ccc;
}
.section-10 table th{
  background-color: #fff;
  width: 150px !important;
  border: 1px solid #ccc;
  text-align: right;
  font-size: 18px;
  padding-right: 10px;
  color: #000;
  font-weight: 700;
}
.section-10 table td {
  border: 1px solid #ccc;
  padding:6px;
  font-size: 13px;
  color: #4173cc;
  text-align: right;
}

.section-10 table td:first-child {
  text-align: left;
  
}

.section-10 .green {
  color: green;
  font-weight: 600;
}

.section-10 .red {
  color: red;
  font-weight: 600;
}

.section-10  .summary {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.section-10  .net-box {
  border: 2px solid black;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.section-10  .net-box div {
  font-size: 20px;
}

.section-10   .blue-btn {
  background: #3f74d8;
  color: white;
  padding: 8px 25px;
  
  font-size: 16px;
  border: none;
  border-radius: 6px;
  margin-top: 30px;
  cursor: url("./cursor-image61489.png"),auto;
}

.section-10  p.note {
  font-size: 18px;
  margin-top: 30px;
  color: #333;
}
.section-10{
  margin-top: 40px;
  margin-bottom: 60px;
}
.section-10 h2{
  color: #3f74d8;
  font-style: italic;
  text-align: center;
  font-size: 40px;
}
.section-10 p{
  text-align: center;
  margin-bottom: 0px;
  font-size: 18px;
  font-style: italic;
}


  .rating-image-box img {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease-in-out;
  }

  .cell_phone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    min-width: 220px; /* Set to width of longest phone string */
    white-space: nowrap;
  }
  
  #phone-text {
    display: inline-block;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
  
  .phone-slide-out {
    transform: translateY(-100%);
    opacity: 0;
  }
  
  .phone-slide-in {
    transform: translateY(0);
    opacity: 1;
  }

  

  .profile-wrapper {
    position: relative;
    padding: 0px;
    padding-top: 2px;
  }

  .profile-button {
    background-color: #3c70c6;
    border: 2px solid white;
    border-radius: 50px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: url("./cursor-image61489.png"),auto;
  }

  .profile-button i {
    font-size: 18px;
  }



  .dropdown-box .section {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
  }

  .dropdown-box .section:last-child {
    border-bottom: none;
  }

  .dropdown-box a {
    display: block;
    padding: 4px 0;
    color: #3c70c6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .dropdown-box a:hover {
    text-decoration: underline;
  }
  .respo-menu{
    display: none;
  }
  .responsive-menu {
    display: none;
    background: rgb(70, 116, 198);
    padding: 15px;
    position: absolute;
    top: 34px;
    left: 0;
    height: 340px;
    width: 100%;
    overflow-y: auto;
    border: 1px solid #fff;
    z-index: 9999;
  }
  .responsive-menu ul li{
    list-style: none;
    color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
  }
  .responsive-menu ul{
    padding: 0px;
  }
  .responsive-menu ul li a{
    list-style: none;
    color: #fff;
  }
  .ts-particles-parent{
    position: relative;
    overflow: hidden;
  }
  .special-request-page section{
    border-radius: 15px;
   
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
  
  }
  .special-request-page {
    margin: 50px 0px;
  }
  .special-request-page .section-1 h6{
    color: #4674C6;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .special-request-page .section-1  h2{

    font-size: 36px;
color: #4674C6;
margin-bottom: 60px;
  }
  .special-request-page .section-1   .form-step {
    display: flex;
    align-items: start;
    justify-content: normal;
    flex-wrap: wrap;
  }

  .special-request-page .section-1   .step-left {
    flex: 1;
    min-width: 150px;
    text-align: center;
    /* border-right: 2px solid #ccc; */
    padding-right: 20px;
  }

  .special-request-page .section-1   .step-left p {
    color: #4674C6;
    font-size:20px;
    margin-bottom: 0px;
    margin-right: 80px;
    font-weight: 600;
    font-style: normal;
  }

  .special-request-page .section-1   .step-left h1 {
    font-size: 160px;
 
    color: #3366cc;
    margin-top: 0px;
    font-weight: 500 !important ;
    line-height: 1;
  }
  .special-request-page .section-1   .form-right {
    flex: 2;
    min-width: 250px;
    padding-left: 40px;
    border-left: 1.5px solid #9A9999;
  }

  .special-request-page .section-1    .form-group {
    margin-bottom: 25px;
  }

  .special-request-page .section-1    .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .special-request-page .section-1    .form-group input {
    width: 100%;
    padding: 10px 0;
    padding-left: 5px;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
  }
  .special-request-page .section-1    .form-group input:focus{
    background-color: transparent;
    box-shadow: none;
  }
  @media (max-width: 768px) {
    .special-request-page .section-1     .form-step {
      flex-direction: column;
    }

    .special-request-page .section-1      .form-right {
      padding-left: 0;
    }
  }

  
  .form-right h3 {
   
    color: #4674C6;
    font-size:22px;
    font-weight: 600 !important;
    margin-bottom: 20px;
  }

  .resort-buttons  ,   .year-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .resort-btn ,   .year-btn {
    padding: 4px 15px;
    border: 1px solid #7E7E7F;
    border-radius: 6px;
    background: transparent;
    color: #7E7E7F;
    /* cursor: pointer; */
    transition: all 0.2s;
  }

  .resort-btn.active ,   .year-btn.active {
    background-color: #95B4EB;
    color: white;
    border-color: #95B4EB;
  }

  .action-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }

  .action-buttons button {
    padding: 8px 16px;
    border: 1px solid #4674C6;
    background: transparent;
    color: #4674C6;
    border-radius: 6px;
    font-weight: 600;
    /* cursor: pointer; */
    transition: all 0.2s ease;
  }

  .action-buttons button:hover {
    background-color: #4674C6;
    color: white;
  }

  .range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .range-inputs input {
    width: 60px;
    padding: 6px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }

  .range-slider {
    position: relative;
    width: 100%;
    height: 40px;
  }

  .slider-track {
    position: absolute;
    height: 6px;
    background: #e0e0e0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-radius: 3px;
  }

  .slider-range {
    position: absolute;
    height: 6px;
    background: #3366cc;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
  }

  .thumb {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 32px;
    background: white;
    border: 2px solid #3366cc;
    border-radius: 6px;
    cursor: pointer; 
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3366cc;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #666;
    font-size: 14px;
  }
  .special-request-page .searchBtn{
    background-color: #4674C6;
    border: none;
    outline: none;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 0 auto;
    font-size: 20px;
    color: #FFFFFF;
    width: 400px;
    margin-top: 20px;
    
  }
  .table-section .part-2 .table-scrollable-container table thead .table-cell{
    display: table;
  }.text-right {
    text-align: right;
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid {
    display: grid
  ;
  }
  .pr-2 {
    padding-right: .5rem;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .b-l{
    border-left:2px solid #000 ;
  }
  .b-r{
    border-right:2px solid #000;
  }
  .text-center{
    text-align: center !important;
  }
  .rounded-md{
    border-radius: .375rem;
  }
  .border-gray-300{
    border: 1px solid rgb(209 213 219 );
  }
  .b-custom{
    border-color: rgb(35 82 124) !important;
  }
  .pl-1{
    padding-left: .375rem;
  }
  .d-none{
  
    display: none;
  }
  .grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .col-span-10{
    grid-column: span 10 / span 10;
  }
  .pl-3{
    padding-left: .75rem;
  }
  .py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }
  .d-block{
    display: block;
  }

 .table-scrollable-container{
    height: 640px;
    overflow: auto;
   width: 70%;
   margin: 0 auto;
    border:1px solid rgb(105 113 253) ;
    box-shadow:  0 0 #0000, 0 0 #0000,0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1)
  }
 .table-scrollable-container table{
    width: 100%;
    border-collapse: collapse;
  }
 .table-scrollable-container table thead{
    background-color: #4674C6;
    position: sticky;
  
    top: 0;
    left: 0;
  }
  .table-scrollable-container table tbody tr td,   .table-scrollable-container table thead tr th {
    text-align: center;
    font-weight: 500;
    font-family: "Roboto";
  }
  .table-scrollable-container table .points-parent div {
width: 33.3%;
border-left:1px solid #000 ;
  }
  .table-scrollable-container table td{
    border: none;
  }
  .table-scrollable-container table td  i{
    font-size: 20px;
  color: #4674C6;
  }
  .table-scrollable-container table td button{
    background-color: rgb(71, 161, 90);
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 4px 8px;
    color: #fff;
    font-weight: 500;
  }
 .table-scrollable-container table thead tr{
    color: #fff;
  }
 .table-scrollable-container table thead tr th div, .table-section .part-2 .table-scrollable-container table thead tr th span{
    font-size: 16px;
      font-weight: 800;
      line-height: 24px;
  }
 .table-scrollable-container table thead tr th{
    font-weight: 600;
    text-align: center;
    width: auto;
    font-size: 16px;
    padding-left: 12px;
  }
 .table-scrollable-container table  td img{
    width: 20px;
  }
 .table-scrollable-container table  td div
  {
    line-height: 24px;
    font-size: 16px;
    color: rgb(31, 78, 121);
  }


  .listing-text-area div h4{
    color:#888888be ;
    font-size: 24px;
    font-weight: 600;

    line-height: 32px;
    margin-top: 10px;
  }
  .listing-text-area div  p{
    font-size: 18px;
    text-align: left;
    font-style: normal;
    font-weight: 500;
    color: #4674C6;
    line-height: 25.6px;
  }
  .reviews-parent .review-box{
    padding: 4px 20px;
    color: #4674C6;
    border-radius: 4px;
    transition: all .2s ease-in-out;
border:1px solid rgb(229, 231, 235);
  }
  .reviews-parent .review-box p{
font-style: italic;
font-size: 16px;
margin-top: 5px;
  }
  .reviews-parent .review-box h4{
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
  }
  .reviews-parent .review-box h6{
font-size: 20px;

  }
  .pagination li{
    display: inline-block;
    border:1px solid #4674C6;
    min-width: 50px;
    color: #4674c6;
    font-weight: 600;
    min-height: 40px;
padding: 10px;
text-align: center;
margin: 0 5px;
transition: all .2s ease-in-out;
  }
  .pagination li.active{
    background-color:#4674C6 ;
    color: #fff;
  }
  .pagination{
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .review-box {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }
  .review-box:hover{
    background-color: #4674C6;
    color: #fff;
  }

  .review-box.show {
    display: block;
  }

  .review-box.fade-in {
    opacity: 1;
  }
  .about-us-page{
    margin: 50px 0px;
  }
  .title-section{
    color: #000 !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 32px !important;
  }


  .popular-question {
    /* background: #f6f8fb; */
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 5px;
    font-weight: 500;
    cursor: pointer;
font-size: 14px;
    transition: background 0.3s;
    color: rgb(31, 78, 121);
    text-decoration: none;
    display: block;
    
  }
  .popular-questions-container h6{
    font-weight: 800;
    font-size: 18px;
    color: #4674C6;
  }

  .popular-question:hover,  .popular-question:active ,.popular-question:focus {
    background: #e3e7ed;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .popular-questions-container {
      margin-right: auto;
      margin-left: auto;
    }
  }
  .modal-arrow i{
    font-size: 24px;
    position: relative;
    top:2px;
    font-weight: 900;
  }
  .modal-title
  {
    color: #4674c6;
    font-weight: 700;
  }
  #profileDropdown .dropdown-box .section{
    flex-direction: column;
  }
  .lender-selection{
    width: 100%;
    display: flex;
justify-content: space-between;
align-items: center;
  }
  .lender-selection div.active{
    opacity: 1;
    border: 2px solid #4674C6;
    transition: all .1s ease-in-out;
  }
  .lender-selection div{
    border: 1px solid #4674C6;opacity: .7;
    border-radius: 4px;
    background-color: #fff;
    height: auto;
    margin-bottom: 14px;
    width: 32%;
    padding: 10px;
  }
  .lender-selection div img

  {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
  }

  .top-section-x91 {
    padding: 15px 10px;
    background: transparent;
    border-bottom: 2px solid #888;
    text-align: center;
    position: relative;
  }

  .top-btns-x91 {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 10px;
  }

  .top-btn-block-x91 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .top-btn-x91 {
    background: #4674C6;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    cursor: pointer;
  }

  .top-text-x91 {
    font-size: 12.5px;
    color: #555;
  }

  .or-x91 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 0 5px;
    font-size: 14px;
    color: #555;
  }

  .divider-line-x91 {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 1px;
    background: transparent;
    z-index: 0;
  }

  .link-section-x91 {
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .link-item-x91 {
    display: flex;
    align-items: center;
    color: #4674C6;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
  padding: 0px;
  margin-bottom: 5px;
  }
  .dropdown-box a {
    font-size: 13px;
    padding: 0px;
  }
  .dropdown-box a:hover{
    text-decoration: none;
  }
  .link-item-x91 i {
    margin-right: 10px;
    font-size: 16px;
  }

  .link-item-x91:hover {
opacity: .7;
  }
  .preview-image-x91{
    height: 200px;
    width: 100%;
padding: 0 10px;
padding-bottom: 10px;
  }
  .preview-image-x91 img {
width: 100%;
height: 100%;
/* object-fit: cover; */
    display: block;
  }

  @media (max-width: 400px) {
    .card-box-x91 {
      max-width: 90%;
    }
  }
  .dropdown-box {
    position: absolute;
    top: 50px;
    right: 0;
    /* transform: translateX(-50%); */
    background-color: white;
    border-radius: 10px;
    /* padding: 10px 0; */
    width:250px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
  }
  @media only screen and (min-width:1500px){
    .dropdown-box{
      left: 50%;
      transform: translateX(-50%);
    }
  }
  .animated-img {
  /* width: 150px; */
  height: auto;
  animation: slide-fade 6s ease-in-out infinite alternate;
  position: relative;
  opacity: 0;
}

/* Animation with opacity + horizontal movement */
@keyframes slide-fade {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  25% {
    transform: translateX(0px);
    opacity: 1;
  }
  75% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}

/* Delay each image for a wave-like effect */
.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 1.5s;
}

.delay-3 {
  animation-delay: 2s;
}
.animated-img-1 {
  /* width: 150px; */
  height: auto;
  animation: slide-fad1e 6s ease-in-out infinite alternate;
  position: relative;
  opacity: 0;
}

/* Animation with opacity + horizontal movement */
@keyframes slide-fad1e {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  25% {
    transform: translateY(0px);
    opacity: 1;
  }
  75% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}

/* Delay each image for a wave-like effect */
.delay-4 {
  animation-delay: 1s;
}

.delay-5{
  animation-delay: 1.5s;
}



.mobile-offcanvas .dropdown div{
font-size: 16px;
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.mobile-offcanvas .mobile-nav{
  list-style: none;
padding: 0;
}
.mobile-offcanvas .home-nav-item {
  margin-bottom:20px ;
}
.mobile-offcanvas .home-nav-item a{ 
  font-size: 16px;

  text-decoration:none ;
  color: #000;
}
.mobile-offcanvas .submenu {
  background: #f5f5f5;
  padding: 10px;
  list-style: none;
}
.mobile-offcanvas .submenu li{
  font-size: 14px;
  margin-bottom: 10px;
}
.mobile-offcanvas .submenu li a{
  color: #000;
  /* text-decoration: none; */
}
.mobile-offcanvas .offcanvas-title{
  color: #4674C6;
  font-weight: 700;
}
.make-offer-page .postheader__title{
  border-bottom: 2px solid rgba(124, 188, 222, .15);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}
.make-offer-page{
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
.make-offer-page .make-an-offer__title{
  color:#4674C6
}
.make-offer-page p{
  font-size: 16px;
  line-height: 28px;
}
.make-offer-page .sidebar-offer__inside{
  background: #f7f7f9;
  padding: 20px 30px;
  width: 100%;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}
.make-offer-page .sidebar-offer__inside .sidebar-offer__title{
  font-size: 22px;
  text-align: center;
  font-weight: 600;
}
.make-offer-page .sidebar-offer__inside .sidebar-offer__fields{
  padding-top: .875rem;
  padding-bottom: .875rem;
}
.make-offer-page .sidebar-offer__inside .sidebar-offer__label
{
  text-transform: uppercase;
    font-weight: 700;
    font-size: .8125em;
    line-height: 1.0769230769em;
    margin-bottom: 4px;
}
.make-offer-page .sidebar-offer__inside .sidebar-offer__value{


  font-size: .875em;
    line-height: 1.4285714286em;
    margin-bottom: 15px;
}
.make-offer-page .sidebar-offer__inside .sidebar-offer__return{
padding: 10px 14px;
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border-radius: 4px;

  background: #4674C6;
}

.make-offer-page .total-cost{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  border: 2px solid #4674C6;
  padding: 13px 29px 25px;
  display: flex
;
  flex-wrap: wrap;
  /* align-items: center; */
}
.make-offer-page .firm-price-note 
{
  color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.make-offer-page .total-cost__fields {
  width: 54%;
}

.make-offer-page .total-cost__results {
  width: 46%;
  padding-left: 36px;
}
.make-offer-page .total-cost__field{
  flex-wrap: nowrap;
  display: flex
;
    align-items: baseline;
    margin-top: 12px;
}

.make-offer-page .total-cost__field .total-cost__labels {
  width: 40%;
}
.make-offer-page .total-cost__field     .total-cost__textbox {
  width: 60%;
}
.make-offer-page .total-cost__label {
  display: block;
}
.make-offer-page .total-cost__help, .total-cost__results-info {
  font-size: .75em;
  color: #8a8a8a;
  display: block;
  line-height: 1.5em;
  font-style: italic;
}

.total-cost input[disabled], .total-cost select[disabled] {
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
  width: 100%;
  outline: NONE;
  height: 100%;
  padding: .375em 2em .375em .375em;
  color: #0a0a0a;
}

.total-cost__results-title {
  font-size: 1.4375em;
  margin-top: 12px;

}


.total-cost__results-title span {
    font-weight: 700;
    display: inline-block;
    padding-left: 5px;
}
.total-cost__results-info {
  padding-top: 6px;
}
.make-offer-form label{
  color:rgb(1, 13, 60);

  font-size: 14px;
  font-weight: 600;
}
.make-offer-form input , .make-offer-form select{
  width: 100%;
    height: 2.375rem;
    padding-left: 10px !important;
  padding: .375em;
    background-color: #fefefe;
    border: 1px solid #e6e6e6;
    font-size: 14px;
    border-radius: 3px;
}
.make-offer-form  button{
  color: #fff;
  height: 3em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-weight: 700;
  font-style: italic;
  font-size: 1em;
  background: #4674C6;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
  font-size: 1.125em;
}
@media only screen and (max-width:750px)
{

.make-offer-page
{
  flex-wrap: wrap;
  padding:20px 15px !important;
}
.make-offer-page p{
  font-size: 13px !important;
}
.make-offer-page .firm-price-note {
  font-size: 12px;
}
.make-offer-page .total-cost__results{
  width: 100% !important;
  padding-left: 0 !important;
}
.make-offer-page .total-cost__fields{
  width: 100% !important;
}
.make-offer-page .total-cost__field .total-cost__labels 
{
  width: 100% !important;
}
.make-offer-page .total-cost__field .total-cost__textbox {
  width: 100% !important;
}
.make-offer-page .total-cost__field {
  flex-wrap: wrap !important;
}
.make-offer-page .sidebar-offer__inside {
  margin-top: 20px;
}
.make-offer-page .postheader__title{
  font-size: 25px !important;
}
}