/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap'); */

html {
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
}

/* Webpage Scrollbar */
body::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

body::-webkit-scrollbar{
	width: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb{
  border-radius: 10px;
	background-color: #8a8a8a;
}

.map-container {
  height: 42rem;
  z-index: -1;
}

.navigation{
  height: 85vh;
  background-image: url('../assets/images/hero-contact.jpg'); 
  background-position: center; 
  background-size: cover;
}

.contact-wrapper {
  margin-top: -100px;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(30px);
}

/* BACK TO TOP Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.back-to-top i {
  background: linear-gradient(
    to right,
    #667eea,
    #8e37d7
  );
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
  color: white;
  padding: 10px;
  font-size: 2rem;
  border-radius: 0.5rem;
}

.back-to-top i:hover {
  cursor: pointer;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* Navigation bar links animation: */
.hover-animation {
  display: inline-block;
  position: relative;
}

.hover-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* NAVBAR ACTIVE LINK STYLE */
.text-effect {
  color: #0087ca;
}

/* Responsive styles */
@media only screen and (max-width: 390px) {
  .navigation {
    display: none;
  }
  .contact-wrapper {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .navigation {
      height: 45vh; /* or any other value */
  }
}

@media only screen and (min-width: 600px) {
  .navigation {
      height: 50vh; /* or any other value */
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
  .navigation {
      height: 55vh; /* or any other value */
  }
}

@media only screen and (min-width: 992px) {
  .navigation {
      height: 80vh; /* or any other value */
  }
}