
.section3-headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 100px;
}

.section3-headline h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
}

.section3-headline p {
    font-family: 'Poppins', sans-serif;
    color: #7F85A8;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 100px;
}

.section3-link a {
    font-family: 'Poppins', sans-serif;
    padding: 18px 18px;
    color: #010A44;
    text-transform: capitalize;
    font-size: 15px;
}

.section3-link hr {
    border: none;
    height: 0.5px;
    margin: 17.3px -350px;
    background-color: #c0c2cc;
}

.section3-tabs.active-tab {
  color: #FD8F5F;
  background-color: #fff;
  border-bottom: 0.5px solid #FD8F5F;
  z-index: 9;
  position: relative;
}


.section3-tabs {
    padding: 10px 20px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    position: relative;
}

.section3-imgs {
    margin-bottom: 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 100px;
    max-width: 1100px;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
}
.section3-imgs > div {
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.section3-imgs img {
    width: 338px;
    height: 220px;
    margin: 0 20px;
}

.section3-imgs a {
    display: block;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    line-height: 1.7;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;

}

.section3-imgs a:hover {
    text-decoration-color: black;
    cursor: pointer;
}

.section3-imgs span {
    color: #670000;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.section5-imgs-margin {
    margin: -50px 20px;
}
.section5-btn{
    border: 1px solid #FD8F5F;
    background-color: transparent;
    color: #FD8F5F;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 17px 42px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
    margin-top: 70px;
}

.section5-btn:hover{
    background-color: #FD8F5F;
    border: 1px solid white;
    color: white;
    transition: 0.3s linear;
}

body{
    margin: 0;
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
    width: 100%;
    height: 80px;
    background-color: #f2e1d9;
    z-index: 1000;
}

.account {
    text-decoration: none;
    color: black;
}

.account:hover {

    color: #fd8f5f
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    margin: 10px;
    color: black;
    padding-right: 20px;

}
.nav-card-span {
    display: flex;
    position: absolute;
    right: 30px;
    bottom: -6px;
    justify-content: center;
    align-items: center;
    width: 20px;
    text-align: center;
    height: 20px;
    border-radius: 50%;
    background-color: #fd8f5f;
}
.nav-card-span-icon{
    position: relative;
}

.logo {
    transform: translateY(20px);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.header.scrolled img.logo{
    content: url('https://preview.colorlib.com/theme/furn/assets/img/logo/logo2.png.webp');
    margin-top: -35px;
    margin-left: 15px;
    width: 70px;
    height: 70px;
}
.logo:hover {
    cursor: pointer;

}

.navbar a:hover {
    color: #fd8f5f;
}

.dropdown {
    position: relative;
    z-index: 1000;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: black;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropblog {
    position: relative;
    z-index: 1000;
}

.dropblogcontent {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropblogcontent a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: black;
}

.dropblogcontent a:hover {
    background-color: #f0f0f0;
}

.dropblog:hover .dropblogcontent {
    display: block;
}

.underline-input {
    border: none;
    border-bottom: 1px solid#343a40;
    background-color: #f2e1d9;
    outline: none;
    padding: 5px;
    font-size: 16px;
    width: 200px;
}

.input {
    position: relative;
    width: fit-content;
}

.Search-icon {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.Search-icon:hover {
    cursor: pointer;
}

.card-icon {
    margin-right: 40px;
}

.card-icon:hover {
    cursor: pointer;
    opacity: .7;
    transform: scale(1.1)
}

.container {
    position: absolute;
    top: 15%;
    left: 5%;
    margin: 40px;
    padding: 39px 24px 55px 44px;
    border-radius: 10px;
    width: 35%;
    z-index: 1;
}

.btnDiscover {
    margin-top: 20px;
    font-size: 15px;
    padding: 20px;
    background-color: #fd8f5f;
    border: none;
    color: white
}

.btnDiscover:hover {
    background-color: rgb(108 117 125);
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.3s ease;
}