body, html {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  background-color: #ffffff;
  color: #252525;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
   /* overflow: auto; */
  -ms-overflow-style: none;  /*IE và Edge */
  scrollbar-width: none;    /* Firefox */
}

h2{
  font-size: 25px;
  font-weight: 500;
  color: #D60C2E;
  text-align: center;
  margin-bottom: 10px;
}

h3{
  font-size: 20px;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* đảm bảo nằm trên các phần tử khác */
        background-color: white; /* hoặc màu bạn muốn */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* tạo hiệu ứng đổ bóng nhẹ */
}

.top_bar {
  width: 100%;
  display: flex;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 0; */
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.name_company{
    width: 25%;
    display: block;
    align-items: center;
    white-space: nowrap;
    margin-left: 10px;
}

#nameid {
  font-weight: 500;
  font-size: 20px;
  color: #D60C2E;
}

.top_info {
  display: inline-block;
  height: 100%;
  align-items: center;
  gap: 30px;
  margin-right: 20px;
  /* flex-direction: row; */
  overflow: hidden;
}

.top_info ul{
  height: 100%;
  align-items: center;
  display: flex;
}

.top_info ul li{
  height: 100%;
  display: flex;
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 10px;
  align-items: center;
}



.top_info ul li span {
  margin-left: 8px;
  color: #252525;
  overflow: hidden;
  align-items: center;
}

.top_info ul li:hover span {
  color: #D60C2E;
}



.logo_menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
        /* margin: 20px 0; */
}

.logo {
        width: 20%;
        /* height: 30px; */
        /* display: flex; */
        align-items: center;
        text-align: left;
        /* justify-content: center; */
}

.logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
        margin-left: 20px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-menu {
  width: 70%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-right: 10px;
}

/* Menu ngang */
nav {
  background-color: #ffffff;

  /* font-family: Arial, sans-serif; */
}

.menu {
        width: 100%;
        list-style: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
}

.menu > li {
  position: relative;
  justify-content: flex-end;
}

.menu > li > a {
  display: block;
  padding: 15px 20px;
  color: #252525;
  text-decoration: none;
  font-size: 20px;
  font-weight: 450;
  white-space: nowrap;
  overflow: hidden;
}

.menu > li > a:hover {
  color: #D60C2E;
}



/* Dropdown dọc */
.submenu {
  position: absolute;
  top: 85%;
  left: 0;
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  min-width: 220px;
  height: 100px;
  z-index: 1000;
  /* text-decoration: none; */
  list-style-type: none;
  border-radius: 5px;
  /* border-bottom-right-radius: 5px; */
  box-shadow: 2px 4px 5px 4px #00000033;
}

.menu li:hover .submenu {
  display: flex;
}


.submenu li{
  display: flex;
  /* height: 50px; */
  width: 100%;
}

.submenu li a {
  padding-top: 20px;
  padding: 10px 15px;
  height: 50px;
  width: 100%;
  font-size: 18px;
  /* color: white; */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.submenu li a:hover {
  background-color: #f3f3f3;
  color: #D60C2E;
  width: 100%;
  /* height: 50px; */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}



.languages{
        width: 10%;
        /* display: block; */
        /* justify-content: flex-end; */
        align-items: center;
        /* position: absolute; right: 0; */
        margin-right: 0px;
}

.languages ul {
        width: 100%;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        text-align: right;
        /* position: relative; */
}

.languages ul li {
        display: block;
        align-items: center;
        height: 100%;
        margin-left: 5px;
        text-align: right;
        margin-right: 5px;

}       

.img_flag{      
        width: 30px;
        height: 20px;
        border-radius: 15%;
        object-fit: cover;
        box-shadow: 0 2px 5px #00000033;
}

.languages img:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        box-shadow: 0 2px 5px #00000033;
}

.hamburger{
        width: 0%;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        /* position: absolute; right: 0; */
        margin-right: 10px;
}

.side-menu{
        width: 0%;
        visibility: hidden;

}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;

    }

.background_top {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 110px;
        z-index: 0;
    }

/* .pro-equipment h2{
        font-size: 22px;
    } */

.main-content {
        width: 100%;
        position: relative;
        margin: 0 auto;
        padding: 0;
        margin-top: 10px;
        /* background-color: #4d4d4d; */
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        height: auto;
        /* min-height: 400px; */
        /* height: auto; */
        /* height: 100vh; */
        /* overflow: auto; */
        /* -ms-overflow-style: none;  IE và Edge */
        /* scrollbar-width: none;    Firefox */
        z-index: 100;
        background-color: #ffffff;
    }

.make-mold{
      width: 90%;
      height: auto;
      background-color: #f5f5f5;
      margin: 0 auto;
      border-radius: 10px;
      display: flex;
      align-items: center;
      flex-direction: column;
    }



.pro-equ-header{
      width: 100%;
      display: flex;
      height: 70px;
      text-align: left;
      padding-top: 10px;
      padding-bottom: 10px;
      color: #006370;
      background: linear-gradient(to bottom, #f3f3f3, #f5f5f5);
      border-radius: 10px;
      align-items: center;
      font-size: 18px;
    }

.pro-equ-header h3{
      
      margin-left: 10px;
}

.pro-equ-line{
      width: 100%;
      height: auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 10px;
      margin-bottom: 10px;
      flex-direction: row;
    }

.pro-item{
      width: 32.5%;
      height: 300px;
      margin: 0 auto;
      background-color: #ffffff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 
              0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
      border-radius: 10px;

      /* Thiết lập ban đầu (Ẩn và thấp hơn 20px) */
      opacity: 0;               
      transform: translateY(20px); 
    
      /* Thiết lập chuyển đổi: Kéo dài 3 giây */
      transition: opacity 1s ease-out, transform 2s ease-out;
    }

    /* Trạng thái đích (Hiện đầy đủ và về vị trí) */
.pro-item.show {
    opacity: 1;               
    transform: translateY(0); 
}

.pro-item:hover {
      box-shadow: 0 10px 20px rgba(0,0,0,0.19), 
              0 6px 6px rgba(0,0,0,0.23);
              
        /* Thêm một chút di chuyển lên trên để tăng cảm giác "nhấc" lên */
        transition: all 1s cubic-bezier(.25,.8,.25,1);
        transform: translateY(-4px);
}

.pro-img{
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 10px;
      margin: 0 auto;
      display: flex;
      margin-top: 10px;
}

.pro-img img{
      width: auto;
      height: 100%;
      margin: 0 auto;
      border-radius: 10px;
      transition: transform 0.8s ease; /* Tăng thời gian từ 0.3s lên 0.8s */
}

.pro-text{
      width: 100%;
      height: auto;
      text-align: center;
      margin: 0 auto;
      padding: 10px 0;
      
}

.pro-text h3{
      font-size: 20px;
      font-weight: 500;
      color: #006370;
      text-align: left;
      margin-top: 10px;
      margin-left: 10px;
}

.pro-text p{
      
      margin-top: 10px;
      margin-left: 10px;
      text-align: left;
}


.ball-blast{
      width: 90%;
      height: auto;
      background-color: #f5f5f5;
      margin: 0 auto;
      border-radius: 10px;
      display: flex;
      align-items: center;
      flex-direction: column;
      margin-top: 20px;
      /* Ẩn thẻ div ban đầu */
      opacity: 0;
      /* Dịch chuyển nó ra khỏi tầm nhìn một chút (tùy chọn, để tạo hiệu ứng trượt vào) */
      transform: translateY(50px);
      /* Thiết lập hiệu ứng chuyển đổi mượt mà */
      transition: opacity 1s ease-out, transform 2s ease-out;
}

/* Class này sẽ được thêm bằng JavaScript khi cuộn đến */
.ball-blast.visible {
    opacity: 1;
    transform: translateY(0);
}



.pro-blast-item{
      width: 32.5%;
      height: 300px;
      margin: 0 auto;
      background-color: #ffffff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 
              0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);

      border-radius: 10px;

      /* Thiết lập ban đầu (Ẩn và thấp hơn 20px) */
      /* opacity: 0;               
      transform: translateY(20px);  */
    
      /* Thiết lập chuyển đổi: Kéo dài 3 giây */
      transition: opacity 1s ease-out, transform 2s ease-out;
    }

.pro-blast-item:hover {
      box-shadow: 0 10px 20px rgba(0,0,0,0.19), 
              0 6px 6px rgba(0,0,0,0.23);
              
        /* Thêm một chút di chuyển lên trên để tăng cảm giác "nhấc" lên */
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
        transform: translateY(-4px);
      
}

.pro-blast-img{
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 10px;
      margin: 0 auto;
      display: flex;
      margin-top: 10px;
}

.pro-blast-img img{
      width: auto;
      height: 100%;
      margin: 0 auto;
      border-radius: 10px;
      transition: transform 0.8s ease; /* Tăng thời gian từ 0.3s lên 0.8s */
}











/* -------------------------------------------------------- */
.customers-logo{
        position: relative;
        width: 99%;
        height: 220px;
        padding-top: 50px;
        margin: 0 auto;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #ffffff;
        text-align: center;
        /* border-radius: 10px; */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 5px;
}


.logo-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.logo-strip {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.logo-strip img {
  height: 100px;
  margin-right: 20px;
  flex-shrink: 0;
}

.news-updates{
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px 0;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #fcfeff;
        text-align: center;
        border-radius: 10px;
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 20px;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.news-list{
        width: 100%;
        height: 350px;
        padding: 20px 0;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #fafeff;
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
        border-radius: 10px;
        margin: 0 auto;
        /* margin-top: 20px; */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item {
        width: 30%;
        height: 300px; 
        padding: 10px 0;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #ffffff;
        justify-content: center;
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
        border-radius: 10px;
        margin: 0 20px;
        /* padding-left: 10px; */
        color: #252525;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item img {
        height: 160px;
        /* width: 90%; */
        max-width: 90%;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        transition: transform 0.8s ease; /* Tăng thời gian từ 0.3s lên 0.8s */
        box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Tăng độ mờ của bóng */
}

.news-item img:hover {
        transform: scale(1.05); /* Tăng tỷ lệ phóng to từ 1.05 lên 1.1 */
        box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Tăng độ mờ của bóng */
}

.news-item h5 {
        width: 95%;
        font-size: 16px;
        font-weight: 300;
        color: #252525;
        margin: 0 auto;
        overflow: hidden;;
    }

.news-item a h5:hover {
        color: #D60C2E;
    }

.footer{
        position: relative;
        width: 100%;
        height: 280px;
        background-image: url(../Images/bg/bg_ft.png);
        background-size: cover;
        color: #252525;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 5px;
        margin-top: 20px;
        box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.1);
}

.footer-content{
        width: 100%;
        height: 220px;
        /* background-color: #f5f5f5; */
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        /* text-align: center; */
        /* border-top: 1px solid #e0e0e0; */
        margin-top: 20px;
}


.footer-logo{
        width: 20%;
      
}

#name-mb{
        display: none;
}

#name-company-ft{
        font-size: 22px;
        font-weight: 500;
        color: #D60C2E;
        text-align: left;
        margin-bottom: 10px;
        margin-left: 0px;
}

.footer-logo img{
        width: 90%;
        height: 80px;
        object-fit: contain;
        margin-left: 0px;
        text-align: left;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.contact-info{
        width: 50%;
        height: 100%;
}

.maps{
        width: 30%;
        height: 60%;
        margin-bottom: 10px;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-media{
        width: 100%;
        /* background-color: #ffffff; */
        height: 60px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        /* text-align: center; */
        /* border-top: 1px solid #e0e0e0; */
        margin-top: 20px;
}

.lg_container{
        position: relative;
        height: 100%;
        width: 30%;
        max-width: 80px;
        /* background-color: #ffffff; */
}



.lg_container a svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
    width: 60px;
    height: 60px;
    transition: transform 0.8s ease;
  }

  .lg_container a svg.hover {
    opacity: 0;
  }

  .lg_container:hover a svg.hover {
    opacity: 1;
    transform: scale(1.1);
  }


  .lg_container:hover a svg.default {
    opacity: 0;
  }

.lg_container a img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-left: 0px;
        /* text-align: left; */
        transition: transform 0.8s ease;
        margin-top: 6px;

  }

  .lg_container a img {
    opacity: 1;
  }
  
  .lg_container:hover a img {
    content: url('../Images/Logo/factlink2.png');
    transform: scale(1.1);
  }

#map-icon-id{
  display: none;
}


.copyright{
        width: 100%;
        height: 100px;
        /* background-color: #f5f5f5; */
        color: #002d35;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        /* flex-direction: row; */
        /* text-align: center; */
        /* border-top: 1px solid #e0e0e0; */
        margin-top: 20px;
        border-radius: 10px;
        flex-direction: row;
}


.standard{
        /* justify-content: left;  */
        width: 40%;
        height: 100%;
        display: flex;
        text-align: left; 
        font-size: 20px; 
        font-weight: 500;
        margin-left: 20px;
        align-items: center;
}


.copyright2{
        width: 60%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
        text-align: right; 
        font-style: italic; 
        text-align: right; 
        /* margin: 0 auto; */
        margin-right: 20px;
        align-items: center;
}

.mail-info{
        color: #252525;
}

.mail-info:hover {
        color: #D60C2E;
        text-decoration: none;
}       



/* 1--------------------------------------------------------------------------------------------------------------------------------------------------------------------1 */

@media screen and (min-width: 761px) and (max-width: 1142px) {
  #nameid {
    font-size: 18px;
  }
  
#location_id1 {
    display: none;
  }
#location_id2 {
    display: none;
  }

  .top_info ul li span {
    font-size: 16px;
  }
  
.logo_menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
}

  .logo {
        width: 15%;
        align-items: center;
        text-align: left;
}

.logo img {
        width: 100%;
        object-fit: contain;
        margin-left: 0px;
        text-align: left;
}

.main-menu {
  width: 70%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-right: 10px;
  /* overflow: hidden; */
}

.menu > li > a {
    display: block;
    padding: 10px;
    color: #252525;
    text-decoration: none;
    font-size: 1.8vw;
    font-weight: 450;
    white-space: nowrap;
    overflow: hidden;
  }

.submenu {

  height: 80px;
  width: 4vw;

}

.submenu li a {
    padding-top: 20px;
    padding: 10px 15px;
    height: 40px;
    width: 100%;
    font-size: 1.7vw;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

  .languages{
        width: 15%;
        align-items: center;
        margin-right: 0px;
}


.about-text p {
       text-align: left;
       padding: 0 10px 10px 0;
       margin-right: 50px;
       text-align: justify;
       font-size: 14px;
       /* overflow: hidden; */
    }

.customers-logo{
  height: 180px;
}

  .logo-strip img {
  height: 70px;
}
  
.news-item h5 {
        font-size: 15px;
    }

.footer-logo{
  width: 20%;
}

.contact-info{
  width: 80%;
  margin-left: 20px;
}

#map-icon-id{
  display: block;
}

.map{
  display: none;
}

.standard{
  width: 0%;
  display: none;
}

.copyright2{
  width: 100%;
  text-align: center;
  justify-content: center;
}

.inspect-equipment-header{
  width: 90%;
}

.ins-equ-left{
        width: 90%;
}

.ins-equ-right{
        width: 90%;
}

.ins-img{
        width: 25%;
}

.pro-item{
      height: 320px;
}

.pro-blast-item{
      height: auto;
}

}



/* 2-------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 760px) {
 
 .top_bar {
  height: 40px;
 } 
  
  #nameid {
    font-size: 14px;
  }
  
.top_info ul li {
    margin-left: 5px;
  }

  .top_info ul li span {
    display: none;
    margin-left: 0px;
  }

.logo_menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 40px;
        padding: 0;
        margin: 0;
}

.logo {
        width: 40%;
        align-items: center;
        text-align: left;
        margin-left: 0px;
        justify-content: flex-end;
        
}

.logo img {
        width: 100px;
}

  .main-menu {
    display: none;
    width: 0%;
    visibility: hidden;
  }

.languages{
        width: 65%;
        align-items: center;
        margin-right: 10px;
}

.img_flag{      
        width: 25px;
        height: 20px;
}


      /* Nút hamburger */
    .hamburger {
      display: block;
      /* justify-content: flex-end; */
      align-items: center;
      visibility: visible;
      width: 6cqmin;
      font-size: 25px;
      cursor: pointer;
      padding: 0px;
      margin-bottom: 5px;
      text-align: right;
      margin-right: 10px;
    }

    /* Overlay khi menu mở */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 9;
    }

    /* Menu dọc */
    .side-menu {

      visibility: visible;
      position: fixed;
      top: 40px;
      right: -210px; /* Ẩn khỏi màn hình */
      width: 200px;   /* hoặc đổi thành 50vw nếu muốn */
      height: 350px;
      background-color: #fff;
      box-shadow: -2px 0 5px rgba(0,0,0,0.3);
      transition: right 0.3s ease;
      z-index: 10;
      padding: 20px;
      border-radius: 10px;
    }

    .side-menu.active {
      right: 0;
    }

    /* Nút đóng */
    .close-btn {
      font-size: 24px;
      cursor: pointer;
      text-align: right;
      margin-bottom: 20px;
    }

    .side-menu ul {
      list-style: none;
    }

    .side-menu li {
      margin: 15px 0;
      font-size: 18px;
    }

    .side-menu a {
      text-decoration: none;
      color: #333;
    }

.background_top {
        height: 80px;

    }

.pro-equ-header {
      height: 50px;
      border-radius: 5px;

    }


.customers-logo{
  height: 130px;
  padding-top: 20px;
}

.customers-logo h2{
  font-size: 22px;
}

  .logo-strip img {
  height: 50px;
}

.news-list{
        width: 100%;
        height: auto;
        flex-direction: column;

}

.news-item {
        width: 100%;
        height: auto; 
        margin: 10px auto;
        padding: 0 auto;

}

.footer{
  width: 100%;
  height: auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0px;
  background-position: 10% center;
}


.footer-content{
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0px;
  padding: 10px 0;
}

.footer-logo{
  width: 50%;
  
}

.contact-info{
  /* display: none; */
  width: 100%;
}

.contact-info p{
  color: #252525;
  font-size: 16px;
  margin: 5px;

}

#name-company-ft{
  font-size: 19px;
  font-weight: 600;
  color: #D60C2E;
  margin: 10px 10px 10px 10px;
  text-align: center;
}

#name-pc{
  display: none;
}

#name-mb{
  display: inline;
}

.map{
  display: none;
}

.social-media{
  width: 100%;
  height: 80px;
  justify-content: center;
  margin: 10px auto;
}

#map-icon-id{
  display: block;
}

.copyright{
  width: 100%;
  height: 80px;
  margin-top: 20px;
  /* display: none; */
}

.standard{
  width: 0%;
  display: none;
}

.copyright2{
  width: 100%;
  height: 50px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 14px;
}

.contact-info p{
  margin-left: 30px;
}


.make-mold{
      width: 100%;
      border-radius: 5px;
}



.pro-equ-line{
      width: 100%;
      flex-direction: column;
      margin-top: 0px;
      margin-bottom: 0px;
}

.pro-item{
      width: 95%;
      display: flex;
      height: auto;
      margin-top: 5px;
      margin-bottom: 5px;
}

.pro-img{
      width: 40%;
      height: auto;
      margin-bottom: 10px;
}

.pro-img img{
      width: 90%;
      height: auto;
}

.pro-text{
      width: 60%;
}

.pro-blast-item{
      width: 95%;
      display: flex;
      height: auto;
      margin-top: 5px;
      margin-bottom: 5px;
}

.pro-blast-img{
      width: 40%;
      height: auto;
}

.pro-blast-img img{
      width: 90%;
      height: auto;
      margin-bottom: 10px;
}

.ball-blast{
      width: 100%;
      border-radius: 5px;
    }

h2{
  font-size: 22px;
}

h3{
  font-size: 20px;
}

}