/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
. {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* width */
/*::-webkit-scrollbar {
  width: 5px;
}*/

/* Track */
/*::-webkit-scrollbar-track {
  background: rgba(0,0,0,0);
}*/

/* Handle */
/*::-webkit-scrollbar-thumb {
  background: #1D547F;

}*/

/* Handle on hover */
/*::-webkit-scrollbar-thumb:hover {
  background: rgb(15,144,77);
}*/
html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comfortaa", sans-serif;

}


body {
    background: #e4e3e9 !important;
}

/**Whatsapp button ***/
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 110px;
	right: 30px;
	animation-play-state: paused;

}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
/**scroll top**/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 9999;
  font-size: 3px;
  border: none;project-desc
  outline: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 15px 15px 15px 15px;
  border-radius: 50%;
}

#myBtn:hover {
  background-color: rgba(234,74,38,1);
  color: #000;
}
.arrowUp{
    font-size: clamp(1.2rem, 2.5vw, 3rem);
 }

.navbar {
  background-color: #000;
  border-radius: 30px;
}
.nav-link.navLink {
  color: #fff;
  transition: color 0.4s ease-in-out;
}

.nav-link.navLink:hover {
  color: #ea4a26;

}


.btn.touchBtn{
    border-radius: 30px;
    color: #ffffff;
    border: none;
    background: #ea4a26;
    transition: color 0.4s ease-in-out;
}
.btn.touchBtn:hover{
    color: #000000;
    background: #ea4a26;
}

.btn.whiteBtn{
    cursor: pointer;
    background: #ffffff;
    font-weight: 800;
    border-radius: 30px;
    border: none;
}
.btn.whiteBtn:hover{
    cursor: pointer;
    background: #ffffff;
    font-weight: 800;
    border-radius: 30px;
    border: none;
}

.btn.blackBtn{
    cursor: pointer;
    background: rgba(0,0,0,1);
    color: #ffffff;
    font-weight: 800;
    border-radius: 30px;
    border: none;
    transition: background 0.3s ease-in-out;
}
.btn.blackBtn:hover{
    background: rgba(0,0,0,0.8);
    color: #ffffff;
}

.btn.Btn2, .btn.Btn2:hover{
    cursor: pointer;
    background: #ffffff;
    color: #00000;
    font-weight: 800;
    border-radius: 30px;
    border: 1px solid #000000;
    transition: background 0.3s ease-in-out;
}

/**PROJECT CARD**/
.card.projectCard{
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    height: 75vh;
}

a{
    text-decoration: none !important;
}

.btn.orangeBtn{
    background: rgba(234,74,38,1);
    color: #ffffff;
    font-weight: 800;
    border-radius: 30px;
    border: none;
    transition: background 0.3s ease-in-out;
}
.btn.orangeBtn:hover{
    background: rgba(234,74,38,0.8);
    color: #ffffff;
}

.scrolling-box {
  background-color: #e4e3e9;
  display: block;
  width: 100%;
  max-height: 75vh;
  overflow-y: scroll;
  text-align: center;
  border-radius: 30px;
}

.scrollSection {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn.socialBtn{
    width: 100%;
    background: #808080;
    color: #ffffff;
    border-radius: 30px;
    border: 1px solid #808080;
    transition: background 0.3s ease-in-out;
}
.btn.socialBtn:hover{
    background: #000000;
    color: #ffffff;
    border: 1px solid #808080;
}
.card.serviceCard{
    transition: border 0.3s ease-in-out;
}
.serviceCard:hover{
    border: 2px solid rgba(234,74,38,1);
}

.btn.serviceButton{
    background: #ffffff;
    border-radius: 30px;
    padding: 5px 10px 5px 10px;
    font-weight: 500;
    border: 2px solid #ffffff;
}

.btn.serviceButton:hover{
    background: #ffffff;
    border: 2px solid rgba(0,0,0,0.7);
}


/**gallery**/
.gallery {
  max-width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-card {
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.35s ease-in-out;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery-card:hover {
  flex: 2.25;
}

.gallery:has(.gallery-card:hover)
.gallery-card:not(:hover) img {
  filter: grayscale(100%);
  opacity: 0.5;
}

.noLink{
    text-decoration: none;
    color: #000000;
}