* {
    font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #0b2282;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.contact-info {
    text-align: left;
    font-size: 14px;
    color: white;
    flex: 1;
}

.contact-info strong {
    font-weight: 600;
}

nav {
    flex: 2;
    text-align: center;
    
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

nav a:hover {
    color: #e26413;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo {
    height: 81px;
    width: 81px;
    border-radius: 50%;
    object-fit: cover;
    /* border: solid white 1.8px; */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    margin-right: 10px;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #e26413;
}

.hero {
    position: relative;
    height: 80vh;           
    max-height: 600px;      
    margin-top: px;       
    overflow: hidden;
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    /* background-color: rgba(0, 0, 0, 0.6); */
    padding: 30px 50px;
    border-radius: 10px;
    max-width: 600px;
    /* backdrop-filter: blur(5px); */
}


.slide-content h2 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 1);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-1%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    direction: ltr;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.dot.active {
    background-color: #0b2282 ;
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}


.dezan{
    /* background:rgba(0, 0, 0, 0.1); */
    background-color: #0b2282;
    color: white;
    text-align: center;
    padding: 40px 20px 40px 20px;
    margin-top: 0;
    margin-bottom: 0;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.dezan h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
/* .dezan h3::after{
    content: '';
    display: block;
    width: 75%;
    margin: 50px auto 0 auto;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5) ;
} */

.dezan h3 {
    color: white;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.boton{
    color: white;
    text-align: center;
    padding: 5px 20px 5px 20px;
    margin-top: 0;
    margin-bottom: 0; 
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1);

}
.boton h2 {
    color: #0b2282;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 30px;
}

.boton h2::after{
    content: '';
    display: block;
    width: 20%;
    margin:10px auto 20px auto;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5) ;
}
.boton p {
    max-width: 500px;
    font-weight: 500;
    margin: 0 auto;
    color: black;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .header-divider h2 {
        font-size: 1.8rem;
    }
    .header-divider p {
        font-size: 1.1rem;
    }
}


.lab-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e26413; 
    color: white;
    padding: 40px 20px;
    margin: 0px auto;
    max-width: 1400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 40px;
    border-radius: 20px;
}

.lab-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 400px;
    height: 400px;
}

.lab-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10%; */
}

.lab-text {
    flex: 1;
    background: #0b2282;
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: right;
    font-size: 1.1rem;
    line-height: 1.9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lab-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.lab-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lab-text li {
    margin: 15px 0;
    position: relative;
    padding-right: 25px;
    font-weight: 500;
}

.lab-text li::before {
    content: "•";
    color: #e26413;
    font-weight: bold;
    position: absolute;
    right: 0;
    width: 20px;
    text-align: center;
    font-size: 1.4rem;
}

.lab-texts-row {
    display: flex;
    gap: 40px;
    width: 100%;
    margin-bottom: 40px;
}

.lab-section2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #e26413; 
    color: white;
    padding: 40px 20px;
    margin: 0px auto;
    max-width: 1400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 40px;
    border-radius: 20px;
}

.lab-image2 {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 400px;
    height: 400px;
}

.lab-img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10%; */
}

.lab-text2 {
    flex: 1;
    background: #0b2282;
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: right;
    font-size: 1.1rem;
    line-height: 1.9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lab-text2 h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.lab-text2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lab-text2 li {
    margin: 15px 0;
    position: relative;
    padding-right: 25px;
    font-weight: 500;
}

.lab-text2 li::before {
    content: "•";
    color: #e26413;
    font-weight: bold;
    position: absolute;
    right: 0;
    width: 20px;
    text-align: center;
    font-size: 1.4rem;
}

.testkhaks{
    color: black;
    text-align: center;
    padding: 5px 20px 5px 20px;
    margin-top: 0;
    margin-bottom: 0; 
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1);

}
.testkhaks h2 {
    color: #0b2282;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 30px;
}

.testkhaks h2::after {
    content: '';
    display: block;
    width: 20%;
    margin:10px auto 20px auto;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3) ;

}

.testkhaks p {
    max-width: 500px;
    font-weight: 500;
    margin: 0 auto;
    color: black;
    font-size: 1.3rem;

}

.testkhak {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e26413;
    color: white;
    padding: 50px 20px;
    margin:  auto;
    max-width: 1400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    gap: 40px;
}

.tasisat-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 380px;
    height: 380px;
    /* border-radius: 40%; */
    /* border: 5px solid #e26413; */
}

.tasisat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:20px;
}

.naghshe-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 380px;
    height: 380px;
    /* border-radius: 40%; */
    /* border: 5px solid #e26413; */
}

.naghshe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:20px;
}

.testkhak-text {
    flex: 1;
    background: #0b2282;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: right;
    font-size: 1.1rem;
    line-height: 1.9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.testkhak-text h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.testkhak-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.testkhak-text li {
    margin: 15px 0;
    position: relative;
    padding-right: 25px; 
    font-weight: 500;
}

.testkhak-text li::before {
    content: "•";
    color: #e26413;
    font-weight: bold;
    position: absolute;
    right: 0;
    width: 20px;
    text-align: center;
    font-size: 1.4rem;
}

.testkhak-text p {
    margin: 0;
    text-align: right;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testkhak {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .testkhak-image {
        width: 300px;
        height: 300px;
    }

    .testkhak-text {
        padding: 20px;
        font-size: 1rem;
    }
}


.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.main-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.main-container hr {
    width: 100px;
    height: 3px;
    background-color: #333;
    border: none;
    margin: 20px auto;
}

.main-container p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 3px auto 40px;
    padding: 0 20px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.image-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .image-gallery {
        gap: 15px;
        margin: 40px auto;
    }

    .image-gallery img {
        border-radius: 12px;
    }
}

footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9ca3af;
}

.contact-info-footer {
    list-style: none;
}

.contact-info-footer li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #d1d5db;
}

.contact-info-footer i {
    margin-left: 10px;
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #374151;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4b5563;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #10b981;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 24px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #059669;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }
    
    .contact-info {
        order: 1;
        text-align: center;
        width: 100%;
    }
    
    nav {
        order: 2;
        width: 100%;
    }
    
    .logo-container {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    .mobile-menu {
        display: none;
        width: 100%;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .main-container h2 {
        font-size: 2rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .main-container h2 {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

.why-us-section {
    background: #e26413;
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    border-radius: 20px;
}

.why-us-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.why-us-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 15px 30px;
    background: #0b2282;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.why-us-list li::before {
    content: "✓";
    color: #e26413;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}

.why-us-list li:hover {
    transform: translateY(-3px);
    background: #143aa0;
}

@media (max-width: 768px) {
    .why-us-container h2 {
        font-size: 1.8rem;
    }

    .why-us-list {
        gap: 15px;
    }

    .why-us-list li {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}
nav a.active {
    color: #e26413 !important; 
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    /* bottom: -8px; */
    /* right: 0;
    width: 100%;
    height: 3px; */
    background-color: #e26413;
    border-radius: 2px;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    padding: 0;
}

.dropdown:hover .dropbtn {
    color: #e26413;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
    top: 100%;
    right: -20px;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #242222;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    text-align: right;
    transition: background 0.3s ease, color 0.3s ease;
    border-right: 3px solid transparent;
    box-shadow: none ;
    text-shadow: none ;
    filter: none ;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #e26413;
    border-right-color: #e26413;
}
.services-grid {
    background-color: #e26413;
    width: 74%;
    display: grid;
    grid-template-columns: 1fr 0fr 1fr; 
    gap: 20px;
    padding: 40px 20px;
    margin: 0 auto;
}

.services-grid {
  background-color: #0b2282;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, auto); 
  grid-template-rows: repeat(2, auto) 1fr;
  justify-content: center; 
  gap: 30px;
}

.services-grid > .service-card:nth-child(1) { grid-area: 1 / 1; }
.services-grid > .service-card:nth-child(2) { grid-area: 1 / 2; }

.services-grid > .service-card:nth-child(5) {
  grid-column: 1 / span 2;
  grid-row: 2;
  justify-self: center;
}

.services-grid > .service-card:nth-child(3) { grid-area: 3 / 1; }
.services-grid > .service-card:nth-child(4) { grid-area: 3 / 2; }

.service-card {
  text-align: center;
  width: 26rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e26413;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 15px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  height: 6rem;
  position: relative;
  overflow: visible;
  color: white;
  text-decoration: none; 
  list-style: none;
}

/*
.service-card a {
  margin: 0 110px 55px 0;
  list-style: none;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
*/

.service-card span {
  margin: 0 110px 55px 0;
  font-weight: 500;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  text-align: right;
  padding-right: 10px;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  right: 5%;
  top: -20%;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .services-grid {
    width: 90%;
    padding: 20px 10px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    width: 100%;
    height: 70px;
    padding: 12px 15px;
  }
  .service-card img {
    width: 50px;
    height: 50px;
  }
  .services-grid > .service-card:nth-child(5) {
    grid-column: 1;
    justify-self: center;
  }
}

/* سبک‌های مشترک برای همه کانتینرهای عکس */
.lab-image,
.testkhak-image,
.naghshe-image,
.tasisat-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 280px; /* حداقل ارتفاع منطقی، قابل تنظیم */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* سبک تصاویر داخل کانتینرها */
.lab-img,
.testkhak-image img,
.naghshe-image img,
.tasisat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
/* راه‌حل عمومی: همه عکس‌های داخل بخش‌های flex را هم‌اندازه با متن کن */
.flex-container > div:first-child img,
.flex-container > div:last-child img,
[class*="section"] > div img,
[class*="box"] > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* و همه کانتینرهای عکس را انعطاف‌پذیر کن */
[class*="image"],
[class*="photo"],
[class*="img"],
img-wrapper,
.image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.labe-image{
    width: 200px;
    height: 463px;
}

.laber-image{
    height: 430px;

}

.labert-image{
    height: 420px;
}

.laberty-image{
    height: 397px;
}

.testkhak-image{
    height: 316px;

}
.labeh-image{
    height: 410px;
}