Style * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background-color: #fff;
    min-height: 100vh;
    font-family: "BasierCircle-Regular";
}

h1 {
    font-size: 3.7rem;
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.8rem;
    }
}

h2 {
    font-size: 2.6rem;
}

@media (max-width: 575px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

ul {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "BasierCircle-Regular";
    src: url("../fonts/BasierCircle-Regular.ttf");
}

@font-face {
    font-family: "BasierCircle-Bold";
    src: url("../fonts/BasierCircle-Bold.ttf");
}

@font-face {
    font-family: "BasierCircle-SemiBold";
    src: url("../fonts/BasierCircle-SemiBold.ttf");
}

@font-face {
    font-family: "Remixa-Bold";
    src: url("../fonts/Remixa-Bold.ttf");
}

@media (min-width: 1601px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 1601px) {
    .container-lg {
        max-width: 1400px !important;
    }
}

@media (min-width: 1601px) {
    .container-xl {
        max-width: 1400px !important;
    }
}

@media (min-width: 1601px) {
    .container-xxl {
        max-width: 1400px !important;
    }
}

.header {
    background-color: #f2f1e8;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header .header-nav {
    min-height: 100px;
    padding: 0 25px;
}

@media (max-width: 991px) {
    .header .header-nav {
        min-height: unset;
        padding: 21px 20px;
    }
}

.header .header-nav .header-logo img {
    height: 100%;
    width: 290px;
}

@media (max-width: 991px) {
    .header .header-nav .header-logo img {
        width: 100%;
        max-width: 228px;
    }
}

@media (max-width: 991px) {
    .header .header-nav .header-logo {
        padding-right: 70px;
    }
}

.header .header-nav #nav {
    width: 100%;
    justify-content: center;
}

.header .header-nav .navbar-nav {
    width: 100%;
    padding-right: 200px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1600px) {
    .header .header-nav .navbar-nav {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav {
        padding: 20px 0;
    }
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item {
        border-bottom: 1px solid #e50900;
    }
}

.header .header-nav .navbar-nav .nav-item .nav-link {
    font-family: "BasierCircle-Bold";
    font-size: 17px;
    font-weight: 400;
    color: #2d3135;
    padding-left: 28px;
    padding-right: 28px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

@media (max-width: 1399px) {
    .header .header-nav .navbar-nav .nav-item .nav-link {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item .nav-link {
        padding-left: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.header .header-nav .navbar-nav .nav-item .nav-link::before {
    content: "";
    width: calc(100% - 3rem);
    height: 3px;
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 0.25rem;
    background: #e50900;
    transition: 0.3s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}

@media (min-width: 992px) {
    .header .header-nav .navbar-nav .nav-item .nav-link:hover::before {
        transform: scale3d(1, 1, 1);
    }
}

.header .header-nav .navbar-nav .nav-item.active .nav-link,
.header .header-nav .navbar-nav .nav-item .nav-link:hover {
    color: #e50900;
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item {
        width: 100%;
        margin: 0 auto;
    }
}

.header .header-nav .navbar-nav .nav-item .active {
    color: #e50900;
}

.header .header-nav .navbar-nav .nav-item-border {
    border: 2px solid #e50900;
    border-radius: 5px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item-border {
        margin-left: 0;
    }
}

.header .header-nav .navbar-nav .nav-item-border:hover {
    box-shadow: inset 300px 0 0 0 #e50900;
}

.header .header-nav .navbar-nav .nav-item-border:hover .nav-link {
    color: #fff;
}

.header .header-nav .navbar-nav .nav-item-border:hover .nav-link::before {
    display: none;
}

.header .header-nav .navbar-nav .nav-item-border .nav-link {
    color: #e50900;
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item-border {
        border: none;
    }
}

.header .header-nav .header-house {
    display: inline-block;
    background-color: #e50900;
    padding: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header .header-nav .header-house:hover {
    background-color: #a80600;
}

.header .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    position: absolute;
    right: 25px;
    top: 35px;
}

@media (max-width: 991px) {
    .header .navbar-toggler {
        top: 28px;
    }
}

@media (max-width: 575px) {
    .header .navbar-toggler {
        right: 15px;
    }
}

.header .navbar-toggler .animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.header .navbar-toggler .animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    background: #e50900;
}

.header .navbar-toggler .animated-icon span:nth-child(1) {
    top: 0px;
}

.header .navbar-toggler .animated-icon span:nth-child(2) {
    top: 10px;
}

.header .navbar-toggler .animated-icon span:nth-child(3) {
    top: 20px;
}

.header .navbar-toggler .animated-icon.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header .navbar-toggler .animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.header .navbar-toggler .animated-icon.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.footer {
    background-color: #e50900;
    padding-top: 120px;
}

@media (max-width: 991px) {
    .footer {
        padding-top: 60px;
    }
}

.footer .footer-salable-title-1 {
    color: #fff;
    font-family: "Remixa-Bold";
    margin-bottom: 45px;
}

.footer .footer-salable-title-2 {
    white-space: nowrap;
}

@media (max-width: 1600px) {
    .footer .footer-salable-title-2 {
        white-space: wrap;
    }
}

@media (max-width: 991px) {
    .footer .footer-salable-title-2 {
        margin-top: 50px;
    }
}

.footer .footer-salable-title-ico {
    background-image: url(../img/meat-ico.svg);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 80px;
}

@media (max-width: 575px) {
    .footer .footer-salable-title-ico {
        background-size: 38px;
        padding-left: 55px;
    }
}

.footer .footer-salable {
    min-height: 450px;
}

.footer .footer-salable .footer-salable-item {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    background-image: url(../img/plus-ico.svg);
    background-repeat: no-repeat;
    background-position: top 40px right;
}

.footer .footer-salable .footer-salable-item .footer-salable-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 12px 35px 12px 0;
    text-decoration: none;
}

.footer .footer-salable .footer-salable-item .footer-salable-header .footer-salable-city {
    color: #fff;
    font-size: 1.9rem;
    font-family: "Remixa-Bold";
    margin-bottom: 0;
}

.footer .footer-salable .footer-salable-item .footer-salable-header .footer-salable-street {
    color: #fff;
    font-size: 1.4rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
}

.footer .footer-salable .footer-salable-item .footer-salable-body-content {
    padding-bottom: 20px;
    padding-left: 20px;
}

.footer .footer-salable .footer-salable-item .footer-salable-body-content p,
.footer .footer-salable .footer-salable-item .footer-salable-body-content a {
    color: #fff;
    font-size: 1.1rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
}

.footer .footer-salable .footer-salable-item .footer-salable-body-content a {
    text-decoration: none;
}

.footer .footer-salable .footer-salable-item .footer-salable-body-content a:hover {
    text-decoration: underline;
}

.footer .footer-salable .footer-salable-item .footer-salable-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 1000ms linear, max-height 100ms linear;
    will-change: opacity, max-height;
}

.footer .footer-salable .active {
    background-image: url(../img/minus-ico.svg);
    background-position: top 53px right;
}

.footer .footer-salable .active .footer-salable-body {
    opacity: 1;
    max-height: 100%;
}

.footer .footer-salable .footer-salable-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .footer-map-img {
    width: calc(50% - 110px);
    max-width: 850px;
    height: auto;
    position: absolute;
    z-index: 0;
}

@media (max-width: 991px) {
    .footer .footer-map-img {
        position: relative;
        width: 100%;
        height: auto;
    }
}

.footer .footer-residence-item {
    list-style: none;
    padding-top: 130px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer .footer-residence-item {
        padding-top: 50px;
    }
}

.footer .footer-residence-item .footer-residence-item-title {
    color: #fff;
    font-size: 1.9rem;
    font-family: "Remixa-Bold";
    margin-bottom: 25px;
}

.footer .footer-residence-item p {
    color: #fff;
    font-size: 1.3rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
    display: block;
}

.footer .footer-residence-item a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
    display: inline-block;
}

.footer .footer-residence-item a:hover {
    text-decoration: underline;
}

.footer .footer-residence-item .footer-residence-item-map-btn {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 25px 10px 15px;
    border: 2px solid #fff;
    border-radius: 10px;
    margin-top: 35px;
    font-size: 22px;
    font-family: "BasierCircle-SemiBold";
    color: #fff;
    transition: all 0.3s ease;
}

.footer .footer-residence-item .footer-residence-item-map-btn svg {
    flex-shrink: 0;
    margin-right: 14px;
    fill: #fff;
}

.footer .footer-residence-item .footer-residence-item-map-btn:hover {
    color: #e50900;
    box-shadow: inset 300px 0 0 0 #fff;
    text-decoration: none;
}

.footer .footer-residence-item .footer-residence-item-map-btn:hover svg {
    fill: #e50900;
}

.footer .footer-col-wrap {
    padding-left: 110px;
}

@media (max-width: 991px) {
    .footer .footer-col-wrap {
        padding: 0 12px;
    }
}

.footer .footer-socials {
    position: relative;
    padding: 15px 0;
}

@media (max-width: 1600px) {
    .footer .footer-socials {
        padding: 50px 0 30px 0;
    }
}

.footer .footer-socials p {
    text-align: right;
    font-family: "BasierCircle-Regular";
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 0.25px;
}

@media (max-width: 575px) {
    .footer .footer-socials p {
        text-align: center;
    }
}

.footer .footer-socials .footer-socials-icons {
    margin-left: auto;
    width: fit-content;
    padding-top: 20px;
}

@media (max-width: 575px) {
    .footer .footer-socials .footer-socials-icons {
        margin: auto;
    }
}

.footer .footer-socials .footer-socials-icons a {
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.25px;
    text-decoration: none;
}

.footer .footer-socials .footer-socials-icons img {
    margin-left: 6px;
    transition-duration: 0.3s;
}

.footer .footer-socials .footer-socials-icons img:hover {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .footer .footer-socials .footer-socials-icons img:hover {
        transform: scale(unset);
    }
}

.footer .footer-copyright {
    padding: 10px 0 20px 0;
    text-align: left;
}

@media (max-width: 575px) {
    .footer .footer-copyright {
        padding: 20px 0 20px 0;
    }
}

.footer .footer-copyright p {
    color: #fff;
    font-size: 1rem;
    font-family: "BasierCircle-Regular";
    text-transform: uppercase;
}

.footer .footer-copyright p a {
    color: #fff;
    font-size: 1rem;
    font-family: "BasierCircle-Regular";
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .footer .footer-copyright {
        text-align: center;
    }
}

.section-hp-banner .hp-banner {
    position: relative;
    padding-top: 100px;
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner {
        padding-top: 80px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
    width: 100%;
    height: 100%;
    max-height: 850px;
    object-fit: cover;
    aspect-ratio: 1.75/1;
}

@media only screen and (min-width: 1921px) and (max-width: 2561px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
        height: calc(100vh - 100px);
        max-height: unset;
    }
}

@media only screen and (min-width: 1921px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
        max-height: 1250px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn {
    position: absolute;
    left: 390px;
    bottom: 150px;
    display: inline-block;
    background-color: #e50900;
    color: #fff;
    font-size: 20px;
    font-family: "BasierCircle-SemiBold";
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 1600px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn {
        left: 150px;
        bottom: 100px;
    }
}

@media (max-width: 1399px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn {
        left: 100px;
        bottom: 70px;
    }
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn {
        left: 50px;
        bottom: 50px;
        font-size: 16px;
        padding: 15px 20px;
    }
}

@media (max-width: 767px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn {
        left: 30px;
        bottom: 30px;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn {
        left: 15px;
        bottom: 15px;
        font-size: 13px;
        padding: 8px 10px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-btn:hover {
    box-shadow: inset 300px 0 0 0 #a80600;
}

.section-hp-banner .hp-banner .owl-dots {
    position: absolute;
    left: 240px;
    bottom: 30px;
    display: flex;
    gap: 13px;
}

@media (max-width: 1600px) {
    .section-hp-banner .hp-banner .owl-dots {
        left: unset;
        right: 15px;
        bottom: 15px;
        gap: 5px;
    }
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner .owl-dots {
        gap: 5px;
    }
}

.section-hp-banner .hp-banner .owl-dots .owl-dot {
    border: 5px solid #d4d1b5;
    width: 20px;
    height: 20px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .section-hp-banner .hp-banner .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
    }
}

.section-hp-banner .hp-banner .owl-dots .active {
    border: 5px solid #e50900;
}

.subpage-content-banner {
    padding: 0 80px;
    margin: 20px 0;
    position: relative;
}

.subpage-content-banner .subpage-content-banner-item {
    height: 300px;
}

.subpage-content-banner .subpage-content-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .subpage-content-banner {
        padding: 0 50px;
    }
}

.subpage-content-banner .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.subpage-content-banner .arrow-left,
.subpage-content-banner .arrow-right {
    width: 27px;
    height: auto;
    pointer-events: all;
}

.header-breadcrumb {
    background-color: #f2f1e8;
    padding-top: 100px;
}

@media (max-width: 991px) {
    .header-breadcrumb {
        padding-top: 80px;
    }
}

.header-breadcrumb .header-breadcrumb-text {
    padding: 55px 0 65px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .header-breadcrumb .header-breadcrumb-text {
        padding: 2rem 0;
    }
}

.header-breadcrumb .header-breadcrumb-text h1 {
    font-family: "Remixa-Bold";
    color: #000;
    margin: 0 !important;
}

.header-breadcrumb .header-breadcrumb-box {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    margin-top: 10px;
}

.header-breadcrumb .header-breadcrumb-box .header-breadcrumb-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

.header-breadcrumb .header-breadcrumb-box .header-breadcrumb-ul li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-breadcrumb .header-breadcrumb-box .header-breadcrumb-ul li a {
    color: #000;
    text-transform: initial;
    font-size: 16px;
    font-family: "BasierCircle-SemiBold";
    line-height: 30px;
    font-weight: 400;
    text-decoration: none;
}

.header-breadcrumb .header-breadcrumb-box .header-breadcrumb-ul li svg {
    fill: #e50900;
    margin: 0 1rem;
}

.header-breadcrumb .header-breadcrumb-box .header-breadcrumb-ul li:last-of-type svg {
    display: none;
}

.section-title {
    padding: 50px 0;
    text-align: center;
    font-family: "Remixa-Bold";
}

.section-title p {
    font-family: "BasierCircle-SemiBold";
}

@media (max-width: 991px) {
    .section-title {
        padding: 25px 0;
    }
}

.section-discounts {
    background-image: url("../img/hp-bg-1.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

.section-discounts .section-title-img img {
    max-width: 180px;
}

.section-discounts .hp-discount-item {
    display: block;
    background-color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-discounts .hp-discount-item:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3137254902);
}

@media (max-width: 1199px) {
    .section-discounts .hp-discount-item {
        margin-top: 20px;
    }
}

.section-discounts .hp-discount-item .hp-discount-item-title {
    font-family: "Remixa-Bold";
    color: #000;
    margin-bottom: 10px;
    padding: 15px 10px;
    text-align: center;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.section-discounts .hp-discount-item .hp-discount-item-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    text-align: center;
    padding: 15px;
}

.section-discounts .hp-discount-item .hp-discount-item-tags {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    flex-direction: row;
}

.section-discounts .hp-discount-item .hp-discount-item-tags .hp-discount-item-unit {
    color: #000;
    font-size: 1rem;
    font-family: "BasierCircle-SemiBold";
    text-transform: uppercase;
}

.section-discounts .hp-discount-item .hp-discount-item-new-price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70px;
    background-color: #e50900;
    color: #fff;
    font-family: "Remixa-Bold";
    font-size: 2rem;
    text-align: center;
}

.section-discounts .hp-discount-item .hp-discount-item-old-price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 58px;
    background-color: #d4d1b5;
    color: #000;
    font-family: "Remixa-Bold";
    font-size: 1.5rem;
    text-align: center;
    text-decoration: line-through;
}

.section-discounts .hp-discount-btn {
    background-color: #fff;
    color: #e50900;
    font-size: 20px;
    font-family: "Remixa-Bold";
    padding: 18px 30px;
    display: inline-block;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    margin-top: 88px;
    transition: all 0.3s ease;
}

.section-discounts .hp-discount-btn svg {
    fill: #e50900;
    margin-left: 10px;
}

.section-discounts .hp-discount-btn:hover {
    color: #fff;
    box-shadow: inset 300px 0 0 0 #e50900;
}

.section-discounts .hp-discount-btn:hover svg {
    fill: #fff;
}

@media (max-width: 1199px) {
    .section-news .row>div {
        margin-bottom: 50px;
    }
}

.section-news .section-news-row {
    margin-left: -50px;
    margin-right: -50px;
    row-gap: 80px;
}

@media (max-width: 1199px) {
    .section-news .section-news-row {
        row-gap: 20px;
    }
}

@media (max-width: 575px) {
    .section-news .section-news-row {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.section-news .section-news-row>div {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 575px) {
    .section-news .section-news-row>div {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.section-news .hp-news-item {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    padding-bottom: 50px;
    border-bottom: 1px solid #d4d1b5;
}

@media (max-width: 1199px) {
    .section-news .hp-news-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .section-news .hp-news-item {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .section-news .hp-news-item {
        border-bottom: 1px solid #d4d1b5;
    }
}

.section-news .hp-news-item .hp-news-item-wrap {
    width: 100%;
}

.section-news .hp-news-item .hp-news-item-img-link {
    display: block;
    width: 100%;
    height: 300px;
    text-decoration: none;
    overflow: hidden;
}

@media (max-width: 575px) {
    .section-news .hp-news-item .hp-news-item-img-link {
        height: 200px;
    }
}

.section-news .hp-news-item .hp-news-item-img-link .hp-news-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.section-news .hp-news-item .hp-news-item-img-link .hp-news-item-img:hover {
    transform: scale(1.05);
}

.section-news .hp-news-item .hp-news-item-date {
    color: #92939e;
    font-size: 1rem;
    font-family: "BasierCircle-SemiBold";
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-news .hp-news-item .hp-news-item-date svg {
    fill: #e50900;
    width: 21px;
    height: 21px;
}

.section-news .hp-news-item .hp-news-item-text {
    color: #000;
    font-size: 1.4rem;
    line-height: 34px;
    margin: 10px 0 20px 0;
    font-family: "BasierCircle-SemiBold";
    margin-top: 20px;
}

.section-news .hp-news-item .hp-news-item-btn {
    color: #e50900;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: "BasierCircle-SemiBold";
}

@media (max-width: 767px) {
    .section-news .hp-news-item .hp-news-item-btn {
        margin-top: 0;
    }
}

.section-news .hp-news-item .hp-news-item-btn:hover {
    text-decoration: underline;
}

.section-news .hp-news-btn {
    background-color: #f2f1e8;
    color: #e50900;
    font-size: 20px;
    font-family: "BasierCircle-SemiBold";
    padding: 18px 30px;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    margin-top: 50px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .section-news .hp-news-btn {
        margin-top: 0;
    }
}

.section-news .hp-news-btn svg {
    flex-shrink: 0;
    fill: #e50900;
    width: 14px;
    margin-left: 14px;
}

.section-news .hp-news-btn:hover {
    color: #fff;
    box-shadow: inset 300px 0 0 0 #e50900;
}

.section-news .hp-news-btn:hover svg {
    fill: #fff;
}

.section-about .hp-about-img-wrap {
    padding: 0;
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .section-about .hp-about-img-wrap {
        padding: 0 12px;
        margin-bottom: 30px;
    }
}

.section-about .hp-about-img-wrap .hp-about-img-box {
    position: relative;
}

.section-about .hp-about-img-wrap .hp-about-img-box .hp-about-img {
    width: 100%;
    height: auto;
}

.section-about .hp-about-img-wrap .hp-about-img-box span {
    position: absolute;
    bottom: -30px;
    right: -30px;
}

@media (max-width: 1199px) {
    .section-about .hp-about-img-wrap .hp-about-img-box span {
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 575px) {
    .section-about .hp-about-img-wrap .hp-about-img-box span img {
        width: 75px;
    }
}

.section-about .hp-about-text-wrap {
    margin-top: 20px;
    padding-left: 100px;
    padding-right: 12%;
}

@media only screen and (min-width: 1921px) {
    .section-about .hp-about-text-wrap {
        max-width: 900px;
        padding-right: 12px;
    }
}

@media only screen and (max-width: 1800px) {
    .section-about .hp-about-text-wrap {
        padding-right: 6%;
    }
}

@media (max-width: 1600px) {
    .section-about .hp-about-text-wrap {
        padding-left: 80px;
    }
}

@media (max-width: 1199px) {
    .section-about .hp-about-text-wrap {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .section-about .hp-about-text-wrap {
        padding-left: 6%;
    }
}

@media (max-width: 575px) {
    .section-about .hp-about-text-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.section-about .hp-about-text-wrap .hp-about-text-title {
    font-family: "Remixa-Bold";
    color: #000;
    margin-bottom: 60px;
}

@media (max-width: 575px) {
    .section-about .hp-about-text-wrap .hp-about-text-title {
        margin-bottom: 20px;
    }
}

.section-about .hp-about-text-wrap .hp-about-text {
    font-family: "BasierCircle-Regular";
    color: #000;
    font-size: 1.5rem;
    line-height: 40px;
    width: 90%;
}

@media (max-width: 991px) {
    .section-about .hp-about-text-wrap .hp-about-text {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .section-about .hp-about-text-wrap .hp-about-text p {
        text-align: unset !important;
    }
}

.section-about .hp-about-text-wrap .hp-about-text strong {
    font-family: "BasierCircle-Bold";
}

.section-about .hp-about-text-wrap .hp-about-bottom-group {
    position: relative;
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

@media (max-width: 1199px) {
    .section-about .hp-about-text-wrap .hp-about-bottom-group {
        flex-direction: column;
        gap: 40px;
    }
}

.section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-btn {
    background-color: #f2f1e8;
    color: #e50900;
    font-size: 20px;
    font-family: "BasierCircle-SemiBold";
    padding: 18px 30px;
    display: flex;
    align-items: center;
    height: fit-content;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-btn svg {
    flex-shrink: 0;
    fill: #e50900;
    width: 14px;
    margin-left: 10px;
}

.section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-btn:hover {
    color: #fff;
    box-shadow: inset 300px 0 0 0 #e50900;
}

.section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-btn:hover svg {
    fill: #fff;
}

.section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-img-bg {
    position: relative;
    right: 0;
    padding-left: 50px;
    width: 100%;
    max-width: 600px;
    height: auto;
}

@media only screen and (min-width: 1800px) {
    .section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-img-bg {
        right: -130px;
    }
}

@media (max-width: 1600px) {
    .section-about .hp-about-text-wrap .hp-about-bottom-group .hp-about-img-bg {
        right: 0;
    }
}

.section-pad {
    padding: 85px 0;
}

@media (max-width: 991px) {
    .section-pad {
        padding: 30px 0 50px 0;
    }
}

.subpage-content {
    padding: 100px 0;
}

.subpage-content .row {
    margin-bottom: 75px;
}

@media (max-width: 575px) {
    .subpage-content .row {
        margin-bottom: 40px;
    }
}

.subpage-content .row:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .subpage-content {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .subpage-content .custom-container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .subpage-content .custom-container {
        max-width: 540px;
    }
}

.subpage-content h1 {
    color: #000;
    font-family: "Remixa-Bold";
}

.subpage-content h3 {
    color: #000;
    font-family: "Remixa-Bold";
}

.subpage-content .subpage-content-title:first-child {
    margin-top: 0;
}

.subpage-content .subpage-content-title {
    font-family: "Remixa-Bold";
    color: #e50900;
    width: fit-content;
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .subpage-content .subpage-content-title {
        margin: 50px 0;
    }
}

.subpage-content .title-left {
    position: relative;
    left: 50%;
    transform: translateX(-100%);
    padding-right: 12px;
}

@media (max-width: 991px) {
    .subpage-content .title-left {
        left: 0;
        transform: unset;
    }
}

.subpage-content .title-right {
    position: relative;
    left: 50%;
}

@media (max-width: 991px) {
    .subpage-content .title-right {
        left: 0;
    }
}

.subpage-content .text-center-right {
    text-align: right;
}

@media (max-width: 991px) {
    .subpage-content .text-center-right {
        text-align: left;
    }
}

.subpage-content .subpage-highlighted-text {
    color: #000;
    font-size: 1.8rem;
    line-height: 43px;
    font-family: "BasierCircle-Regular";
    margin-bottom: 60px;
}

.subpage-content .subpage-highlighted-text strong {
    font-family: "BasierCircle-SemiBold";
}

.subpage-content p {
    color: #000;
    font-size: 1.1rem;
    line-height: 30px;
    font-family: "BasierCircle-Regular";
    margin-bottom: 30px;
}

.subpage-content .subpage-img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.subpage-content .subpage-img-wrap-1 {
    padding: 0;
    padding-right: 135px;
}

@media (max-width: 1199px) {
    .subpage-content .subpage-img-wrap-1 {
        padding: 0 12px;
        margin-bottom: 30px;
    }
}

.subpage-content .subpage-img-wrap-1 .subpage-img-box-1 {
    position: relative;
}

.subpage-content .subpage-img-wrap-1 .subpage-img-box-1 img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.subpage-content .subpage-img-wrap-1 .subpage-img-box-1 span {
    position: absolute;
    bottom: -30px;
    right: -30px;
}

@media (max-width: 1199px) {
    .subpage-content .subpage-img-wrap-1 .subpage-img-box-1 span {
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 575px) {
    .subpage-content .subpage-img-wrap-1 .subpage-img-box-1 span img {
        width: 75px;
    }
}

.subpage-content .subpage-img-wrap-1 .subpage-img-group {
    max-width: 100%;
    width: 100%;
    margin-top: 55px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: right;
    gap: 20px;
}

.subpage-content .subpage-img-wrap-1 .subpage-img-group img {
    max-width: calc(50% - 10px);
    width: auto;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .subpage-content .subpage-img-wrap-1 .subpage-img-group img {
        width: 100%;
    }
}

.subpage-content .subpage-img-wrap-2 {
    padding: 0;
    padding-left: 135px;
}

@media (max-width: 1199px) {
    .subpage-content .subpage-img-wrap-2 {
        padding: 0 12px;
        margin-bottom: 30px;
    }
}

.subpage-content .subpage-col-left-wrap {
    max-width: 700px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .subpage-content .subpage-col-left-wrap {
        margin: unset;
        max-width: 100%;
    }
}

.subpage-content .subpage-col-right-wrap {
    max-width: 700px;
}

@media (max-width: 991px) {
    .subpage-content .subpage-col-right-wrap {
        max-width: 100%;
    }
}

.subpage-content .subpage-download-btn {
    display: flex;
    align-items: center;
    width: fit-content;
    background-color: #f2f1e8;
    color: #e50900;
    font-size: 20px;
    font-family: "Remixa-Bold";
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.subpage-content .subpage-download-btn svg {
    flex-shrink: 0;
    fill: #e50900;
    margin-left: 14px;
    transform: rotate(90deg);
}

.subpage-content .subpage-download-btn:hover {
    color: #fff;
    box-shadow: inset 300px 0 0 0 #e50900;
}

.subpage-content .subpage-download-btn:hover svg {
    fill: #fff;
}

.subpage-content .text-center {
    text-align: center;
}

.subpage-content .subpage-content-text {
    padding: 0 10%;
}

@media (max-width: 991px) {
    .subpage-content .subpage-content-text {
        padding: 0;
    }
}

.subpage-content .subpage-content-certificate {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 55px;
}

@media (max-width: 991px) {
    .subpage-content .subpage-content-certificate {
        gap: 10px;
    }
}

.subpage-content .subpage-content-certificate img {
    max-height: 220px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .subpage-content .subpage-content-certificate img {
        max-height: 150px;
    }
}

.subpage-content .subpage-residence {
    margin-bottom: 100px;
}

.subpage-content .subpage-residence .subpage-residence-item {
    list-style: none;
    padding-left: 50px;
    background-image: url("../img/position-ico-red.svg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 25px;
}

@media (max-width: 991px) {
    .subpage-content .subpage-residence .subpage-residence-item {
        margin-top: 50px;
        margin-bottom: 20px;
    }
}

.subpage-content .subpage-residence .subpage-residence-item .subpage-residence-item-title {
    color: #e50900;
    font-size: 1.9rem;
    font-family: "Remixa-Bold";
    margin-bottom: 25px;
}

.subpage-content .subpage-residence .subpage-residence-item p {
    color: #000;
    font-size: 1.3rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
    display: block;
}

.subpage-content .subpage-residence .subpage-residence-item a {
    text-decoration: none;
    color: #000;
    font-size: 1.3rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
    display: inline-block;
}

.subpage-content .subpage-residence .subpage-residence-item a:hover {
    text-decoration: underline;
}

.subpage-content .subpage-map .subpage-map-col-wrap {
    padding-left: 85px;
}

@media (max-width: 991px) {
    .subpage-content .subpage-map .subpage-map-col-wrap {
        padding: 0 12px;
    }
}

.subpage-content .subpage-map .subpage-map-col-wrap h1 {
    margin-bottom: 30px;
    line-height: 68px;
}

.subpage-content .subpage-salable {
    row-gap: 75px;
}

@media (max-width: 575px) {
    .subpage-content .subpage-salable {
        row-gap: 40px;
    }
}

.subpage-content .subpage-salable h3 {
    margin-top: 40px;
    margin-bottom: 30px;
}

.subpage-content .subpage-salable .subpage-salable-item {
    position: relative;
    width: 100%;
}

.subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img {
    position: relative;
    text-decoration: none;
    width: 100%;
    max-width: 435px;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img {
        max-width: 100%;
    }
}

.subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img img {
    width: 100%;
    height: auto;
}

.subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img .subpage-salable-item-text {
    position: absolute;
    right: 76px;
    bottom: 12px;
    color: #fff;
    font-size: 22px;
    font-family: "BasierCircle-SemiBold";
}

@media (max-width: 991px) {
    .subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img .subpage-salable-item-text {
        bottom: 10px;
    }
}

.subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img .subpage-salable-item-btn {
    position: absolute;
    display: block;
    width: 73px;
    height: 73px;
    right: -18px;
    bottom: -18px;
    color: #fff;
    background-image: url("../img/virtual-view-ico.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

@media (max-width: 991px) {
    .subpage-content .subpage-salable .subpage-salable-item .subpage-salable-item-img .subpage-salable-item-btn {
        right: 0;
        bottom: 0;
        width: 50px;
        height: 50px;
    }
}

.subpage-content .subpage-salable .subpage-salable-item h3 {
    color: #000;
    font-family: "Remixa-Bold";
}

.subpage-content .subpage-salable .subpage-salable-item p,
.subpage-content .subpage-salable .subpage-salable-item a {
    color: #000;
    font-size: 1.4rem;
    font-family: "BasierCircle-Regular";
    margin-bottom: 0;
}

.subpage-content .subpage-salable .subpage-salable-item a {
    text-decoration: none;
}