@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --white: #f1f1f1;
}

body {
    background-color: var(--white);
}

input {
    outline: none;
}

::selection {
    background-color: rgb(158, 138, 120, 0.7);
    color: #e2e2e2;
}

.header {
    background-color: #232525;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 400px 0px 400px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

.header-navbar-list-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    list-style: none;
}

.header-navbar-list-container-list-item {
    text-decoration: none;
    color: #b1b1b1;
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s ease;
}

.header-navbar-list-container-list-item:hover {
    color: var(--white);
}

.header-navbar-btn {
    background-color: #9e8a78;
    padding: 12px 20px 12px 20px;
    color: var(--white);
    font-weight: 600;
    transition: 0.2s ease;
    font-size: 12px;
    border: none;
    text-decoration: none;
}

.header-navbar-btn:hover {
    background-color: #8a7869;
}





.section1 {
    height: 70vh;
    background-image: url(slide-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section1-content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 60%;
}

.section1-arrows {
    position: absolute;
    color: #b1b1b1;
}

.section1-arrow-left {
    left: 20px;
    top: 50%;
}

.section1-arrow-right {
    right: 20px;
    top: 50%;
}

.section1-txt {
    font-size: 16px;
    color: #d3d3d3;
    font-weight: 500;
}

.section1-header {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--white);
}

.section1-btn-container {
    margin-top: 10px;
}

.section1-btn {
    padding: 15px 25px 15px 25px;
    position: relative;
    
}

.section1-btn-hvr {
    background-color: #232525;
    height: 100%;
    width: 0%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
    transition: 0.2s ease;
}

.section1-btn:hover .section1-btn-hvr {
    width: 100%;
}

.section1-btn:not(:hover) .section1-btn-hvr {
    width: 0%;
    right: 0;
}

.section1-btn-txt {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translate(0%, -50%);
    
}

.section1-btn-txt2 {
    position: relative;
    color: rgb(35, 37, 37, 0);
}




.section2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    width: 100%;
}

.section2-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.section2-content-texts {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.section2-content-text1 {
    font-size: 18px;
    color: #9e8a78;
}

.section2-content-text2 {
    font-size: 34px;
    font-weight: 500;
}

.section2-content-text3 {
    font-size: 14px;
    color: #6d6d6d;
}

.section3-btn {
    margin-top: 20px;
}

.section2-content-img {
    height: 400px;
    width: 500px;
    background-image: url(post-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}




.section3 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    width: 100%;
    background-color: #f7efea;
    border-top: 2px solid #e2e2e2;
}

.section3-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 60%;
    row-gap: 30px;
}

.section3-texts {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
}

.section3-txt1 {
    color: #9e8a78;
    font-size: 18px;
}

.section3-txt2 {
    font-size: 35px;
    font-weight: 500;
}

.section3-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;  
    text-align: center;
    width: 100%;
}

.section3-card-img {
    border-radius: 100%;
}

.section3-card-txt1 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section3-card-txt2 {
    font-size: 14px;
    font-weight: 400;
    color: gray;
}





.section4 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    width: 100%;
    background-color: #232525;
    background-image: url(map2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section4-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.section4-text1 {
    font-size: 35px;
    color: white;
    font-weight: 500;
    margin-bottom: 10px;
}

.section4-text2 {
    font-size: 16px;
    color: gray;
    margin-bottom: 30px;
}

.section4-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
}

.twin-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.section4-input {
    height: 50px;
    width: 220px;
    padding: 10px;
    font-size: 15px;
    border: 3px solid #6d6d6d;
    background-color: transparent;
    color: #d3d3d3;
    transition: 0.2s ease;
}

.section4-input:focus {
    border-color: #b4b4b4;
}

.section4-btn-container {
    margin-top: 50px;
}

.footer {
    background-color: #232525;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-content {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* .footer-card {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
} */

.footer-card-txt {
    color: gray;
    font-size: 14px;
    margin-top: 2px;
}

.footer-card-header {
    color: #e2e2e2;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-card4 {
    display: flex;
    flex-direction: column;
}

.footer-card-input {
    height: 50px;
    width: 100%;
    padding: 10px;
    background-color: #6d6d6d;
    color: #d3d3d3;
    margin-bottom: 10px;
    border: none;
}

.footer-card-input::placeholder {
    color: #d3d3d3;
}

.footer-card-btn {
    background-color: #9e8a78;
    border: none;
    color: #f1f1f1;
    height: 50px;
    width: 100%;
}