* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color: #012CB5;
    --text-color: #111111;
    --secound-color: #9e9e9e;
    --other-color: #212121;
    --bg-color: #fff;

    --big-font: 4.5rem;
    --h2-font: 2.6rem;
    --p-font: 1rem;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/*---------Header Section----------*/

header {
    position: sticky;
    width: 100%;
    min-height: 66px;
    padding: 0 100px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header .logo img {
    width: 200px;
    cursor: pointer;
}

header ul {
    position: relative;
}

header ul li {
    position: relative;
    float: left;
}

header ul li a {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0px 20px;
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
}

header ul li a:hover {
    color: var(--main-color);
}

header ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    padding: 10px 0; 
    background-color: #fff;
    border-radius: 5px;
    display: none;
}

header ul li:hover ul {
    display: block;
}

header ul li ul li {
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.header_btn {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 24px;
    margin: 0 20px;
    background-color: var(--main-color);
    color: var(--bg-color);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    letter-spacing: 1px;
}

/*---------Main Section----------*/

.main {
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #012CB5;
}

/*---------Swiper Section----------*/

.swiper {
    max-width: 600px;
    max-height: 900px ;
    width: 80%;
    height: auto;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .swipper-name {
    position: relative;
    padding-bottom: 30px;
    color: #111111;
    font-weight: 500;
    z-index: 10;
  }

/*---------Package Section----------*/

.rent_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rent_list .rent_box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.rent_box {
    border-bottom: 10px solid var(--bg-color);
    width: 100%;
}

.rent_main_title {
    font-size: 45px;
    font-weight: 700;
    color: var(--bg-color);
    padding: 50px 10px;
    letter-spacing: 1px;
}

.rent_main_text {
    border-bottom: 10px solid var(--bg-color);
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    color: var(--bg-color);
    padding: 0px 30px 50px;
    line-height: 35px;
}

.rent_box .rent_left {
    flex-basis: 50%;
    padding: 3%;
}

#rent_right {
    margin: 20px 0;
    border-radius: 8%;
    background-color: #fff;
}


#rent_right img {
    padding: 0 5% ;
    width: 100%;
    height: auto;
}


.rent_title {
    font-size: 35px;
    font-weight: 700;
    color: var(--bg-color);
}

.rent_text {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    color: var(--bg-color);
    text-align: left;
}

.rent_text_small {
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    text-align: left;
    color: #fff;
    opacity: 80%;
}

/*---------Footer Section----------*/

footer {
    width: 100%;
    height: auto;
    padding: 3% 3% 0% 3%;
    background: var(--main-color);
    color: var(--bg-color);
    position: relative;
    z-index: 0;
}

.footer_bg_img img {
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: 100%;
    top: 0;
    object-fit: cover;
    height: 90%;
    opacity: 50%;
    z-index: -1;
}

.footer_columns {
display: flex;
justify-content: space-evenly;
}

.footer_column {
flex-basis: 30%;
}

.footer_logo img {
    padding: 30px;
    margin-top: 20px;
    width: 300px;
}

.footer_info {
    margin-left: 10px;
}

.footer_info li {
    font-size: 17px;
    font-weight: 400;
}

.footer_info li i {
    font-size: 20px;
    padding: 5px;
}

.footer_social {
    display: flex;
    justify-content: flex-start;
    
}

.footer_social i {
    padding: 40px 0px;
    display: inline-block;
    align-items: center;
    font-size: 25px;
    color: var(--bg-color);
    margin: 0 20px;
    transition: all 0.5s ease;
}

.footer_social i:hover {
    transform: scale(1.3);
}

.footer_links {
    padding-top: 50px;
    text-align: center;
    line-height: 30px;
}

.footer_links a {
    color: var(--bg-color);
    font-size: 18px;
    opacity: 60%;
}

.footer_links a:hover {
    opacity: 100%;
}

.anpc {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.footer_column_service {
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    padding: 20% 0%;
    z-index: 1;
    position: relative;
}

.footer_title {
    display: flex;
    justify-content: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.footer_text {
    text-align: center;
    line-height: 18px;
    margin-bottom: 15px;
}

.footer_btn {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    padding: 10px 25px;
    border: 1px solid var(--bg-color);
    border-radius: 20px;
    color: var(--bg-color);
    margin-top: 3px;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.footer_btn:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.copyright {
    display: flex;
    justify-content: center;
    font-size: 16px;
}

/*---------Responsive Design----------*/

@media screen and (max-width: 1442px) {
    header {
        padding: 10px 20px;
    }

    header .logo img {
        width: 150px;
    }

    header nav {
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background-color: #fff;
        display: none;
    }

    .header_btn {
        margin-bottom: 10px;
    }

    header.active nav {
        display: initial;
    }

    header ul li a {
        padding: 10px 0;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li ul {
        position: relative;
        width: 100%;
        left: 0;
    }

    .menuToggle {
        position: relative;
        width: 30px;
        height: 20px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #012CB5;
        transform: translateY(-12px);
        box-shadow: 0 12px #012CB5;
    }

    .menuToggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #012CB5;
        transform: translateY(12px);
    }

    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: 0 0 #012CB5;
    }

    header.active .menuToggle::after {
        transform: rotate(315deg);
        box-shadow: 0 0 #012CB5;
    }
}

@media screen and (max-width: 1196px) {
    .rent_list .rent_box {
        flex-direction: column;
    }

    .footer_info li {
        font-size: 13px;
    }
    
    .footer_info li i {
        font-size: 17px;
    }

    .footer_logo img {
        width: 250px;
    }

    .footer_social i {
        font-size: 20px;
    }

    .footer_links {
        line-height: 20px;
        padding-top: 20px;
    }

    .footer_links a {
        font-size: 13px;
    }

    .footer_title {
        font-size: 17px;
    }

    .footer_text {
        font-size: 12px;
    }

    .footer_btn {
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }  
}

@media screen and (max-width: 800px) {
    .footer_info li {
        font-size: 10px;
    }
    
    .footer_info li i {
        font-size: 13px;
    }
    
    .footer_logo img {
        width: 200px;
    }
    
    .footer_social i {
        font-size: 15px;
    }
    
    .footer_links {
        line-height: 20px;
        padding-top: 20px;
    }
    
    .footer_links a {
        font-size: 10px;
    }
    
    .footer_title {
        font-size: 12px;
    }
    
    .footer_text {
        font-size: 10px;
    }
    
    .footer_btn {
        font-size: 9px;
    }
    
    .copyright {
        font-size: 10px;
    }  
    } 

@media screen and (max-width: 680px) {
    .footer_columns {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_info li {
        font-size: 13px;
    }
    
    .footer_info li i {
        font-size: 15px;
    }

    .footer_logo img {
        width: 250px;
    }

    .footer_social {
        display: flex;
        justify-content: center;
    }

    .footer_social i {
        font-size: 17px;
    }

    .footer_links {
        line-height: 20px;
        padding-top: 20px;
    }

    .footer_links a {
        font-size: 14px;
    }

    .footer_column_service {
        padding: 8% 0%;
    }

    .footer_title {
        font-size: 16px;
    }

    .footer_text {
        font-size: 13px;
    }

    .footer_btn {
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }   
}

@media screen and (max-width: 640px) {
    #rent_right {
        max-width: 350px;
      }

    .rent_main_title {
        font-size: 30px;
    }

    .rent_main_text {
        font-size: 18px;
        line-height: 25px;
    }

    .rent_title {
        font-size: 30px;
        font-weight: 600;
        margin-top: 20px;
    }

    .rent_text {
        font-size: 18px;
        font-weight: 400;
        margin-top: 20px;
    }

    .swiper {
        max-width: 500px;
      }
    
    .swiper-slide {
        font-size: 14px;
    }

    #rent_right {
        margin: 20px 0;
    }
    
    #rent_right img {
        padding: 0 2% ;
    }
    
}

@media screen and (max-width: 375px) {
    .rent_title {
        font-size: 22px;
        font-weight: 500;
    }

    .rent_text {
        font-size: 14px;
        font-weight: 400;
    }
}

@media screen and (max-width: 320px) {
    .swiper {
        max-width: 300px;
      }
}
