@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    font-family: "Montserrat", sans-serif;
}
.form-control:focus{
    box-shadow:none;
    border:none;
    outline:none;
    border:1px solid #a3a2a2;
}
.nav-link {
    font-family: 'Work Sans', sans-serif;
    color: #000 !important;
    margin: 10px 25px;
    position: relative;
    padding-bottom: 5px;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70%;
    border-bottom: 1px solid #000;
}
.logo{
    width:57px;
    filter: grayscale(100%) brightness(0%);
    margin-right:1rem;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.navbar-brand .brandname{
    font-family: "Montserrat", sans-serif;
    text-transform:uppercase;
    font-size:2.5rem!important;
}
.navbar-brand .punchline{
    font-family: "Montserrat", sans-serif;
    font-weight:700;
    font-size:0.7rem!important;
    margin-top:-0.3rem!important;
    letter-spacing:1.02rem;
    text-transform:uppercase;
}


.footer p{
    font-family: 'Work Sans', sans-serif;
}

/*------------------- gallery css ------------------*/
.gallery_div {
     font-family: Arial, sans-serif;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     padding: 20px;
}
 .gallery {
     column-count: 5;
     column-gap: 2px;
     width: 95%;
     max-width: 1200px;
}
 .item {
     margin-bottom: 2px;
     break-inside: avoid;
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
 .item.visible {
     opacity: 1;
     transform: translateY(0);
}
 .item img, .item video {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.3s;
}
 .item img:hover {
     cursor:pointer;
}
 
/* Modal styles */
 .gallery_modal .modal {
     display: none;
     position: fixed;
     z-index: 1;
     padding-top: 60px;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.9);
}
 .gallery_modal .modal-content {
     margin: auto;
     display: block;
     width: 80%;
     max-width: 700px;
}
 .gallery_modal .modal-content img {
     width: 100%;
     height: auto;
}
 .gallery_modal .modal-caption {
     margin: auto;
     display: block;
     width: 80%;
     max-width: 700px;
     text-align: center;
     color: #ccc;
     padding: 10px 0;
}
 .gallery_modal .close {
     position: absolute;
     top: 50%;
     color: #fff;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
     cursor: pointer;
     user-select: none;
}
 .gallery_modal .close {
     top: 15px;
     right: 35px;
}
 .gallery_modal .close:hover, .gallery_modal .close:focus{
     color: #bbb;
     text-decoration: none;
}


.gallery_modal .footer_link{
    color:#000;
}


/*================== about page style =================*/
.about_img img{
    height:250px;
    width:100%;
    object-fit:cover;
}
.about_page h5{
    font-family: "Montserrat", sans-serif;
    font-weight:300;
}
.about_page p, .about_page li, .about_page a{
    font-family: 'Work Sans', sans-serif;
    color:#000;
}
.about_page strong{
    font-weight:550;
}
.about_page i{
    font-size:0.6rem;
}


/*================== contact page style =================*/
.contact_page h1{
    font-family: "Montserrat", sans-serif;
    font-weight:500;
}
.contact_page p, .contact_page a{
    font-family: 'Work Sans', sans-serif;
    color:#000;
}
.contact_page i{
    font-size:0.6rem;
}
.contact_page .content{
    margin-top:3rem;
    padding-top:3rem;
}


/*===================== portfolio_page ================*/
.portfolio_page .bg-image {
	background-size: cover;
	background-position: center;
	height: 400px;	position: relative;
}

.portfolio_page .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.portfolio_page .centered {
	position: absolute;
	top: 40%;
	left: 50px;
	transform: translateY(-50%);
	color: white;
	text-align: left;
}

.portfolio_page .centered h5{
    font-family: 'Work Sans', sans-serif;
	color: white;
	margin-bottom:40px;
	font-weight:400;
}
.portfolio_page .btn-view-project {
    font-family: 'Work Sans', sans-serif;
	background-color: transparent;
	color: white;
	border: 2px solid white;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 1rem;
	transition: background-color 0.3s, color 0.3s;
	font-weight:400;
}

.portfolio_page .btn-view-project:hover {
	background-color: white;
	color: #333;
}

/*---------------- shop--------------*/
.shoppage h4{
    font-family: "Montserrat", sans-serif;
    font-weight:500;
}

/*---------------- product details page --------------*/
.pro_details_page .product-details {
	padding: 20px;
}

.pro_details_page .product-title {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: bold;
}

.pro_details_page .product-price del,
.pro_details_page .product-price b {
	font-family: 'Work Sans', sans-serif;
	font-size: 20px;
	color: #444;
	margin-top: 10px;
}

.pro_details_page .product-description,
.pro_details_page .product-description div {
	font-family: 'Work Sans', sans-serif;
	margin-top: 20px;
	font-size: 16px;
	text-align: justify;
}

.pro_details_page .product-description a {
	color: #000;
	font-weight: bold;
	text-decoration: underline;
}

.pro_details_page .product-includes li {
	font-family: 'Work Sans', sans-serif;
}

.purchase-button {
	font-family: 'Work Sans', sans-serif;
	background-color: transparent;
	color: #000;
	border: 2px solid #000;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 1rem;
	transition: background-color 0.3s, color 0.3s;
	font-weight: 400;
}

.purchase-button:hover {
	background-color: #000;
	color: #ebeff5;
}

.pro_details_page .carousel-inner img {
	width: 100%;
	height: 100%;
}

/*----------- login style ---------------*/
.login_form .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

.login_form #formContent {
  border-radius: 10px;
  background: #fff;
  padding: 0;
  width: 90%;
  max-width: 450px;
  position: relative;
  text-align: center;
}

.login_form #formFooter {
  padding: 25px;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.login_form h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}

/* FORM TYPOGRAPHY */
.login_form input[type=button], .login_form input[type=submit] {
  background-color: #949996;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 10px 30px 0 rgba(189, 189, 189,0.4);
  border-radius: 5px;
  margin: 5px 20px 40px 20px;
  transition: all 0.2s ease-in-out;
}

.login_form input[type=button]:hover, .login_form input[type=submit]:hover, .login_form input[type=reset]:hover {
  background-color: #000;
}

.login_form input[type=button]:active, .login_form input[type=submit]:active, .login_form input[type=reset]:active {
  transform: scale(0.95);
}

.login_form input[type=text], .login_form input[type=email], .login_form input[type=password] {
  background-color: #f6f6f6;
  border: 2px solid #f6f6f6;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
}

.login_form input[type=text]:focus, .login_form input[type=email]:focus, .login_form input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #000;
}

.login_form input[type=text]:placeholder, .login_form input[type=email]:placeholder, .login_form input[type=password]:placeholder {
  color: #cccccc;
}

/* ANIMATIONS */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.login_form .fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 0.2s;
  -moz-animation:fadeIn ease-in 0.2s;
  animation:fadeIn ease-in 0.2s;
  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
}

.login_form .fadeIn.first {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.login_form .fadeIn.second {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.login_form .fadeIn.third {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.login_form .fadeIn.fourth {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}
/* OTHERS */
.login_form *:focus {
  outline: none;
}

.login_form #icon {
  width: 60%;
}


.password-container {
    position: relative;
    width: max-content;
}

#signup-password {
    padding-right: 40px; /* Add padding to the right so text doesn't overlap with the icon */
}

#toggle-password {
    position: absolute;
    right: 55px; /* Adjust the position of the icon */
    top: 56%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333; /* Adjust icon color */
    opacity:0.6;
}


/*------------------- mobile responsive -----------------------*/
@media (max-width: 767px) {
    .nav-link {
        text-align:center;
    }
    .nav-link.active::after {
        width: 30%;
    }
    .navbar-brand {
      margin-left:1rem;
    }
    .navbar-brand .brandname{
        font-size:1.5rem!important;
    }
    .navbar-brand .punchline{
        font-size:0.5rem!important;
        letter-spacing:0.4rem;
    }
    /*-------------- gallery --------------*/
    .gallery {
         column-count: 2;
    }
    /*------------ about page --------------*/
    .about_img img{
        height:120px;
    }
    /*---------------- shop--------------*/
    .shoppage p{
        font-size: 0.8rem;
    }
    
    /*-------------- contact page --------------*/
    .contact_page .content{
        margin-top:0;
        padding-top:0;
    }
    /*------------- portfolio page ----------*/
    .portfolio_page .bg-image {
        width:100%;
    	height: 200px;
    }
    .portfolio_page .centered {
    	left: 30px;
    }
    .portfolio_page .centered h5{
    	font-weight:300;
    	font-size:1.5rem;
    }
    .portfolio_page .btn-view-project {
    	padding: 10px 15px;
    }
    /*---------- password togle ------*/
    #toggle-password {
        right: 52px;
        top: 55%;
    }
    /*----------------- login modal -------------*/
    .login_form .wrapper {
      padding: 5px;
    }
    .login_form input[type=text], .login_form input[type=email], .login_form input[type=password] {
      padding: 15px 10px;
    }

}
 @media (max-width: 480px) {
     .gallery {
         column-count: 2;
    }
}





