*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-weight: 550;  
  color: #000;  
}

.html {
  font-size: 62.5%;
}

html {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

@font-face {
    font-family: Helvetica, sans-serif;
}

.active {
  color: #151bff;
  cursor: default;
  pointer-events: none;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: #fff;
}

footer {
    text-align: center;
    position: relative;
    margin-top: 5%;
    margin-bottom: 2%;
    font-family: arial;
}

.contact-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zoom-dezoom {
  animation: zoomInOut 2s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
    footer {
        margin-top: 5%;
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 480px) {
    footer {
        margin-top: 5%;
        margin-bottom: 5%;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fa-fade {
    animation: fadeInOut 1.3s ease-in-out infinite;
}

body .fa-fade {
    animation: fadeInOut 1.3s ease-in-out infinite;
}

@keyframes blinkEffect {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

  .image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  .image-grid div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .image-grid img {
    width: 100%;
    max-width: 170px;
    height: auto;
  }
  @media (max-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .image-grid img {
      max-width: 170px;
    }
  }
  @media (max-width: 480px) {
    .image-grid img {
      max-width: 120px;
    }
  }

.center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-align: center;
}

.center-content i {
    margin-right: 15px;
    font-size: 1.6em;
}

.fas, .fa-solid {
    color: #dddddd; 
}

.center-content span {
    font-size: 1em; 
    color: #dddddd; 
    display: inline-block;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #dddddd;
    border: 1px solid #333;
    text-align: center;
    line-height: 20px;
}

.custom-checkbox input:checked ~ .checkmark::before {
    content: '\2713';
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.logo {
    display: flex;
    align-items: center;
}

.language-links {
    margin-left: 10px;
    position: relative;
    margin-top: -3px;   
}

.custom-select {
    position: relative;
    width: 70px;
}

.select-selected {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.select-selected img {
    margin-right: 5px;
    width: 16px;
    height: auto;
    vertical-align: middle;
}

.select-selected:hover {
    background-color: #32cd32;
	transition: background-color 0.8s ease;
}

.select-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
	top: 27px;	
}

.select-items div {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;

}

.select-items div:hover {
    background-color: #32cd32;
    transition: background-color 0.8s ease;	
}

.select-items img {
    margin-right: 5px;
    width: 16px;
    height: auto;
    vertical-align: middle;
}

.select-hide {
    display: none;
}

.custom-select:hover .select-items {
    display: block;
}

.flag-icon {
    width: 16px;
    height: auto;
    vertical-align: middle;
}

.pipe {
  margin-left: -5px;
  margin-right: -5px;
}

.map-container iframe {
    width: 100%;
    display: block;      
    margin: auto;
}

@keyframes initAnimation {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-30deg);
  }
}

a:link{text-decoration:none}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.p {
  font-weight: 550;
  font-family: Helvetica, sans-serif;  
}

.h3 {	
  font-family: Helvetica, sans-serif;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
}

    .blinking-btn {
        font-size: 18px;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 0; }
        100% { opacity: 1; }
    }

.btn-primary {
  color: #fff;	
  background: #000;
  font-family: Helvetica, sans-serif;   
}

@media (hover: none) {
  .btn-primary:hover {
    background: #000 !important;
    color: #fff !important;
  }
}

.btn-primarya {
  color: #1713e4;	
  background: #fff;
  font-family: Helvetica, sans-serif;   
}

@media (hover: none) {
  .btn-primarya:hover {
    background: #000 !important;
    color: #fff !important;
  }
}

.btn-primaryb {
  color: #000;
  background: #fff;
  font-family: Helvetica, sans-serif;  
}

.btn-primaryz {
  color: #dddddd;
  background: #0f0f0f;
  font-family: Helvetica, sans-serif;  
}

.btn-primary:hover {
  color: #000;
  background: #fff;  
  transition: background 0.3s ease-in-out;
}

.btn-primarya:hover {
  color: #fff;	
  background: #000;
  transition: background 0.3s ease-in-out;
}

.btn-primaryb:hover {
  color: #fff;	
  background: #000;
  transition: background 0.3s ease-in-out;
}

.member-img img:hover {
  opacity:0.3 !important;
transition: 0.6s;
}

.fgdgds img:hover {
transition: 0.6s;
mix-blend-mode: soft-light;
}
	
h1 {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
   }

h2 {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
   } 

h3 {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
   }   
	
h4 {
  font-family: Helvetica, sans-serif;
  font-size: 20px;
   }

h5 {
  font-family: Helvetica, sans-serif;
  font-size: 15px;				
   }	

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 0px 15px 3px #1713e4;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  height: 50px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
}

  font-family: Helvetica, sans-serif;
}

.menu-items a {
  text-decoration: none;
  color: #1713e4;
  font-weight: 550;
  transition: color 0.3s ease-in-out;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
}

.menu-items a:hover {
  color: #151bff;
  transition: color 0.6s ease-in-out;
}

.menu-items .parent {
  position: relative;
}

.menu-items .parent a:hover i.fa-angle-double-down:before {
  color: #151bff;
}

.menu-items .sub-menu {
  display: none;
  position: absolute;
  background-color: #dddddd;
  border: 0px solid #ccc;
  padding: 5px;
  margin: 0;
  z-index: 1;
  top: 15px;
  transition: opacity 0.5s;
  opacity: 0;
  width: 120px;
}

.menu-items .sub-menu li {
  list-style: none;
  font-size: 0.5rem;
  font-family: Helvetica, sans-serif;
  margin: 10px;
}

.menu-items .parent:hover .sub-menu,
.menu-items .sub-menu:hover {
  display: block;
  opacity: 1; 
}

@media (max-width: 768px) {
  .menu-items .sub-menu {
    position: static;
    display: none;
    background-color: transparent;
    width: 100%;
    margin-top: 0;
	margin-left: 10px;	
    padding: 2px 0;
  }

  .menu-items .sub-menu li {
    margin: 2px 0;
  }

  .menu-items .parent:hover .sub-menu,
  .menu-items .sub-menu:hover {
    display: block;
    opacity: 1;
    position: relative;
  }
}

@media (max-width: 768px) {
  .sub-menu {
    display: none;
    position: absolute;
    background-color: #dddddd;
    border: 0px solid #ccc;
    padding: 5px;
    margin: 0;
    z-index: 1;
    top: 35px;
    transition: opacity 0.5s;
    opacity: 0;
  }

  .sub-menu li {
    list-style: none;
    font-size: 0.5rem;
    font-family: Helvetica, sans-serif;
    margin: 0;
  }

  .parent:hover .sub-menu,
  .sub-menu:hover {
    display: block;
    opacity: 1;
  }
}

.logo {
  order: 1;
  font-size: 2.3rem;
  margin-bottom: 0.1rem;
}

.showcase-area {
  height: 35vh;
  background: linear-gradient(
      rgba(240, 240, 240, 0.144),
      rgba(255, 255, 255, 0.336)
    ),

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.6rem;
}

.main-title {
  text-transform: uppercase;
  margin-top: 1.5em;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
}

#about h1 {
  font-size: 1.2rem;
  color: #000;
  font-family: Helvetica, sans-serif;
  font-weight: 550;
}

#about h2 {
  font-size: 1.2rem;
  color: #000;
  font-family: Helvetica, sans-serif;
  font-weight: 550;
}

#about h3 {
  font-size: 1.2rem;
  color: #dddddd;
  font-family: Helvetica, sans-serif;
  font-weight: 550;
}

#about p {
  font-size: 1rem;
  color: #1713e4;
  font-weight: 550;
 
}

#about .small {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.about-img {
  flex: 1 1 400px;
  padding: 30px;
  transform: translateX(150%);
  animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes about-img-animation {
  100% {
    transform: translate(0);
  }
}

.about-text {
  flex: 1 1 400px;
  margin: auto;
  opacity: 0;
  animation: about-text-fade 1s ease-in-out forwards;
}

@keyframes about-text-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes about-text-animation {
  100% {
    transform: translate(0);
  }
}

.about-img img {
  display: block;
  height: 400px;
  max-width: 100%;
  margin: auto;
  object-fit: cover;
  object-position: center;
}

.img-container {
  margin: 0 1rem;
  position: relative;
}

.img-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  text-align: center;
  transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
  color: #dddddd;
  font-size: 2.2rem;
}

.img-content a {
  font-size: 1.2rem;
}

.img-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  opacity: 0;
  z-index: 1;

  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.img-container:hover .img-content {
  opacity: 1;
  top: 40%;
}

#testimonials {
  padding: 5rem 0;
  background: rgba(243, 243, 243);
}

.testimonial-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
  color: #555;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  padding: 1rem;
}

.testimonial-box .checked {
  color: #dddddd9529;
}

.testimonial-box .testimonial-text {
  margin: 1rem 0;
  color: #444;
}

.testimonial-box {
  text-align: center;
  padding: 1rem;
}

.customer-photo img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: auto;
}

#contact {
  padding: 5rem 0;
}

.contact-container {
  display: flex;
  background: #fff;
}

.contact-img {
  width: 50%;
}

.contact-img img {
  display: block;
  height: 400px;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.form-container {
  padding: 1rem;
  width: 50%;
  margin: auto;
}

.form-container input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  box-shadow: none;
  outline: none;
  margin-bottom: 1rem;
  color: #444;
}

.form-container select {
    font-size: 1.2rem;
    padding: 2px 5px;
	  display: block;
  width: 50%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  box-shadow: none;
  outline: none;
  margin-bottom: 1rem;
  color: #000;
}

.form-container textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  color: #444;
  outline: none;
  padding: 1rem 0;
  resize: none;
}

.form-container h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #1713e4;
  margin-bottom: 1rem;
  margin-top: -1.2rem;
}

.form-container h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #1713e4;
  margin-bottom: 1rem;
  margin-top: -1.2rem;
}

.form-container h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #1713e4;
  margin-bottom: 1rem;
  margin-top: -1.2rem;
}

.form-container a {
  font-size: 1rem;
}

.form-container p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .navbar {

  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 14px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 10px;
    background: #000;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
	width: 50%;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 100% 100%;
    transition: transform 0.4s ease-in-out;
	width: 50%;
    transform: scaleX(-1);
  }
  
.navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
}

.navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
    width: 100%;
}

.navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg) scaleX(1) translateY(0px);
    width: 100%; 
    transform-origin: 0% 0%;
}  

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 195px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 0px 0px 15px 3px #1713e4;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
   
  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 2rem;
    margin-bottom: 0.8rem;	
  }
  
  .responsive {
  width: 100%;
  height: auto;
  }  

@media (max-width: 500px) {
  html {
    font-size: 65%;
  }

  .navbar .menu-items li{
      font-size: 1.6rem;

  }

  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    width: 90%;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-img {
    width: 90%;
    margin: 3rem auto;
  }

  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 3rem;
  }

  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    font-weight: 500;

  }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .img-container h3 {
        font-size: 1.5rem;
    }

    .img-container .btn {
        font-size: 0.7rem;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .showcase-area {
         height: 50vmax;
    }
}
