/* General Styles */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.gap-5{
    display: flex;
    gap: 1rem;
    padding-left: 2rem;
}
.login-btn {
        border: 1px solid #FDD92B;
    border-radius: 2px;
    display: flex;
    color: #262626;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    min-width: 10rem;
    font-size: 1rem !important;
    height: 3rem;
    line-height: 1.5rem;
    font-weight: 600;
}

.login-btn:hover {
  background: #FDD92B;
}
.signup-btn {
      background: #FDD92B;
    border-radius: 2px;
    display: flex;
    color: #262626;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    min-width: 10rem;
    font-size: 1rem !important;
    height: 3rem;
    line-height: 1.5rem;
    font-weight: 600;
}



body {
    font-family: "DIN 2014";
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #3E3E3E;
    font-style: normal;
    line-height: normal;
}
.logo a img{
	width:10rem;
}
.container{
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: flex-start;
    padding: 0 40px;
}

/* Header Styles */

.header nav {
    /*position: fixed;*/
    /*z-index: 10;*/
    /*left: 0;*/
    /*right: 0;*/
    /*top: 0;*/
    /*height: 60px;*/
    padding: 5px 40px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    background: #FFF;
}
nav .logo {
    float: left;
    height: 100%;
    display: flex;
    align-items: center;
}
nav .links {
    float: right;
    padding: 0 20px 0 0;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}
nav .links li {
    list-style: none;
}
nav .links a {
    display: block;
    padding: 10px;
    color: #3e3e3e;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}
nav .links a:hover {
    color: #000;
}
/*nav .links a::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background-color: #FDD92B;*/
/*    visibility: hidden;*/
/*    transform: scaleX(0);*/
/*    transition: all 0.3s ease-in-out 0s;*/
/*}*/
nav .links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    color: #FDD92B;
}
#nav-toggle {
    position: absolute;
    top: -100px;
}
nav .icon-burger {
    display: none;
    /*position: absolute;*/
    /*right: 5%;*/
    /*top: 50%;*/
    /*right: 2%;*/
    /*top: 4%;*/
    /*transform: translateY(-50%);*/
    cursor: pointer;
    z-index: 10;
}
nav .icon-burger .line {
    width: 30px;
    height: 3px;
    background-color: #1C1B1F;
    margin: 7px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}
.header-list .links{
    margin: 0;
}
.auth-buttons{
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-buttons button {
    border-radius: 2px;
    border: 1px solid #F6BC2F;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    height: 40px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.02);
}

.auth-buttons .login{
    background: white;
    padding: 4px 16px;
}

.auth-buttons .signup{
    background: #FDD92B;
    padding: 6px 16px;
}

.auth-buttons a{
    font-family: "DIN 2014";
    font-style: normal;
    line-height: normal;
    text-decoration: none;
    color: #262626;
}
.header-list{
    display: flex;
}

.auth-buttons .login:hover, .auth-buttons .login:active, .auth-buttons .login:focus, .auth-buttons .login:target, .auth-buttons .login:focus-visible{
    background: #FDD92B;
    transition: all .5s ease;
}
.auth-buttons a:hover, .auth-buttons a:active, .auth-buttons a:focus, .auth-buttons a:target, .auth-buttons a:focus-visible{
    color: #262626;
    text-decoration: none;
}
.auth-buttons .signup:hover, .auth-buttons .signup:active, .auth-buttons .signup:focus, .auth-buttons .signup:target, .auth-buttons .signup:focus-visible{
    background: #fff;
    transition: all .5s ease;
}
@media (max-width: 1024px) {
    nav .links{
        gap: 0;
    }
    .auth-buttons{
        gap: 12px;
    }
    .header nav{
        padding: 0 20px;
    }
    nav .links a, .auth-buttons button{
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    /*.header nav{*/
    /*    position: fixed;*/
    /*    z-index: 10;*/
    /*    left: 0;*/
    /*    right: 0;*/
    /*    top: 0;*/
    /*}*/
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }

    nav .links{
        float: none;
        height: auto;
        display: block;
    }

    nav .header-list {
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 60px;
        bottom: 100%;
        width: auto;
        display: block;
        text-align: center;
        background-color: rgba(255, 255, 255, .9);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    .header-list .links {
        padding: 30px 0 0 0;
    }
    nav .links a, .auth-buttons button {
        font-size: 20px;
    }
    .auth-buttons{
        flex-direction: column;
        gap: 20px;
        padding-top: 10px;
    }
    nav .links li{
        padding-bottom: 10px;
    }
    nav :checked ~ .header-list{
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}
@media (max-width: 480px) {
    .header nav {
        padding: 0 16px;
    }
}

/* Banner Section */
.hero {
    background: url("../images/banner-img.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 680px;
}

.hero-text{
    padding-left: 120px;
    padding-top: 136px;
    max-width: 815px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.hero h1 {
    /*font-family: "DIN 2014";*/
    font-size: 44px;
    font-weight: 400;
    font-style: normal;
    color: #3E3E3E;
    line-height: normal;
    margin: 0;
    /*padding-bottom: 40px;*/
}

.hero p {
    /*font-family: "DIN 2014";*/
    color: #3E3E3E;
    font-size: 24px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

@media (max-width: 1440px){
    .hero-text{
        margin: 0;
        padding-left: 40px;
    }
}

@media (max-width: 1200px){
    .hero h1{
        font-size: 40px;
    }
    .hero p{
        font-size: 22px;
    }
}

@media (max-width: 1024px){
    .hero {
        min-height: 580px;
    }

    .hero-text{
        padding-left: 20px;
        padding-top: 110px;
        max-width: 660px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /*.hero {*/
    /*    height: auto;*/
    /*    min-height: 600px;*/
    /*}*/

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 22px;
    }

    .hero-text{
        max-width: 100%;
        padding: 80px 20px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: center;
    }

    .hero h1 {
        font-size: 34px;
    }
    .hero p {
        font-size: 20px;
    }
    .hero-text {
        padding: 40px 16px;
        gap: 24px;
    }
}

/* Tools Section */
.tools {
    display: flex;
    /*justify-content: center;*/
    align-items: flex-start;
}

.tool {
    background-color: #FDD92B;
    padding: 32px 120px;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.tool.border{
    border-right: 1px solid #767676;
}

.tool img {
    width: auto;
    max-width: 230px;
    height: auto;
    object-fit: contain;
}

.tool h2 {
    font-size: 24px;
    margin: 0;
    color: #262626;
    display: flex;
    align-items: center;
    font-weight: 400;
    padding-bottom: 11px;
    gap: 10px;
}

.tool .time {
    font-size: 16px;
    color: #262626;
    padding: 4px 8px;
    border: 1px solid #262626;
    border-radius: 37px;
    font-weight: 400;
}

.tool p {
    padding-bottom: 24px;
    margin: 0;
    font-size: 16px;
}

.tool a {
    font-size: 18px;
    text-decoration: underline;
    color: #262626;
    font-weight: 400;
}
.tool a:hover, .tool a:focus, .tool a:active{
    color: #262626;
}
.tool .fas{
    color: #1C1B1F;
    padding-left: 30px;
}

@media (max-width: 1680px){
    .tool{
        padding: 32px 60px;
    }
}
@media (max-width: 1440px){
    .tool{
        padding: 32px 40px;
    }
}
@media (max-width: 1360px){
    .tool h2{
        font-size: 18px;
    }
    .tool img{
        max-width: 200px;
    }
    .tool p{
        padding-bottom: 12px;
    }
    .tool a{
        font-size: 16px;
    }
    .tool .fas{
        padding-left: 20px;
    }
}

@media (max-width: 1200px){
    .tool{
        gap: 20px;
    }
    .tool h2 {
        font-size: 16px;
    }
    .tool p{
        font-size: 14px;
    }
    .tool .time{
        font-size: 12px;
    }
    .tool img {
        max-width: 160px;
    }
    .tool a {
        font-size: 15px;
    }
}

@media (max-width: 1024px){
    .tool h2{
        font-size: 14px;
        gap: 8px;
        padding-bottom: 8px;
    }
    .tool img{
        max-width: 120px;
    }
    .tool{
        padding: 32px 20px;
        gap: 15px;
    }
    .tool p{
        font-size: 12px;
        line-height: normal;
        padding-bottom: 8px;
    }
    .tool a{
        font-size: 13px;
    }
    .tool .time{
        font-size: 10px;
    }
    .tool .fas{
        padding-left: 10px;
    }
}

@media (max-width: 768px){

    .tools {
        flex-direction: column;
    }
    .tool.border{
        border-right: none;
        border-bottom: 1px solid #A8A8A8;
    }

    .tool {
        width: 100%;
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .tool-image{
        width: 100%;
    }
    .tool img{
        max-width: 327px;
        width: 100%;
    }
    .tool h2{
        font-size: 30px;
        gap: 10px;
        padding-bottom: 11px;
    }
    .tool .time{
        font-size: 20px;
    }
    .tool p{
        font-size: 20px;
        padding: 0 0 24px 0;
    }
    .tool a{
        font-size: 22px;
    }
    .tool .fas{
        padding-left: 20px;
    }
}

@media (max-width: 480px){
    .tool h2 {
        font-size: 24px;
    }
    .tool .time {
        font-size: 16px;
    }
    .tool p{
        font-size: 16px;
    }
    .tool a{
        font-size: 18px;
    }
    .tool-text {
        padding: 0;
    }
}

@media (max-width: 370px){
    .tool h2 {
        font-size: 20px;
    }
    .tool .time {
        font-size: 12px;
    }
}

/* Intro Section */

.intro {
    display: flex;
    padding: 138px 0 60px 0;
    background-color: #FFFDF4;
    justify-content: center;
}

.intro .container{
    gap: 72px;
}

.intro img{
    width: 100%;
    /* max-width: 644px; */
    height: 100%;
    max-height: 411px;
}

.intro-col{
    width: 50%;
}

.intro h2{
    font-size: 34px;
    color: #262626;
    margin: 0;
    font-weight: 400;
    padding-bottom: 32px;
    line-height: normal;
}

.intro p{
    font-size: 24px;
    color: #3E3E3E;
    font-weight: 300;
    margin: 0;
    padding-bottom: 30px;
}

.intro a{
    text-decoration: underline;
    color: #3E3E3E;
}

.intro a:hover, .intro a:focus, .intro a:active{
    color: #FDD92B;
    transition: all .5s ease;
}

@media (max-width: 1360px) {
    .intro h2{
        font-size: 32px;
        padding-bottom: 30px
    }
    .intro p{
        font-size: 22px;
        padding-bottom: 20px;
    }
    .intro .container{
        gap: 60px;
    }
}

@media (max-width: 1200px) {

    .intro {
        padding: 100px 0 50px 0;
    }
    .intro h2{
        font-size: 24px;
        padding-bottom: 20px;
    }
    .intro p{
        font-size: 18px;
        padding-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .intro .container{
        gap: 40px;
        padding: 0 20px;
    }
    .intro h2{
        font-size: 22px;
        padding-bottom: 15px;
    }
    .intro p{
        font-size: 16px;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .intro{
        padding: 64px 0;
    }
    .intro .container{
        flex-direction: column;
        gap: 24px;
    }
    .intro-col{
        width: 100%;
    }
    .intro img {
        padding-right: 0;
        max-width: 100%;
    }
    .intro h2{
        font-size: 34px;
        padding: 0 0 32px 0;
    }
    .intro p{
        font-size: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .intro .container{
        padding: 0 16px;
    }
}

/* Multiplex Info Section */

.multiplex-info{
    display: flex;
    padding: 60px 0;
    background-color: #FFFDF4;
    justify-content: center;
}

.multiplex-info .container{
    gap: 40px;
}

.multiplex-col{
    width: 50%;
    align-items: center;
    display: flex;
}

.multiplex-info h2{
    font-size: 34px;
    font-weight: 400;
    margin: 0;
    padding-bottom: 32px;
}

.multiplex-info p{
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}
.multiplex-types {
    display: flex;
    justify-content: space-around;
}
.multiplex-types img{
    width: 100%;
    height: 100%;
    max-width: 202px;
    max-height: 138px;
}
.multiplex-types div {
    text-align: center;
}
.multiplex-types p{
    margin: 0;
    padding-top: 20px;
}

@media (max-width: 1360px) {
    .multiplex-info h2{
        font-size: 32px;
    }
    .multiplex-info p{
        font-size: 22px;
    }
}
@media (max-width: 1200px) {
    .multiplex-info{
        padding: 50px 0;
    }
    .multiplex-types img{
        max-width: 100%;
        max-height: none;
        height: auto;
    }
    .multiplex-info h2{
        font-size: 24px;
    }
    .multiplex-info p{
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .multiplex-info .container{
        padding: 0 20px;
    }
    .multiplex-info h2{
        font-size: 22px;
        padding-bottom: 15px;
    }
    .multiplex-info p{
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .multiplex-info {
        padding: 64px 0;
    }
    .multiplex-info .container{
        flex-direction: column;
        gap: 24px;
    }
    .multiplex-col{
        width: 100%;
        justify-content: left;
    }
    .multiplex-info h2{
        font-size: 34px;
        padding-bottom: 32px;
    }
    .multiplex-info p{
        font-size: 20px;
    }
    .multiplex-types img{
        max-width: 100%;
    }
    .multiplex-types{
        display: block;
    }
    .multiplex-types div{
        display: flex;
        align-items: center;
        padding-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .multiplex-info .container {
        padding: 0 16px;
    }
}

/* catalogue Section */

.catalogue {
    display: flex;
    padding-top: 60px;
    background-color: #FFFDF4;
    justify-content: center;
}

.catalogue .container{
    gap: 72px;
    align-items: center;
    padding: 40px;
}

.catalogue img{
    width: 100%;
    /*max-width: 605px;*/
    height: 100%;
    max-height: 440px;
}

.catalogue-col{
    width: 50%;
}

.catalogue h4{
    font-size: 24px;
    color: #3E3E3EE3;
    font-weight: 300;
    margin: 0;
}

.catalogue-text{
    padding: 0 40px;
}

.catalogue h2{
    font-size: 34px;
    color: #262626;
    margin: 0;
    font-weight: 400;
    padding: 8px 0 16px 0;
    line-height: normal;
}

.catalogue p{
    font-size: 24px;
    color: #303030;
    font-weight: 300;
    margin: 0;
    padding-bottom: 32px;
    line-height: normal;
}

.catalogue .catalogue-btn{
    background: #FDD92B;
    border: 1px solid #FDD92B;
    border-radius: 2px;
    padding: 8px 16px;
    width: 189px;
    height: 40px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
}

.catalogue-btn a{
    font-family: "DIN 2014";
    font-style: normal;
    line-height: normal;
    color: #303030;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.catalogue .catalogue-btn:hover, .catalogue .catalogue-btn:focus, .catalogue .catalogue-btn:active{
    background: #FFFDF4;
    transition: all .5s ease;
}
.catalogue-btn a:hover, .catalogue-btn a:active, .catalogue-btn a:focus{
    text-decoration: none;
    color: #303030;
}

@media (max-width: 1360px) {
    .catalogue .container {
        gap: 60px;
    }
    .catalogue h2{
        font-size: 32px;
    }
    .catalogue p{
        font-size: 22px;
    }
    .catalogue-text{
        padding: 0;
    }
}

@media (max-width: 1200px) {

    .catalogue {
        padding-top: 50px;
    }
    .catalogue h4{
        font-size: 20px;
    }
    .catalogue h2{
        font-size: 24px;
        padding-bottom: 20px;
    }
    .catalogue p{
        font-size: 18px;
        padding-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .catalogue .container{
        gap: 40px;
        padding: 0 20px;
    }
    .catalogue h4{
        font-size: 18px;
    }
    .catalogue h2{
        font-size: 22px;
        padding-bottom: 15px;
    }
    .catalogue p{
        font-size: 16px;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .catalogue{
        padding: 64px 0;
    }
    .catalogue .container{
        flex-direction: column;
        gap: 16px;
    }
    .catalogue-col{
        width: 100%;
    }
    .catalogue img {
        padding-right: 0;
        max-width: 100%;
    }
    .catalogue h4{
        font-size: 24px;
    }
    .catalogue h2{
        font-size: 34px;
        padding-top: 8px;
        padding-bottom: 16px;
    }
    .catalogue p{
        font-size: 20px;
        padding-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .catalogue .container{
        padding: 0 16px;
    }
    .catalogue .catalogue-btn{
        width: 100%;
    }
}

/* start Section */

.start {
    display: flex;
    padding: 40px 0;
    background-color: #FFFDF4;
    justify-content: center;
}

.start .container{
    padding: 0;
    gap: 72px;
    align-items: center;
}

.start-text{
    padding: 0 40px;
}

.start img{
    width: 100%;
    max-width: 605px;
    height: 100%;
    max-height: 440px;
}

.start-col{
    width: 50%;
    display: flex;
    align-items: center;
}

.start h4{
    font-size: 24px;
    color: #3E3E3EE3;
    font-weight: 300;
    margin: 0;
}

.start h2{
    font-size: 34px;
    color: #262626;
    margin: 0;
    font-weight: 400;
    padding: 8px 0 16px 0;
    line-height: normal;
}

.start p{
    font-size: 24px;
    color: #303030;
    font-weight: 300;
    margin: 0;
    padding-bottom: 32px;
    line-height: normal;
}

.start .start-btn{
    background: #FDD92B;
    border: 1px solid #FDD92B;
    border-radius: 2px;
    padding: 8px 16px;
    width: 189px;
    height: 40px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
}

.start-btn a{
    font-family: "DIN 2014";
    font-style: normal;
    line-height: normal;
    color: #303030;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.start .start-btn:hover, .start .start-btn:focus, .start .start-btn:active{
    background: #FFFDF4;
    transition: all .5s ease;
}
.start-btn a:hover, .start-btn a:active, .start-btn a:focus{
    text-decoration: none;
    color: #303030;
}

@media (max-width: 1440px) {
    .start .container{
        padding: 0 40px;
    }
}

@media (max-width: 1360px) {
    /*.start{*/
    /*    padding: 30px;*/
    /*}*/
    .start .container{
        gap: 60px;
    }
    .start h2{
        font-size: 32px;
    }
    .start p{
        font-size: 22px;
    }
    .start-text{
        padding: 0;
    }
}

@media (max-width: 1200px) {
    .start {
        padding: 40px 0;
    }
    .start h4{
        font-size: 20px;
    }
    .start h2{
        font-size: 24px;
        padding-bottom: 20px;
    }
    .start p{
        font-size: 18px;
        padding-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .start .container{
        padding: 0 20px;
        gap: 40px;
    }
    .start h4{
        font-size: 18px;
    }
    .start h2{
        font-size: 22px;
        padding-bottom: 15px;
    }
    .start p{
        font-size: 16px;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .start{
        padding: 64px 0 0 0;
    }
    .start .container{
        flex-direction: column;
        gap: 24px;
    }
    .start-col{
        width: 100%;
    }
    .start img {
        padding-left: 0;
        max-width: 100%;
    }
    .start h4{
        font-size: 24px;
    }
    .start h2{
        font-size: 34px;
        padding-top: 8px;
        padding-bottom: 16px;
    }
    .start p{
        font-size: 20px;
        padding-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .start .container{
        padding: 0 16px;
    }
    .start .start-btn{
        width: 100%;
    }
}

/* Hero Image Section */

.hero-image{
    padding-top: 68px;
}
.hero-image div{
    justify-content: center;
    display: flex;
}
.hero-image img{
    width: 100%;
    height: auto;
}
@media (max-width: 1200px) {
    .hero-image{
        padding-top: 38px;
    }
}

@media (max-width: 768px) {
    .hero-image{
        overflow-x: hidden;
        padding-top: 0;
    }
    .hero-image img{
        width: auto;
    }
}

/* rehousing Section */

.rehousing {
    display: flex;
    padding: 40px 0;
    background-color: #FFFFFF;
    justify-content: center;
}

.rehousing .container{
    padding: 0;
    gap: 72px;
    align-items: center;
}

.rehousing img{
    width: 100%;
    height: auto;
}

.rehousing-col{
    width: 50%;
    display: flex;
    align-items: flex-start;
}

.rehousing-text{
    padding: 0 40px;
}

.rehousing h2{
    font-size: 34px;
    color: #303030;
    margin: 0;
    font-weight: 400;
    padding-bottom: 16px;
    line-height: normal;
}

.rehousing p{
    font-size: 24px;
    color: #3E3E3E;
    font-weight: 300;
    margin: 0;
    padding-bottom: 32px;
}

.rehousing .rehousing-btn{
    background: #FDD92B;
    border: 1px solid #FDD92B;
    border-radius: 2px;
    padding: 8px 16px;
    width: 189px;
    height: 40px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
}

.rehousing-btn a{
    color: #303030;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    font-family: "DIN 2014";
    font-style: normal;
    line-height: normal;
}

.rehousing .rehousing-btn:hover, .rehousing .rehousing-btn:focus, .rehousing .rehousing-btn:active{
    background: #FFFFFF;
    transition: all .5s ease;
}
.rehousing-btn a:hover, .rehousing-btn a:active, .rehousing-btn a:focus{
    text-decoration: none;
    color: #303030;
}

@media (max-width: 1440px) {
    .rehousing .container{
        padding: 40px;
    }
}

@media (max-width: 1360px) {
    .rehousing .container{
        gap: 60px;
    }
    .rehousing h2{
        font-size: 32px;
    }
    .rehousing p{
        font-size: 22px;
    }
    .rehousing-text{
        padding: 0;
    }
}

@media (max-width: 1200px) {
    .rehousing h2{
        font-size: 24px;
    }
    .rehousing p{
        font-size: 18px;
        padding-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .rehousing .container {
        padding: 0 20px;
        gap: 40px;
    }
    .rehousing h2{
        font-size: 22px;
    }
    .rehousing p{
        font-size: 16px;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .rehousing .container {
        flex-direction: column;
        gap: 24px;
    }
    .rehousing-col{
        width: 100%;
    }
    .rehousing h2{
        font-size: 34px;
    }
    .rehousing p{
        font-size: 20px;
        padding-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .rehousing .container {
        padding: 0 16px;
    }
    .rehousing .rehousing-btn{
        width: 100%;
    }
}


/* citizen Section */

.citizen {
    display: flex;
    padding: 58px 0;
    background-color: #FFFFFF;
    justify-content: center;
}
.citizen .container{
    gap: 102px;
    padding: 0 27px;
}

.citizen-video iframe{
    border: none;
}

.citizen-col{
    width: 50%;
    display: flex;
    align-items: flex-start;
}

.citizen h2{
    font-size: 34px;
    color: #303030;
    margin: 0;
    font-weight: 400;
    padding-bottom: 32px;
    line-height: normal;
}

.citizen p{
    font-size: 24px;
    color: #3E3E3E;
    font-weight: 300;
    margin: 0;
    padding-bottom: 30px;
}

@media (max-width: 1600px) {
    .citizen .container{
        padding: 0 74px;
    }
}

@media (max-width: 1360px) {
    .citizen .container {
        padding: 0 40px;
        gap: 60px;
    }
    .citizen h2 {
        font-size: 32px;
    }
    .citizen p {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .citizen {
        padding: 40px 0;
    }
    .citizen h2{
        font-size: 24px;
    }
    .citizen p{
        font-size: 18px;
        padding-bottom: 20px;
    }
    .citizen-video iframe{
        height: 322px;
    }
}

@media (max-width: 1024px) {
    .citizen .container {
        padding: 0 20px;
        gap: 40px;
    }
    .citizen h2{
        font-size: 22px;
    }
    .citizen p{
        font-size: 16px;
        padding-bottom: 15px;
    }
    .citizen-video iframe{
        height: 273px;
    }
}

@media (max-width: 768px) {
    .citizen{
        padding: 40px 0 24px 0;
    }
    .citizen .container {
        flex-direction: column;
    }
    .citizen-col{
        width: 100%;
    }
    .citizen-text {
        padding: 0;
    }
    .citizen h2{
        font-size: 30px;
    }
    .citizen p{
        font-size: 20px;
        padding-bottom: 30px;
    }
    .citizen-video iframe{
        height: 402px;
        width: 768px;
    }
}

@media (max-width: 480px) {
    .citizen .container {
        padding: 0 16px;
    }
    .citizen-video iframe{
        height: 243px;
    }
}

/* Categories Section */

.categories{
    display: flex;
    padding: 44px 0 170px 0;
    background-color: #FFFFFF;
    justify-content: center;
}
.categories .container{
    padding: 0 66px;
}
.categories-col{
    width: 100%;
    padding-right: 39px;
}
.categories img{
    width: 100%;
    vertical-align: middle;
    padding-bottom: 45px;
}
.categories h4{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #3E3E3E;
    padding-bottom: 16px;
}
.categories p{
    color: #3E3E3E;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 1600px) {
    .categories .container{
        padding: 0 70px;
    }
}

@media (max-width: 1360px) {
    .categories-col{
        padding-right: 30px;
    }
    .categories .container{
        padding: 0 40px;
    }

}
@media (max-width: 1200px) {
    .categories{
        padding: 40px 0 60px 0;
    }
    .categories .container{
        flex-flow: row wrap;
    }
    .categories-col{
        padding-bottom: 30px;
        width: 33%;
    }
}
@media (max-width: 1024px) {
    .categories h4, .categories p{
        font-size: 16px;
    }
    .categories .container{
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .categories{
        display: block;
        padding: 0;
    }
    .categories h4{
        padding-bottom: 16px;
        font-size: 20px;
    }
    .categories p{
        font-size: 16px;
    }
    .categories-col {
        width: 100%;
        padding: 24px 0;
    }
    .categories img{
        max-width: 350px;
        padding-bottom: 16px;
    }
}
@media (max-width: 480px) {
    .categories .container{
        padding: 0 16px;
    }
    .categories img {
        max-width: 100%;
    }
}

/* Footer Section */

.footer{
    padding: 32px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.footer .container{
    flex-direction: column;
    padding: 0;
    gap: 24px;
}
.footer p{
    font-size: 10px;
    font-weight: 300;
    color: #1F1F1F;
    margin: 0;
    line-height: normal;
}
.footer-images{
    display: flex;
    align-items: center;
    grid-gap: 40px;
}

@media (max-width: 1600px) {
    .footer .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .footer-images{
        gap: 20px;
    }
    .footer .container {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 56px 0 40px 0;
    }
    .footer-images{
        gap: 40px;
        flex-flow: row wrap;
        justify-content: center;
    }
    .footer-images .footer-first-image{
        width: 100%;
        max-width: 199px;
    }
}
@media (max-width: 480px) {
    .footer .container {
        padding: 0 16px;
    }
    .footer-images{
        gap: 24px;
    }
}
@media (max-width: 365px) {

    .footer-images .footer-first-image{
        max-width: 158px;
    }
}



/* ===================================
   Site Header
   =================================== */

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* ===================================
   Logo/Branding
   =================================== */

.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.site-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    background-color: #FFD700;
    color: #1a1a1a;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 8px;
}

.logo-text {
    color: #1a1a1a;
    font-weight: 700;
}

/* ===================================
   Navigation Menu
   =================================== */

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after {
    width: 100%;
}

/* ===================================
   Header Actions (Login/Signup)
   =================================== */

.header-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login,
.btn-logout,
.btn-dashboard {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #ffd700;
    background-color: #ffffff;
    color: #333333;
}

.btn-login:hover,
.btn-logout:hover,
.btn-dashboard:hover {
    background-color: #f5f5f5;
    border-color: #cccccc;
}

.btn-signup {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a1a;
    border: 1px solid #FFD700;
}

.btn-signup:hover {
    background-color: #FFC700;
    border-color: #FFC700;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* ===================================
   Mobile Menu Toggle
   =================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }
    
    .main-navigation {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .main-navigation {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
        margin: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 0;
        font-size: 1rem;
    }
    
    .header-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid #e0e0e0;
        padding: 16px 20px;
        gap: 12px;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .header-actions.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .btn-login,
    .btn-logout,
    .btn-dashboard,
    .btn-signup {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }
    
    .site-logo {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9375rem;
    }
}
