@media (hover: hover) and (pointer: fine) {
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px #4169e1;
  }
.contact-card a:hover {
  color: #4169e1;
  }
.submit-btn:hover {
  background-color: #4169e1;
  color: #fff;
  }
}


/* @media (min-width: 768px) and (max-width: 1024px) {
    .item_fontef_right h1 {
        font-size: 26px;
        margin-top: 2rem;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .item_fontef_right p {
        font-size: 14px;
    }
} */

@media (max-width:768px) {
  .image_box_container{
    grid-template-columns: repeat(3, 300px) !important;
    overflow-x: auto;
  }
}

/* @media (max-width: 939px) {
  .item_fontef_left {
    display: none;
  }
  .item_fontef_right {
    text-align: start;
    max-width: 90% !important;
  }
}
@media (max-width: 1043px) {
  .item_fontef_right h1 {
    font-size: 29px !important;
    margin-top: 1rem !important;
  }
} */

@media (max-width: 1025px) {
  .beet {
    grid-template-columns: 1fr !important;
  }
  .container_img_beet {
    max-width: 90% !important;
    order: 1;
  }
}

@media (max-width: 845px) {
  .contact_cards_container {
    grid-template-columns: auto;
  }
  .contact_cards_container .contact-card:last-child{
    grid-column: 1/2;
  }
}
@media (max-width:486px) {
  .fas + h3 + div{
    grid-template-columns: auto;
    margin-top: 1.5rem;
  }
}

@media (max-width:400px) {
  .image_box_container{
    display: block !important;
    overflow-y: auto;
    height: 277px;
    scroll-snap-type: y mandatory !important;
    direction: ltr;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .image_box_container::-webkit-scrollbar {
  display: none;
  }
  .image-box:not(.image_box_container .image-box:first-child){
  margin-top: 30px;
  }
  .image-section{
    padding: 100px 40px 100px 16px;
    position: relative;
  }
}
@media (max-width:384px) {
  .image_box_container{
    height: 256px !important;
  }
}
@media (max-width:360px) {
  .image_box_container{
    height: 229px !important;
  }
}
@media (max-width:318px) {
  .image_box_container{
    height: 204px !important;
  }
}
@media (min-width:401px) {
  .dots{
    display: none !important;
  }
}

.dots {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  position: absolute;
  top: 42%;
  right: 0;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 6px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #000;
}



/* header */

@media (max-width: 649px){
    .nav-menu {
      display: none !important;
    }
    .navbar0 {
        grid-template-columns: repeat(2, auto) !important;
    }
    .main_change_language {
        display: none;
    }
    #menu_icon {
        display: block;
    }
    .main_change_language {
        display: none;
    }
}
@media (min-width: 649px) {
  #menu_icon {
    display: none !important;
  }
}

a{
  text-decoration: none;
  color: #ffffff;
}

ul{
    list-style: none;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: -20px 30px 10px 20px;
  height: 100px;
}

#menu_icon {
  width: 46px;
  height: 46px;
  margin-bottom: 2rem;
  margin-right: 1.3rem;
  display: block;
}

#close_icon {
  width: 46px;
  height: 46px;
  margin-bottom: 2rem;
  margin-right: 16px;
  display: none;
  z-index: 1000;
}

.close_icon_active {
  display: block !important;
}

.menu_icon_active {
  display: none !important;
}

.navbar0 {
    display: grid;
    grid-template-columns: repeat(3,auto);
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
 
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  margin-right: -10px;
}

.nav-menu a:hover {
  color: #0078ff;
  transition: 0.3s;
}



.main_change_language {
  background-color: #0078ff;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 1.4rem;
}


.btn-primary:hover {
  background-color: #005fcc;
  transition: 0.3s;
}

.img_header{
  width: 100px;
  margin-right: 50px;
  margin-left: 30px;
  margin-top: -.5rem;
}

.side_bar {
  background-color: #ffffffec;
  position: fixed;
  z-index: 100;
  width: 200px;
  height: 100svh;
  right: 0;
  top: 0;
  border-left: 2px solid #494949;
  transform: translateX(300px);
  -webkit-transform: translateX(300px);
  -moz-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.side_bar > ul li a {
  color: #323232;
}

.side_bar ul {
    position: absolute;
    right: 1.5rem;
    top: 95px;
    font-weight: 600;
    line-height: 40px;
    font-size: 18px;
    padding: 0;
}



.side_bar_language {
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 17px;
}

.menu1_active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}



.change_language > a {
  margin-right: 1.5rem;
  position: absolute;
  bottom: 20px;
}

#close_icon {
  position: relative;
}


/* header */

/* left image */

/* .img_hero_content{
  max-width: 100%;
}

.item_fontef_left{
  max-width: 36%;
}

.fontef{
  display: flex;
  justify-content: space-evenly;
} */


/* left image */







/* .item_fontef_right {
  max-width: 36%;
}

.item_fontef_right h1 {
  margin-top: 3rem;
} */

.beet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 100%;
}

.container_img_beet {
  max-width: 100%;
}
.container_img_beet img {
  width: 100%;
  object-fit: contain;
}

.image_box_container{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.image_box_container::-webkit-scrollbar {
  height: 5px;
  margin-top: 10px;
}

.image_box_container::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 10px;
}

.image_box_container::-webkit-scrollbar-thumb {
  background: #cecece;
  border-radius: 10px;
}




