* {
    padding: 0;
    margin: 0;
    border: 0;
}
body {
    font-family: "Montserrat", serif;
}
.font-playfair {
    font-family: "Playfair Display", serif;
    letter-spacing: 1px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
summary, .breadcrumbs__list, .btn, .main-header, .link-footer {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
svg, img {
    display: block;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
section {
    width: 100%;
}
strong, button {
    font: inherit;
}
button {
    cursor: pointer;
}
:root{
  --color-primary: #212529; 
  --color-secondary: #495057;
  --color-accent: #E9ECEF; 
  --color-white: #FFFFFF;
  --bg-primary: #212529;
  --bg-secondary: #495057;
  --bg-accent: #E9ECEF;
  --bg-white: #FFFFFF;
}
.text-primary { 
    color: var(--color-primary) !important; 
}
.text-secondary { 
    color: var(--color-secondary) !important; 
}
.text-accent { 
    color: var(--color-accent) !important; 
}
.text-white { 
    color: var(--color-white) !important; 
}
.bg-primary { 
    background-color: var(--bg-primary) !important; 
}
.bg-secondary { 
    background-color: var(--bg-secondary) !important; 
}
.bg-accent { 
    background-color: var(--bg-accent) !important; 
}
.bg-white { 
    background-color: var(--bg-white) !important; 
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-column {
    display: flex;
    flex-direction: column;
} 
.flex-column-space {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.container {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.border-box {
    box-sizing: border-box;
}

/* header */

.header-top__container {
    height: 2.6rem;
}
.header-top__info {
    gap: 1.4rem;
}
.header-top__link {
    gap: 0.8rem;
}
.header-top__text {
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.header-top__social {
    gap: 1rem;
}
.header-top__icon {
    width: 1rem;
}
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.main-nav {
    margin: auto;
    height: 5rem;
}
.main-nav__logo-link, .footer-logo-link {
    width: 15rem;
}
.main-nav__logo, .footer-logo {
    width: 100%;
}
.main-nav__item {
    display: inline;
    margin-inline: .6rem;
}
.main-nav__link {
    padding: 1rem 1.4rem;
    font-size: 1rem; 
    font-weight: 500;
    position: relative;
}
.main-nav__link::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}
.main-nav__link:hover::after { 
    background-color: #a6aaad !important;
}
.btn-contact {
    padding: 16px 28px;
    gap: 0.5rem;
    border-radius: 16px;
}
.header__icon {
    width: 1.2rem;
}

/* hero */

.hero-section {
    max-width: 2000px;
    margin: auto;
    position: relative;
}
.hero-section__background {
    width: 100%;
    filter: brightness(.6);
}
.hero-section__image {
    width: 100%;
}
.hero-section__content {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.hero-section__title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    font-size: 5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}

/* breadcrumbs */

.breadcrumbs {
    background-color: #f3f3f3;
}
.breadcrumbs__list {
    justify-content: flex-start;
    padding-block: 1.4rem;
}
.breadcrumbs__separator {
    margin-inline: 1rem;
}
.breadcrumbs__link {
    font-size: .9rem;
    font-weight: 500;
}
.chevron-right {
    width: .9rem;
}
.link-active:hover {
    text-decoration: underline;
}

/* footer */

footer {
    width: 100%;
    padding-block: .4rem;
}
.footer-brand ,.footer-main ,.footer-copyright {
    padding-block: 2rem;
}
.footer-separator {
    border-bottom: solid 1px #cecece;
}
.footer-text {
    font-size: 0.9rem;
    font-weight: 400;
    font-style: normal;
}
.footer-content {
    align-items: flex-start;
    gap: 12rem;
}
.contact-info, .footer-nav, .footer-links, .footer-contact, .footer-social {
    gap: 1rem;
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 500;
}
.link-footer:hover {
    text-decoration: underline;
}
.contact-item, .contact-info {
    justify-content: flex-start;
}
.footer__icon-contact {
    width: 1rem;
}
.contact-item {
    gap: .6rem;
}
.footer__icon {
    padding: .8rem;
    width: 1rem;
    border-radius: .4rem;
    transition: scale 300ms ease-in-out;
}.footer__icon:hover {
    scale: 1.1;
}

/* section-header */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.title-header {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: .6rem;
    text-transform: uppercase;
}
.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
}
.description-header {
    font-size: 1rem;
    font-weight: 400;
}

/* brand */

.brand-block__header {
    gap: .4rem;
    margin-bottom: .6rem;
}
.brand-block__title {
    font-size: 2.1rem;
    font-family: "Playfair Display";
    font-weight: 500;
}
.brand-block__icon {
    width: 2rem;
}
.brand-block__tagline {
    font-size: .9rem;
    font-weight: 400;
}
.separator-dots {
    width: 45%;
    height: 2rem;
    margin: 1.4rem auto 4rem;
    background-image: radial-gradient(circle, #b0b0b0 1px, transparent 1px);
    background-size: 1rem 1rem;
    background-repeat: repeat;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-sidebar {
    display: none;
}
@media (max-width: 1350px) { 
    html {
        font-size: 15px !important;
    }
    .container {
        max-width: 1300px !important;
        box-sizing: border-box;
        padding-inline: 20px;
    }
}
@media (max-width: 1300px) {
    html {
        font-size: 14px !important;
    }
    .hero-section__background {
        height: 250px;
        overflow: hidden;
    }
    .hero-section__image {
        width: auto;
        position: relative;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}
@media (max-width: 1200px) {  
    html {
        font-size: 13px !important;
    }  
}
@media (max-width: 1100px) {
    html {
        font-size: 12px !important;
    }
}
@media (max-width: 1000px) {
    .main-nav__item {
        margin-inline: 0rem;
    }
    .btn-contact {
        padding: 14px 20px;
    }
}
@media (max-width: 950px) {
}
@media (max-width: 900px) {
    .main-nav__list {
        display: none;
    }
    .main-nav__list ,.btn-contact {
        display: none;
    }
    .menu-toggle {
        background-color: #212529;
        border-radius: .4rem;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bi-justify {
        width: 2rem;
        color: white;
    }
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 60%;
        max-width: 350px;
        height: 100%;
        background-color: #fff;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 2rem;
    }
    .mobile-sidebar.is-open {
        transform: translateX(0);
    }
    .sidebar-header {
        margin-bottom: 2rem;
    }
    .sidebar-logo {
        width: 18rem;
    }
    .menu-close {
        background: none;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 1rem;
        right: 0;
        box-sizing: content-box;
    }
    .bi-x {
        width: 2rem;
        padding: 1.4rem;
    }
    .sidebar-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        color: #333; 
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
    }
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .mobile-overlay.is-active {
        display: block;
        opacity: 1;
    }
    .hero-section__background {
        height: 200px;
        overflow: hidden;
    }
    .main-nav__logo-link, .footer-logo-link {
        width: 14rem;
    }
}
@media (max-width: 600px) { 
    html {
        font-size: 12px !important;
    }
    .footer-brand, .footer-main, .footer-copyright {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        align-items: flex-start;
        gap: 0;
        justify-content: space-between;
        width: 100%;
    }
    .sidebar-logo {
        width: 16rem !important;
    }
    .hero-section__title {
        font-size: 4rem;
    }
}
@media (max-width: 500px) {
    .sidebar-logo {
        width: 16rem !important;
    }
    .mobile-sidebar { 
        padding: 2rem 1.4rem !important;
    }
}
@media (max-width: 450px) {
    .header-top {
        display: none !important;
    }
    .mobile-sidebar { 
        width: 70%;
    }
    .hero-section__title {
        font-size: 3.5rem;
    }
}
@media (max-width: 400px) {
    .mobile-sidebar { 
        width: 80%;
    }
    .sidebar-logo {
        width: 14rem !important;
    }
    .footer-brand, .footer-main, .footer-copyright {
        gap: 2rem;
    }
    .hero-section__title {
        font-size: 3rem;
    }
}
@media (max-width: 350px) {
    .container {
        padding-inline: 10px;
    }
}
@media (max-width: 300px) {
    .container {
        padding-inline: 5px;
    }
    .main-header {
        padding-inline: 5px;
        box-sizing: border-box;
    }
}