*,
*:before,
*:after {
    box-sizing: border-box;
}


body {
    background-color: #f4f4f4;
    margin: 50px 100px;
    font-size: 18px;
    color: #1f1f1f;
    font-family: 'Roboto', sans-serif;
}

.page {
    min-height: 55vh;
}

.img-fluid {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}


/* navbar
=============================== */

.visibility-small {
   display: none;
}

.nav-vertical-middle {
    min-height: 80vh;
    justify-content: center;
    align-content: center;
    margin-right: 50px;
}

.nav-link,
.nav-link .active {
    text-align: right;
    color: #1f1f1f;
}

.nav-link:hover {
    color: #62ecfb;
}

.vertical-line {
    border-left: 2px solid #000;
    min-height: 250px;
}

.navbar-toggler {
    border: 0;
    margin-bottom: 50px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: block;
    transition: all 0.2s;
}

.middle-bar {
    margin: 5px auto;
}

.offcanvas-header .btn-close {
    margin: 0;
    --bs-btn-close-opacity: 1;
}

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-width: 100%;
   
}

.offcanvas-header {
    padding: 12px 40px;
    margin-bottom: 34px;
}

.offcanvas-body {
    padding: 0 20px;
    min-height: fit-content;
}

.active {
    text-decoration: underline solid 1px #1f1f1f;
    text-underline-offset: 6px;
    transition: 0.2s ease-out color;
}

.active:hover {
    text-decoration: underline solid 1px #62ecfb;
    text-underline-offset: 6px;
}




/* content
=============================== */



.main-page-title-wrapper {
    display: flex;
    align-items: center;
    height: 80vh;
}

.main-page-title {
    line-height: 1;
    text-transform: lowercase;
    font-size: 14vw;
    font-weight: 300;
    /* margin-bottom: 0; */
}

.title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 18px;
}

ul {
    padding: 0;
    list-style-type: none; 
}

.about-list > li {
    padding: 25px 0;
    border-top:2px solid #000;
    transition: all linear 0.2s;
}
.about-list > li:hover {
    transform: scale(1.02);
}

.about-list > li:nth-child(odd) {
    text-align: right;
}

.about-list > li:last-child {
    border-bottom:2px solid #000;
}

.list > a {
    color: #1f1f1f;
    text-decoration: none;
    transition: 0.2s ease-out color;
}

.list > a:hover {
    color: #62ecfb; 
}




/* work
=============================== */




.work-title {
    text-transform: lowercase;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: inherit;
    margin-bottom: 20px;
}

.work-title > a {
    text-transform: lowercase;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: inherit;
    margin-bottom: 20px;
    color: #000;
    text-decoration: none;
    transition: 0.2s ease-out color;
}



.work-title > a:hover {
    color: #62ecfb;
    text-decoration: none;
}

.work-row {
    margin-bottom: 50px;
}

.img-wrapper {
    display: flex;
    justify-content: center;
}




/* shop
=============================== */


.img-wrapper-shop {
    display: flex;
    justify-content: center;
    position: relative;
}

.img-shop {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    animation: fade-up linear 0.1s;
  }
  
  .img-wrapper-shop:hover .img-shop {
    opacity: 0.5;
  }
  
  .img-wrapper-shop:hover .middle {
    opacity: 1;
  }
  
  .text {
    background-color: #121212;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
  }

  .shop-empty-background {
    height: 100%;
    width: 100%;
    padding: 20px;
    background: url(img/shop/soma_KATE\ PUTNIŅA.jpg) no-repeat scroll center top;
    background-size: cover;
    
  }

 


/* home button / footer
=============================== */

.navbar-bottom {
    margin-top: 50px;
   
}


.copyright {
    margin-top: 20px;
    color: #b6b6b6;
}


/* Button-to-top
=================================== */

#myBtn {
    width: 45px;
    height: 45px;
    display: none; /* Hidden by default */

    border: 1px solid #000; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(255, 255, 255, 0); /* Set a background color */
    color: #000; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */  
    /* border-radius: 50%; Rounded corners */
    /* box-shadow: 0 1px 1px rgba(0,0,0,0.15), 
    0 2px 2px rgba(0,0,0,0.15), 
    0 4px 4px rgba(0,0,0,0.15), 
    0 8px 8px rgba(0,0,0,0.15);  */

    position: fixed; /* Fixed/sticky position */
    bottom: 60px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */

    transition: 0.5s; 
}
  
#myBtn:hover {
    background-color: rgba(255, 255, 255, 0); /* Add a dark-grey background on hover */
    color:  #62ecfb;
    border: 1px solid  #62ecfb;
}

.bi-arrow-up,
.bi-arrow-down {
    vertical-align: 0.125px;
}



/* CookieBot
=================================== */

#CybotCookiebotDialog {
    background-color: #f4f4f4!important;
    border-radius: 0!important;
    font-family: 'Roboto', sans-serif!important;
}


#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a {
    color: #000!important;
}


.CybotCookiebotDialogBodyButton {
    background-color: #000!important;
    border: 2px solid #000!important;
    border-radius: 0!important;
    font-weight: 500!important;
}


#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
    border-bottom: 1px solid #000!important;
    color: #000!important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive:hover {
    color: #000!important;
}


#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a, #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink, #CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a, #CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a, #CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a, #CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink, #CybotCookiebotDialogDetailBodyContentTextAbout a {
    color: #000!important;
}

#CybotCookiebotDialog a:hover:after, #CybotCookiebotDialog a:hover:before, #CybotCookiebotDialog button:hover:after, #CybotCookiebotDialog button:hover:before {
    border-color: #000!important;   
}



#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
    color: #4a4a4a!important;
}  

#CybotCookiebotDialogBodyEdgeMoreDetailsLink:hover {
    color: #000!important;
}






/* @media
=============================== */


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

@media (max-width: 768px) {
    .main-page-title {
        font-size: 16vw;
    } 
}

@media (max-width: 667px) {
    body {
        margin: 20px 30px;
    }

    .page {
        min-height: 60vh;
    }

    .visibility-large {
        display: none;
    }
    
    .visibility-small {
       display: block;
    }

     .main-page-title {
        font-size: 20vw;
        font-weight: 500;
    }
    
}



@media (max-width: 597px) {
    .work-row {
        margin-bottom: 0;  
    }

    .img-wrapper,
    .img-wrapper-shop {
        width: 100%;
        margin-bottom: 30px;
    }

    .img-fluid {
        height: 100%;  
    }

    .text {
        padding: 16px 32px;
    }

    .about-list > li:nth-child(odd) {
        text-align: left;
    }
}

@media (max-height: 700px) {
    .shop-empty-background  {
        background: url(img/shop/soma_KATE\ PUTNIŅA.jpg) no-repeat scroll;
        background-size: cover;
    }
}


@media (max-height: 400px) {
    .main-page-title-wrapper {
        height: 70vh;
    }

    .main-page-title {
        font-size: 14vw;
    }

    .about-list > li:nth-child(odd) {
        text-align: left;
    }
  
}    

@media (max-width: 350px) {
    body {
        margin: 20px;
        font-size: 16px;
    }
}
