@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,600;1,700;1,900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  background: #F7F6F4;

}

@media (min-width: 992px) and (max-width: 1300px){
body{
    zoom: 0.9; 
    -moz-transform: scale(0.9); 
    -moz-transform-origin: center top;
}
}

@media (max-width: 992px) {
  body {
    background: #ffffff;
  }
}

html {
  scroll-behavior: smooth;
}

.dark-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}

@media (max-width: 1199px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clear {
  clear: both;
}

textarea:focus, input:focus {
  outline: none;
}

.date::-webkit-inner-spin-button,
.date::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.birthdate::-webkit-inner-spin-button,
.birthdate::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.green-txt {
  color: #58BF00;
}

header {
  height: 53px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

header .menu {
  padding-top: 15px;
}

@media (max-width: 992px) {
  header .menu.open {
    background: #ffffff;
  }
}

header .nav-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header .nav-desktop ul li {
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-right: 30px;
}

@media (max-width: 1199px) {
  header .nav-desktop ul li {
    margin-right: 7px;
  }
}

@media (max-width: 992px) {
  header .nav-desktop ul li.logo-light {
    display: none;
  }
  header .nav-desktop ul li.logo-light.visible {
    display: inline-block;
  }
  header .nav-desktop ul li.logo-dark {
    display: none;
  }
  header .nav-desktop ul li.logo-dark.visible {
    display: inline-block;
  }
}

header .nav-desktop ul li a {
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-size: 0.86666667rem;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  header .nav-desktop ul li a {
    font-size: 12px;
  }
}

header .nav-desktop ul li a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #FF6250;
  text-decoration: none;
}

header .nav-cta a {
  display: block;
}

header .nav-cta a.cta {
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 20px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  width: 160px;
  text-align: center;
}

header .nav-cta a.cta:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

header .nav-cta a.cta.light {
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
}

header .nav-cta a.cta.light:hover {
  border: 1px solid #F85B50;
  background: none;
  color: #F85B50;
}

header .nav-cta a.call {
  margin-top: 8px;
  font-size: 0.86666667rem;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

header .nav-cta a.call:hover {
  color: #FF6250;
  text-decoration: none;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

header .menu-mobile-toggle img {
  cursor: pointer;
  width: 24px;
}

.menu-mobile {
  display: none;
}

.menu-mobile.open {
  margin-top: -10px;
  display: block;
  background: #ffffff;
  padding: 20px;
  position: relative;
  width: 100%;
  z-index: 99999999 !important;
  padding-bottom: 100px;
}

.menu-mobile.open ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  width: 100%;
}

.menu-mobile.open ul li {
  padding: 10px 0;
  margin-top: 20px;
}

.menu-mobile.open ul li.last {
  margin-top: 60px;
  margin-bottom: 10px;
}

.menu-mobile.open ul li a {
  text-transform: uppercase;
  color: #000;
  font-size: 1.46666667rem;
}

.menu-mobile .mobile-cta {
  width: 100%;
}

.menu-mobile .mobile-cta a {
  display: block;
}

.menu-mobile .mobile-cta a.cta {
  text-transform: uppercase;
  font-size: 1.6rem;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 50px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.4);
}

.menu-mobile .mobile-cta a.cta:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.menu-mobile .mobile-cta a.cta.light {
  margin-top: 20px;
  background: none;
  border: 1px solid #000;
  color: #000;
}

.menu-mobile .mobile-cta a.cta.light:hover {
  border: 1px solid #F85B50;
  background: none;
  color: #F85B50;
}

.menu-mobile .mobile-cta a.call {
  margin-top: 12px;
  font-size: 1.2rem;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.menu-mobile .mobile-cta a.call:hover {
  color: #FF6250;
  text-decoration: none;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.dark-header header .nav-desktop ul li a {
  color: #000;
}

.dark-header header .nav-desktop ul li a:hover {
  color: #F85B50;
}

.dark-header header .nav-desktop ul li a .chevron img {
  width: 12px;
}

.dark-header header .nav-cta a.cta {
  color: #ffffff;
}

.dark-header header .nav-cta a.cta:hover {
  color: #ffffff;
}

.dark-header header .nav-cta a.cta.light {
  color: #000;
  border: 1px solid #000;
}

.dark-header header .nav-cta a.cta.light:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
}

.home-head {
  background: url(../img/home/background-home.jpg) center center no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
}

@media (max-width: 992px) {
  .home-head {
    height: 400px;
  }
}

.home-head .home-search-container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  text-align: center;
}

@media (max-width: 992px) {
  .home-head .home-search-container {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home-head .home-search-container h1 {
  font-size: 2.93333333rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .home-head .home-search-container h1 {
    font-size: 1.8rem;
  }
}

.home-head .home-search-container h1 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

.home-head .home-search-container p.intro {
  color: #ffffff;
  font-size: 1.33333333rem;
  margin-bottom: 25px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .home-head .home-search-container p.intro {
    display: none;
  }
}

.home-head .home-search-container .search {
  max-width: 515px;
  margin-left: auto;
  margin-right: auto;
}

.home-head .home-search-container .search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.home-head .home-search-container .search form input[type="search"] {
  width: 100%;
  height: 50px;
  padding-left: 13px;
  padding-right: 25px;
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.75);
}

.home-head .home-search-container .search form input[type="submit"] {
  font-size: 1.33333333rem;
  font-weight: 700;
  border: none;
  width: 66px;
  height: 50px;
  margin-left: -13px;
  text-transform: uppercase;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 10px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.home-head .home-search-container .search form input[type="submit"]:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.home-head .home-search-container .search .alternative {
  font-size: 1.2rem;
  color: #ffffff;
}

.home-head .home-search-container .search .alternative a {
  text-decoration: underline;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #ffffff;
}

.home-head .home-search-container .search .alternative a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #FF6250;
}

.home-bg-first {
  padding: 0;
  margin: 0;
}

.home-bg-first .home-first {
  background: url("../img/home/home-bg-1.png") center bottom no-repeat;
  background-size: cover;
  padding-top: 53px;
}

@media (max-width: 992px) {
  .home-bg-first .home-first {
    background: url("../img/home/home-bg-1-mobile.png") center bottom no-repeat;
  }
}

.home-bg-first .home-first h2 {
  font-size: 3.2rem;
  color: #000;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 992px) {
  .home-bg-first .home-first h2 {
    font-size: 2rem;
  }
}

.home-bg-first .home-first h2 span {
  display: block;
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.home-bg-first .home-first h3 {
  font-size: 1.86666667rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 992px) {
  .home-bg-first .home-first h3 {
    font-size: 1.46666667rem;
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

.home-bg-first .home-first h3 span {
  font-weight: 600;
  color: #F85B50;
  font-style: italic;
}

.home-bg-first .home-first .step {
  text-align: center;
}

.home-bg-first .home-first .step img {
  width: 158px;
}

.home-bg-first .home-first .step h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: -30px;
}

.home-bg-first .home-first .step h4 span {
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.home-bg-first .home-first .step p {
  margin: 0 auto;
  color: #8B8B8B;
  font-size: 1rem;
  max-width: 320px;
}

.home-bg-first .home-first .step.two {
  margin-top: 120px;
}

@media (max-width: 992px) {
  .home-bg-first .home-first .step.two {
    margin-top: 0px;
  }
}

.home-bg-first .home-first .cta-call {
  margin-top: 70px;
}

.home-bg-first .home-first .cta-call .cta-link {
  margin-right: 20px;
}

.home-bg-first .home-first .cta-call .cta-link a {
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 10px 20px;
  border-radius: 20px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
}

.home-bg-first .home-first .cta-call .cta-link a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

@media (max-width: 992px) {
  .home-bg-first .home-first .cta-call .call-link {
    width: 160px;
  }
}

.home-bg-first .home-first .cta-call .call-link a {
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #ffffff;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
}

@media (max-width: 992px) {
  .home-bg-first .home-first .cta-call .call-link a span {
    display: none;
  }
}

.home-bg-first .home-first .cta-call .call-link a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  color: #FF6250;
  border: 1px solid #FF6250;
}

.home-bg-first .home-first .cta-call .call-link p {
  margin-top: 8px;
  font-size: 0.86666667rem;
  font-weight: 300;
}

.home-bg-second {
  background: url(../img/home/home-bg-2.png) center 100px no-repeat;
  margin-top: 90px;
}

@media (max-width: 992px) {
  .home-bg-second {
    background: none;
    margin-top: 0;
  }
}

.home-bg-second.v4 {
  background: none;
}

@media (max-width: 1200px) {
  .home-bg-second .feature {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature {
    overflow: initial;
  }
}

.home-bg-second .feature .text-ctn h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.home-bg-second .feature .text-ctn h2 span {
  font-weight: 600;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .home-bg-second .feature .text-ctn h2 {
    font-size: 2rem;
  }
}

.home-bg-second .feature .text-ctn h3 {
  font-size: 1.33333333rem;
  color: #8B8B8B;
  margin-bottom: 25px;
}

.home-bg-second .feature .text-ctn ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-bg-second .feature .text-ctn ul li {
  padding: 0;
  margin: 0 0 10px 0;
  color: #000;
  font-size: 0.93333333rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.home-bg-second .feature .text-ctn ul li span {
  color: #F85B50;
  font-size: 1rem;
  margin-right: 7px;
}

.home-bg-second .feature .text-ctn p {
  font-size: 1rem;
  color: #8B8B8B;
  margin-bottom: 30px;
  margin-top: 0;
}

.home-bg-second .feature .text-ctn .link {
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #ffffff;
  border: 1px solid #000;
  padding: 5px;
  border-radius: 20px;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  width: 130px;
}

.home-bg-second .feature .text-ctn .link:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  color: #FF6250;
  border: 1px solid #FF6250;
}

.home-bg-second .feature.one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 111px;
  padding-top: 120px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.one {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.home-bg-second .feature.one .text-ctn {
  width: 67%;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.home-bg-second .feature.one .text-ctn .inner {
  float: right;
  width: 60%;
  padding: 30px 0;
  margin-right: 30px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.one .text-ctn .inner {
    padding-left: 10px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.one .text-ctn .inner {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.one .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.home-bg-second .feature.one .img-pos {
  position: absolute;
  left: 0;
  top: 0;
  width: 559px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.one .img-pos {
    left: auto;
    right: 490px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.one .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.home-bg-second .feature.one .box {
  width: 216px;
  height: 57px;
  position: absolute;
  background: #F85B50;
}

.home-bg-second .feature.one .box.topright {
  top: 105px;
  z-index: -99;
}

@media (max-width: 992px) {
  .home-bg-second .feature.one .box.topright {
    display: none;
  }
}

.home-bg-second .feature.one .box.bottomleft {
  left: 300px;
  bottom: 215px;
  z-index: 50;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.one .box.bottomleft {
    bottom: 280px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.one .box.bottomleft {
    position: initial;
    right: 0;
    bottom: 0;
    height: 12px;
    width: 55%;
  }
}

.home-bg-second .feature.two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 10px;
  padding-top: 90px;
  padding-bottom: 160px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.two {
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.home-bg-second .feature.two .text-ctn {
  width: 790px;
  padding: 30px 0 30px 50px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.home-bg-second .feature.two .text-ctn .inner {
  width: 515px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.two .text-ctn .inner {
    width: 55%;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.two .text-ctn .inner {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.two .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.home-bg-second .feature.two .img-pos {
  position: absolute;
  right: -30px;
  top: 0;
  width: 601px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.two .img-pos {
    right: auto;
    left: 475px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.two .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.home-bg-second .feature.two .box {
  position: absolute;
  background: #F85B50;
}

.home-bg-second .feature.two .box.topleft {
  width: 216px;
  height: 155px;
  left: -10px;
  top: 70px;
  z-index: -99;
}

@media (max-width: 992px) {
  .home-bg-second .feature.two .box.topleft {
    display: none;
  }
}

.home-bg-second .feature.two .box.bottomright {
  width: 216px;
  height: 57px;
  bottom: 103px;
  right: 372px;
  z-index: -99;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.two .box.bottomright {
    bottom: 280px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.two .box.bottomright {
    position: initial;
    left: 0;
    bottom: 0;
    height: 12px;
    width: 55%;
  }
}

.home-bg-second .feature.three {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 0px;
  padding-top: 120px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.three {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.home-bg-second .feature.three .text-ctn {
  width: 788px;
  height: 305px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

@media (max-width: 992px) {
  .home-bg-second .feature.three .text-ctn {
    height: auto;
  }
}

.home-bg-second .feature.three .text-ctn .inner {
  float: right;
  width: 60%;
  padding: 30px 0;
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.three .text-ctn .inner {
    padding-left: 0px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.three .text-ctn .inner {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.three .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.home-bg-second .feature.three .text-ctn .link {
  width: 160px;
}

.home-bg-second .feature.three .text-ctn h2 {
  margin-bottom: 20px;
}

.home-bg-second .feature.three .img-pos {
  position: absolute;
  left: 80px;
  top: 0;
  width: 610px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.three .img-pos {
    left: auto;
    right: 510px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.three .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.home-bg-second .feature.three .box {
  width: 216px;
  height: 20px;
  position: absolute;
  background: #F85B50;
}

.home-bg-second .feature.three .box.bottom {
  right: 320px;
  bottom: 120px;
  z-index: 50;
}

@media (max-width: 992px) {
  .home-bg-second .feature.three .box.bottom {
    position: initial;
    margin: 0 auto;
    height: 12px;
    width: 55%;
  }
}

.home-bg-second .feature.four {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 80px;
  padding-top: 90px;
  padding-bottom: 400px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.four {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.four {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 100px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.home-bg-second .feature.four .text-ctn {
  width: 587px;
  height: 311px;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

@media (max-width: 992px) {
  .home-bg-second .feature.four .text-ctn {
    height: auto;
  }
}

.home-bg-second .feature.four .text-ctn .inner {
  float: right;
  width: 370px;
  padding: 30px 0;
  margin-right: 75px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.four .text-ctn .inner {
    padding-left: 0px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.four .text-ctn .inner {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.four .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.home-bg-second .feature.four .text-ctn .link {
  width: 160px;
}

.home-bg-second .feature.four .text-ctn h2 {
  margin-bottom: 20px;
}

.home-bg-second .feature.four .img-pos {
  position: absolute;
  left: 80px;
  top: 0;
  width: 500px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.four .img-pos {
    left: auto;
    right: 478px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.four .img-pos {
    right: auto;
    position: initial;
    display: block;
    width: 100%;
  }
}

.home-bg-second .feature.four .img-pos-2 {
  position: absolute;
  width: 500px;
  bottom: 110px;
  right: 257px;
  z-index: 99;
}

@media (max-width: 992px) {
  .home-bg-second .feature.four .img-pos-2 {
    border: 8px solid #ffffff;
    z-index: 9999;
    top: -20px;
    right: 0;
    width: 60%;
  }
}

.home-bg-second .feature.four .box {
  width: 216px;
  height: 216px;
  position: absolute;
  background: #F85B50;
}

.home-bg-second .feature.four .box.bottom {
  right: 510px;
  bottom: 366px;
  z-index: 0;
}

@media (max-width: 992px) {
  .home-bg-second .feature.four .box.bottom {
    position: initial;
    margin: 0;
    height: 12px;
    width: 55%;
  }
}

.home-bg-second .feature.five {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 180px;
  padding-top: 90px;
  padding-bottom: 400px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.five {
    padding-left: 0px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.five {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0px;
  }
}

.home-bg-second .feature.five .text-ctn {
  width: 609px;
  height: 311px;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

@media (max-width: 1200px) {
  .home-bg-second .feature.five .text-ctn {
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.five .text-ctn {
    height: auto;
    padding-left: 0px;
  }
}

.home-bg-second .feature.five .text-ctn .inner {
  width: 460px;
  padding: 30px 0;
  margin-left: 50px;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.five .text-ctn .inner {
    padding-left: 0px;
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.five .text-ctn .inner {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.five .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.home-bg-second .feature.five .text-ctn .link {
  width: 160px;
}

.home-bg-second .feature.five .text-ctn h2 {
  margin-bottom: 20px;
}

.home-bg-second .feature.five .img-pos {
  position: absolute;
  left: 140px;
  bottom: 65px;
  width: 568px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.five .img-pos {
    left: 0px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.five .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.home-bg-second .feature.five .img-pos-2 {
  position: absolute;
  width: 350px;
  top: 0px;
  right: 90px;
  z-index: 99;
}

@media (max-width: 1200px) {
  .home-bg-second .feature.five .img-pos-2 {
    right: auto;
    left: 520px;
  }
}

@media (max-width: 992px) {
  .home-bg-second .feature.five .img-pos-2 {
    border: 8px solid #ffffff;
    z-index: 9999;
    top: -65px;
    left: 20px;
    width: 40%;
  }
}

.home-bg-second .feature.five .box {
  width: 216px;
  height: 216px;
  position: absolute;
  background: #F85B50;
}

.home-bg-second .feature.five .box.bottom {
  right: 340px;
  bottom: 250px;
  z-index: 50;
}

@media (max-width: 992px) {
  .home-bg-second .feature.five .box.bottom {
    position: initial;
    margin: 0;
    height: 12px;
    width: 55%;
  }
}

.home-bg-second .feature.list-ctn {
  margin-top: 80px;
  background: #ffffff;
  padding: 40px;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.home-bg-second .feature.list-ctn h2 {
  text-align: center;
}

.home-bg-second .feature.list-ctn p {
  text-align: center;
  max-width: 445px;
  margin: 0 auto 30px auto;
}

.faq {
  padding-top: 120px;
}

@media (max-width: 992px) {
  .faq {
    padding-top: 60px;
  }
}

.faq .faq-ctn {
  margin: 0 auto;
  max-width: 720px;
  background: #F85B50;
  text-align: center;
  padding: 40px;
  position: relative;
}

.faq .faq-ctn .faq-circle {
  position: absolute;
  right: -60px;
  top: -60px;
}

@media (max-width: 992px) {
  .faq .faq-ctn .faq-circle {
    display: none;
  }
}

.faq .faq-ctn h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #000;
}

.faq .faq-ctn h2 span {
  display: block;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 900;
  font-style: italic;
}

.faq .faq-ctn p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.faq .faq-ctn .faq-link {
  margin: 0 auto;
  width: 160px;
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
}

.faq .faq-ctn .faq-link:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  color: #FF6250;
  background: #ffffff;
  border: 1px solid #FF6250;
}

.testimonial {
  padding-top: 120px;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1200px) {
  .testimonial {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .testimonial {
    padding-top: 60px;
    overflow: hidden;
  }
}

.testimonial h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}

.testimonial h2 span {
  display: block;
  margin: 0 auto;
  color: #F85B50;
  font-weight: 900;
  font-style: italic;
}

.testimonial .intro {
  font-size: 1.33333333rem;
  font-weight: 500;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 700px;
}

.testimonial .owl-carousel {
  margin-top: 50px;
  margin-bottom: 50px;
  background: url(../img/home/testimonial-bg.png) center center no-repeat;
}

@media (max-width: 992px) {
  .testimonial .owl-carousel {
    background: none;
    width: 80%;
    margin: 50px auto;
    overflow: visible;
    position: relative;
  }
  .testimonial .owl-carousel .owl-dots {
    display: none;
  }
  .testimonial .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
  .testimonial .owl-carousel .owl-item {
    height: 100%;
  }
  .testimonial .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  .testimonial .owl-carousel .owl-nav .owl-next {
    height: 100%;
    position: absolute;
    right: -18%;
    top: 0;
    background: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(rgba(248, 248, 248, 0.01)), to(#f8f8f8));
    background: linear-gradient(90deg, rgba(248, 248, 248, 0.01), #f8f8f8);
    width: 60px;
    font-size: 50px;
  }
}

.testimonial .owl-carousel .card-carousel {
  padding: 15px;
  background: #fff;
}

@media (max-width: 992px) {
  .testimonial .owl-carousel .card-carousel {
    -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
    box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
    height: 100%;
  }
}

.testimonial .owl-carousel .card-carousel .head h3 {
  font-size: 1rem;
  color: #000;
  font-weight: 700;
}

.testimonial .owl-carousel .card-carousel .head h4 {
  font-size: 0.8rem;
  color: #F85B50;
  font-weight: 500;
  text-transform: uppercase;
}

.testimonial .owl-carousel .card-carousel .head img {
  width: 43px;
  height: 43px;
  margin-right: 10px;
}

.testimonial .owl-carousel .card-carousel p {
  color: #8B8B8B;
  font-size: 0.86666667rem;
  margin-top: 15px;
}

.feature.lease-live {
  overflow: visible;
}

.lease-live {
  padding-top: 70px;
}

.lease-live .live-ctn .img-pos {
  width: 500px;
  margin-right: 20px;
}

.lease-live .live-ctn .text-ctn {
  width: 310px;
  background: #ffffff;
  padding: 20px;
  float: right;
  margin-right: 50px;
  position: relative;
}

@media (max-width: 992px) {
  .lease-live .live-ctn .text-ctn {
    float: none;
  }
}

.lease-live .live-ctn .text-ctn h2 {
  font-size: 1.6rem;
}

.lease-live .live-ctn .box.bottom {
  width: 216px;
  height: 216px;
  background: #F85B50;
  position: absolute;
  bottom: -31px;
  left: -21px;
  z-index: -1;
}

@media (max-width: 992px) {
  .lease-live .live-ctn {
    max-width: 600px;
    margin: 0 auto;
  }
  .lease-live .live-ctn .img-pos {
    width: 100%;
    margin-right: 0;
  }
  .lease-live .live-ctn .text-ctn {
    width: 80%;
    margin: 0 auto;
  }
  .lease-live .live-ctn .text-ctn .box.bottom {
    bottom: -10px;
    left: -10px;
  }
}

.lease-live .lease-ctn .space-top {
  display: block;
  height: 35px;
  width: 100%;
}

.lease-live .lease-ctn .img-pos {
  width: 500px;
  margin-left: 20px;
}

.lease-live .lease-ctn .text-ctn {
  width: 310px;
  background: #ffffff;
  padding: 20px;
  position: relative;
}

.lease-live .lease-ctn .text-ctn h2 {
  font-size: 1.6rem;
}

.lease-live .lease-ctn .box.bottom {
  width: 216px;
  height: 216px;
  background: #F85B50;
  position: absolute;
  bottom: -31px;
  right: -21px;
  z-index: -1;
}

@media (max-width: 992px) {
  .lease-live .lease-ctn {
    max-width: 600px;
    margin: 0 auto;
  }
  .lease-live .lease-ctn .img-pos {
    width: 100%;
    margin-left: 0;
  }
  .lease-live .lease-ctn .text-ctn {
    margin: 0 auto;
    width: 80%;
  }
  .lease-live .lease-ctn .text-ctn .box.bottom {
    bottom: -10px;
    right: -10px;
  }
}

.v2-bg {
  background: url(../img/home/home-v2-bg.png) center 130px no-repeat;
}

@media (max-width: 991px) {
  .v2-bg {
    background: none;
  }
}

.home-v2-search-container {
  background: url("../img/home/home-v2.jpg") center right no-repeat;
  background-size: 60%;
  height: 515px;
  padding-top: 71px;
}

@media (max-width: 991px) {
  .home-v2-search-container {
    background: url("../img/home/home-v2.jpg") center top no-repeat;
    background-size: 100%;
    padding-top: 220px;
  }
}

@media (max-width: 767px) {
  .home-v2-search-container {
    padding-top: 150px;
  }
}

.home-v2-search-container .intro-ctn {
  width: 607px;
  background: #fff;
  padding: 37px;
}

@media (max-width: 991px) {
  .home-v2-search-container .intro-ctn {
    width: 80%;
    margin: 0 auto;
    -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
    box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  }
}

@media (max-width: 767px) {
  .home-v2-search-container .intro-ctn {
    width: 95%;
    padding: 20px;
  }
}

@media (max-width: 370px) {
  .home-v2-search-container .intro-ctn {
    width: 100%;
  }
}

.home-v2-search-container .intro-ctn h1 {
  font-size: 34px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .home-v2-search-container .intro-ctn h1 {
    font-size: 1.8rem;
  }
}

.home-v2-search-container .intro-ctn h1 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

.home-v2-search-container .intro-ctn p.intro {
  color: #000;
  font-size: 18px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.home-v2-search-container .intro-ctn .search {
  margin-left: 0;
  margin-right: auto;
}

.home-v2-search-container .intro-ctn .search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

.home-v2-search-container .intro-ctn .search form input[type="search"] {
  width: 409px;
  height: 50px;
  padding-left: 13px;
  padding-right: 25px;
  border: none;
  border: 1px solid rgba(151, 151, 151, 0.2);
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.home-v2-search-container .intro-ctn .search form input[type="submit"] {
  font-size: 1.33333333rem;
  font-weight: 700;
  border: none;
  width: 66px;
  height: 50px;
  margin-left: -13px;
  text-transform: uppercase;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 10px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.home-v2-search-container .intro-ctn .search form input[type="submit"]:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.home-v2-search-container .intro-ctn .search .alternative {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 0;
}

.home-v2-search-container .intro-ctn .search .alternative a {
  text-decoration: underline;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #000;
}

.home-v2-search-container .intro-ctn .search .alternative a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #FF6250;
}

.home-bg-first .home-first.v2 {
  background: none;
}

@media (max-width: 767px) {
  .home-bg-first .home-first.v2 {
    padding-top: 75px;
  }
}

.home-head.v2 {
  background: none;
  height: auto;
}

.four-v2 {
  position: relative;
}

.four-v2 .illu-bg-circle {
  position: absolute;
  margin-top: -122px;
  margin-left: -224px;
}

@media (max-width: 992px) {
  .four-v2 .illu-bg-circle {
    display: none;
  }
}

@media (min-width: 1240px) {
  .four-v2 {
    padding: 0;
  }
}

.four-v2 .money-ctn {
  padding-left: 83px;
  padding-top: 80px;
}

@media (max-width: 991px) {
  .four-v2 .money-ctn {
    padding-left: 0;
    text-align: center;
  }
}

.four-v2 .money-ctn h2 {
  font-size: 50px;
  max-width: 460px;
  margin-left: 44px;
}

@media (max-width: 991px) {
  .four-v2 .money-ctn h2 {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

.four-v2 .money-ctn h2 span {
  display: block;
  color: #F85B50;
  font-weight: bold;
  font-style: italic;
}

.four-v2 .money-ctn p {
  margin-left: 44px;
  max-width: 460px;
}

@media (max-width: 991px) {
  .four-v2 .money-ctn p {
    margin-left: 0;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.four-v2 .money-ctn .eco {
  margin-top: 30px;
  background: #fff;
  padding: 37px;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.1);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.1);
}

.four-v2 .money-ctn .eco p {
  margin-left: 0;
}

.four-v2 .money-ctn .eco p:first-of-type {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.four-v2 .money-ctn .eco p.price {
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #F85B50;
  margin: 0;
}

.four-v2 .money-ctn .eco p.notice {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 991px) {
  .four-v2 .money-ctn .eco {
    margin-left: 0;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin: 30px auto;
  }
}

.four-v2 .table-ctn {
  padding-right: 80px;
}

@media (max-width: 991px) {
  .four-v2 .table-ctn {
    padding-right: 0;
  }
}

.four-v2 .table-ctn h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .four-v2 .table-ctn h3 {
    margin: 0 auto 20px auto;
    text-align: center;
  }
}

.four-v2 .table-ctn p {
  max-width: 460px;
}

@media (max-width: 991px) {
  .four-v2 .table-ctn p {
    margin: 0 auto;
    text-align: center;
  }
}

.four-v2 .table-ctn .hm-table {
  margin-top: 40px;
  max-width: 510px;
}

@media (max-width: 991px) {
  .four-v2 .table-ctn .hm-table {
    margin: 40px auto;
  }
}

.four-v2 .table-ctn .hm-table .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}

.four-v2 .table-ctn .hm-table .line .title {
  width: 50%;
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
}

.four-v2 .table-ctn .hm-table .line .first {
  width: 25%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.four-v2 .table-ctn .hm-table .line .first.small {
  font-size: 12px;
}

.four-v2 .table-ctn .hm-table .line .first.big {
  font-size: 24px;
  font-weight: bold;
}

.four-v2 .table-ctn .hm-table .line .second {
  width: 25%;
  text-align: center;
  font-size: 18px;
  color: #F85B50;
  font-weight: 500;
}

.four-v2 .table-ctn .hm-table .line .second.small {
  font-size: 12px;
}

.four-v2 .table-ctn .hm-table .line .second.big {
  font-size: 24px;
  font-weight: bold;
}

.four-v2 .table-ctn .hm-table .separator {
  height: 1px;
  background: #979797;
  margin-top: 15px;
  margin-bottom: 15px;
}

.home-bg-second.v2 {
  background: url(../img/home/home-v2-section-bg.png) center 100px no-repeat;
  margin-top: 90px;
}

@media (max-width: 992px) {
  .home-bg-second.v2 {
    background: none;
    margin-top: 0;
  }
}

.home-v3-search-container {
  background: url(../img/home/home-v3-deco-header.png) -200px top no-repeat;
  padding-top: 74px;
  overflow: hidden;
}

.home-v3-search-container h1 {
  max-width: 687px;
  text-align: center;
  font-size: 78px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto 0 auto;
}

@media (max-width: 992px) {
  .home-v3-search-container h1 {
    font-size: 48px;
  }
}

.home-v3-search-container h1 span {
  color: #F85B50;
  font-weight: 900;
  font-style: italic;
}

.home-v3-search-container .intro {
  max-width: 700px;
  margin: 26px auto 50px auto;
  text-align: center;
  font-size: 22px;
  line-height: 28px;
}

@media (max-width: 992px) {
  .home-v3-search-container .intro {
    font-size: 18px;
    line-height: 24px;
  }
}

.home-v3-search-container .search {
  max-width: 750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  position: relative;
  z-index: 9;
}

@media (max-width: 992px) {
  .home-v3-search-container .search {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
  }
}

.home-v3-search-container .search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 992px) {
  .home-v3-search-container .search form {
    width: 100%;
  }
}

.home-v3-search-container .search form input[type="search"] {
  width: 409px;
  height: 50px;
  padding-left: 13px;
  padding-right: 25px;
  border: none;
  border: 1px solid rgba(151, 151, 151, 0.2);
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

@media (max-width: 992px) {
  .home-v3-search-container .search form input[type="search"] {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-v3-search-container .search form input[type="search"] {
    font-size: 12px;
  }
}

.home-v3-search-container .search form input[type="submit"] {
  font-size: 1.33333333rem;
  font-weight: 700;
  border: none;
  width: 66px;
  height: 50px;
  margin-left: -13px;
  text-transform: uppercase;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 10px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

@media (max-width: 767px) {
  .home-v3-search-container .search form input[type="submit"] {
    font-size: 12px;
  }
}

.home-v3-search-container .search form input[type="submit"]:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.home-v3-search-container .search .alternative {
  color: #000;
  border: 1px solid #000;
  padding: 7px 0;
  border-radius: 20px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  width: 160px;
  text-align: center;
  font-size: 0.86666667rem;
}

@media (max-width: 992px) {
  .home-v3-search-container .search .alternative {
    margin-top: 20px;
  }
}

.home-v3-search-container .search .alternative:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
}

.home-v3-search-container .home-v3-header-img {
  display: block;
  width: 104%;
  max-width: 1240px;
  margin: -169px auto 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .home-v3-search-container .home-v3-header-img {
    margin: -145px auto 0 auto;
  }
}

@media (max-width: 767px) {
  .home-v3-search-container .home-v3-header-img {
    margin: -45px auto 0 auto;
  }
}

.home-head.v3 {
  background: none;
  height: auto;
}

@media (max-width: 992px) {
  .v4 .how-it-works {
    margin-top: 40px;
  }
  .v4 .how-it-works img {
    max-width: 100%;
  }
}

.v4 .how-it-works .left h2 {
  font-size: 3.2rem;
  color: #000;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 992px) {
  .v4 .how-it-works .left h2 {
    font-size: 2rem;
  }
}

.v4 .how-it-works .left h2 span {
  display: block;
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.v4 .how-it-works .left p {
  max-width: 442px;
}

.v4 .how-it-works .left p:first-of-type {
  margin-top: 20px;
}

.v4 .how-it-works .left p:last-of-type {
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .v4 .how-it-works .left p {
    max-width: 100%;
  }
}

.v4 .how-it-works .right .inner {
  margin-top: -250px;
  padding-top: 250px;
  padding-left: 50px;
  margin-right: -40px;
  padding-right: 40px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991px) {
  .v4 .how-it-works .right .inner {
    margin-top: 0;
    padding-top: 20px;
    padding-left: 20px;
    margin-right: 0;
    padding-right: 20px;
  }
}

.v4 .how-it-works .right .inner div {
  width: 48%;
}

@media (max-width: 767px) {
  .v4 .how-it-works .right .inner div {
    width: 100%;
  }
}

.v4 .how-it-works .right .inner div.w-icon {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .v4 .how-it-works .right .inner div.w-icon {
    padding-left: 30px;
  }
  .v4 .how-it-works .right .inner div.w-icon:nth-child(1) {
    padding-left: 0;
  }
}

.v4 .how-it-works .right .inner div.w-icon:nth-child(2) {
  padding-left: 55px;
}

@media (max-width: 767px) {
  .v4 .how-it-works .right .inner div.w-icon:nth-child(2) {
    padding-left: 0;
  }
}

.v4 .how-it-works .right .inner div.w-icon:nth-child(3) {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .v4 .how-it-works .right .inner div.w-icon:nth-child(3) {
    padding-left: 0;
  }
}

.v4 .how-it-works .right .inner div.w-icon img {
  margin-bottom: 15px;
}

.v4 .how-it-works .right .inner div.w-icon h3 {
  font-size: 30px;
  font-weight: 500;
}

.v4 .how-it-works .right .inner div.w-icon h3 span {
  display: block;
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.v4 .how-it-works .right .inner div.w-icon ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v4 .how-it-works .right .inner div.w-icon ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.v4 .how-it-works .right .inner div.w-icon ul li span {
  font-weight: bold;
  color: #F85B50;
  font-size: 20px;
  line-height: 1;
  margin-right: 10px;
}

.v4 .how-it-works .right .inner div.w-icon a {
  display: table;
  margin-top: 30px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #F85B50;
  padding-bottom: 5px;
  text-decoration: none;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.v4 .how-it-works .right .inner div.w-icon a:hover {
  color: #F85B50;
  text-decoration: none;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.v4 .how-it-works .right .inner div.links-box {
  margin-top: 52px;
  border: 3px solid #EEEBE9;
  padding: 30px;
  height: 100%;
}

@media (max-width: 1024px) {
  .v4 .how-it-works .right .inner div.links-box {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .v4 .how-it-works .right .inner div.links-box {
    width: 100%;
    margin-top: 0;
  }
}

.v4 .how-it-works .right .inner div.links-box a {
  display: block;
}

.v4 .how-it-works .right .inner div.links-box a.cta {
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 20px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  width: 100%;
  text-align: center;
}

.v4 .how-it-works .right .inner div.links-box a.cta:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.v4 .how-it-works .right .inner div.links-box a.cta.light {
  margin-top: 24px;
  background: none;
  border: 1px solid #000;
  color: #000;
  text-transform: lowercase;
}

.v4 .how-it-works .right .inner div.links-box a.cta.light:hover {
  border: 1px solid #F85B50;
  background: none;
  color: #F85B50;
}

.v4 .how-it-works .right .inner div.links-box p.notice {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.v4 .how-it-works .right .bottom-img {
  margin-top: 95px;
  margin-left: 50px;
}

@media (max-width: 992px) {
  .v4 .how-it-works .right .bottom-img {
    width: 60%;
    margin: 30px auto 50px auto;
  }
}

@media (max-width: 767px) {
  .v4 .how-it-works .right .bottom-img {
    width: 100%;
  }
}

.v4 .homes {
  margin-top: 140px;
}

@media (max-width: 992px) {
  .v4 .homes {
    margin-top: 40px;
  }
}

.v4 .homes .left {
  padding-left: 0;
  width: 1040px;
}

@media (max-width: 1200px) {
  .v4 .homes .left {
    width: auto;
  }
}

@media (max-width: 767px) {
  .v4 .homes .left {
    padding: 20px;
  }
}

.v4 .homes .left .carousel-hp-v4 {
  width: 1040px;
  margin-left: -200px;
}

@media (max-width: 1200px) {
  .v4 .homes .left .carousel-hp-v4 {
    width: auto;
  }
}

@media (max-width: 767px) {
  .v4 .homes .left .carousel-hp-v4 {
    margin-left: 0;
  }
}

.v4 .homes .left .carousel-hp-v4 .item {
  width: 320px;
  margin: 20px auto;
}

@media (max-width: 1200px) {
  .v4 .homes .left .carousel-hp-v4 .item {
    width: 100%;
    -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.1);
    box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.1);
  }
}

.v4 .homes .left .carousel-hp-v4 .item .illu {
  height: 200px;
  background-size: cover !important;
}

.v4 .homes .left .carousel-hp-v4 .item .desc {
  background: #fff;
  padding: 16px;
}

.v4 .homes .left .carousel-hp-v4 .item .desc .price {
  margin-bottom: 24px;
  margin-top: 10px;
}

.v4 .homes .left .carousel-hp-v4 .item .desc .price p {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.v4 .homes .left .carousel-hp-v4 .item .desc .price span {
  color: #F85B50;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.v4 .homes .left .carousel-hp-v4 .item .desc .w-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.v4 .homes .left .carousel-hp-v4 .item .desc .w-icon img {
  width: 22px;
  margin-right: 12px;
}

.v4 .homes .left .carousel-hp-v4 .item .desc .w-icon .green {
  color: #58BF00;
  font-weight: bold;
}

.v4 .homes .left .carousel-hp-v4 .item .content {
  color: #000;
}

.v4 .homes .left .carousel-hp-v4 .item .content h3 {
  font-size: 24px;
  font-weight: 900;
  color: #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.v4 .homes .left .carousel-hp-v4 .item .content h4 {
  font-weight: 500;
  font-size: 16px;
}

.v4 .homes .left .carousel-hp-v4 .item .content:hover {
  text-decoration: none;
}

.v4 .homes .left .carousel-hp-v4 .item .content:hover h3 {
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.v4 .homes .right button {
  border: 0px;
  background: none;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 35px;
  padding: 0px;
}

.v4 .homes .right h2 {
  margin-top: 20px;
  font-size: 48px;
  margin-bottom: 15px;
}

.v4 .homes .right h2 span {
  display: block;
}

.v4 .homes .right a {
  display: block;
}

.v4 .homes .right a.cta {
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 20px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  width: 100%;
  text-align: center;
}

@media (max-width: 992px) {
  .v4 .homes .right a.cta {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.v4 .homes .right a.cta:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.v4 .homes .right a.cta.light {
  margin-top: 15px;
  background: none;
  border: 1px solid #000;
  color: #000;
  text-transform: lowercase;
}

.v4 .homes .right a.cta.light:hover {
  border: 1px solid #F85B50;
  background: none;
  color: #F85B50;
}

.v4 .homes .right .notice {
  font-size: 13px;
  text-align: center;
  margin-top: 5px;
}

.v4 .lines-bg-features {
  position: relative;
  margin-top: -90px;
  margin-left: 50px;
  z-index: -1;
}

.v4 .instagram-featured {
  margin-top: 90px;
  margin-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.v4 .instagram-featured .box {
  padding: 5px;
  height: 295px;
}

.v4 .instagram-featured .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.v4 .instagram-featured .box.size-4 {
  width: 50%;
}

@media (max-width: 1200px) {
  .v4 .instagram-featured .box.size-4 {
    width: 100%;
    height: auto;
  }
}

.v4 .instagram-featured .box.size-4 .inner {
  height: 100%;
  background: url("../img/home/instagram-featured.png") 90% center no-repeat #F85B50;
  color: #ffffff;
  padding: 37px;
}

.v4 .instagram-featured .box.size-4 .inner h2 {
  font-size: 40px;
  font-weight: 900;
}

.v4 .instagram-featured .box.size-4 .inner h3 {
  font-size: 22px;
}

.v4 .instagram-featured .box.size-4 .inner p {
  margin-top: 20px;
  font-size: 14px;
}

.v4 .instagram-featured .box.size-4 .inner a {
  color: #ffffff;
  font-weight: 900;
  font-style: italic;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  font-size: 16px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.v4 .instagram-featured .box.size-4 .inner a:hover {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.v4 .instagram-featured .box.size-2 {
  width: 25%;
}

@media (max-width: 1200px) {
  .v4 .instagram-featured .box.size-2 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .v4 .instagram-featured .box.size-2 {
    width: 50%;
    height: 200px;
  }
}

.v4 .instagram-featured .box.size-1 {
  width: 12.5%;
}

@media (max-width: 1200px) {
  .v4 .instagram-featured .box.size-1 {
    width: 25%;
  }
}

.v4 .instagram-featured .box.size-1 img {
  height: 138px;
}

.v4 .instagram-featured .box.size-1 img:first-of-type {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .v4 .instagram-featured .box.size-1 {
    display: none;
  }
}

.homes-head {
  background: url(../img/homes/homes-bg-header.jpg) center center no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
}

@media (max-width: 992px) {
  .homes-head {
    height: auto;
  }
}

.homes-head .homes-search-container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  text-align: left;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container {
    padding-top: 45px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.homes-head .homes-search-container h1 {
  font-size: 2.93333333rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container h1 {
    font-size: 1.8rem;
  }
}

.homes-head .homes-search-container h1 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container h1 {
    text-align: center;
  }
}

.homes-head .homes-search-container p.intro {
  color: #ffffff;
  font-size: 1.33333333rem;
  margin-bottom: 25px;
  max-width: 595px;
  text-align: left;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container p.intro {
    text-align: center;
    max-width: 100%;
    font-size: 1.2rem;
  }
}

.homes-head .homes-search-container .search {
  max-width: 1100px;
}

.homes-head .homes-search-container .search form {
  padding: 17px 25px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

.homes-head .homes-search-container .search form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container .search form {
    border-radius: 8px 8px 0px 0px;
  }
  .homes-head .homes-search-container .search form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.homes-head .homes-search-container .search form select {
  padding: 0 15px;
  text-transform: uppercase;
  border: 1.6px solid #4A4A4A;
  font-size: 0.93333333rem;
  color: #000;
  border-radius: 8px;
  margin-right: 1%;
  margin-bottom: 10px;
  height: 40px;
  width: 20%;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container .search form select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 23px;
  }
  .homes-head .homes-search-container .search form select:last-of-type {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .homes-head .homes-search-container .search form .form-row.second select {
    margin-bottom: 20px;
  }
  .homes-head .homes-search-container .search form .form-row.second select:last-of-type {
    margin-bottom: 0;
  }
}

.homes-head .homes-search-container .search form .show {
  margin-left: 20px;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.homes-head .homes-search-container .search form .show.less .chevron img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.homes-head .homes-search-container .search form .show:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .homes-head .homes-search-container .search form .show {
    margin: 20px auto;
  }
}

.homes-head .homes-search-container .search .alternative {
  font-size: 1.2rem;
  color: #ffffff;
}

.homes-head .homes-search-container .search .alternative a {
  text-decoration: underline;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #ffffff;
}

.homes-head .homes-search-container .search .alternative a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #FF6250;
}

.homes {
  background-position: top -50px left -250px;
}

@media (max-width: 992px) {
  .homes {
    background: none;
  }
}

.homes .map-ctn .map {
  width: 100%;
}

.homes .title-ctn {
  padding: 0;
}

.homes h2 {
  margin-top: 40px;
  font-size: 2.26666667rem;
  color: #000;
  font-weight: 500;
  text-align: left;
  margin-left: 0px;
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  .homes h2 {
    font-size: 2rem;
  }
}

.homes h2 span {
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.homes .card-ctn {
  margin-bottom: 30px;
}

.homes .card-ctn .bg {
  background: #ffffff;
  height: 100%;
  position: relative;
  -webkit-box-shadow: 0px 6px 44px 0 rgba(155, 155, 155, 0.2);
          box-shadow: 0px 6px 44px 0 rgba(155, 155, 155, 0.2);
}

.homes .card-ctn .illu {
  height: 200px;
}

.homes .card-ctn .illu img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.homes .card-ctn .owl-dots {
  display: none;
}

.homes .card-ctn .owl-nav .owl-prev {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 200px;
  width: 130px;
  color: #ffffff;
  font-size: 50px;
  text-align: left;
  background: rgba(26, 27, 27, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 27, 27, 0.5)), to(rgba(26, 27, 27, 0)));
  background: linear-gradient(90deg, rgba(26, 27, 27, 0.5), rgba(26, 27, 27, 0));
}

.homes .card-ctn .owl-nav .owl-prev:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.homes .card-ctn .owl-nav .owl-prev span {
  margin-left: 10px;
}

.homes .card-ctn .owl-nav .owl-next {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 200px;
  width: 130px;
  padding-right: 0px;
  color: #ffffff;
  text-align: right;
  font-size: 50px;
  background: rgba(26, 27, 27, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 27, 27, 0)), to(rgba(26, 27, 27, 0.5)));
  background: linear-gradient(90deg, rgba(26, 27, 27, 0), rgba(26, 27, 27, 0.5));
}

.homes .card-ctn .owl-nav .owl-next:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.homes .card-ctn .owl-nav .owl-next span {
  margin-right: 10px;
}

.homes .card-ctn .content {
  padding: 15px;
  color: #000;
  display: block;
}

.homes .card-ctn .content h3 {
  font-size: 1.6rem;
  color: #F85B50;
  font-weight: 900;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.homes .card-ctn .content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.homes .card-ctn .content .notice-price {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
}

.homes .card-ctn .content .price {
  font-size: 24px;
  font-weight: bold;
  color: #F85B50;
}

.homes .card-ctn .content:hover {
  text-decoration: none;
}

.homes .card-ctn .content:hover h3 {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #000;
}

.homes .card-ctn .content .small-list {
  padding: 0;
}

.homes .card-ctn .content .small-list li {
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  font-weight: 500;
}

.homes .card-ctn .content .small-list li:last-of-type {
  margin-bottom: 0px;
}

.homes .card-ctn .content .small-list li .green {
  color: #6AB31A;
  font-weight: bold;
}

.homes .card-ctn .content .small-list li img {
  width: 20px;
  margin-right: 10px;
}

.homes .card-ctn .content .rooms {
  background: #fff;
  -webkit-box-shadow: 0px 0px 44px 0px rgba(155, 155, 155, 0.3);
  box-shadow: 0px 0px 44px 0px rgba(155, 155, 155, 0.3);
  padding: 10px;
}

.homes .card-ctn .content .rooms p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.homes .card-ctn .content .rooms p span.available {
  color: #6AB31A;
}

.homes .card-ctn .content .rooms p span.soon {
  color: #F85B50;
}

.homes .card-ctn .notice {
  position: absolute;
  z-index: 999;
  top: 10px;
  left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.homes .card-ctn .notice .text-ctn {
  padding: 8px 12px;
  color: #ffffff;
}

.homes .card-ctn .notice.available .text-ctn {
  background: #6AB31A;
  background: -webkit-gradient(linear, left top, left bottom, from(#A3DA38), to(#6AB31A));
  background: linear-gradient(180deg, #A3DA38, #6AB31A);
}

.homes .card-ctn .notice.new .text-ctn {
  background: #F85B50;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
}

.homes .link-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homes .link-ctn .loadmore {
  width: 130px;
  height: 30px;
  border-radius: 50px;
  margin: 0 auto;
  text-transform: uppercase;
  background: #ffffff;
  border: 1px solid #000;
  font-size: 0.86666667rem;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.homes .link-ctn .loadmore:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.homes .link-ctn .loadmore:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.detail-head {
  position: relative;
}

.detail-head .detail-title-container {
  margin-top: 20px;
  padding: 0 !important;
  width: 100%;
  overflow: hidden;
}

.detail-head .detail-title-container .carousel-detail {
  width: 120vw;
}

@media (max-width: 992px) {
  .detail-head .detail-title-container .carousel-detail {
    width: 100%;
  }
  .detail-head .detail-title-container .carousel-detail img {
    width: 100%;
  }
}

.detail-head .detail-title-container .carousel-detail .owl-dots {
  display: none;
}

.detail .menu-detail {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 1096px;
  margin: -20px auto 0 auto;
  z-index: 999;
}

.detail .menu-detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 10px 0;
}

.detail .menu-detail ul li {
  list-style-type: none;
  padding: 20px 30px;
  border-right: 1px solid #E1DFDB;
}

.detail .menu-detail ul li a {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 10px;
  border-bottom: 3px solid #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.detail .menu-detail ul li a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #000;
  text-decoration: none;
  border-bottom: 3px solid #F85B50;
}

.detail .menu-detail ul li a img {
  margin-right: 5px;
  width: 25px;
}

.detail .menu-detail ul li:last-of-type {
  border-right: 0;
}

.detail .menu-detail ul li.active a {
  color: #000;
  padding-bottom: 10px;
  border-bottom: 3px solid #F85B50;
}

.detail .content {
  padding: 40px;
  background: #ffffff;
  position: relative;
  margin-top: 70px;
}

@media (max-width: 992px) {
  .detail .content {
    padding: 15px;
  }
}

.detail .content h1 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.detail .content h1 span {
  color: #F85B50;
  font-weight: 900;
}

.detail .content h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 500;
}

.detail .content .icon-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.detail .content .icon-list ul {
  padding-left: 0;
}

.detail .content .icon-list ul li {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.detail .content .icon-list ul li img {
  margin-right: 13px;
  width: 21px;
  height: auto;
}

.detail .content p {
  color: #000;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.detail .content p.address {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.detail .content .residents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 10px;
}

.detail .content .residents .resident {
  margin-right: 40px;
  text-align: center;
}

.detail .content .residents .resident h4 {
  font-size: 12px;
  color: #7A7A7A;
}

.detail .content .residents .resident h5 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 0;
}

.detail .content .residents .resident p.age {
  color: #F85B50;
  margin: 0;
  font-size: 12px;
}

.detail .content .residents .resident p.status {
  font-size: 10px;
}

.detail .content h3 {
  margin-top: 40px;
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.detail .content .equip-list ul {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail .content .equip-list ul li {
  list-style: none;
  width: 33%;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
}

.detail .content .equip-list ul li img {
  margin-right: 10px;
  width: 24px;
}

.detail .content .equip-list a {
  border-bottom: 2px solid #F85B50;
  text-transform: uppercase;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-size: 12px;
  font-weight: 600;
}

.detail .content .equip-list a:hover {
  text-decoration: none;
  color: #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.detail .content .featured {
  margin-top: 40px;
  border: 2px #F85B50 solid;
  border-radius: 16px;
  padding: 15px;
}

.detail .content .featured h3 {
  margin-top: 0;
}

.detail .content .featured p {
  margin: 0;
}

.detail .content .featured h4 {
  color: #F85B50;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

.detail .content .map {
  width: 100%;
  margin-top: 10px;
}

.detail .content .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
  margin-bottom: 50px;
}

.detail .content .gallery a {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 15px;
}

.detail .content .gallery a img {
  width: 100%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0px 6px 42px 0px rgba(155, 155, 155, 0.4);
  box-shadow: 0px 6px 42px 0px rgba(155, 155, 155, 0.4);
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.detail .content .gallery a:hover img {
  border: 2px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.detail .content .orange-deco {
  position: absolute;
  width: 216px;
  height: 24px;
  background: #F85B50;
  bottom: -24px;
  right: 10px;
}

.detail .rooms {
  background: white;
  padding: 27px;
}

.detail .rooms {
  margin-top: 100px;
}

.detail .rooms h2.title-room {
  font-size: 38px;
  text-align: center;
}

.detail .rooms h2.title-room span {
  font-style: italic;
  font-weight: bold;
  color: #F85B50;
}

.detail .rooms .intro-room {
  max-width: 600px;
  margin: 20px auto 50px auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1200px) {
  .detail .rooms {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .detail .rooms {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.detail .rooms .room {
  background: #ffffff;
  height: auto;
  border: 3px solid #F2F1F0;
  margin-bottom: 40px;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms .room {
    height: auto;
  }
}

@media (max-width: 992px) {
  .detail .rooms .room {
    max-width: 600px;
    margin: 0 auto 40px auto;
    height: auto;
  }
}

.detail .rooms .room .images {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.detail .rooms .room .images .available {
  position: absolute;
  top: 20px;
  left: -9px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.detail .rooms .room .images .available .text-ctn {
  font-size: 0.8rem;
  color: #ffffff;
  background: #6AB31A;
  margin: 0;
  padding: 10px 15px;
  font-weight: 600;
  background: -webkit-gradient(linear, left bottom, left top, from(#6AB31A), to(#A3DA38));
  background: linear-gradient(0deg, #6AB31A, #A3DA38);
}

.detail .rooms .room .images .available img {
  margin: 0;
}

.detail .rooms .room .images .occupied {
  position: absolute;
  top: 20px;
  left: -9px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.detail .rooms .room .images .occupied .text-ctn {
  font-size: 0.8rem;
  color: #ffffff;
  padding: 10px 15px;
  background: #D0021B;
  font-weight: 600;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#F23F56));
  background: linear-gradient(0deg, #D61B33, #F23F56);
}

.detail .rooms .room .images .occupied img {
  margin: 0;
}

.detail .rooms .room .images .illu {
  height: 304px;
  padding: 9px;
}

@media (max-width: 992px) {
  .detail .rooms .room .images .illu {
    height: 335px;
  }
}

.detail .rooms .room .images .illu img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.detail .rooms .room .images .owl-dots {
  display: none;
}

.detail .rooms .room .images .owl-nav .owl-prev {
  position: absolute;
  top: 9px;
  left: 9px;
  height: 285px;
  width: 30px;
  color: #ffffff;
  font-size: 50px;
  text-align: left;
  background: rgba(26, 27, 27, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 27, 27, 0.5)), to(rgba(26, 27, 27, 0)));
  background: linear-gradient(90deg, rgba(26, 27, 27, 0.5), rgba(26, 27, 27, 0));
}

.detail .rooms .room .images .owl-nav .owl-prev:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (max-width: 992px) {
  .detail .rooms .room .images .owl-nav .owl-prev {
    height: 317px;
  }
}

.detail .rooms .room .images .owl-nav .owl-prev span {
  margin-left: 10px;
}

.detail .rooms .room .images .owl-nav .owl-next {
  position: absolute;
  top: 9px;
  right: 9px;
  height: 285px;
  width: 30px;
  padding-right: 0px;
  color: #ffffff;
  text-align: right;
  font-size: 50px;
  background: rgba(26, 27, 27, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 27, 27, 0)), to(rgba(26, 27, 27, 0.5)));
  background: linear-gradient(90deg, rgba(26, 27, 27, 0), rgba(26, 27, 27, 0.5));
}

.detail .rooms .room .images .owl-nav .owl-next:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (max-width: 992px) {
  .detail .rooms .room .images .owl-nav .owl-next {
    height: 317px;
  }
}

.detail .rooms .room .images .owl-nav .owl-next span {
  margin-right: 10px;
}

.detail .rooms .room .infos {
  padding: 9px 25px;
  border-right: 3px solid #F2F1F0;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms .room .infos {
    border-right: 0;
    border-bottom: 3px solid #F2F1F0;
  }
}

@media (max-width: 992px) {
  .detail .rooms .room .infos {
    border-right: 0;
    border-bottom: 3px solid #F2F1F0;
    padding: 20px;
  }
}

.detail .rooms .room .infos .featured {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

.detail .rooms .room .infos .featured p {
  width: 45%;
  color: #F85B50;
}

.detail .rooms .room .infos h2 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 0px;
  margin-top: 0;
}

.detail .rooms .room .infos h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}

.detail .rooms .room .infos p {
  margin-top: 0;
  margin-bottom: 5px;
}

.detail .rooms .room .infos .equip-list {
  padding-left: 0;
  margin-top: 7px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail .rooms .room .infos .equip-list li {
  list-style: none;
  width: 33%;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.detail .rooms .room .infos .equip-list li img {
  margin-right: 10px;
  width: 24px;
}

.detail .rooms .room .infos .bottom {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.detail .rooms .room .infos .bottom .b-img {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  overflow: none;
}

.detail .rooms .room .infos .bottom .b-img img {
  margin: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail .rooms .room .infos .bottom .b-content {
  padding-top: 6px;
  margin-bottom: 0;
  font-weight: 700;
  vertical-align: middle;
  display: inline-block;
  height: auto;
}

.detail .rooms .room .resa {
  padding: 9px 20px;
}

@media (max-width: 992px) {
  .detail .rooms .room .resa {
    padding: 20px;
  }
}

.detail .rooms .room .resa p {
  margin: 0;
  font-size: 0.93333333rem;
  font-weight: 300;
}

.detail .rooms .room .resa p.alert-notice {
  margin-top: -15px;
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.detail .rooms .room .resa p.alert-notice span {
  color: #D0021B;
  font-weight: 600;
}

.detail .rooms .room .resa h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}

.detail .rooms .room .resa h3.price {
  font-size: 20px;
}

.detail .rooms .room .resa h3.price span {
  font-size: 38px;
}

.detail .rooms .room .resa h4 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0;
}

.detail .rooms .room .resa .included {
  font-size: 13px;
}

.detail .rooms .room .resa .included span {
  color: #F85B50;
  font-weight: bold;
}

.detail .rooms .room .resa .notice {
  font-style: normal;
}

.detail .rooms .room .resa .notice span {
  color: #F85B50;
  font-weight: bold;
}

.detail .rooms .room .resa a {
  text-align: center;
  display: block;
  width: 100%;
  border: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  border-radius: 50px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  margin-top: 12px;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms .room .resa a {
    display: inline-block;
    width: 30%;
    margin-right: 2%;
  }
}

.detail .rooms .room .resa a.reserve {
  margin-top: 10px;
  background: #F85B50;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  color: #ffffff;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms .room .resa a.reserve {
    padding: 7px;
  }
}

@media (max-width: 992px) {
  .detail .rooms .room .resa a.reserve {
    padding: 7px;
  }
}

.detail .rooms .room .resa a.reserve:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  text-decoration: none;
}

.detail .rooms .room .resa a.whatsapp {
  background: #13C26D;
  background: -webkit-gradient(linear, left bottom, left top, from(#0B9D55), to(#13C26D));
  background: linear-gradient(0deg, #0B9D55, #13C26D);
  color: #ffffff;
  padding: 10px;
}

.detail .rooms .room .resa a.whatsapp:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #0B9D55;
  background: -webkit-gradient(linear, left bottom, left top, from(#0B9D55), to(#0B9D55));
  background: linear-gradient(0deg, #0B9D55, #0B9D55);
  text-decoration: none;
}

.detail .rooms .room .resa a.request {
  background: #ffffff;
  color: #000;
  border: 1px solid #000;
  font-size: 0.86666667rem;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  padding: 10px 5px;
  font-weight: normal;
}

.detail .rooms .room .resa a.request:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
}

.detail .rooms .room .resa a.alert {
  background: #F23F56;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#F23F56));
  background: linear-gradient(0deg, #D61B33, #F23F56);
  color: #ffffff;
  padding: 5px;
}

@media (max-width: 992px) {
  .detail .rooms .room .resa a.alert {
    padding: 7px;
  }
}

.detail .rooms .room .resa a.alert:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #D61B33;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#D61B33));
  background: linear-gradient(0deg, #D61B33, #D61B33);
  text-decoration: none;
}

.detail .rooms .room.not-available .images .owl-nav .owl-prev {
  width: 50%;
  background: rgba(26, 27, 27, 0.6);
}

.detail .rooms .room.not-available .images .owl-nav .owl-next {
  width: 50%;
  background: rgba(26, 27, 27, 0.6);
}

.detail .rooms .room.not-available .infos h2 {
  opacity: 0.4;
}

.detail .rooms .room.not-available .infos p {
  opacity: 0.4;
}

.detail .rooms .room.not-available .infos h3 {
  opacity: 0.4;
}

.detail .rooms .room.not-available .infos .equip-list {
  opacity: 0.4;
}

.detail .rooms .room.not-available .infos .bottom {
  opacity: 0.4;
}

.detail .rooms .bottom-buttons {
  text-align: center;
}

.detail .rooms .bottom-buttons .reserve-rooms {
  background: #F85B50;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  color: #ffffff;
  text-align: center;
  display: inline-block;
  border: n1px solid rgba(0, 0, 0, 0);
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 300;
  border-radius: 50px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  margin-right: 30px;
}

@media (max-width: 992px) {
  .detail .rooms .bottom-buttons .reserve-rooms {
    display: block;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

.detail .rooms .bottom-buttons .reserve-rooms:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  text-decoration: none;
}

.detail .rooms .bottom-buttons .waiting-list {
  background: #ffffff;
  color: #000;
  border: 1px solid #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-weight: 300;
  border: 1px solid #000;
  padding: 10px 20px;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 300;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .detail .rooms .bottom-buttons .waiting-list {
    display: block;
  }
}

.detail .rooms .bottom-buttons .waiting-list:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
}

.detail .rooms-mini {
  margin-top: 100px;
}

.detail .rooms-mini h2.title-room {
  font-size: 38px;
  text-align: center;
}

.detail .rooms-mini h2.title-room span {
  font-style: italic;
  font-weight: bold;
  color: #F85B50;
}

.detail .rooms-mini .intro-room {
  max-width: 600px;
  margin: 20px auto 50px auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1200px) {
  .detail .rooms-mini {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .detail .rooms-mini {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.detail .rooms-mini .room {
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  height: 410px;
  margin-bottom: 40px;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms-mini .room {
    height: auto;
  }
}

@media (max-width: 992px) {
  .detail .rooms-mini .room {
    max-width: 600px;
    margin: 0 auto 40px auto;
    height: auto;
  }
}

.detail .rooms-mini .room .images {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.detail .rooms-mini .room .images .available {
  position: absolute;
  top: 20px;
  left: -9px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.detail .rooms-mini .room .images .available .text-ctn {
  font-size: 0.8rem;
  color: #ffffff;
  background: #6AB31A;
  margin: 0;
  padding: 10px 15px;
  font-weight: 600;
  background: -webkit-gradient(linear, left bottom, left top, from(#6AB31A), to(#A3DA38));
  background: linear-gradient(0deg, #6AB31A, #A3DA38);
}

.detail .rooms-mini .room .images .available img {
  margin: 0;
}

.detail .rooms-mini .room .images .occupied {
  position: absolute;
  top: 20px;
  left: -9px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.detail .rooms-mini .room .images .occupied .text-ctn {
  font-size: 0.8rem;
  color: #ffffff;
  padding: 10px 15px;
  background: #D0021B;
  font-weight: 600;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#F23F56));
  background: linear-gradient(0deg, #D61B33, #F23F56);
}

.detail .rooms-mini .room .images .occupied img {
  margin: 0;
}

.detail .rooms-mini .room .images .illu {
  height: 410px;
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .images .illu {
    height: 335px;
  }
}

.detail .rooms-mini .room .images .illu img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.detail .rooms-mini .room .images .owl-dots {
  display: none;
}

.detail .rooms-mini .room .images .owl-nav .owl-prev {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 410px;
  width: 30px;
  color: #ffffff;
  font-size: 50px;
  text-align: left;
  background: rgba(26, 27, 27, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 27, 27, 0.5)), to(rgba(26, 27, 27, 0)));
  background: linear-gradient(90deg, rgba(26, 27, 27, 0.5), rgba(26, 27, 27, 0));
}

.detail .rooms-mini .room .images .owl-nav .owl-prev:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .images .owl-nav .owl-prev {
    height: 335px;
  }
}

.detail .rooms-mini .room .images .owl-nav .owl-prev span {
  margin-left: 10px;
}

.detail .rooms-mini .room .images .owl-nav .owl-next {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 410px;
  width: 30px;
  padding-right: 0px;
  color: #ffffff;
  text-align: right;
  font-size: 50px;
  background: rgba(26, 27, 27, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 27, 27, 0)), to(rgba(26, 27, 27, 0.5)));
  background: linear-gradient(90deg, rgba(26, 27, 27, 0), rgba(26, 27, 27, 0.5));
}

.detail .rooms-mini .room .images .owl-nav .owl-next:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .images .owl-nav .owl-next {
    height: 335px;
  }
}

.detail .rooms-mini .room .images .owl-nav .owl-next span {
  margin-right: 10px;
}

.detail .rooms-mini .room .infos {
  padding: 10px 25px;
  border-right: 3px solid #F2F1F0;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms-mini .room .infos {
    border-right: 0;
    border-bottom: 3px solid #F2F1F0;
  }
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .infos {
    border-right: 0;
    border-bottom: 3px solid #F2F1F0;
    padding: 20px;
  }
}

.detail .rooms-mini .room .infos .featured {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

.detail .rooms-mini .room .infos .featured p {
  width: 45%;
  color: #F85B50;
}

.detail .rooms-mini .room .infos h2 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 0px;
  margin-top: 0;
}

.detail .rooms-mini .room .infos h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}

.detail .rooms-mini .room .infos p {
  margin-top: 0;
  margin-bottom: 5px;
}

.detail .rooms-mini .room .infos .equip-list {
  padding-left: 0;
  margin-top: 7px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail .rooms-mini .room .infos .equip-list li {
  list-style: none;
  width: 33%;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.detail .rooms-mini .room .infos .equip-list li img {
  margin-right: 10px;
  width: 24px;
}

.detail .rooms-mini .room .infos .bottom {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.detail .rooms-mini .room .infos .bottom .b-img {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  overflow: none;
}

.detail .rooms-mini .room .infos .bottom .b-img img {
  margin: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail .rooms-mini .room .infos .bottom .b-content {
  padding-top: 6px;
  margin-bottom: 0;
  font-weight: 700;
  vertical-align: middle;
  display: inline-block;
  height: auto;
}

.detail .rooms-mini .room .resa {
  padding: 10px 20px;
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .resa {
    padding: 20px;
  }
}

.detail .rooms-mini .room .resa p {
  margin: 0;
  font-size: 0.93333333rem;
  font-weight: 300;
}

.detail .rooms-mini .room .resa p.alert-notice {
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.detail .rooms-mini .room .resa p.alert-notice span {
  color: #D0021B;
  font-weight: 600;
}

.detail .rooms-mini .room .resa h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}

.detail .rooms-mini .room .resa h3.price {
  font-size: 26px;
}

.detail .rooms-mini .room .resa h3.price span {
  font-size: 45px;
}

.detail .rooms-mini .room .resa h4 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}

.detail .rooms-mini .room .resa .included {
  font-size: 16px;
}

.detail .rooms-mini .room .resa .included span {
  color: #F85B50;
  font-weight: bold;
}

.detail .rooms-mini .room .resa .notice {
  font-style: normal;
}

.detail .rooms-mini .room .resa .notice span {
  color: #F85B50;
  font-weight: bold;
}

.detail .rooms-mini .room .resa a {
  text-align: center;
  display: block;
  width: 100%;
  border: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  border-radius: 50px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  margin-top: 12px;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms-mini .room .resa a {
    display: inline-block;
    width: 30%;
    margin-right: 2%;
  }
}

.detail .rooms-mini .room .resa a.reserve {
  margin-top: 20px;
  background: #F85B50;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  color: #ffffff;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .detail .rooms-mini .room .resa a.reserve {
    padding: 7px;
  }
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .resa a.reserve {
    padding: 7px;
  }
}

.detail .rooms-mini .room .resa a.reserve:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  text-decoration: none;
}

.detail .rooms-mini .room .resa a.whatsapp {
  background: #13C26D;
  background: -webkit-gradient(linear, left bottom, left top, from(#0B9D55), to(#13C26D));
  background: linear-gradient(0deg, #0B9D55, #13C26D);
  color: #ffffff;
  padding: 10px;
}

.detail .rooms-mini .room .resa a.whatsapp:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #0B9D55;
  background: -webkit-gradient(linear, left bottom, left top, from(#0B9D55), to(#0B9D55));
  background: linear-gradient(0deg, #0B9D55, #0B9D55);
  text-decoration: none;
}

.detail .rooms-mini .room .resa a.request {
  background: #ffffff;
  color: #000;
  border: 1px solid #000;
  font-size: 0.86666667rem;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  padding: 10px 5px;
  font-weight: normal;
}

.detail .rooms-mini .room .resa a.request:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
}

.detail .rooms-mini .room .resa a.alert {
  background: #F23F56;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#F23F56));
  background: linear-gradient(0deg, #D61B33, #F23F56);
  color: #ffffff;
}

@media (max-width: 992px) {
  .detail .rooms-mini .room .resa a.alert {
    padding: 7px;
  }
}

.detail .rooms-mini .room .resa a.alert:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #D61B33;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#D61B33));
  background: linear-gradient(0deg, #D61B33, #D61B33);
  text-decoration: none;
}

.detail .rooms-mini .room.not-available .images .owl-nav .owl-prev {
  width: 50%;
  background: rgba(26, 27, 27, 0.6);
}

.detail .rooms-mini .room.not-available .images .owl-nav .owl-next {
  width: 50%;
  background: rgba(26, 27, 27, 0.6);
}

.detail .rooms-mini .room.not-available .infos h2 {
  opacity: 0.4;
}

.detail .rooms-mini .room.not-available .infos p {
  opacity: 0.4;
}

.detail .rooms-mini .room.not-available .infos h3 {
  opacity: 0.4;
}

.detail .rooms-mini .room.not-available .infos .equip-list {
  opacity: 0.4;
}

.detail .rooms-mini .room.not-available .infos .bottom {
  opacity: 0.4;
}

.detail .rooms-mini .bottom-buttons {
  text-align: center;
}

.detail .rooms-mini .bottom-buttons .reserve-rooms {
  background: #F85B50;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  color: #ffffff;
  text-align: center;
  display: inline-block;
  border: n1px solid rgba(0, 0, 0, 0);
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 300;
  border-radius: 50px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  margin-right: 30px;
}

@media (max-width: 992px) {
  .detail .rooms-mini .bottom-buttons .reserve-rooms {
    display: block;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

.detail .rooms-mini .bottom-buttons .reserve-rooms:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  text-decoration: none;
}

.detail .rooms-mini .bottom-buttons .waiting-list {
  background: #ffffff;
  color: #000;
  border: 1px solid #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-weight: 300;
  border: 1px solid #000;
  padding: 10px 20px;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 300;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .detail .rooms-mini .bottom-buttons .waiting-list {
    display: block;
  }
}

.detail .rooms-mini .bottom-buttons .waiting-list:hover {
  color: #F85B50;
  border: 1px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
}

.detail .rooms-mini {
  padding: 0 0 0 40px;
}

.detail .rooms-mini h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.detail .rooms-mini h2 span {
  font-weight: bold;
  font-style: italic;
  color: #F85B50;
}

.detail .rooms-mini .room {
  height: 120px;
}

.detail .rooms-mini .room .infos {
  padding: 7px 20px;
}

.detail .rooms-mini .room .infos h3 {
  font-size: 16px;
  margin: 0;
}

.detail .rooms-mini .room .infos .price {
  color: #F85B50;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 0;
}

.detail .rooms-mini .room .infos .notice {
  font-size: 11px;
  font-weight: 500;
  margin: -5px 0 0 0;
}

.detail .rooms-mini .room .infos .notice span {
  color: #F85B50;
}

.detail .rooms-mini .room .infos .orange-btn {
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 3px 10px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 11px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  margin-top: 5px;
  display: inline-block;
}

.detail .rooms-mini .room .infos .orange-btn:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.detail .rooms-mini .room .images .illu {
  height: 120px;
}

.detail .rooms-mini .room .images .owl-nav .owl-prev {
  height: 120px;
  width: 20px;
}

.detail .rooms-mini .room .images .owl-nav .owl-next {
  height: 120px;
  width: 20px;
}

.detail .rooms-mini .room .images .occupied {
  top: 10px;
}

.detail .rooms-mini .room .images .occupied .text-ctn {
  padding: 6px 15px;
  font-size: 10px;
  font-weight: 600;
  background: -webkit-gradient(linear, left bottom, left top, from(#D61B33), to(#F23F56));
  background: linear-gradient(0deg, #D61B33, #F23F56);
}

.detail .rooms-mini .room .images .available {
  top: 10px;
}

.detail .rooms-mini .room .images .available .text-ctn {
  padding: 6px 15px;
  font-size: 10px;
  font-weight: 600;
  background: -webkit-gradient(linear, left bottom, left top, from(#6AB31A), to(#A3DA38));
  background: linear-gradient(0deg, #6AB31A, #A3DA38);
}

.accordion-service .card-header {
  background: #fff;
  padding: 10px 0px;
  border: 0px;
}

.accordion-service button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  padding: 0px;
  border: 0px;
  font-weight: 500;
  color: #000;
}

.accordion-service button span.w-icon img {
  width: 24px;
  margin-right: 15px;
}

.accordion-service button span.chevron img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.accordion-service button:not(.collapsed) {
  color: #F85B50;
}

.accordion-service button:not(.collapsed) span.chevron img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.accordion-service button:focus {
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px;
  text-decoration: none;
}

.accordion-service button:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px !important;
  text-decoration: none;
  color: #F85B50;
}

.accordion-service .card {
  border: 0px;
}

.accordion-service .card-body {
  padding: 0px;
  padding-left: 44px;
}

.accordion-title-rooms {
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.form-head {
  background: url(../img/detail/detail-bg-header.jpg) center center no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
}

@media (max-width: 992px) {
  .form-head {
    height: auto;
    min-height: 300px;
  }
}

.form-head .form-title-container {
  padding-top: 100px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 992px) {
  .form-head .form-title-container {
    height: 100%;
    min-height: 300px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form-head .form-title-container h1 {
  font-size: 2.93333333rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 900;
}

@media (max-width: 992px) {
  .form-head .form-title-container h1 {
    font-size: 1.8rem;
  }
}

.form-head .form-title-container h1 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .form-head .form-title-container h1 {
    text-align: center;
  }
}

.form-head .form-title-container p.intro {
  color: #ffffff;
  font-size: 1.33333333rem;
  margin-bottom: 25px;
  max-width: 595px;
  text-align: left;
}

@media (max-width: 992px) {
  .form-head .form-title-container p.intro {
    text-align: center;
    max-width: 100%;
    font-size: 1.2rem;
  }
}

.form-head .form-title-container .more-detail {
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-weight: 700;
  text-decoration: none;
}

.form-head .form-title-container .more-detail:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.d-form .bg-info-ctn {
  background: url("../img/detail/background-detail.png") top center no-repeat;
  background-size: contain;
  padding-bottom: 50px;
}

.d-form .illu-ctn {
  margin-top: -260px;
}

@media (max-width: 992px) {
  .d-form .illu-ctn {
    margin-top: 30px;
  }
}

.d-form .illu-ctn .img-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 99;
}

.d-form .illu-ctn .img-ctn .img {
  height: 200px;
  width: 200px;
  margin-right: 20px;
  margin-bottom: 20px;
  border: 5px solid #ffffff;
  -webkit-box-shadow: 0px 6px 44px 0 rgba(155, 155, 155, 0.4);
          box-shadow: 0px 6px 44px 0 rgba(155, 155, 155, 0.4);
  overflow: hidden;
  z-index: 99;
}

.d-form .illu-ctn .img-ctn .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media (max-width: 992px) {
  .d-form .illu-ctn .img-ctn .img {
    width: 40%;
    height: auto;
  }
  .d-form .illu-ctn .img-ctn .img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.d-form .illu-ctn .img-ctn .img:nth-child(2n) {
  margin-right: 0;
}

@media (max-width: 992px) {
  .d-form .illu-ctn .img-ctn .img:nth-child(2n) {
    margin-right: 20px;
  }
}

.d-form .content {
  margin-top: -470px;
  z-index: 999;
}

@media (max-width: 992px) {
  .d-form .content {
    padding-left: 15px;
    margin-top: 30px;
  }
}

.d-form .content h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.d-form .content h2 span {
  color: #F85B50;
  font-weight: 900;
  font-style: italic;
}

.d-form .content p {
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 0;
}

.d-form .content p.w-img {
  margin-bottom: 10px;
}

.d-form .content p.w-img img {
  margin-right: 10px;
}

.d-form .content h3 {
  margin-bottom: 25px;
  font-size: 1.86666667rem;
}

.d-form .content h3 span {
  color: #F85B50;
  font-weight: 700;
  font-style: italic;
}

.d-form .content .form-ctn {
  background: #ffffff;
  padding: 30px;
  -webkit-box-shadow: 0 6px 44px 0 rgba(155, 155, 155, 0.2);
          box-shadow: 0 6px 44px 0 rgba(155, 155, 155, 0.2);
}

.d-form .content .form-ctn .notice {
  font-size: 0.800em;
  font-style: italic;
  line-height: 1.1;
}

.d-form .content .form-ctn .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.d-form .content .form-ctn .input-group .w-notice {
  width: 270px;
}

@media (max-width: 700px) {
  .d-form .content .form-ctn .input-group .w-notice {
    width: 100%;
  }
}

.d-form .content .form-ctn .input-group .label {
  width: 270px;
  text-transform: uppercase;
  font-size: 0.933em;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .d-form .content .form-ctn .input-group .label {
    width: 100%;
  }
}

.d-form .content .form-ctn .input-group .label .input {
  width: 100%;
  height: 48px;
  border: 3px solid #EEEBE9;
  padding: 10px;
}

.d-form .content .form-ctn .input-group .label .input.date {
  background: url("../img/icons/date.png") 97% center no-repeat;
}

.d-form .content .form-ctn .input-group .label .input.birthdate {
  background: url("../img/icons/calendar.png") 97% center no-repeat;
}

.d-form .content .form-ctn .input-group .label .input.attachment {
  background: url("../img/icons/attachment.png") 97% center no-repeat;
}

.d-form .content .form-ctn .input-group .w-notice {
  margin-bottom: 0;
}

.d-form .content .form-ctn .input-group .w-notice .label {
  margin-bottom: 0;
}

.d-form .content .form-ctn .input-group .w-notice .notice {
  margin-top: 5px;
  margin-bottom: 30px;
}

.d-form .content .form-ctn .input-group .radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}

.d-form .content .form-ctn .input-group .radio-item input[type='radio'] {
  display: none;
}

.d-form .content .form-ctn .input-group .radio-item label {
  text-transform: initial;
  color: #000;
  font-weight: normal;
}

.d-form .content .form-ctn .input-group .radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 3px solid #EEEBE9;
  background-color: transparent;
}

.d-form .content .form-ctn .input-group .radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 11px;
  left: 12px;
  content: " ";
  display: block;
  background: #F85B50;
}

.d-form .content .form-ctn .input-group .radio-item input[type=radio]:checked + label:before {
  border: 1px solid #F85B50;
}

.d-form .content .form-ctn .submit {
  width: 260px;
  text-transform: uppercase;
  font-size: 1.133em;
  height: auto;
  border: 0px;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 100px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.d-form .content .form-ctn .submit:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.membership-head {
  background: url(../img/membership/membership-bg-header.jpg) center center no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
}

@media (max-width: 992px) {
  .membership-head {
    height: auto;
    min-height: 400px;
  }
}

.membership-head .membership-title-container {
  position: relative;
  z-index: 2;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 992px) {
  .membership-head .membership-title-container {
    padding-top: 45px;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    min-height: 300px;
  }
}

.membership-head .membership-title-container h1 {
  font-size: 2.93333333rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 900;
}

@media (max-width: 992px) {
  .membership-head .membership-title-container h1 {
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
  }
}

.membership-head .membership-title-container h1 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
  display: block;
}

@media (max-width: 992px) {
  .membership-head .membership-title-container h1 {
    text-align: center;
  }
}

.membership-head .membership-title-container p.intro {
  color: #ffffff;
  font-size: 1.33333333rem;
  margin-bottom: 25px;
  max-width: 560px;
  text-align: left;
}

@media (max-width: 992px) {
  .membership-head .membership-title-container p.intro {
    text-align: center;
    max-width: 100%;
    font-size: 1.2rem;
  }
}

.membership {
  padding-top: 80px;
  background: url("../img/membership/membership-background.png") no-repeat;
  background-position: center -540px;
  position: relative;
  font-size: 15px;
}

@media (max-width: 992px) {
  .membership {
    background: none;
    margin-top: 0;
  }
}

@media (max-width: 1200px) {
  .membership .feature {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  .membership .feature {
    overflow: initial;
  }
}

.membership .feature .text-ctn h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.membership .feature .text-ctn h2 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .membership .feature .text-ctn h2 {
    font-size: 2rem;
  }
}

.membership .feature .text-ctn h3 {
  font-size: 1.33333333rem;
  color: #8B8B8B;
  margin-bottom: 25px;
}

.membership .feature .text-ctn ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.membership .feature .text-ctn ul li {
  padding: 0;
  margin: 0 0 10px 0;
  color: #000;
  font-size: 0.93333333em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.membership .feature .text-ctn ul li span {
  color: #F85B50;
  font-size: 1rem;
  margin-right: 7px;
}

.membership .feature .text-ctn p {
  font-size: 15px;
  color: #8B8B8B;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 18px;
}

@media (max-width: 992px) {
  .membership .feature .text-ctn p {
    width: 100%;
  }
}

.membership .feature .text-ctn .link {
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #ffffff;
  border: 1px solid #000;
  padding: 5px;
  border-radius: 20px;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  width: 130px;
}

.membership .feature .text-ctn .link:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  color: #FF6250;
  border: 1px solid #FF6250;
}

.membership .feature.get-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 107px;
  padding-top: 53px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .membership .feature.get-more {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .membership .feature.get-more {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.membership .feature.get-more .text-ctn {
  width: 63%;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.membership .feature.get-more .text-ctn .inner {
  float: right;
  width: 440px;
  padding: 30px 0;
}

.membership .feature.get-more .text-ctn .inner p {
  margin-bottom: 20px;
  width: 355px;
}

.membership .feature.get-more .text-ctn .inner p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .membership .feature.get-more .text-ctn .inner p {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .membership .feature.get-more .text-ctn .inner {
    padding-left: 10px;
  }
}

@media (max-width: 992px) {
  .membership .feature.get-more .text-ctn .inner {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .membership .feature.get-more .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.membership .feature.get-more .img-pos {
  position: absolute;
  left: 0;
  top: 0;
  width: 605px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .membership .feature.get-more .img-pos {
    left: auto;
    right: 490px;
  }
}

@media (max-width: 992px) {
  .membership .feature.get-more .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.membership .feature.get-more .box {
  width: 216px;
  height: 57px;
  position: absolute;
  background: #F85B50;
}

.membership .feature.get-more .box.topright {
  top: 44px;
  z-index: 1;
}

@media (max-width: 992px) {
  .membership .feature.get-more .box.topright {
    display: none;
  }
}

.membership .feature.get-more .box.bottomleft {
  left: 300px;
  bottom: 67px;
  z-index: 50;
}

@media (max-width: 1200px) {
  .membership .feature.get-more .box.bottomleft {
    bottom: 280px;
  }
}

@media (max-width: 992px) {
  .membership .feature.get-more .box.bottomleft {
    position: initial;
    right: 0;
    bottom: 0;
    height: 12px;
    width: 55%;
  }
}

.membership .feature.your-home {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 10px;
  padding-top: 62px;
  padding-bottom: 160px;
}

@media (max-width: 1200px) {
  .membership .feature.your-home {
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .membership .feature.your-home {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.membership .feature.your-home .text-ctn {
  width: 579px;
  padding: 30px 0 30px 50px;
  background: #fff;
  z-index: 2;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.membership .feature.your-home .text-ctn .inner {
  width: 355px;
}

@media (max-width: 1200px) {
  .membership .feature.your-home .text-ctn .inner {
    width: 55%;
  }
}

@media (max-width: 992px) {
  .membership .feature.your-home .text-ctn .inner {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .membership .feature.your-home .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.membership .feature.your-home .img-pos {
  position: absolute;
  right: 100px;
  top: 113px;
  width: 601px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .membership .feature.your-home .img-pos {
    right: auto;
    left: 475px;
  }
}

@media (max-width: 992px) {
  .membership .feature.your-home .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.membership .feature.your-home .box {
  position: absolute;
  background: #F85B50;
}

.membership .feature.your-home .box.topleft {
  width: 216px;
  height: 155px;
  left: -10px;
  top: 44px;
  z-index: 1;
}

@media (max-width: 992px) {
  .membership .feature.your-home .box.topleft {
    display: none;
  }
}

.membership .feature.your-home .box.bottomright {
  width: 216px;
  height: 57px;
  bottom: 140px;
  right: 570px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .membership .feature.your-home .box.bottomright {
    bottom: 280px;
  }
}

@media (max-width: 992px) {
  .membership .feature.your-home .box.bottomright {
    position: initial;
    left: 0;
    bottom: 0;
    height: 12px;
    width: 55%;
  }
}

.membership .feature.perks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 80px;
  padding-top: 193px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .membership .feature.perks {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .membership .feature.perks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.membership .feature.perks .text-ctn {
  width: 788px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

@media (max-width: 992px) {
  .membership .feature.perks .text-ctn {
    height: auto;
  }
}

.membership .feature.perks .text-ctn .inner {
  float: right;
  width: 440px;
  padding: 30px 0;
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .membership .feature.perks .text-ctn .inner {
    padding-left: 0px;
  }
}

@media (max-width: 992px) {
  .membership .feature.perks .text-ctn .inner {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media (max-width: 992px) {
  .membership .feature.perks .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.membership .feature.perks .text-ctn .link {
  width: 160px;
}

.membership .feature.perks .text-ctn h2 {
  margin-bottom: 20px;
}

.membership .feature.perks .img-pos {
  position: absolute;
  left: 0;
  top: 0;
  width: 610px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .membership .feature.perks .img-pos {
    left: auto;
    right: 510px;
  }
}

@media (max-width: 992px) {
  .membership .feature.perks .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.membership .feature.perks .box {
  width: 216px;
  height: 20px;
  position: absolute;
  background: #F85B50;
}

.membership .feature.perks .box.bottom {
  right: 320px;
  bottom: 120px;
  z-index: 50;
}

@media (max-width: 992px) {
  .membership .feature.perks .box.bottom {
    position: initial;
    margin: 0 auto;
    height: 12px;
    width: 55%;
  }
}

.membership .better-way h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.membership .better-way h2 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .membership .better-way h2 {
    font-size: 2rem;
    text-align: center;
  }
}

.membership .better-way p {
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .membership .better-way p {
    text-align: center;
  }
}

.membership .better-way .plans .col-3 {
  padding: 10px;
}

@media (max-width: 767px) {
  .membership .better-way .plans .col-3 {
    padding: 2px;
  }
}

.membership .better-way .plans .col-3 .title-case {
  height: 50px;
  margin-bottom: 5px;
}

.membership .better-way .plans .col-3 .title-case h3 {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .membership .better-way .plans .col-3 .title-case h3 {
    font-size: 10px;
    text-align: center;
  }
}

.membership .better-way .plans .col-3 .case {
  background: #ffffff;
  height: 50px;
  margin-bottom: 5px;
  -webkit-box-shadow: 0px 6px 44px rgba(155, 155, 155, 0.2);
          box-shadow: 0px 6px 44px rgba(155, 155, 155, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.membership .better-way .plans .col-3 .case:last-of-type {
  border-bottom: 0;
}

.membership .better-way .plans .col-3.first .case {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 20px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .membership .better-way .plans .col-3.first .case {
    font-size: 12px;
    padding-left: 5px;
  }
}

.membership .better-way .plans .col-3.second .title-case {
  background: black;
  width: 100%;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.membership .better-way .plans .col-3.third .title-case {
  background: black;
  width: 100%;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.membership .better-way .plans .col-3.featured {
  background: #F85B50;
}

@media (max-width: 767px) {
  .membership .better-way .plans .col-3.featured {
    padding: 2px;
    background: none;
  }
  .membership .better-way .plans .col-3.featured .title-case {
    background: #F85B50;
  }
}

.membership .better-way .plans .col-3.featured .title-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.landlords-head {
  background: url(../img/landlords/background-landlords.jpg) center center no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
}

@media (max-width: 992px) {
  .landlords-head {
    height: 400px;
    margin-bottom: 400px;
  }
}

.landlords-head .landlords-header-container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .landlords-head .landlords-header-container .row .col-12 {
    padding: 0;
  }
}

.landlords-head .landlords-header-container h1 {
  font-size: 2.93333333rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 696px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.landlords-head .landlords-header-container h1 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

.landlords-head .landlords-header-container p.intro {
  color: #ffffff;
  font-size: 1.33333333rem;
  margin-bottom: 25px;
  max-width: 696px;
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container p.intro {
    font-size: 1.2rem;
  }
}

.landlords-head .landlords-header-container .intro-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container .intro-ctn {
    padding: 0 15px !important;
  }
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container .form {
    -webkit-box-shadow: 0 6px 44px rgba(155, 155, 155, 0.2);
            box-shadow: 0 6px 44px rgba(155, 155, 155, 0.2);
  }
}

.landlords-head .landlords-header-container .form .form-container {
  background: #ffffff;
  padding: 15px 30px 30px 30px;
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container .form .form-container {
    padding: 30px 15px;
  }
}

.landlords-head .landlords-header-container .form .form-container h2 {
  font-size: 2.7rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .landlords-head .landlords-header-container .form .form-container h2 {
    font-size: 1.8rem;
  }
}

.landlords-head .landlords-header-container .form .form-container h2 span {
  font-weight: 900;
  font-style: italic;
  color: #F85B50;
}

.landlords-head .landlords-header-container .form .form-container form {
  margin-top: 0;
  position: relative;
}

.landlords-head .landlords-header-container .form .form-container form input {
  padding: 10px;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  border: 3px solid #EEEBE9;
  height: 43px;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
}

.landlords-head .landlords-header-container .form .form-container form input[type="submit"] {
  width: 260px;
  text-transform: uppercase;
  font-size: 1.4rem;
  height: auto;
  border: 0px;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 100px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.landlords-head .landlords-header-container .form .form-container form input[type="submit"]:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.landlords-head .landlords-header-container .form .form-container form .submit-ctn {
  position: absolute;
  bottom: -80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.landlords-bg-first {
  padding: 0;
  margin: 0;
}

.landlords-bg-first .landlords-first {
  background: url("../img/home/home-bg-1.png") center -560px no-repeat;
  background-size: cover;
  padding-top: 55px;
}

@media (max-width: 992px) {
  .landlords-bg-first .landlords-first {
    background: url("../img/home/home-bg-1-mobile.png") center bottom no-repeat;
  }
}

.landlords-bg-first .landlords-first h2 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .landlords-bg-first .landlords-first h2 {
    font-size: 2rem;
  }
}

.landlords-bg-first .landlords-first h2 span {
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.landlords-bg-first .landlords-first h3 {
  font-size: 1.86666667rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 992px) {
  .landlords-bg-first .landlords-first h3 {
    font-size: 1.46666667rem;
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

.landlords-bg-first .landlords-first h3 span {
  font-weight: 600;
  color: #F85B50;
  font-style: italic;
}

.landlords-bg-first .landlords-first .step {
  text-align: center;
}

.landlords-bg-first .landlords-first .step img {
  width: 158px;
}

.landlords-bg-first .landlords-first .step h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: -30px;
}

.landlords-bg-first .landlords-first .step h4 span {
  font-weight: 900;
  color: #F85B50;
  font-style: italic;
}

.landlords-bg-first .landlords-first .step p {
  margin: 0 auto;
  color: #8B8B8B;
  font-size: 1rem;
  max-width: 320px;
}

.landlords-bg-first .landlords-first .step.two {
  margin-top: 120px;
}

@media (max-width: 992px) {
  .landlords-bg-first .landlords-first .step.two {
    margin-top: 0px;
  }
}

.landlords-bg-second {
  background: url(../img/landlords/landlords-bg-content.png) 130px 55px no-repeat;
  margin-top: 90px;
  position: relative;
}

@media (max-width: 992px) {
  .landlords-bg-second {
    margin-top: 0;
  }
}

.landlords-bg-second .feature {
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .landlords-bg-second .feature {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  .landlords-bg-second .feature {
    overflow: initial;
  }
}

.landlords-bg-second .feature .text-ctn h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.landlords-bg-second .feature .text-ctn h2 span {
  font-weight: 600;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature .text-ctn h2 {
    font-size: 2rem;
  }
}

.landlords-bg-second .feature .text-ctn p {
  font-size: 15px;
  line-height: 18px;
  color: #8B8B8B;
  margin-bottom: 0px;
  margin-top: 0;
}

.landlords-bg-second .feature.one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
  padding-right: 94px;
  padding-top: 52px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .landlords-bg-second .feature.one {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
    max-width: 600px;
    padding-bottom: 60px;
  }
}

.landlords-bg-second .feature.one .text-ctn {
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.landlords-bg-second .feature.one .text-ctn.first {
  width: 732px;
  padding: 30px 0 50px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .text-ctn.first {
    width: 100%;
    padding: 30px 20px 50px 20px;
  }
}

.landlords-bg-second .feature.one .text-ctn.first h2 {
  font-size: 38px;
}

.landlords-bg-second .feature.one .text-ctn.first .inner {
  width: 369px;
  margin-left: 297px;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .text-ctn.first .inner {
    width: 100%;
    margin-left: 0;
  }
}

.landlords-bg-second .feature.one .text-ctn.second {
  width: 576px;
  margin-right: 47px;
  margin-top: -20px;
  padding: 45px 0;
  z-index: 10;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .text-ctn.second {
    width: 100%;
    margin-right: 0;
    padding: 45px 20px;
  }
}

.landlords-bg-second .feature.one .text-ctn.second h2 {
  font-size: 28px;
}

.landlords-bg-second .feature.one .text-ctn.second .inner {
  width: 364px;
  margin-left: 188px;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .text-ctn.second .inner {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .text-ctn {
    width: 100%;
    padding: 20px;
  }
}

.landlords-bg-second .feature.one .img-pos {
  position: absolute;
  left: 0;
  top: 0;
  width: 612px;
  z-index: 999;
}

@media (max-width: 1200px) {
  .landlords-bg-second .feature.one .img-pos {
    left: auto;
    right: 490px;
  }
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .img-pos {
    position: initial;
    display: block;
    width: 100%;
  }
}

.landlords-bg-second .feature.one .box-ctn {
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .box-ctn {
    width: 90%;
  }
}

.landlords-bg-second .feature.one .box {
  width: 216px;
  height: 57px;
  position: absolute;
  background: #F85B50;
}

.landlords-bg-second .feature.one .box.topright {
  top: 45px;
  right: 94px;
  z-index: -99;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .box.topright {
    display: none;
  }
}

.landlords-bg-second .feature.one .box.middleright {
  top: -30px;
  right: 36px;
  z-index: -1;
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .box.middleright {
    right: initial;
    left: 40%;
  }
}

.landlords-bg-second .feature.one .box.bottomleft {
  left: 326px;
  top: 380px;
  z-index: 50;
}

@media (max-width: 1200px) {
  .landlords-bg-second .feature.one .box.bottomleft {
    bottom: 280px;
    left: 226px;
  }
}

@media (max-width: 992px) {
  .landlords-bg-second .feature.one .box.bottomleft {
    display: none;
  }
}

.timeline {
  padding-top: 50px;
}

.timeline h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.timeline h2 span {
  font-weight: 600;
  font-style: italic;
  color: #F85B50;
}

@media (max-width: 992px) {
  .timeline h2 {
    font-size: 2rem;
  }
}

.timeline .intro {
  font-size: 20px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0;
}

.timeline .steps {
  margin-top: 60px;
}

.timeline .steps .row .step {
  width: 100%;
  background: #ffffff;
  padding: 20px 30px;
  -webkit-box-shadow: 0 6px 44px 0 rgba(155, 155, 155, 0.2);
          box-shadow: 0 6px 44px 0 rgba(155, 155, 155, 0.2);
}

@media (max-width: 992px) {
  .timeline .steps .row .step {
    margin-bottom: 30px;
  }
}

.timeline .steps .row .step h3 {
  font-size: 1.33333333rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.timeline .steps .row .step h3 span {
  font-weight: 600;
  font-style: italic;
  color: #F85B50;
}

.timeline .steps .row .step p {
  color: #8B8B8B;
  font-size: 15px;
  line-height: 18px;
}

.timeline .steps .row .step-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.timeline .steps .row .step-icon img {
  display: block;
  width: 70px;
  height: 70px;
}

.timeline .steps .row .step-icon .line {
  width: 1px;
  height: 100%;
  background: url("../img/landlords/step-background.png") center center repeat-y;
}

.timeline .steps .row.step-4 {
  margin-bottom: -160px;
}

.timeline .steps .row.step-4 .right {
  margin-bottom: 160px;
}

.faq {
  padding-top: 120px;
}

@media (max-width: 992px) {
  .faq {
    padding-top: 60px;
  }
}

.faq .faq-ctn {
  margin: 0 auto;
  max-width: 720px;
  background: #F85B50;
  text-align: center;
  padding: 40px;
  position: relative;
}

.faq .faq-ctn .faq-circle {
  position: absolute;
  right: -60px;
  top: -60px;
}

@media (max-width: 992px) {
  .faq .faq-ctn .faq-circle {
    display: none;
  }
}

.faq .faq-ctn h2 {
  font-size: 2.53333333rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #000;
}

.faq .faq-ctn h2 span {
  display: block;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 900;
  font-style: italic;
}

.faq .faq-ctn p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.faq .faq-ctn .faq-link {
  margin: 0 auto;
  width: 160px;
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
}

.faq .faq-ctn .faq-link:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  color: #FF6250;
  background: #ffffff;
  border: 1px solid #FF6250;
}

.d-form.contact .content {
  margin-top: 60px;
}

.d-form.contact .content .form-ctn .input-group .label.full-w {
  width: 100%;
}

.d-form.contact .content .form-ctn .input-group .label {
  width: 47%;
}

@media (max-width: 739px) {
  .d-form.contact .content .form-ctn .input-group .label {
    width: 100%;
  }
}

.d-form.contact .content .form-ctn .input-group .label .input.textarea {
  height: initial;
}

.recap {
  margin-top: -53px;
  padding-top: 113px;
  background: url(../img/recap/recap-bg.png) left center no-repeat;
  background-size: contain;
}

@media (max-width: 992px) {
  .recap {
    padding-top: 60px;
    background: #F7F6F4;
  }
}

@media (max-width: 992px) {
  .recap .recap-box {
    margin-bottom: 40px;
  }
}

.recap .recap-box .ctn-box {
  padding: 0;
}

.recap .recap-box .ctn-box .img-ctn {
  height: 178px;
  width: 100%;
  overflow: hidden;
}

.recap .recap-box .ctn-box .img-ctn .box-img-full-w {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recap .recap-box .ctn-box .infos-ctn {
  padding: 15px 30px;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 10px 15px 0px rgba(155, 155, 155, 0.2);
  background: #ffffff;
}

.recap .recap-box .ctn-box .infos-ctn.seperate {
  margin-top: 40px;
}

.recap .recap-box .ctn-box .infos-ctn h3 {
  font-size: 22px;
  font-weight: 900;
}

.recap .recap-box .ctn-box .infos-ctn p {
  margin-bottom: 0;
}

.recap .recap-box .ctn-box .infos-ctn h4 {
  font-size: 20px;
  font-weight: 700;
}

.recap .recap-box .ctn-box .infos-ctn .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recap .recap-box .ctn-box .infos-ctn .date span {
  width: 50%;
  text-align: left;
}

.recap .recap-box .ctn-box .infos-ctn .date span.title {
  font-size: 16px;
  font-weight: bold;
}

.recap .recap-box .ctn-box .infos-ctn .date span.jjmmaa {
  font-size: 15px;
}

.recap .recap-box .ctn-box .infos-ctn .info {
  margin-top: 22px;
}

.recap .recap-box .ctn-box .infos-ctn .info .number {
  display: inline-block;
  width: 10%;
  vertical-align: top;
}

.recap .recap-box .ctn-box .infos-ctn .info .number img {
  width: 100%;
}

.recap .recap-box .ctn-box .infos-ctn .info .step {
  display: inline-block;
  width: 88%;
  vertical-align: top;
  padding-left: 20px;
}

.recap .recap-box .ctn-box .infos-ctn .info .step h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.recap .recap-box .ctn-box .infos-ctn .info .step h5.orange {
  color: #F85B50;
}

.recap .recap-box .ctn-box .infos-ctn .info .step p {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recap .recap-box .ctn-box .infos-ctn .info .step p .price {
  font-weight: 500;
}

.recap .recap-box .ctn-box .infos-ctn .info .step p .price.orange {
  font-weight: 700;
  color: #F85B50;
}

.recap .recap-box .ctn-box .infos-ctn .info.w-border {
  border-top: 2px solid #E1DFDB;
  padding-top: 22px;
}

.recap .recap-details h1 {
  font-size: 44px;
  font-weight: 500;
}

.recap .recap-details h1 span {
  color: #F85B50;
  font-style: italic;
  font-weight: 700;
}

.recap .recap-details p {
  font-size: 20px;
  margin-bottom: 22px;
}

.recap .recap-details p .current {
  color: #F85B50;
  font-style: italic;
  font-weight: 700;
}

.recap .recap-details .recap-details-box {
  position: relative;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 10px 15px 0px rgba(155, 155, 155, 0.2);
  background: #ffffff;
  padding: 30px;
  margin-bottom: 36px;
}

.recap .recap-details .recap-details-box h2 {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recap .recap-details .recap-details-box h2 .price.orange {
  color: #F85B50;
}

.recap .recap-details .recap-details-box p.desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
}

.recap .recap-details .recap-details-box.w-notice {
  padding: 60px 30px 30px 30px;
}

.recap .recap-details .recap-details-box .date-form label {
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 40px;
}

.recap .recap-details .recap-details-box .date-form label span {
  text-transform: initial;
}

@media (max-width: 551px) {
  .recap .recap-details .recap-details-box .date-form label {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}

.recap .recap-details .recap-details-box .date-form .input {
  margin-top: 12px;
  width: 180px;
  height: 48px;
  border: 3px solid #EEEBE9;
  padding: 10px;
}

.recap .recap-details .recap-details-box .date-form .input.date {
  background: url("../img/icons/date.png") 97% center no-repeat;
}

@media (max-width: 551px) {
  .recap .recap-details .recap-details-box .date-form .input {
    width: 100%;
  }
}

.recap .recap-details .recap-details-box .notice {
  position: absolute;
  z-index: 999;
  top: 10px;
  left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: uppercase;
}

.recap .recap-details .recap-details-box .notice .text-ctn {
  padding: 8px 12px;
  color: #ffffff;
}

.recap .recap-details .recap-details-box .notice.available .text-ctn {
  background: #6AB31A;
  background: -webkit-gradient(linear, left top, left bottom, from(#A3DA38), to(#6AB31A));
  background: linear-gradient(180deg, #A3DA38, #6AB31A);
}

.recap .recap-details .recap-details-box .notice.new .text-ctn {
  background: #F85B50;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
}

.recap .recap-details .recap-details-box .notice.disable .text-ctn {
  background: #8B8B8B;
}

.recap .recap-details .recap-details-box .notice.dark .text-ctn {
  background: #000;
}

.recap .recap-details .separator {
  width: 100%;
  height: 2px;
  background: #E1DFDB;
  margin-top: 15px;
  margin-bottom: 15px;
}

.recap .recap-details a.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.recap .recap-details a.services img {
  width: 15px;
  margin-right: 12px;
}

.recap .recap-details a.services span {
  padding-bottom: 4px;
  border-bottom: 1px solid #F85B50;
}

.recap .recap-details a.services:hover {
  text-decoration: none;
  color: #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.recap .recap-details .ib-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recap .recap-details .ib-ctn .ib {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  border: 1px solid #000;
  border-radius: 4.8px;
  min-width: 146px;
  margin-bottom: 15px;
  margin-right: 10px;
}

.recap .recap-details .ib-ctn .ib img {
  width: 18px;
  margin-right: 10px;
}

.recap .recap-details .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recap .recap-details .input-group .w-notice {
  width: 297px;
}

@media (max-width: 1050px) {
  .recap .recap-details .input-group .w-notice {
    width: 48%;
  }
}

@media (max-width: 700px) {
  .recap .recap-details .input-group .w-notice {
    width: 100%;
  }
}

.recap .recap-details .input-group .label {
  width: 297px;
  text-transform: uppercase;
  font-size: 0.933em;
  margin-bottom: 30px;
}

@media (max-width: 1050px) {
  .recap .recap-details .input-group .label {
    width: 48%;
  }
}

@media (max-width: 700px) {
  .recap .recap-details .input-group .label {
    width: 100%;
  }
}

.recap .recap-details .input-group .label .input, .recap .recap-details .input-group .label select {
  width: 100%;
  height: 48px;
  border: 3px solid #EEEBE9;
  padding: 10px;
}

.recap .recap-details .input-group .label .input.date, .recap .recap-details .input-group .label select.date {
  background: url("../img/icons/date.png") 97% center no-repeat;
}

.recap .recap-details .input-group .label .input.birthdate, .recap .recap-details .input-group .label select.birthdate {
  background: url("../img/icons/calendar.png") 97% center no-repeat;
}

.recap .recap-details .input-group .label .input.attachment, .recap .recap-details .input-group .label select.attachment {
  background: url("../img/icons/attachment.png") 97% center no-repeat;
}

.recap .recap-details .input-group .w-notice {
  margin-bottom: 0;
}

.recap .recap-details .input-group .w-notice .label {
  margin-bottom: 0;
}

.recap .recap-details .input-group .w-notice .notice {
  margin-top: 5px;
  margin-bottom: 30px;
}

.recap .recap-details .input-group .radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}

.recap .recap-details .input-group .radio-item input[type='radio'] {
  display: none;
}

.recap .recap-details .input-group .radio-item label {
  text-transform: initial;
  color: #000;
  font-weight: normal;
}

.recap .recap-details .input-group .radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 3px solid #EEEBE9;
  background-color: transparent;
}

.recap .recap-details .input-group .radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 11px;
  left: 12px;
  content: " ";
  display: block;
  background: #F85B50;
}

.recap .recap-details .input-group .radio-item input[type=radio]:checked + label:before {
  border: 1px solid #F85B50;
}

.recap .recap-details .input-group.mono-label .label {
  width: 100%;
}

.recap .recap-details .input-group.mono-label .w-notice {
  width: 100%;
}

.recap .recap-details .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.recap .recap-details .label-for-file-custom-w-js {
  cursor: pointer;
  width: 100%;
  border: 3px solid #EEEBE9;
  padding: 25px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
}

.recap .recap-details .label-for-file-custom-w-js span {
  font-weight: bold;
  font-size: 14px;
}

.recap .recap-details .next-step-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.recap .recap-details .next-step-ctn.w-prev {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recap .recap-details .next-step-ctn .next-step {
  text-transform: uppercase;
  font-size: 1.133em;
  height: auto;
  border: 0px;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 20px;
  border-radius: 100px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.recap .recap-details .next-step-ctn .next-step:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.recap .recap-details .prev-step {
  display: block;
  text-transform: uppercase;
  font-size: 0.86666667rem;
  background: #ffffff;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
}

.recap .recap-details .prev-step:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  color: #FF6250;
  border: 1px solid #FF6250;
}

.recap .recap-details .financial-situation .nav-financial {
  margin-top: 20px;
  width: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

@media (max-width: 700px) {
  .recap .recap-details .financial-situation .nav-financial {
    width: 100%;
  }
}

.recap .recap-details .financial-situation .nav-financial .financial-toggle {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icons/toggle-on.png") center center no-repeat;
  background-size: cover;
}

.recap .recap-details .financial-situation .nav-financial .chevron {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.recap .recap-details .financial-situation .nav-financial .txt {
  color: #F85B50;
  font-size: 14px;
  font-weight: 500;
  width: 415px;
}

.recap .recap-details .financial-situation .nav-financial.not-active .financial-toggle {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icons/toggle-off.png") center center no-repeat;
  background-size: cover;
}

.recap .recap-details .financial-situation .nav-financial.not-active .chevron {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.recap .recap-details .financial-situation .nav-financial.not-active .txt {
  color: #000;
}

.recap .recap-details .financial-situation .ctn-collapse {
  display: none;
  width: 447px;
  padding-left: 27px;
}

.recap .recap-details .financial-situation .ctn-collapse p {
  font-size: 12px;
}

.recap .recap-details .financial-situation .ctn-collapse.show {
  display: block;
  width: 447px;
  padding-left: 27px;
}

.recap .recap-details .financial-situation .ctn-collapse.show p {
  font-size: 12px;
}

.recap .recap-details .doc {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.recap .recap-details .doc img {
  width: 18px;
  margin-right: 10px;
}

.recap .recap-details .small-txt {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 0;
}

.recap .recap-details .form-check-label {
  font-size: 14px;
  font-weight: 500;
  max-width: 600px;
}

.recap .recap-details .ctn-limit {
  max-width: 420px;
}

.recap .recap-details .ctn-limit .label {
  width: 45%;
}

.recap .recap-details .ctn-limit .mono-label .input-ctn {
  position: relative;
}

.recap .recap-details .ctn-limit .mono-label .input-ctn input.promo {
  padding-right: 70px;
}

.recap .recap-details .ctn-limit .mono-label .input-ctn input.submit {
  position: absolute;
  right: 0;
  top: 0;
  text-transform: uppercase;
  font-size: 1.133em;
  height: auto;
  border: 0px;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  border-radius: 10px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  height: 48px;
  width: 63px;
  display: block;
}

.recap .recap-details .ctn-limit .mono-label .input-ctn input.submit:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}

.client-area h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 40px;
  margin-top: 15px;
}

.client-area h2 span {
  font-weight: 700;
  color: #F85B50;
}

.client-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .client-ctn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nav-client {
  padding: 20px;
  margin: 0;
  width: 50%;
  max-width: 400px;
}

@media (max-width: 767px) {
  .nav-client {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 10px;
    height: auto;
  }
}

.nav-client .inner {
  background: #fff;
  min-height: 220px;
  padding: 30px;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.nav-client .inner h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.nav-client .inner p {
  font-size: 16px;
  margin-bottom: 0;
}

.nav-client:hover {
  text-decoration: none;
}

.nav-client:hover .inner {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(155, 155, 155, 0);
  box-shadow: 0px 0px 0px 0px rgba(155, 155, 155, 0);
}

.nav-client:hover h3 {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #F85B50;
}

.ctn-client {
  padding: 15px;
}

.ctn-client .inner {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
}

.ctn-client.right img {
  margin-bottom: 15px;
}

.ctn-client.right h3 {
  font-size: 20px;
  font-weight: 700;
}

.ctn-client.left .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.ctn-client.left .label-for-file-custom-w-js {
  cursor: pointer;
  width: 100%;
  border: 3px solid #EEEBE9;
  padding: 25px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
}

.ctn-client.left .label-for-file-custom-w-js span {
  font-weight: bold;
  font-size: 14px;
}

.ctn-client.left .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ctn-client.left .line .label {
  font-size: 16px;
  font-weight: 700;
}

.ctn-client.left .line button {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  border: 0px;
  padding: 0;
  border-bottom: 2px solid #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background: #fff;
}

.ctn-client.left .line button:hover {
  color: #F85B50;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.ctn-client.left .separator {
  height: 2px;
  width: 100%;
  display: block;
  background: #E1DFDB;
  margin-top: 22px;
  margin-bottom: 22px;
}

.ctn-client.left .info {
  font-size: 14px;
}

.ctn-client.left .bill {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .ctn-client.left .bill {
    font-size: 14px;
  }
}

.ctn-client.left .bill span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ctn-client.left .bill span {
    font-size: 12px;
  }
}

.ctn-client.left .date {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ctn-client.left .date {
    font-size: 12px;
  }
}

.ctn-client.left .price {
  font-weight: 700;
  color: #F85B50;
  font-size: 20px;
}

@media (max-width: 767px) {
  .ctn-client.left .price {
    font-size: 12px;
  }
}

.ctn-client.left .download a {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.ctn-client.left .download a img {
  width: 22px;
}

@media (max-width: 767px) {
  .ctn-client.left .download a img {
    width: 12px;
  }
}

@media (max-width: 767px) {
  .ctn-client.left .download a {
    font-size: 12px;
  }
}

.ctn-client.left .download a:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  color: #F85B50;
  text-decoration: none;
}

footer {
  margin-top: 120px;
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  box-shadow: 0px 6px 44px 0px rgba(155, 155, 155, 0.2);
  padding-top: 50px;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  footer .info {
    text-align: center;
  }
}

footer .info .logo-foot {
  width: 155px;
  margin-bottom: 20px;
}

footer .info p {
  font-size: 0.86666667rem;
  margin: 0;
  text-transform: uppercase;
}

footer .info .social-mobile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  margin: 30px auto 40px auto;
}

footer .info .social-mobile ul li {
  margin-right: 20px;
}

footer .info .social-mobile ul li:last-of-type {
  margin-right: 0;
}

footer .info .social-mobile ul li a img {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

footer .info .social-mobile ul li a img:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.7;
}

@media (max-width: 992px) {
  footer .links {
    text-align: center;
    margin-bottom: 40px;
  }
}

footer .links h2 {
  font-size: 0.86666667rem;
  font-weight: 800;
  text-transform: uppercase;
}

footer .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .links ul li {
  margin-bottom: 5px;
}

footer .links ul li a {
  color: #8B8B8B;
  font-size: 0.86666667rem;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
}

footer .links ul li a:hover {
  color: #FF6250;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

@media (max-width: 992px) {
  footer .links.social {
    display: none;
  }
}

footer .links.social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

footer .links.social ul li {
  margin-right: 20px;
}

footer .links.social ul li a img {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

footer .links.social ul li a img:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.7;
}

footer .copyright {
  text-align: center;
  font-size: 0.73333333rem;
  color: #8B8B8B;
  margin-top: 60px;
}

@media (max-width: 992px) {
  footer .copyright {
    margin-top: 0;
  }
}

.login-ctn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}

.login-ctn .dark-bg {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  position: fixed;
}

.login-ctn .login {
  position: relative;
  background: #F7F6F4;
  z-index: 999999999;
  width: 620px;
  margin: 85px auto 0 auto;
}

@media (max-width: 700px) {
  .login-ctn .login {
    width: 100%;
  }
}

.login-ctn .login h2 {
  font-size: 34px;
  padding: 30px;
}

.login-ctn .login h2 span {
  color: #F85B50;
  font-style: italic;
}

.login-ctn .login .menu-log {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-ctn .login .menu-log .menu-i {
  display: block;
  width: 50%;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid #E1DFDB;
}

.login-ctn .login .menu-log .menu-i:hover {
  cursor: pointer;
}

.login-ctn .login .menu-log .menu-i:hover h3 {
  color: #F85B50;
}

.login-ctn .login .menu-log .menu-i h3 {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.5;
}

.login-ctn .login .menu-log .menu-i.active {
  background: #fff;
  border-top: 2px solid #E1DFDB;
  border-bottom: none;
}

.login-ctn .login .menu-log .menu-i.active.new {
  border-right: 2px solid #E1DFDB;
}

.login-ctn .login .menu-log .menu-i.active.exist {
  border-left: 2px solid #E1DFDB;
}

.login-ctn .login .menu-log .menu-i.active h3 {
  opacity: 1;
}

.login-ctn .login .content-log {
  padding: 30px;
  background: #fff;
}

.login-ctn .login .content-log .notice {
  font-size: 0.800em;
  font-style: italic;
  line-height: 1.1;
}

.login-ctn .login .content-log .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login-ctn .login .content-log .input-group .w-notice {
  width: 270px;
}

@media (max-width: 700px) {
  .login-ctn .login .content-log .input-group .w-notice {
    width: 100%;
  }
}

.login-ctn .login .content-log .input-group .w-notice label {
  margin-bottom: 5px;
}

.login-ctn .login .content-log .input-group .label {
  width: 270px;
  text-transform: uppercase;
  font-size: 0.933em;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .login-ctn .login .content-log .input-group .label {
    width: 100%;
  }
}

.login-ctn .login .content-log .input-group .label .input {
  width: 100%;
  height: 48px;
  border: 3px solid #EEEBE9;
  padding: 10px;
}

.login-ctn .login .content-log .input-group .label .input.date {
  background: url("../img/icons/date.png") 97% center no-repeat;
}

.login-ctn .login .content-log .input-group .label .input.birthdate {
  background: url("../img/icons/calendar.png") 97% center no-repeat;
}

.login-ctn .login .content-log .input-group .label .input.attachment {
  background: url("../img/icons/attachment.png") 97% center no-repeat;
}

.login-ctn .login .content-log .input-group .radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}

.login-ctn .login .content-log .input-group .radio-item input[type='radio'] {
  display: none;
}

.login-ctn .login .content-log .input-group .radio-item label {
  text-transform: initial;
  color: #000;
  font-weight: normal;
}

.login-ctn .login .content-log .input-group .radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 3px solid #EEEBE9;
  background-color: transparent;
}

.login-ctn .login .content-log .input-group .radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 11px;
  left: 12px;
  content: " ";
  display: block;
  background: #F85B50;
}

.login-ctn .login .content-log .input-group .radio-item input[type=radio]:checked + label:before {
  border: 1px solid #F85B50;
}

.login-ctn .login .content-log .input-group.mono-label .label {
  width: 100%;
}

.login-ctn .login .content-log .input-group.mono-label .w-notice {
  width: 100%;
}

.login-ctn .login .content-log .submit {
  width: 260px;
  text-transform: uppercase;
  font-size: 1.133em;
  float: right;
  height: auto;
  border: 0px;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF6250));
  background: linear-gradient(0deg, #FF3A2D, #FF6250);
  padding: 7px 0;
  border-radius: 100px;
  color: #ffffff;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.login-ctn .login .content-log .submit:hover {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  text-decoration: none;
  background: #FF3A2D;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF3A2D), to(#FF3A2D));
  background: linear-gradient(0deg, #FF3A2D, #FF3A2D);
  color: #ffffff;
}
/*# sourceMappingURL=style.css.map */