@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-size: 10px;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 13px;
  width: 13px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #171717;
  background-color: #FFFFFF;
  border-radius: 2px;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #FF5146;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: #171717;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: #171717;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.real-estate .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.real-estate .buttons .btn-red,
.real-estate .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: 1s all;
  z-index: 1;
}
.real-estate .buttons .btn-red::before,
.real-estate .buttons .btn-transparent::before,
.real-estate .buttons .btn-red::after,
.real-estate .buttons .btn-transparent::after {
  content: '';
  position: absolute;
  background-color: #A7DAC1;
  height: 52%;
  width: 0%;
  transition: 1s all;
  z-index: -1;
}
.real-estate .buttons .btn-red::before,
.real-estate .buttons .btn-transparent::before {
  left: 0;
  top: 0;
}
.real-estate .buttons .btn-red::after,
.real-estate .buttons .btn-transparent::after {
  right: 0;
  bottom: 0;
}
.real-estate .buttons .btn-red:hover,
.real-estate .buttons .btn-transparent:hover {
  box-shadow: 0 3px 6px #FFFFFF;
}
.real-estate .buttons .btn-red:hover::before,
.real-estate .buttons .btn-transparent:hover::before,
.real-estate .buttons .btn-red:hover::after,
.real-estate .buttons .btn-transparent:hover::after {
  width: 100%;
  transition: 1s all;
}
.real-estate .buttons .btn-red img,
.real-estate .buttons .btn-transparent img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.real-estate .buttons .btn-red {
  background-color: #FF5146;
  color: #FFFFFF;
}
.real-estate .buttons .btn-transparent {
  border: 2px solid #171717;
  color: #171717;
}
.real-estate .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
  width: 100%;
}
.real-estate .heading p {
  margin-top: 1.5rem;
}
.real-estate .heading h2 {
  width: 100%;
  font-size: 22px;
  position: relative;
}
.real-estate .heading h2::before {
  content: '';
  position: absolute;
  width: 0;
  border-top: 5px solid transparent;
  border-left: 115px solid #A7DAC1;
  border-bottom: 1px solid transparent;
  left: 0px;
  bottom: -12px;
  animation: scale 3s linear infinite;
}
.real-estate .center-heading {
  justify-content: center;
  align-items: center;
}
.real-estate .center-heading h2,
.real-estate .center-heading p {
  text-align: center;
}
.real-estate .center-heading h2::before {
  right: 0px;
  margin: auto;
}
.real-estate .white-heading h2,
.real-estate .white-heading p {
  color: #FFFFFF;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.real-estate .banner {
  flex-direction: column;
  background-image: linear-gradient(180deg, #88D3BB, #E2E7CC);
  padding: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.real-estate .banner .container {
  height: 100%;
}
.real-estate .banner .logo-container,
.real-estate .banner .tka-logo,
.real-estate .banner .menu {
  display: flex;
}
.real-estate .banner .container {
  height: 100%;
}
.real-estate .banner .logo-container {
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
}
.real-estate .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.real-estate .banner .logo-container .tka-logo {
  max-width: 200px;
}
.real-estate .banner .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.real-estate .banner .logo-container .menu {
  margin-left: auto;
  width: 22px;
  height: 23px;
}
.real-estate .banner .logo-container .menu img {
  width: 100%;
  height: 100%;
}
.real-estate .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #F5F5F5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.real-estate .banner .logo-container .menu-toggle {
  font-weight: 500;
}
.real-estate .banner .logo-container .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 0.3rem;
}
.real-estate .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #171717;
}
.real-estate .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.real-estate .banner .logo-container ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.real-estate .banner .logo-container ul .links-li:last-child {
  display: none;
}
.real-estate .banner .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.real-estate .banner .logo-container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.real-estate .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
}
.real-estate .banner .sticky-down {
  top: -100px;
}
.real-estate .banner .banner-container,
.real-estate .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.real-estate .banner .banner-container {
  padding: 3rem 1.5rem;
  padding-top: 1.5rem !important;
}
.real-estate .banner .banner-content h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
}
.real-estate .banner .banner-content h1 img {
  width: 38px;
  height: 38px;
  transform: translateY(6px);
  margin-right: 0.5rem;
}
.real-estate .banner .banner-content h1 span {
  font-size: 35px;
}
.real-estate .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.real-estate .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.real-estate .agent .agent-container,
.real-estate .agent .agent-list,
.real-estate .agent .agent-item,
.real-estate .agent .info {
  display: flex;
  flex-direction: column;
}
.real-estate .agent .heading {
  margin-bottom: 0;
}
.real-estate .agent .agent-item {
  margin-top: 2rem;
  background-color: #FFFFFF;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  border-bottom: 3px solid #FF5146;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.real-estate .agent .agent-item img {
  width: 100px;
  height: 100px;
}
.real-estate .agent .agent-item .info h3 {
  font-size: 16px;
  margin: 1rem 0 0.3rem;
}
.real-estate .agent .agent-item .info p {
  font-size: 13px;
}
.real-estate .overview {
  padding-top: 0;
}
.real-estate .overview .overview-container,
.real-estate .overview .overview-content,
.real-estate .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.real-estate .overview .overview-content {
  align-items: center;
}
.real-estate .overview .overview-content p {
  text-align: center;
}
.real-estate .overview .overview-info {
  margin-top: 2rem;
  height: 100%;
}
.real-estate .overview .overview-info .heading {
  margin-bottom: 0.5rem;
}
.real-estate .overview .overview-info .heading h2::before {
  content: none;
}
.real-estate .overview .overview-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.real-estate .overview .overview-info span img {
  width: 100%;
  height: 100%;
}
.real-estate .course {
  padding-top: 0;
}
.real-estate .course .course-container,
.real-estate .course .course-list,
.real-estate .course .content {
  display: flex;
  flex-direction: column;
}
.real-estate .course .heading p {
  margin: 0 0 0.2rem;
}
.real-estate .course .heading p strong {
  color: #A7DAC1;
}
.real-estate .course .course-item {
  display: flex;
  margin-top: 1rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0px 35px 0px 0px;
  transition: 1s all;
}
.real-estate .course .course-item:hover .content {
  background-image: linear-gradient(90deg, #FFFFFF, #F5F5F5);
  border-radius: 0 35px 0 0;
}
.real-estate .course .course-item span {
  display: flex;
  background-image: linear-gradient(180deg, #88D3BB, #E2E7CC);
  justify-content: center;
  width: 70px;
  padding: 1.2rem;
}
.real-estate .course .course-item span img {
  width: 30px;
  height: 30px;
}
.real-estate .course .course-item .content {
  padding: 1rem;
  width: calc(100% - 70px);
}
.real-estate .course .course-item .content h3 {
  font-size: 14px;
  margin-bottom: 1rem;
}
.real-estate .course .course-item .content p {
  font-size: 11px;
}
.real-estate .course .course-item .content p:nth-child(3) {
  padding-top: 0.2rem;
}
.real-estate .course .course-item .buttons {
  margin-top: 1rem;
}
.real-estate .course .course-item .buttons .btn-red {
  min-width: 120px;
  font-size: 12px;
  padding: 8px 14px;
}
.real-estate .course .course-item .buttons .btn-red img {
  width: 15px;
  height: 15px;
}
.real-estate .fact {
  background-color: #000000;
}
.real-estate .fact .fact-container,
.real-estate .fact .fact-list,
.real-estate .fact .fact-item {
  display: flex;
  flex-direction: column;
}
.real-estate .fact .heading {
  margin-bottom: 0.5rem;
}
.real-estate .fact .heading h2 {
  display: flex;
  flex-direction: column;
}
.real-estate .fact .heading h2::before {
  border-left: 115px solid #FFFFFF;
}
.real-estate .fact .heading h2 span {
  font-weight: 500;
}
.real-estate .fact .fact-item {
  margin-top: 1rem;
  align-items: center;
}
.real-estate .fact .fact-item h3,
.real-estate .fact .fact-item p,
.real-estate .fact .fact-item span {
  color: #FFFFFF;
  text-align: center;
}
.real-estate .fact .fact-item .info {
  display: flex;
}
.real-estate .fact .fact-item .info h3 {
  font-size: 32px;
}
.real-estate .fact .fact-item p {
  padding-top: 2rem;
  position: relative;
}
.real-estate .fact .fact-item p::before {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 50px;
  width: 58px;
  height: 3px;
  top: 15px;
  left: 0px;
  right: 0;
  margin: auto;
}
.real-estate .method .method-container,
.real-estate .method .method-list,
.real-estate .method .content {
  display: flex;
  flex-direction: column;
}
.real-estate .method .heading {
  margin-bottom: 0;
}
.real-estate .method .method-item {
  display: flex;
  justify-content: space-between;
  align-self: center;
  align-items: flex-end;
  margin-top: 5rem;
  box-shadow: 0px 3px 26px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  width: 272px;
  height: 325px;
  padding: 0 1rem 1.5rem 1rem;
  position: relative;
  transition: 1s all;
  background-image: linear-gradient(180deg, #88D3BB, #E2E7CC);
  background-repeat: no-repeat;
  background-size: 100% 0;
}
.real-estate .method .method-item:hover {
  background-size: 100% 100%;
}
.real-estate .method .method-item:hover .image::before {
  height: 100%;
}
.real-estate .method .method-item:hover .content a {
  color: #ff0000;
}
.real-estate .method .method-item:hover .content a span img:first-child {
  width: 0px;
}
.real-estate .method .method-item:hover .content a span img:last-child {
  width: 100%;
}
.real-estate .method .method-item:nth-child(1) .image {
  background-image: url(/_public/images/real-estate/classroom-bg.png);
}
.real-estate .method .method-item:nth-child(2) .image {
  background-image: url(/_public/images/real-estate/led-bg.png);
}
.real-estate .method .method-item:nth-child(3) .image {
  background-image: url(/_public/images/real-estate/paced-bg.png);
}
.real-estate .method .method-item:nth-child(4) .image {
  background-image: url(/_public/images/real-estate/onsite-bg.png);
}
.real-estate .method .method-item .image {
  display: flex;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  width: 250px;
  height: 255px;
  left: 0px;
  right: 0px;
  margin: auto;
  position: absolute;
  top: -45px;
}
.real-estate .method .method-item .image::before {
  content: '';
  position: absolute;
  opacity: 0.28;
  background-image: linear-gradient(90deg, #FFFFFF, #000000);
  border-radius: 15px;
  width: 100%;
  height: 0px;
  bottom: 0px;
  transition: 1s all;
}
.real-estate .method .method-item .content {
  width: calc(100% - 45px);
}
.real-estate .method .method-item .content h3 {
  font-size: 15px;
  margin-bottom: 0.5rem;
}
.real-estate .method .method-item .content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.real-estate .method .method-item .content a span {
  display: flex;
  margin-left: 0.5rem;
  width: 17px;
  height: 17px;
}
.real-estate .method .method-item .content a span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.real-estate .method .method-item .content a span img:last-child {
  width: 0px;
}
.real-estate .method .method-item .icon {
  width: 38px;
  height: 38px;
}
.real-estate .tool {
  background-color: #F5F5F5;
}
.real-estate .tool .tool-container,
.real-estate .tool .tool-content,
.real-estate .tool .tool-info {
  display: flex;
  flex-direction: column;
}
.real-estate .tool .tool-content ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-top: 0.5rem;
}
.real-estate .tool .tool-content ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/real-estate/check.svg);
  background-size: 100% 100%;
  height: 12px;
  width: 16px;
  top: 3px;
  left: 0px;
}
.real-estate .tool .tool-info {
  height: 100%;
  margin-top: 2rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
  padding: 1rem;
}
.real-estate .tool .tool-info .heading h2::before {
  content: none;
}
.real-estate .tool .tool-info span {
  display: flex;
  height: 100%;
  width: 100%;
}
.real-estate .tool .tool-info span img {
  width: 100%;
  height: 100%;
}
.real-estate .choose .choose-container,
.real-estate .choose .choose-content,
.real-estate .choose .content-info,
.real-estate .choose .choose-list,
.real-estate .choose .choose-item,
.real-estate .choose .skill-content,
.real-estate .choose .content {
  display: flex;
  flex-direction: column;
}
.real-estate .choose .choose-container {
  align-items: flex-start;
}
.real-estate .choose .choose-content {
  background-color: #171717;
  padding: 1.5rem 1rem;
  border-radius: 30px;
  width: 100%;
}
.real-estate .choose .choose-content h2::before {
  border-left: 115px solid #FFFFFF;
}
.real-estate .choose .content-info .heading {
  margin-bottom: 0;
}
.real-estate .choose .choose-item {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.real-estate .choose .choose-item::after {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  width: 45px;
  height: 45px;
  top: -14px;
  left: 28px;
  z-index: -1;
  border-radius: 50px;
  opacity: 0.18;
  animation: scale 3s linear infinite;
}
.real-estate .choose .choose-item img {
  width: 50px;
  height: 50px;
}
.real-estate .choose .choose-item h3,
.real-estate .choose .choose-item p {
  color: #FFFFFF;
}
.real-estate .choose .choose-item h3 {
  font-size: 15px;
  margin: 0.8rem 0;
}
.real-estate .choose .choose-item p {
  font-size: 13px;
}
.real-estate .choose .skill-content {
  margin-top: 2rem;
  width: 100%;
}
.real-estate .choose .skill-content .content ul li {
  margin: 0.5rem 0 0 1.5rem;
  position: relative;
}
.real-estate .choose .skill-content .content ul li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -24px;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  background-image: linear-gradient(180deg, #88D3BB, #E2E7CC);
}
.real-estate .choose .skill-info {
  display: flex;
  height: 100%;
  margin-top: 2rem;
}
.real-estate .choose .skill-info img {
  width: 100%;
  height: 100%;
}
.real-estate .client {
  background-image: linear-gradient(180deg, #88D3BB, #E2E7CC);
}
.real-estate .client .client-container,
.real-estate .client .client-list,
.real-estate .client .info,
.real-estate .client p {
  display: flex;
  flex-direction: column;
}
.real-estate .client .heading {
  margin-bottom: 0;
}
.real-estate .client .heading h2::before {
  border-left: 115px solid #000000;
}
.real-estate .client .client-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 1.5rem;
  width: 95%;
}
.real-estate .client .client-item p {
  background-color: #FFFFFF;
  padding: 2rem 1rem 1.4rem;
  border-radius: 18px;
  margin-bottom: 2.2rem;
  font-size: 13px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
.real-estate .client .client-item p::before {
  content: '';
  position: absolute;
  bottom: -67px;
  right: 32px;
  height: 75px;
  width: 92px;
  background-image: url(/_public/images/real-estate/triangle.png);
  background-size: 100% 100%;
}
.real-estate .client .client-item p img {
  height: 17px;
  width: 122px;
  margin-bottom: 1rem;
}
.real-estate .client .client-item span {
  display: flex;
  height: 55px;
  width: 55px;
  padding: 0.9rem;
  background-color: #FFFFFF;
  border: 1px solid #171717;
  border-radius: 50px;
}
.real-estate .client .client-item span img {
  height: 100%;
  width: 100%;
}
.real-estate .client .client-item .info {
  margin-left: 1rem;
}
.real-estate .client .client-item .info h3 {
  font-size: 14px;
  margin-bottom: 0.3rem;
  line-height: 1;
}
.real-estate .client .client-item .info h4 {
  font-size: 13px;
  font-weight: 500;
}
.real-estate .client .owl-nav {
  display: flex;
  justify-content: center;
}
.real-estate .client .owl-nav .owl-prev,
.real-estate .client .owl-nav .owl-next {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #A7DAC1;
  background-image: url(/_public/images/real-estate/white-arrow.svg);
  background-size: 30% 45%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.real-estate .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.real-estate .client .owl-nav .owl-prev {
  margin-right: 2rem;
}
.real-estate .client .owl-nav .btn-active {
  opacity: 1;
}
.real-estate .faq .faq-container,
.real-estate .faq .form,
.real-estate .faq .faq-content,
.real-estate .faq .input-list,
.real-estate .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.real-estate .faq .head h2 {
  margin-top: 0.5rem;
}
.real-estate .faq .head::before {
  content: '';
  height: 70px;
  width: 70px;
  border-radius: 10px;
  background-color: #F5F5F5;
  background-image: url(/_public/images/real-estate/ques.svg);
  background-size: 40% 40%;
  background-position: center;
  background-repeat: no-repeat;
}
.real-estate .faq .form {
  margin-bottom: 0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 26px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
}
.real-estate .faq .form .input-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding: 0.7rem 0.6rem;
  border: 1px solid #808080;
}
.real-estate .faq .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.real-estate .faq .form .input-container span img {
  width: 100%;
  height: 100%;
}
.real-estate .faq .form .input-container span img:last-child {
  display: none;
}
.real-estate .faq .form .input-container input,
.real-estate .faq .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  background-color: transparent;
}
.real-estate .faq .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.real-estate .faq .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #808080;
}
.real-estate .faq .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #808080;
}
.real-estate .faq .form .input-container ::placeholder {
  color: #808080;
}
.real-estate .faq .form .input-error {
  border: 1px solid #ff0000;
}
.real-estate .faq .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.real-estate .faq .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.real-estate .faq .form .input-error ::placeholder {
  color: #ff0000;
}
.real-estate .faq .form .input-error span img:first-child {
  display: none;
}
.real-estate .faq .form .input-error span img:last-child {
  display: flex;
}
.real-estate .faq .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.real-estate .faq .form .form-consent p {
  font-size: 11px;
}
.real-estate .faq .form .form-consent a {
  font-weight: 600;
  color: #FF5146;
}
.real-estate .faq .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  line-height: 1.6;
  font-size: 11px;
  width: 90%;
  font-weight: 500;
  color: #171717;
}
.real-estate .faq .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.real-estate .faq .form .consent-error,
.real-estate .faq .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.real-estate .faq .form .consent-error p,
.real-estate .faq .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.real-estate .faq .form .buttons .btn-red {
  width: 100%;
}
.real-estate .faq .form .buttons .btn-red img {
  width: 16px;
  height: 16px;
}
.real-estate .faq .faq-content {
  margin-top: 2rem;
}
.real-estate .faq .faq-content .faq-item {
  border-top: 1px solid #808080;
  padding: 0.8rem 0;
}
.real-estate .faq .faq-content .faq-item:last-child {
  border-bottom: 1px solid #808080;
}
.real-estate .faq .faq-content .faq-item .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.real-estate .faq .faq-content .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 45px);
}
.real-estate .faq .faq-content .faq-item .ques img {
  margin-top: 0.2rem;
  height: 16px;
  width: 16px;
  transition: 1s all;
  transform: rotate(90deg);
}
.real-estate .faq .faq-content .faq-item .ans {
  display: none;
  margin-top: 0.8rem;
}
.real-estate .faq .faq-content .faq-item .ans p {
  font-size: 13px;
}
.real-estate .faq .faq-content .active .ques img {
  transform: rotate(270deg);
}
.real-estate .footer {
  background-image: linear-gradient(180deg, #88D3BB, #E2E7CC);
}
.real-estate .footer .footer-container,
.real-estate .footer .footer-list,
.real-estate .footer .footer-item {
  display: flex;
  flex-direction: column;
}
.real-estate .footer .heading h2::before {
  border-left: 115px solid #000000;
}
.real-estate .footer .footer-item {
  margin-top: 1.5rem;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.real-estate .footer .footer-item:first-child {
  margin-top: 0;
}
.real-estate .footer .footer-item:last-child h3 {
  margin: 0.5rem 0 0;
}
.real-estate .footer .footer-item span {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 0.8rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 3px 4px 0px #FF5146;
  border-radius: 50px;
}
.real-estate .footer .footer-item span img {
  height: 100%;
  width: 100%;
}
.real-estate .footer .footer-item h3 {
  font-size: 15px;
  margin: 0.5rem 0 0.2rem;
  line-height: 1.4;
}
.real-estate .footer .footer-item a {
  font-size: 13px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .real-estate .banner .logo-container {
    padding: 1rem 2rem;
  }
  .real-estate .banner .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .real-estate .banner .banner-container {
    padding: 3rem 2rem;
  }
  .real-estate .banner .banner-info {
    display: none;
  }
  .real-estate .agent .heading h2 {
    text-align: center;
  }
  .real-estate .agent .heading h2::before {
    right: 0px;
    margin: auto;
  }
  .real-estate .agent .agent-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .real-estate .agent .agent-item {
    width: 47%;
    flex-direction: row;
    justify-content: space-between;
  }
  .real-estate .agent .agent-item .info {
    width: calc(100% - 110px);
  }
  .real-estate .agent .agent-item .info h3 {
    margin-top: 0;
    min-height: 50px;
  }
  .real-estate .overview .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .real-estate .overview .overview-content {
    width: 48%;
    align-items: flex-start;
  }
  .real-estate .overview .overview-content h2,
  .real-estate .overview .overview-content p {
    text-align: left;
  }
  .real-estate .overview .overview-content .heading h2::before {
    right: auto;
  }
  .real-estate .overview .overview-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .real-estate .overview .overview-info .heading h2 {
    text-align: left;
  }
  .real-estate .overview .overview-info .heading h2::before {
    left: 0;
    margin: 0;
  }
  .real-estate .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .real-estate .course .course-item {
    width: 48%;
    margin-right: 1rem;
  }
  .real-estate .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .real-estate .course .course-item:hover .content p {
    border-left: 3px solid #FF5146;
    transition: 1s all;
  }
  .real-estate .course .course-item .content {
    padding: 1.5rem 1.5rem 2rem;
  }
  .real-estate .course .course-item .content h3 {
    min-height: 42px;
  }
  .real-estate .course .course-item .content p {
    padding-left: 0.7rem;
    border-left: 3px solid #F5F5F5;
    transition: 1s all;
  }
  .real-estate .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .real-estate .fact .fact-item {
    width: 32%;
  }
  .real-estate .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .real-estate .method .method-item {
    width: 41%;
  }
  .real-estate .method .method-item .content h3 {
    min-height: 46px;
  }
  .real-estate .tool .tool-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .real-estate .tool .tool-content {
    width: 52%;
  }
  .real-estate .tool .tool-info {
    width: 42%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .real-estate .choose .choose-content {
    padding: 1.5rem;
  }
  .real-estate .choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .real-estate .choose .choose-item {
    width: 30%;
  }
  .real-estate .choose .skill-content {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .real-estate .choose .content {
    width: 48%;
  }
  .real-estate .choose .skill-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .real-estate .client .client-item {
    width: 88%;
  }
  .real-estate .client .client-item p {
    padding: 2rem 1.4rem 1.8rem;
    box-shadow: 0 3px 19px rgba(0, 0, 0, 0.16);
    min-height: 365px;
  }
  .real-estate .faq .faq-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .real-estate .faq .head h2,
  .real-estate .faq .head p {
    text-align: center;
  }
  .real-estate .faq .head h2::before {
    right: 0;
    margin: auto;
  }
  .real-estate .faq .head::before {
    left: 0;
    right: 0;
    margin: auto;
  }
  .real-estate .faq .form {
    width: 46%;
    position: sticky;
    top: 60px;
  }
  .real-estate .faq .faq-content {
    width: 47%;
    margin-top: 0;
  }
  .real-estate .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-around;
    background-color: #FFFFFF;
    padding: 1rem;
  }
  .real-estate .footer .footer-item {
    flex-direction: row;
    width: 47%;
  }
  .real-estate .footer .footer-item:first-child {
    width: 33%;
  }
  .real-estate .footer .footer-item:nth-child(2) {
    width: 55%;
    margin-top: 0;
  }
  .real-estate .footer .footer-item:last-child {
    width: 51%;
  }
  .real-estate .footer .footer-item:last-child h3 {
    margin: 0 0 0 1rem;
  }
  .real-estate .footer .footer-item h3 {
    margin: 0 0.2rem 0 1rem;
  }
  .real-estate .footer .footer-item .content a {
    font-size: 14px;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .real-estate .heading h2 {
    font-size: 28px;
  }
  .real-estate .buttons .btn-red,
  .real-estate .buttons .btn-transparent {
    font-size: 16px;
  }
  .real-estate .banner .logo-container .tka-logo {
    max-width: 252px;
  }
  .real-estate .banner .logo-container .menu,
  .real-estate .banner .logo-container .menu-toggle {
    display: none;
  }
  .real-estate .banner .logo-container .menu-links {
    display: flex;
    width: auto;
    position: relative;
    box-shadow: none;
    background-color: transparent;
  }
  .real-estate .banner .logo-container ul {
    display: flex;
    align-items: center;
  }
  .real-estate .banner .logo-container ul .links-li {
    border-bottom: none;
    margin-right: 1.5rem;
    padding: 0;
    position: relative;
  }
  .real-estate .banner .logo-container ul .links-li::before,
  .real-estate .banner .logo-container ul .links-li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
  }
  .real-estate .banner .logo-container ul .links-li::before {
    background-color: #FF5146;
    height: 2px;
    bottom: -8px;
    transition: all 0.5s;
  }
  .real-estate .banner .logo-container ul .links-li::after {
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 7px solid #FF5146;
    bottom: -7px;
    transition: 0.8s all;
    opacity: 0;
  }
  .real-estate .banner .logo-container ul .links-li:hover::before {
    width: 100%;
  }
  .real-estate .banner .logo-container ul .links-li:hover::after {
    opacity: 1;
  }
  .real-estate .banner .logo-container ul .links-li:nth-last-child(2) {
    display: none;
  }
  .real-estate .banner .logo-container ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .real-estate .banner .logo-container ul .links-li:last-child::before,
  .real-estate .banner .logo-container ul .links-li:last-child::after {
    content: none;
  }
  .real-estate .banner .logo-container ul .links-li:last-child .btn-red,
  .real-estate .banner .logo-container ul .links-li:last-child .btn-transparent {
    font-size: 14px;
  }
  .real-estate .banner .logo-container ul .links-li:last-child .btn-transparent {
    margin-right: 1.5rem;
  }
  .real-estate .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 5rem !important;
  }
  .real-estate .banner .banner-content {
    width: 50%;
  }
  .real-estate .banner .banner-content h1 {
    font-size: 45px;
  }
  .real-estate .banner .banner-content h1 span {
    font-size: 58px;
  }
  .real-estate .banner .banner-content h1 img {
    width: 58px;
    height: 58px;
    transform: translateY(8px);
  }
  .real-estate .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
  }
  .real-estate .agent {
    background-image: url(/_public/images/real-estate/agent-bg.png);
    background-size: 100% 100%;
  }
  .real-estate .agent .agent-list {
    justify-content: space-between;
  }
  .real-estate .agent .agent-item {
    width: 31.5%;
  }
  .real-estate .overview {
    padding-top: 3rem;
  }
  .real-estate .overview .overview-info {
    position: static;
    top: 0;
  }
  .real-estate .course .course-list {
    width: 85%;
    margin: auto;
  }
  .real-estate .fact {
    background-image: url(/_public/images/real-estate/fact-bg.png);
    background-color: transparent;
    background-size: 100% 100%;
  }
  .real-estate .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .real-estate .fact .heading {
    width: 40%;
    border: 10px solid #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 0;
    border-right: 0;
    position: relative;
  }
  .real-estate .fact .heading h2::before {
    left: 0;
    margin: 0;
  }
  .real-estate .fact .heading h2,
  .real-estate .fact .heading p {
    text-align: left;
  }
  .real-estate .fact .heading:after,
  .real-estate .fact .heading::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 35%;
    background: #FFFFFF;
    right: 0px;
  }
  .real-estate .fact .heading::before {
    top: 0px;
  }
  .real-estate .fact .heading:after {
    bottom: 0px;
  }
  .real-estate .fact .fact-list {
    width: 57%;
  }
  .real-estate .fact .fact-item {
    margin-top: 0;
  }
  .real-estate .method .heading {
    width: 88%;
    margin: auto;
  }
  .real-estate .method .method-list {
    justify-content: space-between;
  }
  .real-estate .method .method-item {
    width: 24%;
  }
  .real-estate .method .method-item .image {
    width: 200px;
  }
  .real-estate .tool {
    background-image: url(/_public/images/real-estate/tool-bg.png);
    background-color: transparent;
    background-size: 65% 100%;
    background-repeat: no-repeat;
  }
  .real-estate .tool .tool-info {
    padding: 2rem;
  }
  .real-estate .tool .tool-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .real-estate .tool .tool-content ul li {
    width: 44%;
  }
  .real-estate .choose .content-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 2rem;
  }
  .real-estate .choose .content-info .heading {
    width: 66%;
  }
  .real-estate .choose .content-info .buttons {
    width: 28%;
    margin-top: 0;
    justify-content: flex-end;
  }
  .real-estate .choose .choose-content {
    padding: 4rem 3rem;
  }
  .real-estate .choose .choose-item {
    width: 25%;
    position: relative;
  }
  .real-estate .choose .choose-item::before {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    height: 70%;
    width: 1px;
    top: 44px;
    right: -56px;
  }
  .real-estate .choose .choose-item:last-child::before {
    content: none;
  }
  .real-estate .choose .content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .real-estate .choose .content ul li {
    width: 44%;
  }
  .real-estate .choose .skill-content {
    margin-top: 4rem;
  }
  .real-estate .client {
    background-image: url(/_public/images/real-estate/client-bg.png), linear-gradient(180deg, #88D3BB, #E2E7CC);
    background-size: 43% 45% , 100% 100%;
    background-repeat: no-repeat;
    background-position: left bottom , center;
  }
  .real-estate .client .client-container {
    width: 88%;
    margin: auto;
  }
  .real-estate .client .client-item {
    margin-bottom: 0;
  }
  .real-estate .client .client-item p {
    min-height: 352px;
  }
  .real-estate .client .heading {
    width: 90%;
    margin: auto;
  }
  .real-estate .client .owl-nav {
    position: absolute;
    bottom: 90px;
    left: -53px;
    width: calc(100% + 110px);
    margin: auto;
    justify-content: space-between;
  }
  .real-estate .client .owl-nav .owl-prev,
  .real-estate .client .owl-nav .owl-next {
    width: 57px;
    height: 54px;
    background-size: 26% 40%;
  }
  .real-estate .client .owl-nav .owl-prev {
    margin-right: 0;
  }
  .real-estate .client .owl-nav .btn-active {
    opacity: 1;
  }
  .real-estate .faq {
    background-image: url(/_public/images/real-estate/faq-pattern.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .real-estate .faq .head {
    width: 80%;
    margin: auto auto 2.5rem;
  }
  .real-estate .faq .head::before {
    height: 98px;
    width: 98px;
    background-size: 43% 43%;
  }
  .real-estate .faq .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .real-estate .faq .form .input-container {
    width: 48.5%;
  }
  .real-estate .faq .form .input-container:last-child {
    width: 100%;
  }
  .real-estate .faq .faq-content .faq-item {
    padding: 1.2rem;
  }
  .real-estate .faq .faq-content .faq-item:last-child {
    padding: 0.8rem;
  }
  .real-estate .faq .faq-content .faq-item .ques {
    position: relative;
    padding-left: 1.5rem;
  }
  .real-estate .faq .faq-content .faq-item .ques::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    height: 13px;
    width: 9px;
    background-image: url(/_public/images/real-estate/black-ques.svg);
    background-size: 100% 100%;
  }
  .real-estate .faq .faq-content .faq-item .ans {
    padding-left: 1.5rem;
  }
  .real-estate .footer .footer-list {
    justify-content: space-between;
  }
  .real-estate .footer .heading {
    width: 65%;
  }
  .real-estate .footer .heading h2,
  .real-estate .footer .heading p {
    text-align: left;
  }
  .real-estate .footer .heading h2::before {
    right: auto;
  }
  .real-estate .footer .footer-item:first-child {
    width: 23%;
  }
  .real-estate .footer .footer-item:nth-child(2) {
    width: 38%;
  }
  .real-estate .footer .footer-item:last-child {
    width: 36%;
    margin-top: 0;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .real-estate .heading h2 {
    font-size: 32px;
  }
  .real-estate .banner {
    background-image: url(/_public/images/real-estate/banner-bg.png);
    background-size: 100% 100%;
    position: relative;
  }
  .real-estate .banner::before,
  .real-estate .banner::after {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 50px;
    animation: scale 3s linear infinite;
  }
  .real-estate .banner::before {
    width: 68px;
    height: 68px;
    top: 19%;
    left: 40%;
    opacity: 0.09;
  }
  .real-estate .banner::after {
    width: 100px;
    height: 100px;
    bottom: 38px;
    left: 30px;
    opacity: 0.2;
  }
  .real-estate .banner .logo-container {
    padding: 2rem 0;
    background-color: transparent;
    box-shadow: none;
  }
  .real-estate .banner .logo-container ul .links-li:nth-last-child(2) {
    display: flex;
  }
  .real-estate .banner .sticky {
    padding: 1rem 0;
    background-color: #FFFFFF;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
  }
  .real-estate .banner .banner-container {
    padding: 7rem 0 !important;
  }
  .real-estate .banner .banner-info {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 68%;
    width: 48%;
  }
  .real-estate .agent .agent-item img {
    width: 120px;
    height: 120px;
  }
  .real-estate .agent .agent-item .info {
    width: calc(100% - 134px);
  }
  .real-estate .course .course-list {
    width: 100%;
  }
  .real-estate .course .course-item {
    width: 30%;
  }
  .real-estate .course .course-item:nth-child(2n) {
    margin-right: 1rem;
  }
  .real-estate .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .real-estate .fact {
    padding: 3rem 0;
  }
  .real-estate .fact .heading {
    padding: 2rem;
    width: 42%;
  }
  .real-estate .method .method-item {
    width: 23%;
  }
  .real-estate .method .method-item .image {
    width: 244px;
  }
  .real-estate .tool .tool-content {
    width: 47%;
  }
  .real-estate .tool .tool-info {
    width: 48%;
    position: static;
    top: 0px;
    align-self: center;
  }
  .real-estate .choose {
    position: relative;
  }
  .real-estate .choose::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(/_public/images/real-estate/pattern.png);
    background-size: 100% 100%;
  }
  .real-estate .choose .content-info .heading {
    width: 58%;
  }
  .real-estate .choose .content-info .buttons {
    width: 22%;
  }
  .real-estate .choose .choose-list {
    width: 90%;
    margin: auto;
  }
  .real-estate .choose .skill-info {
    position: static;
    top: 0;
    align-self: center;
  }
  .real-estate .client .client-item {
    width: 88%;
  }
  .real-estate .client .client-item p {
    min-height: 399px;
  }
  .real-estate .client .owl-nav {
    left: -70px;
    width: calc(100% + 143px);
  }
  .real-estate .faq {
    background-size: cover;
  }
  .real-estate .faq .form {
    padding: 2rem 2.5rem;
  }
  .real-estate .footer {
    padding-top: 8rem;
    background-image: url(/_public/images/real-estate/footer-bg.png);
    background-size: 100% 100%;
    position: relative;
  }
  .real-estate .footer::before {
    content: '';
    position: absolute;
    right: 40px;
    top: 119px;
    height: 140px;
    width: 75px;
    background-image: url(/_public/images/real-estate/grid.png);
    background-size: 100% 100%;
  }
  .real-estate .footer .footer-list {
    padding: 1.2rem 4rem 1.5rem;
  }
  .real-estate .footer .footer-item:first-child {
    width: 20%;
  }
  .real-estate .footer .footer-item:nth-child(2) {
    width: 33%;
  }
  .real-estate .footer .footer-item:last-child {
    width: 31%;
  }
}
