@charset "UTF-8";


@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600;8..144,700&display=swap");

:root {
   /* font-families*/
    --font-1   : "Roboto Flex", Sans-Serif;
    --font-2   : "Playfair Display", Serif;
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;

   /* color palette */
   --color-btn    :#2b2b2b;
   --color-bg     :#000000;
   --color-1       :#504141;
   --color-2       :#C4C4C4;
   --color-3       :#761F21;
   --color-4       :#D91B24;
   --color-5       :#F3000E;
   --color-6       :#10EDF5;
   --color-7       :#2D11E9;
   --color-8       :#F5F5F5;
}















html,
body,
div,
span,
h1,
h2,
h3,
h4,
h6,
p,
a,
img,
small,
ul,
li,
form,
label,
table,
tbody,
thead,
tr,
th,
td,
figure,
footer,
header,
nav,
section,
time {
    margin        : 0;
    padding       : 0;
    border        : 0;
    font-size     : 100%;
    font          : inherit;
    vertical-align: baseline;
}



figure,
footer,
header,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    background-image: url('../images/sander.jpg');
    background-size:cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}


ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing : 0;
}



.container {
    max-width         : min(98%, 1440px);
    margin-inline : auto;
    padding-inline: calc(clamp(1rem, calc(2vw + .2rem), 2.2rem) * 2);
}

.row {
    display      : flex;
    flex-flow    : row wrap;
    margin-inline: calc(clamp(1rem, calc(2vw + .2rem), 2.2rem) * -1);
}

/* column
 */
.column {
    flex          : 1;
    padding-inline: clamp(1rem, calc(2vw + .2rem), 2.2rem);
}

/* row utility classes*/

/* extra large devices (1201px and above) */


.xl-3 {
    flex : none;
    width: 25%;
}

.xl-4 {
    flex : none;
    width: 33.3333333333%;
}



.xl-6 {
    flex : none;
    width: 50%;
}



.xl-9 {
    flex : none;
    width: 75%;
}



.xl-12 {
    flex : none;
    width: 86%;
}

/* large devices (1001px to 1200px) */
@media screen and (max-width: 1200px) {
    .container {
        width: min(100%, 1440px);
    }



    .lg-5 {
        flex : none;
        width: 41.6666666667%;
    }

    .lg-6 {
        flex : none;
        width: 50%;
    }



    .lg-12 {
        flex : none;
        width: 100%;
    }
}

/* medium devices (801px to 1000px) */
@media screen and (max-width: 1000px) {
    .container {
        padding-inline: 0;
    }


    .md-12 {
        flex : none;
        width: 100%;
    }
}



/* mobile devices (401px to 600px)   */
@media screen and (max-width: 600px) {

}

/* small mobile devices (up to 400px) */

/* stack columns vertically*/
@media screen and (max-width: 400px) {
    .row {
        margin-inline: 0;
    }

    .column {
        flex          : none;
        width         : 100%;
        margin-left   : 0;
        margin-right  : 0;
        padding-inline: 0;
    }
}




.grid-block {
    --col                : 12;
    --grid-gap-h         : calc(clamp(1rem, calc(2vw + .2rem), 2.2rem) * 3);
    --grid-gap-v         : 0;

    display              : grid;
    grid-template-columns: repeat(var(--col), [col] 1fr);
    -moz-column-gap      : var(--grid-gap-h);
    column-gap           : var(--grid-gap-h);
    row-gap              : var(--grid-gap-v);
}

.grid-block.grid-16 {
    --col: 16;
}

.grid-block__item {
    grid-column: 1/-1;
}

/* grid columns */
.grid-cols {
    --col-min-width      : 300px;
    --grid-gap           : calc(clamp(1rem, calc(2vw + .2rem), 2.2rem) * 2);

    display              : grid;
    -moz-column-gap      : var(--grid-gap);
    column-gap           : var(--grid-gap);
    grid-template-columns: repeat(auto-fit, minmax(min(var(--col-min-width), 100%), 1fr));
    grid-auto-flow       : row;
    grid-auto-columns    : auto;
}

.grid-cols--nowrap {
    grid-auto-flow       : column;
    grid-auto-columns    : 1fr;
    grid-template-columns: 1fr;
}

/*
 * responsive:
 * CSS Grid layout tools*/
@media screen and (max-width: 800px) {

    .grid-block,
    .grid-block.grid-16 {
        --col: 8;
    }

    .grid-cols--nowrap {
        grid-auto-flow   : row;
        grid-auto-columns: auto;
    }
}

@media screen and (max-width: 600px) {

    .grid-block,
    .grid-block.grid-16 {
        --col: 4;
    }
}

@media screen and (max-width: 400px) {
    .grid-block .grid-block__item {
        grid-column: 1/-1;
    }
}


/* BASE */
html {
    font-size : 62.5%;
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust  : 100%;
    -webkit-font-smoothing    : antialiased;
    -moz-osx-font-smoothing   : grayscale;
}

p {
    font-size     : inherit;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

svg,
img {
    max-width: 100%;
    height   : auto;
}

/* Remove margins and paddings for common elements 
 */
div,
ul,
li,
h1,
h2,
h3,
h4,
h6,
form,
p,
th,
td {
    margin : 0;
    padding: 0;
}

/* Remove default styles for input elements 
 */

input[type=number],
input[type=text],
textarea {
    -webkit-appearance: none;
    -moz-appearance   : none;
    appearance        : none;
}



body {
    font-family: "Roboto Flex", Sans-Serif;
    font-size  : 2rem;
    font-weight: 400;
    line-height: 3.2rem;
    color      : #bfc1c0;
}


a {
    color     : #ffffff;
    transition: all 0.3s cubic-bezier(0.28, 0.12, 0.22, 1);
}

a:focus,
a:hover,
a:active {
    color: #b1885e;
}

a:hover,
a:active {
    outline: 0;
}

/* headings
 */
h1,
h2,
h3,
h4,
h6,
.h1,
.h2,
.h3,
.h4,
.h6 {
    font-family: "Playfair Display", Serif;
    font-weight: 400;
}

h1,
.h1 {
    margin-top   : 8rem;
    margin-bottom: 4rem;
    color      : white;
}

h2,
.h2,
h3,
.h3 {
    margin-top   : 6.4rem;
    margin-bottom: 2.4rem;
}

h4,
.h4,
h6,
.h6 {
    margin-top   : 5.6rem;
    margin-bottom: 1.6rem;
}

h1,
.h1 {
    font-size     : clamp(4.97664rem, calc((4.97664rem - 1rem) + 2vw), 5.971968rem);
    line-height   : 1.1;
    letter-spacing: -0.02em;
}

h2,
.h2 {
    font-size     : clamp(3.456rem, calc((3.456rem - .75rem) + 1.5vw), 4.1472rem);
    line-height   : 1.2;
    letter-spacing: -0.01em;
}

h3,
.h3 {
    font-size  : clamp(2.88rem, calc((2.88rem - .5rem) + 1vw), 3.456rem);
    line-height: 1.2;
}

h4,
.h4 {
    font-size  : 2.4rem;
    line-height: 1.2;
}

h6,
.h6 {
    font-family   : "Roboto Flex", Sans-Serif;
    font-weight   : 500;
    font-size     : 1.6666666667rem;
    line-height   : 1.6;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* emphasis, italic,
 * strong, bold and small text
 */

small {
    font-size  : 85%;
    font-weight: 400;
    line-height: 1.6rem;
}



/* figures
 */
figure img,
p img {
    margin        : 0;
    vertical-align: bottom;
}

figure {
    display     : block;
    margin-left : 0;
    margin-right: 0;
}



/* horizontal rule
 */



/* lists */

ul {
    list-style: disc;
}

li {
    display: list-item;
}


ul {
    margin-left: 1.6rem;
}

ul li {
    padding-left: 0.4rem;
}

ul ul {
    margin: 1.6rem 0 1.6rem 1.6rem;
}

/* definition list line style 
 */

/* definition list dictionary style */








/*section header */
.section-header {
    margin-bottom: 6.4rem;
}

.section-header .text-display-title {
    margin-top: 0;
    font-size : clamp(4.97664rem, 4.97664rem - 1rem + 2vw, 8.59963392rem);
}

.section-header::before {
    display       : block;
    content       : attr(data-num) ".";
    font-family   : "Playfair Display", Serif;
    font-weight   : 400;
    font-size     : 2rem;
    letter-spacing: -0.02em;
    line-height   : 1;
    color         : #5f6362;
    margin-left   : 0.4em;
    margin-bottom : -0.4em;
}




/*  SITE HEADER */
.s-header {
    --header-height : 7.2rem;

    z-index         : 100;
    background-color: rgba(0, 0, 0, 0.644);
    backdrop-filter: blur(5px);
    font-size       : 1.6666666667rem;
    line-height     : 3.2rem;
    height          : var(--header-height);
    width           : 100%;
    position        : absolute;
    
    left            : 0;
    position: fixed;
}

.s-header .s-header__content {
    background-color: transparent;
}

.s-header__content {
    display         :flex;
    align-items     : center;
    justify-content : flex-start;
    height          : var(--header-height);
    padding         : 0 calc(clamp(1rem, calc(2vw + .2rem), 2.2rem) * 2);
    position        : relative;
}



/*main navigation */
.header-nav__links {
    list-style: none;
    display   : inline-flex;
    flex-flow : row nowrap;
    margin    : 0;
    padding   : 0 4rem;
}

.header-nav__links li {
    padding-left: 0;
}

.header-nav__links a {
    display            : block;
    font-family        : "Roboto Flex", Sans-Serif;
    font-weight        : 500;
    color              : #5f6362;
    padding            : 0 1.2rem;
    transition-property: color, background-color;
    transition-duration: 0.3s;
}

.header-nav__links a:focus,
.header-nav__links a:hover {
    color: #bfc1c0;
}

.header-nav__links .current a {
    color: #efefef;
}

.header-nav.static-nav {
    display: flex;
    justify-content: space-between;
}

/* header contact num
 */
.header-contact {
    transform: translate(0, calc(-50% + 0.2rem));
    position : absolute;
    right    : calc(clamp(1rem, calc(2vw + .2rem), 2.2rem) * 2);
    top      : 50%;
}

.header-contact {
    margin-left: auto;
}

.header-contact .btn {
    margin: 0 0 0.4rem 0;
}


/* responsive: site-header */
@media screen and (max-width: 1000px) {
    .header-nav__links a {
        padding: 0 1.2rem;
    }
}

@media screen and (max-width: 900px) {

    .header-nav {
        display         : flex;
        width           : 100%;
        transform       : none !important;
        transform-origin: center top;
        margin-left: 0;
        flex-grow: 1;
        justify-content: flex-start;
        align-items: center;
    }

    .header-contact {
        margin-left: 3.2rem !important;
        order      : 2 !important;
    }

    .header-nav.static-nav {
        display: flex;
        align-items: center;
    }



    .header-nav__links a {
        font-size: 1.6666666667rem;
        padding  : 0.8rem 1.6rem;
    }

    .header-contact {
        position  : static;
        transform : translateY(-2rem);
        opacity   : 0;
        visibility: hidden;
    }

    .header-contact .btn {
        margin: 0;
    }
}

@media screen and (max-width: 600px) {
    .s-header{
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .s-header {
        --logo-width: 9.8rem;
    }
}


/*   INTRO */

.s-intro {
    --content-padding-top   : max(13.6rem, 24vh);
    --content-padding-bottom: 8rem;
    --content-min-height    : calc(3.2rem * 27);

    z-index                 : 2;
    height                  : max(var(--content-min-height), 70vh);
    overflow                : hidden;
    position                : relative;
}

/*  intro content */
.s-intro__content {
    --grid-gap-v      : 0;

    z-index           : 2;
    grid-template-rows: auto 1fr;
    align-items       : center;
    padding-top       : var(--content-padding-top);
    padding-bottom    : var(--content-padding-bottom);
    position          : relative;
}

.intro-header {
    --overline-hline: calc(((100 / (6/1)) * 1%) - clamp(1rem, calc(2vw + .2rem), 2.2rem));

    z-index         : 2;
    grid-column     : 2/span 6;
    position        : relative;
}

.intro-header__overline {
    font-family   : "Playfair Display", Serif;
    font-weight   : 400;
    font-style    : italic;
    font-size     : 2.4rem;
    line-height   : 1;
    letter-spacing: -0.02em;
    color         : #bfc1c0;
    padding-left  : 0.25em;
    margin-top    : 0.8rem;
    margin-bottom : calc(1.2rem * -1);
    position      : relative;
}

.intro-header__overline::before {
    content         : "";
    display         : block;
    height          : 1px;
    width           : var(--overline-hline);
    background-color: white;
    position        : absolute;
    top             : 50%;
    left            : calc((var(--overline-hline) + clamp(1rem, calc(2vw + .2rem), 2.2rem)) * -1);
}

.intro-header__big-type {
    font-size  : clamp(4.97664rem, 4.1472rem + 10vw, 18.4rem);
    line-height: 1;
    margin-top : 0;
}



.intro-block-content {
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    grid-column    : 9/span 4;
    grid-row       : 1/3;
    padding-bottom : 6.4rem;
    position       : relative;
    background-color: rgba(0, 0, 0, 0.733);
    backdrop-filter: blur(5px);
    text-indent: 25px;
    min-width: 100%;
}



.intro-block-content__text {
    color: white;
    border-bottom : 1px solid rgb(184, 184, 184);
    padding-bottom: 1.6rem;
}






/* responsive: intro */
@media screen and (max-width: 1450px) {
    .grid-block{
        column-gap: 0;
    }
    .intro-header {
        grid-column: 2/span 6;
    }

    .intro-header__overline {
        font-size: 2rem;
    }

    
    
}

@media screen and (max-width: 1253px) {
    .intro-header {
        grid-column: 2/4;
    }
    .intro-header__big-type {
        display: flex;
    }
    .intro-header__big-type{
        font-size: 15rem;
    }
    .intro-block-content {
        min-width: 120%;
        text-indent: 0;
    }

}
@media screen and (max-width: 1000px) {
    .s-intro {
        --content-padding-top: 7rem;
    }
    .intro-header__big-type {
        display: flex;
        font-size: 10rem;
    }


    .intro-block-content {
        grid-column   : 2/span 9;
        grid-row: 2;
        padding-top   : 10%;
        text-indent: 20px;
        
    }

    .intro-block-content__text-wrap{
        flex : none;
        width: 50%;
    }

    .intro-block-content__text-wrap {
        padding-inline: clamp(1rem, calc(2vw + .2rem), 2.2rem);
        position      : relative;
        z-index       : 3;
    }


    .intro-block-content__text{
        display: none;
    }
}



@media screen and (max-width: 800px) {
    .s-intro {
        height: auto;
    }
    .intro-block-content__text-wrap{
       
        margin-left: -15%;
    }

    .intro-header__overline {
        font-size: calc(var(--text-size) * 1.1);
    }

    .intro-block-content {
        grid-column: 1/-1;
        padding-top: 3.2rem;
    }
}

@media screen and (max-width: 500px) {
    .intro-header__big-type{
        font-size: 7rem;
    }


    .intro-block-content {
        padding-top    : 1.6rem;
        
    }
   

    

    .intro-header__overline::before {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .intro-block-content__pic {
        width: max(18rem, 60%);
    }
}
/* BRANCH BUTTONS STYLES */
.branch-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.branch-buttons button {
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
    background-color:#5f636280;
}

.branch-buttons .box {
    width: 140px;
    height: auto;
    float: left;
    transition: .5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    margin: 0 5px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
}

.branch-buttons .box:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
}

.branch-buttons .box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
}

.branch-buttons .box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: var(--color-bg);
    backdrop-filter: blur(5px);   
}

.branch-buttons .box:hover:before {
    border-color: white;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .3s;
}

.branch-buttons .box:hover:after {
    border-color: var(--color-8);
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .5s;
}


.select-branch-text {
    text-align: center;
    color: var(--color-8);
    font-size: 3rem;
    margin-top: 5rem;
    
}
.select-branch-text2 {
    color: var(--color-8);
    font-size: 2rem;
    margin-top: 2rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}


/*  ABOUT */
#about{
    background-color: var(--color-8);
}
.s-about {
    padding-top: 5rem;
}

.s-about__content {
    align-items    : flex-start;
    justify-content: space-between;
    color: var(--color-btn);
}

.s-about__content-start {
    position     : sticky;
    top          : 10rem;
    margin-bottom: 6.4rem;
    margin-left: 5rem;
}

.s-about__content-end {
    text-indent: 40px;
    padding-top   : 15.8rem;
    padding-bottom: 3rem;
}

/* about content */
.about-pic-primary {
    width: 100%;
}

.about-pic-primary img {
    padding           : 0;
    margin            : 0;
    -o-object-fit     : cover;
    object-fit        : cover;
    -o-object-position: center;
    object-position   : center;
    aspect-ratio      : 2000/2000;
}

/* responsive: about */
@media screen and (max-width: 1200px) {
    .s-about__content-start {
       margin-left:2rem;
    }

    .section-header {
        font-size: 50%;
    }

    .about-pic-primary img{
        width: 87%;
        aspect-ratio: 12/16;
    }

}

@media screen and (max-width: 1000px) {
    .s-about__content-start {
       margin-left: 6%;
    }

    .section-header {
        font-size: 50%;
    }

    .about-pic-primary img {
        aspect-ratio: 16/4;
    }
    .s-about__content-end p{
        margin-inline: 4%;
       
       
    }
    .s-about__content-end {
        padding-top: 0;
    }


}

@media screen and (max-width: 600px) {
    .s-about__content-start {
        display: block;
    }

    .s-about__content-start .section-header {
        width: auto;
    }

    .about-pic-primary img{
        aspect-ratio: 1/1;
    }
    
}





/*  FOOTER */
.s-footer {
    padding-top: 10rem;
    padding-bottom     : 2rem;
}

.s-footer__main-end{
    background-color: #000000b2;
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.s-footer h6 {
    color     : #ffffff;
    margin-top: 0;
    font-weight: 500px;
}

.s-footer p{
    color: #fffefe;
}

.s-footer a:focus,
.s-footer a:hover {
    color: var(--color-1-500);
}

.s-footer .grid-cols {
    --min-width-wrap: 250px;
}


.s-footer__top {
    margin-bottom: 9.6rem;
    position     : relative;
}

.s-footer__top::before {
    content         : "";
    display         : block;
    height          : 1px;
    width           : calc(100% - 2 * clamp(1rem, calc(2vw + .2rem), 2.2rem));
    background-color: var(--color-bg);
    position        : absolute;
    top             : 50%;
    left            : clamp(1rem, calc(2vw + .2rem), 2.2rem);
}

.s-footer__bottom {
    font-size  : 1.6666666667rem;
    padding-top: 3.2rem;
    margin-top : 4.8rem;
    color      : #5f6362;
    position   : relative;
}

.s-footer__bottom::before {
    content         : "";
    display         : block;
    height          : 1px;
    width           : calc(100% - 2 * clamp(1rem, calc(2vw + .2rem), 2.2rem));
    background-color: rgba(255, 255, 255, 0.05);
    position        : absolute;
    top             : 0;
    left            : clamp(1rem, calc(2vw + .2rem), 2.2rem);
}



.s-footer .link-list {
    list-style : none;
    margin-left: 0;
}

.s-footer .link-list li {
    padding: 0;
}

.s-footer .link-list a {
    color : #fefffe;
    border: none;
}

.s-footer .link-list a:focus,
.s-footer .link-list a:hover {
    color: #ffffff;
}

.s-footer .opening-hours {
    list-style : none;
    margin-left: 0;
    color: white;
}

.s-footer .opening-hours li {
    display    : flex;
    padding    : 0;
    align-items: baseline;
}

.s-footer .opening-hours__days {
    margin-right: 1.6rem;
}

.s-footer .opening-hours__time {
    font-size     : 1.6666666667rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-block {
    margin-bottom: 1.6rem;
}



/* copyright */
.ss-copyright {
    margin     : 0 6.4rem 0 0;
    line-height: 2.8rem;
}

.ss-copyright span {
    display: inline-block;
}

.ss-copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 0.8rem 0 1rem;
    color  : var(--color-bg);
}

.ss-copyright span:last-child::after {
    display: none;
}



/* 
 * responsive:
 * footer*/
@media screen and (max-width: 1600px) {
}


@media screen and (max-width: 1000px) {
    .s-footer__top {
        margin-bottom: 9.6rem;
    }
}

@media screen and (max-width: 800px) {
}

@media screen and (max-width: 600px) {
    .s-footer {
        --footer-logo-width: 13rem;
    }

    .ss-copyright span {
        display: block;
    }

    .ss-copyright span::after {
        display: none;
    }
}

@media screen and (max-width: 400px) {
}



/*background*/
 