/************** START HP SLIDESHOW *************/
.hp-slideshow-wrap{
  position: relative;
  z-index: 1;
}
.hp-slideshow{
  position: relative;
}
.hp-slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32%;
  background: linear-gradient(to top, transparent 0%, #101820 100%);
  opacity: 95%;
  pointer-events: none;
}
.languages {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.languages span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.languages img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}
/************** END HP SLIDESHOW *************/

/************** START HP QUICK SEARCH *************/
.hp-qs {
  position: relative;
  background: var(--primary-color);
  padding: 50px 0 40px;
}
.qs-wrap{
  width: 1366px;
  max-width: 100%;
  padding: 0 15px;
}
.qs-inner {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.fields-wrap {
  display: flex;
  /*width: 72.19%;*/
  width: 100%;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.qs-field {
  position: relative;
  width: calc( (100% / 9) - 5px );
}
.qs-btn-wrap {
  /*width: 27.81%;*/
	width: 14.81%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.fields-wrap .long {
  width: 23.09%;
        width: 17.09%;
  /* margin-bottom: 23px; */
}
.fields-wrap .qs-city{
  width: 20.91%;
}
.fields-wrap .short {
  width: 12.5%;
        width: 10.5%;
  /* margin-bottom: 23px; */
}
.fields-wrap input[type=text],
.fields-wrap input[type=number],
.fields-wrap select,
.fields-wrap .qs-field a {
  background: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #888c90;
  padding: 10px 5px;
  padding-left: 6px;
  color: #ffffff;
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  height: 45px;
}
.fields-wrap .qs-field .btn-group {
  width: 100%;
}
.fields-wrap .qs-field a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  text-align: left;
}
.fields-wrap input[type=text]{
    
}
.fields-wrap input[type=number]::-webkit-outer-spin-button,
.fields-wrap input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fields-wrap input[type=number] {
    -moz-appearance: textfield;
}
.fields-wrap select {
  background: url(https://cdn.agentimagehosting.com/Pd86WPaBce9taRyp0sBNT/2023/11/caret-icon.png) no-repeat right;
  background-size: 9px 5px;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-position-x: calc(100% - 10px);
  background-position-y: 48%;
  padding-bottom: 13px;
  padding-top: 13px;
}
.fields-wrap .qs-type select{
  background: none;
}
.fields-wrap select option{
  color: #000000;
}
.qs-btn-wrap > div {
  /*width: 46.4%;*/
  width: 100%;
}
.qs-btn-wrap > .qs-search-btn {
  margin-left: 18px;
}
.qs-btn-wrap input[type=submit] {
  transition: var(--default-transition);
  width: 100%;
  background: var(--accent-color);
  color: #ffffff;
  border: none;
  padding: 14.5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  display: none;
}
.qs-poweredby {
  text-align: right;
  font-size: 12px;
  color: #ffffff;
  margin-top: 13px;
  padding: 0;
}
.qs-btn-wrap .search-btn-label,
.qs-button button {
  appearance: none;
  border: 0;
  width: 50%;
  height: 50px;
  display: block;
  padding: 10px 0;
  color: #ffffff;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  background: var(--accent-color);
  word-break: break-all;
  border: 1px solid var(--accent-color);
  transition: var(--default-transition);
}
.qs-btn-wrap .search-btn-label:hover,
.qs-button button:hover {
  background: none;
  border-color: #bbbbbb;
}
/* .qs-btn-wrap .search-btn-label,
.qs-button button span {
  position: relative;
  z-index: 1;
} */
/* .qs-btn-wrap .search-btn-label,
.qs-button button::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: var(--default-transition);
  pointer-events: none;
} */
.qs-btn-wrap .search-btn-label::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #bbbbbb;
  background: var(--primary-color);
  opacity: 0;
  transition: var(--default-transition);
  pointer-events: none;
}
.qs-btn-wrap .search-btn-label:hover::before {
  opacity: 0;
}
.qs-btn-wrap .search-btn-label:hover::after {
  opacity: 1;
}

.qs-inner form {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.advanced-btn a{
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14.5px 10px;
  max-width: unset;
}
.advanced-btn a::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #bbbbbb;
  transition: var(--default-transition);
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}
.advanced-btn a:hover::before{
  /* opacity: 0; */
}
.advanced-btn a::after{
  opacity: 0;
}

.qs-wrap .dropdown-menu {
  padding: 20px 10px 10px;
  overflow-y: scroll;
  max-height: 200px;
}
.qs-wrap .dropdown-menu.open {
  display: block;
  padding: 20px 10px 10px;
}
.qs-wrap .dropdown-menu li {
  margin-bottom: 7px;
}
.qs-wrap .paper-checkbox {
  position: relative;
  display: flex;
  align-items: center;
}
.qs-wrap .paper-checkbox input[type="checkbox"] {
  display: none;
}
.qs-wrap .paper-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 11px;
  padding-left: 20px;
}
.qs-wrap .paper-checkbox input[type="checkbox"]:checked + label .check {
  display: block;
}
.qs-wrap .paper-checkbox .check {
  display: none;
  margin-right: 6px;
  font-size: 14px;
  color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.qs-wrap .paper-checkbox .box {
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  background: #fff;
  border-radius: 4px;
  margin-right: 6px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.qs-wrap .paper-checkbox input[type="checkbox"]:checked + label .box {
  display: none;
}
.select-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 0px 10px;
  flex-direction: column;
}
.select-flex .form-group {
  margin: 5px 0;
  width: 100%;
}
.select-flex .form-group input {
  color: #000;
  padding: 0;
  height: 30px;
  border: 1px solid gray;
  width: 60px;
  padding: 5px;
  width: 100%;
}
.qs-wrap .dropdown-menu.priceDropdown {
  padding: 20px 0px 10px;
}
.qs-wrap .dropdown-menu.priceDropdown .price-options li {
  padding: 5px 10px;
  margin-bottom: 0;
}
.qs-wrap .dropdown-menu.priceDropdown .price-options li:hover {
  cursor: pointer;
  background: gray;
}
/************** END HP QUICK SEARCH *************/

/************** START HP WELCOME *************/
.hp-wc{
  padding: 65px 15px;
}
.wc-wrap {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
}
.wc-wrap > div {
  position: relative;
}
.wc-wrap .left-col {
  width: 39.86%;
}
.wc-wrap .left-col .img-wrap{
  height: 100%;
}
.wc-wrap .right-col {
  width: 60.14%;
  background: var(--primary-color);
  padding-top: 11.5%;
  padding-left: 6.9%;
  padding-right: 7%;
  padding-bottom: 50px;
}
.wc-desc{
  margin-top: 45px;
}
.wc-btn{
  margin-top: 54px;
}
.wc-accent{
  position: absolute;
  width: 88.3%;
  height: auto;
  opacity: 5%;
  top: 54%;
  left: 49%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.wc-text{
  position: relative;
}
.wc-title h2{
  width: max-content;
  position: relative;
}
.wc-title h2::after{
  position: absolute;
  content: '';
  width: 110%;
  height: 1px;
  right: -115%;
  top: 72%;
  transform: translateY(-50%);
  background: #ffffff;
  opacity: 30%;
}
/************** END HP WELCOME *************/
/************** END HP FEATURED PROPERTIES *************/
.hp-fp > div{
  padding: 88px 15px 80px;
}
.bg-fp canvas{
  opacity: 10%;
  filter: grayscale(1);
}
.fp-wrap {
  position: relative;
  
  width: 100%;
  max-width: 1483px;
  margin: auto;
}
.fp-inner{
  display: flex;
  flex-flow: row wrap;
}
.fp-title-wrap{
  position: absolute;
  width: 31.34%;
  padding: 1.5px;
  padding-left: 2.3%;
  padding-top: 6.5%;
}
.fp-btn{
  margin-top: 47px;
  margin-left: 5px;
}
.fp-btn a{
  max-width: 251px;
}
.fp-item {
  width: calc(100% / 3);
  position: relative;
  padding: 1.5px;
  overflow: hidden;
}
.fp-item > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fp-item .img-wrap {
  position: relative;
  height: 100%;
  background: var(--primary-color);
}
.fp-item .img-wrap::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 73%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
  pointer-events: none;
  opacity: 41%;
}
.fp-item .img-wrap canvas{
  max-height: 351px;
}
.fp-details {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 25px;
  padding-left: 22px;
  transition: var(--default-transition);
}

.fp-details .info-1 {
  display: block;
}

.fp-details .info-2 {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  /* justify-content: space-between; */
}

.fp-details .info-2 .info-amenity {
    color: #fff;
    margin-right: 30px;
    /* margin-top: 20px; */
}

.fp-price {
  font-size: 29px;
  color: #ffffff;
  font-weight: 500;
}
.fp-address {
  font-size: 16px;
  color: #ffffff;
  margin-left: 0;
  text-transform: uppercase;
  padding-top: 7px;
  letter-spacing: 0.05em;
}
.fp-item:first-child{
  margin-left: 31.51%;
}
.fp-item:nth-of-type(2),
.fp-item:nth-of-type(5){
  width: 36.23%;
}
.fp-item:nth-of-type(3){
  width: 31.51%;
}
.fp-item:first-child,
.fp-item:nth-of-type(4){
  width: 32.19%;
}
.fp-item:nth-of-type(6){
  width: 42.58%;
}
.fp-item:last-of-type{
  width: 32.86%;
}
.fp-item:nth-of-type(2){
  margin-bottom: 66px;
}
.fp-item:nth-of-type(5){
  margin-top: -66px;
}
.fp-btn-wrap{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24.56%;
  padding-bottom: 4%;
  padding-left: 15px;
}
.fp-cta {
  margin-bottom: 13px;
}
.fp-cta a{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 22px 5px;
  color: var(--accent-color);
  max-width: 315px;
  margin-left: auto;
}

.fp-cta a::before{
  border: 2px solid var(--accent-color);
  opacity: 1;
}
.fp-cta a::after{
  opacity: 0;
}

.fp-cta a:hover{
  color: #ffffff;
}

.fp-item > a:hover img{
  transform: scale(1.3) translateY(15px);
  transform: scale(1.1);
}
/************** END HP FEATURED PROPERTIES *************/

/************** START HP FEATURED COMMUNITIES *************/
.hp-fc{
  padding: 90px 15px 70px;
}
.fc-inner{
  width: 100%;
  max-width: 1480px;
  margin: auto;
  margin-top: 80px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.fc-item{
  width: calc((100%/3) - 20.3px);
  margin-bottom: 35px;
  position: relative;
}
.fc-item > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fc-item .img-wrap img {
  filter: grayscale(1);
}
.fc-item a:hover .img-wrap img {
  filter: grayscale(0);
}
.fc-item .img-wrap::before{
  position: absolute;
  content: '';
  width: 82.45%;
  height: 32.78%;
  border: 1px solid #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: var(--default-transition);
}
.fc-item .img-wrap::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 61%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.fc-item:nth-child(even) .img-wrap::after{
  background: var(--accent-color);
}
.fc-details{
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 15px;
  font-size: 33px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-family-title);
  font-weight: 500;
}
.fc-btn{
  margin-top: 30px;
}
.fc-btn a{
  max-width: max-content !important;
  padding-left: 20px;
  padding-right: 20px;
}

.fc-item a:hover .img-wrap::before{
  height: 77.23%;
}
/************** END HP FEATURED COMMUNITIES *************/

/************** START HP WHY WORK WITH US *************/
.hp-wwwu{
  position: relative;
  padding: 85px 15px 118px;
}
.bg-wwwu{
  background: #000000;
}
.bg-wwwu canvas{
  opacity: 32%;
}
.wwwu-wrap{
  position: relative;
}
.wwwu-inner{
  width: 100%;
  max-width: 1270px;
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  margin-top: 90px;
}
.wwwu-item > div{
  
}
.wwwu-item{
  width: calc(100% / 4);
  position: relative;
  padding: 10.5px 15px;
}
.wwwu-item::after{
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background: #ffffff;
  opacity: 61%;
  top: 0;
  right: 0;
}
.wwwu-item:last-child:after{
  opacity: 0;
}
.wwwu-num{
  font-size: 58px;
  color: #ffffff;
  font-family: var(--font-family-title);
  text-align: center;
  font-weight: 500;
}
.wwwu-num i{
  font-style: normal;
}
.wwwu-label{
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}
.wwwu-item:nth-child(odd) .wwwu-label{
  margin-top: 10px;
}
.wwwu-item:nth-child(even) .wwwu-label{
  margin-bottom: 10px;
}
/************** END HP WHY WORK WITH US *************/

/************** START HP TESTIMONIALS *************/
.hp-testi > div{
  padding: 210px 15px 60px;
}
.bg-testi-left{
  width: 44.875%;
  height: auto;
  height: 78.24%;
}
.bg-testi-right{
  width: 55.125%;
  left: unset;
  right: 0;
  height: auto;
  height: 78.24%;
}
.bg-testi-right canvas{
  filter: grayscale(1);
  opacity: 10%;
}
.testi-title{
  display: flex;
  justify-content: end;
  padding-right: 13.5%;
}
.testi-wrap{
  position: relative;
}
.testi-inner{
  background: var(--primary-color);
  padding: 85px 57px 55px 32px;
  width: 100%;
  max-width: 1283px;
  margin: auto;
  margin-top: 135px;
}
.testi-slick:not(.slick-initialized){
  display: flex;
}
.testi-slick:not(.slick-initialized) .testi-item{
  width: 50%;
  padding-right: 6%;
  padding-left: 3.5%;
}
.testi-item{
  
  padding-right: 10%;
  padding-left: 7.5%;
}
.testi-item{
  
}

.testi-content{
  font-size: 14px;
  line-height: 2;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.testi-name{
  font-size: 18px;
  color: #ffffff;
  margin-top: 21px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.testi-btn-wrap{
  margin-top: 53px;
}
.testi-btn a{
  max-width: 258px;
}
.testi-btn-wrap{
  position: relative;
}
.testi-slick-btn {
  position: absolute;
  width: 100%;
  max-width: 430px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
}
/************** END HP TESTIMONIALS *************/

.fc-title h2{
    text-align: center;
}

/************** START HP IN THE MEDIA *************/
.hp-media > div{
  padding: 80px 0 83px;
}
.bg-media{
  background: #000000;
}
.bg-media canvas{
  opacity: 20%;
}
.media-container{
  position: relative;
}
.media-wrap{
  display: flex;
  flex-flow: row wrap;
}
.media-wrap .left-col{
  width: 43.68%;
  padding-right: 14%;
  padding-top: 5.5%;
}
.media-wrap .right-col{
  width: 56.32%;
  display: flex;
  flex-flow: row wrap;
}
.media-item{
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.media-item > div{
  width: 50%;
  background: var(--primary-color);
  overflow: hidden;
}
.media-text{
  padding: 54px 26px 20px 35px;
}
.media-title h2{
  padding-left: 20px;
}
.media-title h2 span{
  padding-left: 0;
  margin-left: -18px;
}
.media-item-title a{
  font-size: 17px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}
.media-item-title a:hover{
  color: var(--accent-color);
}
.media-desc{
  margin-top: 45px;
}
.media-desc p{
  font-size: 14px;
  line-height: 2;
}
.media-btn{
  margin-top: 35px;
}
.media-btn a{
  max-width: 258px;
}

.media-item-desc{
  margin-top: 15px;
}
.media-item-desc p{
  font-size: 14px;
  line-height: 2;
}
.media-item .media-img{
  padding: 0;
}
.media-img a:hover img{
  transform: scale(1.1);
}
.media-item-btn{
  margin-top: 30px;
}
.media-item-btn a{
  max-width: 186px;
}
.media-item:nth-of-type(even){
  flex-flow: row-reverse;
}

/************** END HP IN THE MEDIA *************/



/***********************************************/
/******** OTHER MEDIA AND MOBILE STYLES ********/
/***********************************************/
@media only screen and (max-width: 1480px){

}
@media only screen and (max-width: 1366px){
  .fp-price{
    font-size: 25px;
  }
  .hp-testi > div {
    padding: 90px 15px 60px;
  }
  .testi-inner{
    margin-top: 80px;
    padding: 60px 20px;
  }
  .testi-title{
    padding-right: 5.5%;
  }

}
@media only screen and (max-width: 1199px){
  .qs-btn-wrap > .qs-search-btn {
    margin-left: 10px;
  }
  .fields-wrap select{
    background-position-x: calc(100%);
  }
  .wc-wrap .right-col{
    padding-top: 7%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .wc-desc {
    margin-top: 35px;
  }
  .wc-btn {
    margin-top: 40px;
  }
  .fp-title-wrap{
    padding-top: 2%;
    padding-left: 10px;
  }
  .fp-item .img-wrap canvas {
    max-height: 250px;
  }
  .fp-price{
    font-size: 22px;
  }
  .fp-address{
    font-size: 12px;
  }
  .fp-details{
    padding-bottom: 20px;
    padding-left: 15px;
  }
  .fp-item:nth-of-type(2) {
    margin-bottom: 30px;
  }
  .fp-item:nth-of-type(5) {
    margin-top: -30px;
  }
  .fc-item{
    width: calc((100%/3) - 14px);
    margin-bottom: 22px;
  }
  .fc-details{
    font-size: 25px;
  }
  .fp-btn-wrap{
    padding-bottom: 1%;
  }
  .wwwu-inner{
    margin-top: 60px;
  }
  .wwwu-num{
    font-size: 45px;
  }
  .testi-inner{
    max-width: 850px;
  }
  .testi-content{
    font-size: 11px;
  }
  .media-desc p,
  .media-item-desc p{
    font-size: 11px;
  }
  .media-desc {
    margin-top: 25px;
  }
  .media-text {
    padding: 20px;
  }
  .media-item-title{
    font-size: 15px;
  }
  

}
@media only screen and (max-width: 991px) {
  .hp-qs {
    padding: 40px 15px 40px;
  }
  .qs-wrap{
    width: 100% !important;
    max-width: 500px;
  }
  .fields-wrap{
    width: 100%;
    gap: 0;
  }
  .qs-btn-wrap{
    width: 100%;
  }
  .fields-wrap > div{
    margin-bottom: 10px;
  }
  .qs-field.qs-map {
    margin-left: auto;
    margin-right: auto;
  }
  .fields-wrap .long{
    width: 100%;
  }
  .fields-wrap .short{
    width: calc(50% - 5px);
  }
  .qs-field {
    width: 100%;
  }
  .qs-btn-wrap > .qs-search-btn {
    margin-left: 0;
    /*width: calc(50% - 5px);*/
  }
  .qs-btn-wrap > div {
   /* width: calc(50% - 5px);*/
  }
  .qs-poweredby{
    text-align: center;
  }
  .wc-wrap .left-col {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .wc-wrap .right-col {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 80px 60px;
  }
  .wc-title h2{
    width: 100%;
  }
  .wc-title h2::after{
    opacity: 0;
  }
  .wc-accent{
    width: 65%;
    top: 50%;
    left: 50%;
  }
  .fp-title-wrap {
    position: relative;
    padding: 0;
    width: 100%;
  }
  .fp-btn {
    margin-top: 40px;
    margin-left: 0;
  }
  .fp-inner{
    margin-top: 40px;
  }
  .fp-item {
    width: 100% !important;
    max-width: 500px;
    margin: auto !important;
    display: block !important;
  }
  .fp-item .img-wrap canvas {
    max-height: 350px;
  }
  .fp-price {
    font-size: 25px;
  }
  .fp-address {
    font-size: 15px;
  }
  .fp-btn-wrap {
    position: relative;
    bottom: unset;
    right: unset;
    width: 100%;
    padding: 50px 0;
  }
  .hp-fp > div {
    padding: 60px 15px 10px;
  }
  .fc-item {
    max-width: 500px;
    margin: auto;
    display: block !important;
  }
  .hp-fc {
    padding: 60px 15px;
  }
  .fc-wrap {
    position: relative;
  }
  .fc-inner .slick-slide:nth-child(odd) .fc-item .img-wrap::after{
    background: var(--accent-color);
  }
  .fc-inner{
    margin-top: 50px;
  }
  .fc-details {
    font-size: 30px;
  }
  .hp-wwwu {
    padding: 60px 15px;
  }
  .wwwu-item{
    width: 100%;
    max-width: 500px;
    margin: auto;
    margin-bottom: 20px;
  }
  .wwwu-item::after{
    opacity: 0;
  }
  .wwwu-inner {
    margin-top: 40px;
  }
  .testi-title{
    display: block;
    padding-right: 0;
  }
  .hp-testi > div {
    padding: 60px 15px;
  }
  .testi-inner {
    margin-top: 60px; 
  }
  .testi-content,
  .testi-name{
    text-align: center;
  }
  .testi-item {
    padding: 0 5px;
  }
  .testi-content{
    font-size: 13px;
  }
  .media-desc p,
  .media-item-desc p{
    font-size: 13px;
  }
  .media-wrap > div{
    width: 100% !important;
    padding: 0 !important;
  }
  .media-wrap .right-col{
    margin-top: 40px;
  }
  .media-item-title {
    font-size: 17px;
    text-align: center;
  }
  .media-text {
    padding: 50px 20px;
  }
  
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .testi-btn {
    margin-top: 40px;
  }
  .testi-slick-btn{
    padding: 0;
    position: relative;
    max-width: 200px;
  }
  .media-item{
    margin-bottom: 25px;
    display: block;
  }
  .media-item > div{
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 30px 20px;
  }
  .media-item:nth-of-type(even) {
    flex-flow: row wrap;
  }

}
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px){
  .hp-wc {
    padding: 50px 15px;
  }
  .wc-wrap .right-col{
    padding: 50px 15px;
  }
  .hp-fp > div {
    padding: 50px 15px 0;
  }
  .fp-price {
    font-size: 20px;
  }
  .fp-address {
    font-size: 12px;
    margin-left: 10px;
  }
  .fp-btn-wrap{
    padding-top: 40px;
  }
  .fc-details {
    font-size: 22px;
  }
  .wwwu-title h2{
    font-size: 45px;
  }
  .hp-wwwu {
    padding: 60px 15px 40px;
  }
  .testi-inner {  
    padding: 40px 15px;
  }
  .testi-btn a {
    max-width: 225px;
  }
  .hp-media > div {
    padding: 60px 0 45px;
  }

}


