@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');


:root {
  --bs: 0.25em 0.25em 0.75em rgba(0,0,0,.25),
        0.125em 0.125em 0.25em rgba(0,0,0,.15);

  --ff-primary: "Montserrat", sans-serif;
  --ff-secondary: "Playfair display", sans-serif;

  --clr-dark:  #000;
  --clr-light:  #fff;
  --clr-accent: #6699cc;
  --clr-accent-7t: rgba(102, 153, 204, 0.7);
}

html {
  scroll-behavior: smooth;
}

 html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.body{
  font-size: 100%;
  height: 100%;
  padding-top: 50px;
}

.img-blog {
  height: 500px;
  object-fit: cover;
  margin: 3px;
}

.adjust-img-top-left {
  object-position: top left;
}


/* MODAL images adjustemnet on illustration page */
.modal-content {
  background-color: rgba(255, 255, 255, 0);
  max-width: 1200px;
  border: none;
}

.modal-dialog {
  max-width: 1200px;
}

.card-img:hover {
  cursor: pointer;
}

.card {
  -webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
}

/* end of modal images adjustments" */
.playfair {
  font-family: "Playfair display", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.heading-h5-style {
    font-size: 1.3em;
    font-weight: bold;
}

.custom-heading-new {
  color: black;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 60px;
  line-height: 1.35;
}

.air {
  padding: 50px;
  margin-top: 10px;
}


.no-decor {
  text-decoration: none;
}

.custom-heading-h4 {
  font-size: 20px;
  font-weight: 600;
}

.navbar-toggler-icon {
    width: 48px;
    height: 48px;
  }

a.active {
    color: var(--clr-accent);
    font-weight: 700;
}

a.active-footer {
  font-weight: 700;
}

.contact-link {
  color: #fff;
}


.contact-link:hover {
  text-decoration: none;
}

.aboutme {
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  text-align: justify;
}

.about-me__img {
  box-shadow: var(--bs);
}


.my-header {
  font-family: var(--ff-secondary) !important;
}

.about-page {
  background-image: url('/images/so-white.png');
}

.services-page {
  background-image: url('/images/so-white.png');
  font-family: var(--ff-primary);
  line-height: 1.8;
}

 .li-undotted {
   list-style-type: none;
}

.services-link {
  color: var(--clr-accent);
}

.services-link:hover  {
  text-decoration: none;
  font-weight: bold;
  color: var(--clr-accent);
}

.services__img {
  box-shadow: var(--bs);
}


.link-about {
  color: inherit;
}

.link-about:hover {
  color: var(--clr-accent);
  text-decoration: none;
}

.portrait-about {
  height: 700px;
}

.illustration-card {
  transition: 0.3s;
}

.illustration-card:hover {
  opacity: 0.6;
}


.contact-body {
  height: 100%;
  margin: 0;
  background-color: var(--clr-accent);
  background-image: url("/images/autumn.jpg");


  background-image: image-set(
    "/images/autumn.avif" type("image/avif"),
    "/images/autumn.webp" type("image/webp"),
    "/images/autumn.jpg" type("image/jpeg")
    );
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}



.navbar-adapted-for-slider {
  position: absolute;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0);
}



.navbar-collapse {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  white-space: nowrap;
}



.navbar-light .navbar-nav .nav-link.active {
    color: var(--clr-accent);
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link.active-black {
    color: black;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link.active-black :hover {
    color: var(--clr-light) !important;
    font-weight: 700;
}


.navbar-light .navbar-nav .nav-link {
  color: black;
}



.navbar-light .navbar-nav .nav-link:hover {
  color: var(--clr-accent);
}


@media only screen and (max-width: 991px) {

  .navbar-collapse {
    font-family: var(--ff-primary);
    font-weight: 400;
    white-space: nowrap;
    background-color: rgba(238, 238, 238, 0.9);
  }

  .navbar-light .navbar-nav .nav-link {
    color: black;
    font-size: 1.3rem;
  }
}

.dropdown-toggle {
  color: black;
  text-decoration: none;

}
.dropdown-toggle:hover {
  text-decoration: none;
  color: var(--clr-accent);
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.0);
  border: none;
}

.dropdown-menu-footer {
  background-color: white;
  border: none;
}

.customized-dropdown-link {
  color: black;
}

.customized-dropdown-link:hover {
  color: var(--clr-accent);
  text-decoration: none;
}

.offcanvas-header{ display:none; }
.screen-overlay {
  height: 100%;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  opacity:0;
  visibility:hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition:opacity .2s linear, visibility .1s, width 1s ease-in;
}
.screen-overlay.show {
  transition:opacity .5s ease, width 0s;
  opacity:1;
  width:100%;
  visibility:visible;
}


#offcanvas-logo{
  max-width: 8rem;
  max-height: 10rem;
}




@media only screen and (min-width: 250px){
  #offcanvas-logo {
    color: var(--clr-accent);
    max-width: 5rem;
    max-height: 5rem;
  }
}


@media only screen and (min-width: 493px){
  #offcanvas-logo {
    max-width: 6rem;
    max-height: 8rem;
  }
}

@media only screen and (min-width: 414px){
  #offcanvas-logo {
    max-width: 6rem;
    max-height: 8rem;
  }
}

@media only screen and (min-width: 768px){
  #exlibris_navbrand {
    max-width: 8rem;
    max-height: 10rem;
  }
}

.btn-portfolio {
  background-color: var(--clr-accent);
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: normal;
  box-shadow: 2.3px 2.6px 2.6px rgb(102,153,204,.4);
  width: 150px;
  margin: auto;
}

.btn-portfolio:hover {
  font-weight: bold;
  color: white;
}

.btn-portfolio-white {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #36454F;
  box-shadow: 1.3px 2.6px 2.6px hsl(0deg 0% 0% / 0.43);
  width: 150px;
  margin-bottom: 25px;
}

.btn-portfolio-white:hover {
  font-weight: bold;
  color: #808080;
}

/*button for scroling up */
#scrollBtn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--clr-accent-7t);
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  z-index: 1000;
}

#scrollBtn:hover {
  background-color: #555;
}

@media (min-width: 650px) {
  #scrollBtn {
    right: 20px;
    background-color: var(--clr-accent);
  }
}





@media all and (max-width:992px) {

 .offcanvas-header{ display:block; }

 .mobile-offcanvas{
    visibility: hidden;
    transform:translateX(-100%);
    border-radius:0;
    display:block;
    position: fixed;
    top: 0; left:0;
    height: 100%;
    z-index: 1200;
    width:65%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility .2s ease-in-out, transform .2s ease-in-out;
  }

  .mobile-offcanvas.show{
    visibility: visible;
    transform: translateX(0);
  }

  .navbar-nav .nav-link {
    padding: 10px;
  }
}




#exlibris_navbrand {
  max-width: 8rem;
  max-height: 10rem;
}

.navbarbrand {
  margin: 0;
}



@media only screen and (min-width: 250px){
  #exlibris_navbrand {
    max-width: 5rem;
    max-height: 5rem;
  }
}


@media only screen and (min-width: 493px){
  #exlibris_navbrand {
    max-width: 6rem;
    max-height: 8rem;
  }
}

@media only screen and (min-width: 414px){
  #exlibris_navbrand {
    max-width: 6rem;
    max-height: 8rem;
  }
}
@media only screen and (min-width: 768px){
  #exlibris_navbrand {
    max-width: 8rem;
    max-height: 10rem;
  }
}


.zoom-brand {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.zoom-brand:hover {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


#designer_name {
  font-family: "Playfair display", sans-serif;
  text-align: center;
}


#designer_name h1 {
  font-size: 1.5rem;
}

#designer_name h2 {
  font-size: 1.25rem;
}

p.designer-name {
  font-size: 1.5rem;
  margin: 0;

}

p.designer-work {
  font-size: 1.25rem;
  margin: 0;
}


@media only screen and (max-width: 493px){
  #designer_name h1 {
      font-size: 1.3rem;
  }

  #designer_name h2  {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 576px){
  #designer_name h1 {
      font-size: 1.1rem;
  }

  #designer_name h2  {
    font-size: 1rem;
  }
}

.breadcrumb li:not(:first-child)::before {
  content: "|";
}

.customized-breadcrumb {
  background-color: rgba(0, 0, 0, 0);
}
.customized-breadcrumb .breadcrumb-item a, li {
 font-family: "Montserrat", sans-serif;
}

.customized-breadcrumb .breadcrumb-item a {
  color: var(--clr-accent);
}


.contact-breadcrumb .breadcrumb-item a {
  color: #ffffff;
}


.customized-link {
  color: black;
  font-family: "Montesrrat", sans-serif;
  font-weight: 400;
}

.customized-link:hover {
  text-decoration: none;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: black;
}

.carousel-item {
    height: 100vh;
}

.viewport-height {
  width: 100%;
  height: 100vh;
}

#mainphrase {
  font-family: "Playfair display", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

#work_samples_carousel h4 {
  font-family: "Playfair display", sans-serif;
  font-weight: 700;
}

#work_samples_carousel p {
  font-family: "Montserrat", sans-serif;
}


.card {
  border: none;
}

.portfolio-link {
  text-decoration: none;
  color: black;
}
  .portfolio-link:hover {
    text-decoration: none;
    color: var(--clr-accent);
  }



  .moving-img-container{
    overflow: hidden;
    z-index: 300;

  }

  .moving-image:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }


  .moving-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: all 0.3s ease-out;
  }




.card-title {
  font-family: "Playfair display", sans-serif;
  font-weight: 700;

}

.card-text {
  font-family:"Montserrat", sans-serif;
  font-weight: 400;
}

#brands-customers img {
  padding: 5px;
  width: 150px;
}

#brands-customers h3 {
  font-family: "Playfair display", sans-serif;
  text-align: center;
}

.footer {
  background: lightgrey;
  font-family: "Montserrat", sans-serif;
}



.footer-image-container{
  height: 100%;
  display: flex;
  align-items:center;
  justify-content:center;
}

.footer img {
  max-width: 8em;
  max-height:8.2em;
}


.footer-copyright {
  font-size: 0.8em;
}

.footer-menu {
  font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width: 992px){
  .footer-menu{
    text-align: center;
  }
}

.footer-menu li {
  margin: 0.35em 0;
}
.footer-link {
  color: black;
}


.footer-link:hover {
  color: var(--clr-accent);
  text-decoration: none;
}



.slogan {
    font-family: "Playfair display", sans-serif;
    text-align: center;
    font-size: 1.25em;

}

@media only screen and (max-width: 992px){
  .slogan {
      text-align: center;
  }
}

.action-button{
  font-family: "Playfair display", sans-serif;
  box-shadow: 1.3px 2.6px 2.6px hsl(0deg 0% 0% / 0.43);
}

.action-button-shadowy {
  font-family: "Playfair display", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


@media only screen and (max-width: 992px){
  .action-button {
          width: 150px;
          height: 50px;
          line-height: 50px;
          padding: 0;
  }
}

.footer-social-icon-container {
text-align: center;
align-items: center;
padding: 0;
line-height: 150px;

}

.customized-social-button {
  width: 48px!important;
  height: 48px!important;

}

.btn-social-icon > :first-child {
  line-height: 48px!important;
}




@media only screen and (max-width: 992px) {
  .customized-social-icon{
     width: 48px;
     height: 48px;
  }
}


#contact-main h4 {
  font-family: "Playfair display", sans-serif;
}

#contact-main label button link {
  font-family: "Montserrat", sans-serif;
}

#contact-main {
  color:white;
}

.btn-look-carefully {
  background-color: lightgrey;
  font-family: "Montserrat", sans-serif;

}

.btn-look-carefully_bold {
  background-color: lightgrey;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.btn-look-carefully_background {
  background-color: var(--clr-accent);
  font-family: "Montserrat", sans-serif;
  color: white;
}

.btn-look-carefully-background-bold {
  background-color: var(--clr-accent);
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: normal;
  box-shadow: 2.3px 2.6px 2.6px rgb(102,153,204,.4);
}

.btn-look-carefully-background-bold:hover {
  font-weight: bold;
  color: white;
}

.styled-link {
  font-family: "Montserrat", sans-serif;
  color: var(--clr-accent);
}

.styled-link-bold {
  font-family: "Montserrat", sans-serif;
  color: var(--clr-accent);
  font-weight: bold;
}

.custom-heading {
  color: white;
  font-family: "Playfair display", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 60px;
  line-height: 1.35;

}



.custom-paragraph {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;


}

.contact-card {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  white-space: nowrap;
  line-height: 0.75;
}

@media only screen and (max-width: 500px) {

  .custom-heading {
    color: white;
    font-family: "Playfair display", sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 60px;
    line-height: 1.35;

  }

  .contact-card {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    white-space: nowrap;
    line-height: 0.75;
  }
}


.text-404 {
font-size: 30px;
text-align: justify;
}

.policy-text {
  font-family: 'Montserrat', sans-serif;
}
.policy-heading {
  font-size: 30px;
}

.policy-link {
  font-size: 0.8em;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 600px) {
  .policy-heading {
    font-size: 18px;
  }
  .policy-breadcrumb {
    font-size: 16px !important;
  }

}

@media only screen and (min-width: 350px) {
  
  .text-404 {
    font-size: 20px;
    text-align: center;
  }
}

  @media only screen and (min-width: 576px) {
    .text-404 {
      font-size: 20px;
      text-align: left;

    }
}
