/* 
greys : #555, #333
tints: #cde9ff
primary : 


*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  font-size: 55.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

/* ******************************** */
/*  GENERAL COMPONENTS */
/* ******************************** */

.heading-primary,
.heading-secondary {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #333;
}

.btn-mobile-nav {
  border: none;
  background-color: #000;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: white;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.sticky .nav-wrapper {
    position: fixed !important;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 11.5rem;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
  
    box-shadow: 0 1.2rem 3.2rem rgb(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.heading-primary {
  line-height: 1.05;
  margin-bottom: 3.2rem;
  font-size: 5.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 2.6rem;
}

.subheading {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: #068fff;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 2rem;
    border-radius: 2px;
  padding: 1.4rem 3.2rem;
  
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}


.btn--full {
    background-color: #068fff;
}


.btn--full:hover{
    background-color: #0581e6;
}




.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  box-shadow: inset 0 0 3px #068fff;
  color: #555;
}


.btn--outline-apply:link, .btn--outline-apply:visited {
    background-color:  #068fff;
    color : #fff;
    font-size: 1.4rem;
}

.btn--outline-apply:hover, .btn--outline-apply:active {
    background-color: #068fff;
    color: #fff;
}

.hero-img {
    width: 100%;
    height: 75%;
}

.margin-right-sm {
  margin-right: 1.6rem !important;
   
}



/* ******************************** */
/*  HEADER */
/* ******************************** */

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  height: 10.6rem;
  padding: 0 4.8rem;
}

.logo {
  height: 9.2rem;
  border-radius: 100px;
}

/* ******************************** */
/*  HERO */
/* ******************************** */

.section-hero {
    background-image: linear-gradient( to right bottom, rgb(0, 0, 0, 0.9), rgb(0, 0, 0, 0.7) ), url(/assets/images/tierra-mallorca-rgj1j8sdeay-unsplash.jpg);
    background-size: cover;
    position: center;
    padding: 6.8rem 0 9.6rem 0;
}

.section-hero-applying {
    background-image: linear-gradient( to right bottom, rgb(0, 0, 0, 0.9), rgb(0, 0, 0, 0.7) ), url(/assets/images/tierra-mallorca-rgj1j8sdeay-unsplash.jpg);
    background-size: cover;
    position: center;
    padding: 6.8rem 0 3.6rem 0;
}

.hero-applying {
    display: flex;
    padding: 0 31.5rem;
    justify-content: start;
    color: #fff;
}

.hero {
    max-width: 130rem;
    padding: 0 3.2rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 9.6rem;
    color: #cccccc;
}

.hero h1 {
  color: #cccccc;
}

.hero-description {
  margin-bottom: 4.8rem;
  font-size: 2rem;
  line-height: 1.6;
}

/* ******************************** */
/*  NAVIGATION */
/* ******************************** */
.main-nav-list {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #068fff;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  color: white;
  background-color: #068fff;
  border-radius: 2px;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #0581e6;
}

/* SECTION HOW */

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid-2-cols {
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
}

.grid--3--cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.img-box {
  display: flex;
  align-items: center;
  height: 50rem;
  position: relative;
  z-index: -1;
}

.box-img {
  width: 100%;
  height: 50%;
}

.section-how {
  padding: 13.6rem 0;
}

.para-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.text-box {
  align-self: center;
}

.img-box::before {
  position: absolute;
  content: "";
  display: block;
  width: 50%;
  padding-bottom: 50%;
  background-color: #cde9ff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  border-radius: 50%;
}

.img-box::after {
  position: absolute;
  content: "";
  display: block;
  width: 30%;
  padding-bottom: 30%;
  background-color: #1a1a1a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  border-radius: 50%;
}

.section-features-landlords {
  padding: 9.6rem 0;
  background-color: #1a1a1a;
}

.section-features-tenants {
  padding: 9.6rem 0;
  background-color: white;
}

.section-features-landlords h2 {
  color: #fff;
}

.features-icon {
  color: #cde9ff;
  background-color: #068fff;
  padding: 1.6rem;
  border-radius: 50%;
  height: 3.2rem;
  width: 3.2rem;
  margin-bottom: 4rem;
}

.feature-card-sec {
  margin-top: 9.6rem;
}

.section-features-landlords .feature-card {
  min-height: 380px;
  padding: 3.4rem;
  color: #fff;
  border-radius: 9px;
  box-shadow: 0 20px 30px 0 rgba(255, 255, 255, 0.07);
  transition: all 0.5s;
}

.section-features-tenants .feature-card {
  min-height: 380px;
  padding: 3.4rem;
  border-radius: 9px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.5s;
}

.feature-card:hover {
  transform: translateY(-1rem);
}

.features-title {
  font-size: 2.4rem;

  margin-bottom: 1.5rem;
  font-weight: 700;
}

.payfast {
  margin: 0;
  width: 120px;
}

.payfast-icon {
  display: flex;
  justify-content: space-between;
}

a {
  color: #068fff;
}

.section-cta {
  padding: 9.6rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
  border-radius: 11px;
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem;
}

.cta-text {
  font-size: 1.8rem;
  margin-bottom: 3.8rem;
}
.cta-image-box {
  background-image: linear-gradient(
      to right bottom,
      rgb(5, 143, 255, 0.4),
      rgb(204, 233, 255, 0.4)
    ),
    url(/assets/images/tierra-mallorca-rgj1j8sdeay-unsplash.jpg);
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.2;
  row-gap: 2.4rem;
  margin-bottom: 3.4rem;
}
.sign-up-with {
  grid-column: span 2;
}

.external-provider {
  display: flex;
  justify-content: center;
}

.sign-up-text {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input {
  width: 90%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgb(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.btn-form:hover {
  background-color: #cde9ff;
  color: inherit;


}

.btn-form {
  grid-column: span 2;
  justify-self: center;
  width: 50%;
  background-color: #000000;
  color: white;
}

/**:focus {
  outline: none;
  outline: 4px solid rgb(5, 143, 255, 0.5);
  outline-offset: 2px;
}*/

.footer-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
   
}

.footer {
    background-color: #1E1E1E;
    color: #fff;
    padding: 9.6rem 0;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 6rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
    gap: 2.4rem;
}

.footer-nav li{
    margin-left: 0; 
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.5s;
}

.footer-link:hover,
.footer-link:active {
  color: #068fff;
}

.footer-logo {
  display: block;

  margin-bottom: 3.2rem;
}

.copy-right {
  font-size: 1.4rem;
  color: #fff;
  margin-top: auto;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;

  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.gap--3 {
  gap: 1.1rem !important;
}

.logo-footer {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 2.4rem;
  margin-top: 0;
}

.icon-footer {
  color: white;
  font-size: 2rem;
  margin-right: 2.4rem;
}

.icons {
  margin-bottom: 3.2rem;
}





btn,.btn-cookie {
    background-color: #068fff;
    border: none;
    font-size: 1.8rem;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 9px;

}

.accept {
    z-index: 9999999999;
    background-color: #ffffff;
    position:fixed;
    bottom: 2em;
    right: 2em;
    font-size: 1.4rem;
    width: 70vw;
    max-width: 42.85em;
    box-shadow: 0 0 2em rgb(5, 0, 31, 0.15);
    text-align: center;
    padding: 2em 6px;
    transition: all 0.5s ease-in;
    border-radius: 9px;
}

.cookie-description {
    text-align: center;
    margin: 1.4em 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: inherit;

}

.heading-cookie {
    display: block;
    font-size: 2rem;
    color: inherit;
    font-weight: 600;
    margin: auto;
}





.p {
    font-size: 1.6rem;
}

.section-privacy {
    padding: 9.6rem;
}

.section-privacy h3 {
    margin-top: 4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
}

.section-privacy p{
    font-size: 1.8rem;
    line-height: 1.5;
}

.section-privacy h2 {
    margin: 3.2rem 0;
    font-size: 3.2rem;
    line-height: 1.5;
}

.section-privacy h1 {
    font-size: 4.8rem;
    margin-bottom: 2.4rem; 
    line-height: 1.5;
}

.section-privacy h4 {
    margin-top: 2rem; 
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.footer-nav ol li {
    font-size: 1.8rem;
    line-height: 1.5;
    padding-left: 0;
}

.section-privacy ul li {
    font-size: 1.8rem;
    margin-left: 5rem;
    line-height: 1.5;
}

.drop_menu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    box-shadow: 0 0 3px rgb(0,0,0, 0.5);
    transition: all 1s;
}

.drop_menu ul {
    display: block;
    margin: 1.5rem;
}


.drop_menu ul li {
    list-style: none;
    padding: 1rem;
}

    .drop_menu ul li a {
        color: #7a7a7a;
        font-size: 1.8rem;
        display: flex;
        text-align: center;
        text-decoration: none;
        gap: 2.3rem;
        transition: all 0.5s;
    }

.drop-text {
    margin-top: 1.2rem;
}


.drop_menu ul li a:hover {
    color: #068fff;
}

.drop-icon {
    
    color: #333;
    font-size: 1.8rem;
   
}

.main-nav-link.drop-a:hover .drop_menu {
    display: block;
    position: absolute;
    top: 100%;
    background-color: #fff;
}

.login-section {
    text-align: center;
    width: 35rem;
    margin: 2rem auto;
    padding: 2rem;
    height: 300px;

}



.login-form label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.login-form input {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-family: inherit;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgb(0, 0, 0, 0.1);
}

.heading-container {
    padding: 0 0 9.6rem 0;
}


.heading-tetiary-heading {
    font-size: 3.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.verify {
    padding: 10rem 0;
   
}

.svg-icon {
    margin-bottom: 5rem; 
}


::-webkit-scrollbar {
    width: 12px; 
}


::-webkit-scrollbar-thumb {
    background-color: #666; 
   
}


::-webkit-scrollbar-track {
    background-color: #ccc; 
}


::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}


.confirm-email-svg {
    width: 40%;
    height: 40%;
    margin-bottom: 4rem;
}


.email-div {
    font-size: 3rem;
    padding: 15.6rem 10.6rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.text-danger {
    font-size: 1.5rem;
    
}


.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fefcfa;
    height: 100vh;
}

.sidea {
    padding: 2rem;
    display: flex;
    width: 100%;
    justify-content: center;
    color: #fff;
    justify-content: center;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 19px;
    text-align: center;
}

.uiy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sideb {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
    padding: 4rem;
    height: 100%;
}

.sideb a {
    display: inline-block;
}

.sideb h4 {
    font-size: 2.4rem;
    font-weight: 600;
}

.sideb p {
    font-size: 1.6rem;
    font-weight: 500;
}

.lgn-btn {
    display: inline-block;
    color: #555;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    font-weight: 00;
    font-size: 1.5rem;
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: 1s;
}

.lgn-btn:hover {
    background-color: #e6f4ff;
}

.log {
    font-size: 1.5rem;
    margin: 0 1rem;
}

.inner-menu {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 80rem;
    height: 40rem;
    border-radius: 18px;
    background-color: white;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.svg-menu {
    margin-left: 11rem;
    width: 100%;
    height: 100%;
    fill: #068fff;
}





