*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    background: black;
}

.container {
    width: 100%;
    max-width: 1230px;
    min-height: 100vh;
    margin: auto;
    padding: 0 15px;
    background: white;
}

/*   --------------------- NAV BAR ------------------------- */

header {
    width: 100%;
    min-height: 70px;
    border-bottom: solid 1px #555;
    overflow: hidden;
    position: relative;
}

header .logo {
    float: left;
    line-height: 70px;
    text-transform: uppercase;
    text-shadow: 4px 8px 10px #ddd;
}

header ul {
    float: right;
    list-style: none;
}

header ul li {
    display: inline-block;
    line-height: 70px;
}

header ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    opacity: 0.6;
    padding: 10px 20px;
}

header ul li a:hover {
    font-weight: bold;
    opacity: 1;
}

header ul li a.active {
    background: black;
    border-radius: 35px;
    color: white;
}

header .menu {
    position: absolute; 
    top: 37px; 
    right: 10px;
    transform: translateY(-50%); 
    background: black;
    color: white; 
    opacity: 0.7;
    padding: 10px 20px; 
    letter-spacing: 2px; 
    cursor: pointer; 
    display: none;
}

/* ----------------- FIND YOUR DREAM HOME SECTION-------------------- */

section {
    width: 100%;
    min-height: 100vh;
    margin-top: 20px;
}

section .banner {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.banner .thumb {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from {opacity: 0.5;}
    to{opacity: 1;}
}

.banner .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.text h2 {
    color: rgb(255, 238, 0);
    font-size: 60px;
    text-shadow: -1px 3px 0 black;
}


.banner .text input {
    width: 500px;
    height: 40px;
    border: none;
    outline: none;
    background: #0009;
    color: white;
    text-transform: uppercase;
    text-align: center;
    padding: 0 5px;
}

.banner .text button {
    width: 95px;
    height: 40px;
    border: none;
    color: white;
    outline: none;
    background: #333;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
}

.prev, .next {
    background: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3em;
    padding: 12px 10px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s linear;
    height: 75px;
    align-items: center;
    text-align: center;
    line-height: 50px;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    opacity: 1;
}

.slide-nav {
  position: absolute; 
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%); 
  display: flex;

}

.slide-nav .nav-dot {
    background: black;
    width: 20px;
    height: 20px;
    margin: 0 20px;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    line-height: 17px;
    border: 1px solid gold;
    cursor: pointer;
}

.slide-nav .nav-dot.dot-active {
    background: gold;
}

/* -------------------------- ABOUT ------------------------- */

#about {
    width: 100%;
    margin-top: 20px;
}

#about h2 {
    text-transform: uppercase;
    letter-spacing: 7px;
    border-bottom: 1px black solid;
}

#about .content {
    display: flex;
    flex-wrap: wrap;
}

#about .content .text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;

}

#about .content .text p {
    line-height: 1.4;
    margin: 10px 0;
}

#about .content .text a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: #555;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 3px;
    box-shadow: 4px 5px 10px rgb(85, 86, 87);
    transition: 0.3s ease-in-out;
}

#about .thumb {
    flex: 1;
    min-width: 300px;
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
}

#about .thumb  .thumb-box {
    flex: 1;
    min-width: 300px;
    cursor: pointer;
    overflow: hidden;
    padding: 10px;
    margin: 10px;
    box-shadow: 4px 5px 10px #ddd;
    transition: 0.5s ease-in-out;
}

#about .thumb  .thumb-box img {
    object-fit: cover;
    width: 100%;
    height: 240px;

}

#about .thumb  .thumb-box:hover,
#about .content .text a:hover{
    box-shadow: none;
}



#about .partner h3{
    font-size: 1.5em;
    margin: 15px 0;
}

#about .partner p {
    margin: 10px 0
}

#about .partner a {
    text-align: center;
    text-decoration: none;
    margin-right: 10px;
    color: black;
    display: inline-block;
    font-weight: bold;
}

#about .partner a:hover {
    color: gold;
}

/* -------------------------- PROPERTIES ------------------------- */

#properties{
    width: 100%;
    margin-top: 20px;
}

#properties h2{
    text-transform: uppercase;
    letter-spacing: 10px;
    border-bottom: 1px solid black;
    margin-bottom: 20px;
}

#properties .content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#properties .content .box {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    overflow: hidden;
    margin: 15px;
    padding: 15px;
    box-shadow: 4px 5px 10px #ddd;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
#properties .content .box:hover{
    box-shadow: none;
}

#properties .content .box a:hover {
    background-color: crimson;
    letter-spacing: 1.8px;
}

#properties .content .box img {
    width: 100%;
    height: 300px;
    display: block;
}

#properties  h3{
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;

}

#properties span {
    color: crimson;
    padding-right: 10px;
}

#properties p{
    line-height: 1.4;
    margin: 5px 0;
}

#properties a{
    text-decoration: none;
    color: white;
    background: #555;
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
}



/* -------------------------- SERVICES ------------------------- */

#services {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

#services h2{
    text-transform: uppercase;
    letter-spacing: 10px;
    border-bottom: 1px solid black;
    margin-bottom: 20px;
}

#services .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
    cursor: pointer;
}

#services .content .card{
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: center;
    overflow: hidden;
}

#services .content .card i{
    display: inline-block;
    width: 100px;
    height: 100px;
    font-size: 3em;
    line-height: 100px;
    color: crimson;
    
}

#services .content .card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

#services .content .card h3 {
    font-size: 1.3em;
    letter-spacing: 4px;
}

#services .content .card p {
    color: #888888;
    margin: 10px 0;
}

#services .content .card.circle img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    border: 3px solid black;
    display: block;
    object-fit: cover;
}

#services .content .card.circle h3 {
    color: crimson;
}
/* -------------------------- CONTACT ------------------------- */
#contact {
    width: 100%;
    margin-top: 20px;
}

#contact h2 {
    text-transform: uppercase;
    letter-spacing: 10px;
    border-bottom: 1px solid black;
    margin-bottom: 20px;
}

#contact .content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    
    
}

#contact form {
    flex: 1;
    min-width: 300px;
    padding: 30px 15px;
    height: 100%;

}

#contact form input,
#contact form textarea,
#contact form button{
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #555;
    margin: 15px 0;
    resize: none;
    
}

#contact form textarea {
    padding-bottom: 110px;
}

#contact .map{
    min-width: 300px;
    flex: 1;
    padding: 30px 15px;
    
}

#contact .map iframe{
    width: 100%;
    
}

#contact form button {
    background: crimson;
    height: 40px;
    color: white;
    letter-spacing: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

#contact form button:hover {
    background: gold;
    color: black;
}

#contact .box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

#contact .box .text{
    flex: 1;
    margin: 15px;
}

#contact .box .text h3{
    color: crimson;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
}

#contact .box .text p {
    line-height: 1.4;
    margin: 10px 0;   
}

#contact .box .text span {
    color: crimson;
}
/* -------------------------- FOOTER ------------------------- */

footer {
    width: 100%;
    max-width: 1230px;
    background-color: maroon;
    margin: auto;
    color: white;
}

footer .content {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

footer .content .box{
    flex: 1;
    margin: 30px;
    min-width: 300px;
}

footer .content .box h2{
    letter-spacing: 5px;
}

footer .content .box p{
    opacity: 0.5;
    margin: 15px 0;
}

footer .content .box h3 {
    opacity: 0.7;
    letter-spacing: 2px;
    margin: 15px 0;
}

footer .row {
    border-top: 1px solid #555;
    display: flex;
    padding: 30px 0;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

footer .row p{
    flex: 1;
    min-width: 470px;
    margin-left: 15px;
}

footer .row p span {
    color: rgb(0, 255, 242);
    letter-spacing: 2px;
    font-weight: bold;
}

footer .row .social {
    flex: 1;
    display: flex;
    min-width: 500px;
    flex-wrap: wrap;
    justify-content: space-around;
}

footer .row .social i{
    margin: 0 7px;
}

footer .row .social a {
    text-decoration: none;
    color: white
}

footer .row .social a:hover {
    color:  rgb(0, 255, 242);
    font-weight: 900;
    letter-spacing: 1.5px;
}


/* -------------------------- REGISTER / LOGIN ------------------------- */

.login-container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(130deg, rgb(155,1,155), rgb(1,118,185), rgb(162, 190, 0));
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    clip-path: circle(0 at 50% 50%);
    transition: 0.5s ease-in-out
}

#btn-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 60px;
    color: orange;
    cursor: pointer;
}

.login-box {
    width: 300px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 10px 20px;
    box-shadow: black 0 0 20px;
}

.login-box h2 {
    font-size: 3em;
    text-align: center;
    margin: 20px 0;
    font-weight: bolder;

}

.login-box label {
    display: inline-block;
    width: 100%;
    height: 40px;
    background: #eee;
    margin: 10px 0;
}

.login-box input {
    width: 210px;
    height: 100%;
    border: none;
    outline: none;
    background: #eee;
}

.login-box i {
    text-align: center;
    width: 40px;
}

.login-box .check {
    background: white;
    height: 15px;
    font-size: 14.5px;
}

.login-box span {
    color: crimson;
    cursor: pointer;
}

.login-box span:hover {
    color: black;
}

.login-box [type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 2px;
    transform: translateY(3px);
}

.login-box button {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: red;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-box button:hover {
    letter-spacing: 4px;
}

.login-box p {
    text-align: center;
    margin: 5px;
    font-size: 16.5px;
    
}

.login-box a {
    text-decoration: none;
    display: inline-block;
    color: crimson;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.login-box a:hover {
    color: black;
    letter-spacing: 3.5px;
}

.login-box .btn {
    width: 100%;
    height: 40px;
    text-align: center;
    margin-bottom: 10px;
    color: white;
    line-height: 40px
}

.login-box .btn.btn-fb {
    background: rgb(11,91,182);
    letter-spacing: 1.5px;

}

.login-box .btn.btn-gg {
    background: orangered;
    letter-spacing: 1.5px;
} 

.login-box .btn.btn-fb:hover {
    letter-spacing: 4px;
    color: white;
}

.login-box .btn.btn-gg:hover {
    letter-spacing: 4px;
    color:white;
}

.hidden { 
    display: none;
}

/* SCROLL BUTTON */

.top-scroll {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: black;
    border: 1px solid white;
    line-height: 72px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.top-scroll h1 {
    font-size: 15px;
    color: white;
}

.top-scroll:hover {
    box-shadow: whitesmoke 0 0 20px;
}


/* -------------------------- RESUME ------------------------- */
