
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body{
    width: 100%;
    height: 100%;
    background-color:rgb(245, 245, 245) ;
}
/* الجزء الرئيسي*/
.headt {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ////////// الشريط الاول //////////*/
.navbar {
    width: 100%;
    background-color:#c0c0c0 ;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-section, .right-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links, .extra-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar a {
    color:black ;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
    padding: 5px 3px;
}

/* تأثيرات الشريط العلوي */
.navbar a::before,
.navbar a::after {
    content: "";
    position: absolute;
    background-color: #E65100 ;
    width: 2px;
    height: 0;
    transition: all 0.4s ease;
}

.navbar a::before {
    left: -2;
    bottom: 0;
}

.navbar a::after {
    right: -2;
    top: 0;
}

.navbar a:hover::before,
.navbar a:hover::after {
    height: 100%;
}

/* الأيقونات الاجتماعية */
.social-icons {
    display: flex;
     gap: 12px; 
}

.social-icons i{
    color: #010000;
    font-size: 22px;
    transition:  0.4s;
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons i:hover {
    color: #E65100 ;
    transform: rotateY(180deg);
}

/* خط  الأيقونات*/
.social-icon::before,
.social-icon::after {
    content: "";
    position: absolute;
    height: 0;
    width: 2px;
    background-color: #E65100  ;
    transition: all 0.3s ease;
}

.social-icon::before {
    left: 0;
    top: 0;
}

.social-icon::after {
    right: 0;
    bottom: 0;
}

.social-icon:hover::before,
.social-icon:hover::after {
    height: 100%;
}

/* الشريط الأوسط */
.main-header {
    width: 100%;
    height: 70px;
    background-color:#e4e1e1 ;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}
.logo{
    width: auto;
       height: 70px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.logo h4{
 color: #b32f20;
 margin-left: 5px;
 margin-top: 15px;   

 font-size: 25;


font-family: "Savate", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
font-style: italic;

color:#e24f00 ;
}

.logo img {
    height: 70px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color:#424242 ;
    text-decoration: none;
    position: relative;
    padding: 5px;
}

/* تاثيرات شريط الاوسط  pages */
/* شكل للقائمة المنسدله */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    position: relative;
    text-decoration: none;
    
  }
  
  /* أيقونة السهم */
  .dropdown > a i {
    font-size: 12px;
    transition: 0.3s ease;
  }
   .dropdown-column a {
    display: block;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    margin: 5px 0;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
  } 
  
.dropdown-column a::before{
    content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: scalex(1.5);
  width: 6px;
  height: 6px;
  background: #e74c3c;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
  
  .dropdown-column a:hover {
    color: #e74c3c;
    padding-left: 20px;
  }

  /* تابع القائمة المنسدلة */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 360px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    gap: 30px;
  }
  
  /* العمودين */
  .dropdown-column {
    flex: 1;
  }
  
  /* عنوان داخل قايمه */
  .dropdown-header {
    color: #e74c3c;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee; 
    position: relative;
  }
  
  .dropdown-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: #e74c3c;
  }
  
  /* العناصر */
  .dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .dropdown-items a {
    color: #555;
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.2s ease;
    font-size: 14px;
    position: relative;
  }
  
  
  .dropdown-items a:hover {
    color: #e74c3c;
    padding-left: 8px;
    
  }
  
  /* ظ القائمة*/
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  
  .dropdown-column a::before,
  .dropdown-column a::after {
    display: none ;
  }

/* تأثيرات القائمة الرئيسية */
.main-nav a::before {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -1px;
    width: 102%;
    height: 104%;
    border: 2px solid  #E65100 ;
    border-top: transparent;
    border-bottom: transparent;
    transform: scaley(0);
    transition: all 0.4s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -2px;
    width: 104%;
    height: 100%;
    border: 2px solid #E65100 ;
    border-left: transparent;
    border-right: transparent;
    transform: scalex(0);
    transition: all 0.4s ease;
}

.main-nav a:hover::before {
    transform: scaley(1);
}

.main-nav a:hover::after {
    transform: scalex(1);
}

/* أيقونات الرأس */
.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
    position: relative;
    z-index: 3;
    color:#424242 ;
}

.header-icons i {
    transition: 0.3s ease;
}

.header-icons i:hover {
    color:#E65100  ;
}


  .ico1:hover .cricle {
    transform: translateY(-2px);  
  }
  
  
  .ico1 {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  
  .ico1 i:hover {
    color:#E65100 ;
  }
 

 .cricle {
    position: absolute;
    top: -16px;
    right: -1px;
    background-color: #f35804 ;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
} 

/* ///////// "سكشن رقم 3 "الشريط السفلي   ////////// */
.promo-bar {
    width: 100%;
    background-color: #F5F5F5;
    padding: 10px;
    color: #424242;
    text-align: center;
    transition: transform 0.3s ease;
}


.promo-bar a:hover {
    transform: scaleX(1.02);
    word-spacing: 3px;
}
.promo-link {
    color: #E65100  ;
    font-weight: bold;
    margin-left: 10px;
    
}
   
    

    /* ////////     سكشن رقم 4   ////// */
.sk1{
    width: 100%;
    height: 650px;
    background:url(../img/pp.jpg) center;
    background-size: cover;
    text-align: center;
    font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 100;
  font-size: 14;
  font-style: normal;
}
.sk1{
    padding-top: 290px;
    color: rgb(0, 0, 0) ;
font-size: 23;
    
}
.sk1 h3{
    font-size: 28px;
    font-style: bold;
    font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  opacity: 1.2;
    color:#e75319;   
}
.sk1 h2{
  opacity: 2;
    font-size: 28px;
   font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
    color:#e03f23; 
     color: #93261a ;
}
.btn1{
    width: 110px;
    height: 30px;
    color: black;
    background-color:rgb(222, 100, 48) ;
    border: 2px solid   rgb(222, 100, 48) ;
    border-radius: 20px;
}
.btn1:hover{
    background-color:rgb(255, 243, 225);
    border: 2px solid rgb(255, 243, 225) ;
}
/* ///////    سكشن رقم 6    /////// */


.sk6{
    width: 100%;
    height: 80px;
  margin-top: -60px;
}
.main{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-left: 730px;
    margin-top: -47px;
}
.h13{
    margin-left: 70px;
}
.h15{
    color: #e74c3c ;
    
}
.h14{
 font-size: 18px;
 padding: 20px;

}
.line{
    width: 1110px;
    height: 3px;
    margin-top: 50px;
    background-color: rgb(40, 40, 40);
    margin-left: -870px;
    z-index: 1;
}
.small{
    width: 70px;
    height: 4px;
  
    background-color: #e74c3c   ; 
    margin-left: -320px;
    margin-top: 48px;
    z-index: 2;
}
/* ///////    سكشن رقم 5    /////// */

.sk2 {
    width: 100%;
    height: 700px;
    font-family: Arial, sans-serif;    
    font-family: 'Arial Narrow Bold', sans-serif ;
  font-optical-sizing: auto;
  font-size: 22;
    display: flex;
    justify-content: center;
    padding: 40px 40px;
    margin-top: 50px;
    
  }
  .h3{
color: #752705;
  }
  .h4{
   color: #752705;
  }
  .container {
    padding-top: 40px;
    display: flex;
    gap: 30px;
  }
  
  .card {
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .card:hover img {
    transform: scale(1.05);
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(37, 37, 37, 0.7), transparent);
    color: rgb(228, 228, 228); font-size: 22; 
    text-align: center;
    padding: 15px 0;
  }
  
  .shop-btn {
    display: none;
    color: rgb(225, 69, 34);color: #e74c3c ;
    font-size: 18;
    padding: 5px 15px;
    border: none;
    margin-top: 10px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .card:hover .shop-btn {
    display: inline-block;
  }
  
  .shop-btn:hover {
    background-color: #d0d0d0;
  }
  



/* ///////   سكشن رقم 7    ////// */
.sk7{
    width: 100%;
    height: 700px;
    margin-top: -20px;
  }

.total{
    width: 250px;
    height: 290px;
}
.h2{
    font-size: 23px;
    width: 10px;
    margin-top: 210px;
    color:#a45838;
 margin-right: 30px;
}
.h3{
    font-size: 23px;
    width: 10px;
    margin-top: 200px;
    color:#a45838;
   margin-left: 20px;
}
.skt7 h3{
    color: #000000;
    padding-bottom: 10px;
    font-size: 25;
    font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.skt7{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
     text-align: center;
}
.skt7 p{
    text-align: center;
    padding-top: 10px;
    color:#752705;
}

.card1{
    width: 250px;
    height: 290px;
    background:url(../img/n10.jpg) center ;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.card1::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background:url(../img/o2.jpg) center;
    background-size: cover;
    transform: translateY(100%);
    transition: all 1s linear;
    opacity: 0;
    visibility: hidden;
}
.card1:hover::after{
    transform: translateY(0);
    opacity: 1;
    visibility:visible;
}
.card1 .ico7{
    position: absolute;
    width: 120px;
    height: 30px;
    left: 70px;
    background-color: #bcbebe;
    bottom: 20px;
    z-index: 400;
    transition: 1s linear;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden; 

}
.card1:hover .ico7{
    opacity: 1;
    visibility: visible; 
    transform: translateY(0);
}
.card1:hover ~ h3{
   color: #da5b29;
   transform: scaleX(1.02);
}
.ico7 i{
    color: #050201;
    height: 30px;
    padding: 5px 8.6px; 
    font-size: 19px;
    
}
.ico7 i:hover{
    background-color:#E65100  ;
}
.card2{
   
    background:url(../img/n4.jpg) no-repeat center ;
    background-size: cover;
}
.card2::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background:url(../img/o4.jpg)  center;
    background-size: cover;
    transform: translateY(100%);
    transition: all 1s linear;
    opacity: 0;
    visibility: hidden;
}
.card2:hover::after{
    transform: translateY(0);
    opacity: 1;
    visibility:visible;
}
.card3{
  
    background:url(../img/o29.jpg) no-repeat center ;
    background-size: cover;
}
.card3::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background:url(../img/o18.jpg)  center;
    background-size: cover;
    transform: translateY(100%);
    transition: all 1s linear;
    opacity: 0;
    visibility: hidden;
}
.card3:hover::after{
    transform: translateY(0);
    opacity: 1;
    visibility:visible;
}
.card4{
   
    background:url(../img/o10.jpg) no-repeat center ;
    background-size: cover;
}
.card4::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background:url(../img/n1.jpg)  center;
    background-size: cover;
    transform: translateY(100%);
    transition: all 1s linear;
    opacity: 0;
    visibility: hidden;
}
.card4:hover::after{
    transform: translateY(0);
    opacity: 1;
    visibility:visible;
}
/* /////////    سكشن رقم 8    //////// */
.sk8{
    width: 100%;
    height: 300px;
    text-align: center;
    background-color: #d0d0d0;

}
.sk8 h3{
      color:  #e74c3c  ;

}
.sk8 h2{
     color:  #e74c3c  ;
    margin-top: -140px;
font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;

}
.p8{
    width: 700px;
    height: 150px;
   padding-top: 16px;
   margin: auto;
   margin-top: -6px;
    color:rgb(5, 5, 3);
}
.child0{
    width: 100%;
    margin-left: -20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: -3PX 4PX;
}
  .img1{
    width: 80px;
    height: 80px;
    margin-top:-19 ;
    border-radius: 40px;
    background:url(../img/n11.jpg) center ;
    background-size: cover;
}
 
  .text{
    width: 350px;
    height: 100px;
    margin-top: -19px;
    margin-left: -90px;
    padding: 19px 0;
    
}
.text h3{
    margin-left: 50px;
}
 .t3{
    width: 400px;
    margin-top: 7px;
    margin-left: 56px;
 }
 .h8{
    margin-right: 890px;
     padding-top: 140px;
 }
.h81{
    margin-left: 1050px;
    margin-top: -150px;
    color: #e74c3c;
}
/* //////      سكشن رقم 9     ////// */
.parent9{
    width: 100%;
    height: 800px;
    padding-top: 100px;
    text-align: center;
    color: #050505;

}
.sk9{
     width: 100%;
    height: 600px;
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
   padding: 0 10px;
    
    padding-top: 50px;
}
.sk9 p{
    padding: 10px 0;
    color: #000;
    
}.sk9 h4{
    padding: 0px 0;
     color:  #80281fa9  ;
    
} 

.sk9 h3{
    padding: 1px 0;
     color: black; 
     font-size: 20.5;
    font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    
} 
.h9{ 
   padding: 0 10px; margin-left: 10px;
}
.h9{ 
   padding: 0 15px; margin-left:3px;
}
.chd1:hover ~ h3{
   color: #da5b29;
   transform: scaleX(1.02);
}
.chd1{
    width: 250px;
    height: 290px;
    background:url(../img/o35.jpg)  ;
    background-size: cover;
    position: relative;
    perspective: 900px; 

}

.chd1::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:url(../img/o36.jpg) no-repeat  ;
    background-size: cover;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 1s linear;
}
  
.chd1:hover::after{
    transform: rotateY(0deg);
}
 
.chd1 .ico7{
    position: absolute;
    width: 120px;
    height: 30px;
    left: 70px;
    background-color: #b7c0bf;
    bottom: 20px;
    z-index: 400;
    transition: 2s linear;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden; 

}
.chd1:hover .ico7{
    opacity: 1;
    visibility: visible; 
    transform: translateY(0);
}

.ico7 i{
    color: black ;
    height: 30px;
    padding: 5px 8.6px; 
    font-size: 19px;
    
}
.ico7 i:hover{

    background-color:#e74c3c; ;
    color:whitesmoke;
} 

.h9{
    margin-top: 210px;
}
/* //////////////////////////////// */
.chd2{
    width: 250px;
    height: 290px;
    background:url(../img/o21.jpg)  ;
    background-size: cover;
    position: relative;
  
}

.chd2::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:url(../img/o34.jpg) no-repeat center ;
    background-size: cover;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 1s linear;
}
  
.chd2:hover::after{
    transform: rotateY(0deg);
}
 
.chd2 .ico7{
    position: absolute;
    width: 120px;
    height: 30px;
    left: 70px;

      background-color: #b7c0bf;
    bottom: 20px;
    z-index: 400;
    transition: 2s linear;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden; 

}
.chd2:hover .ico7{
    opacity: 1;
    visibility: visible; 
    transform: translateY(0);
}
/* ///////////////////// */
.chd3{
    width: 250px;
    height: 290px;
    background:url(../img/n9.jpg)  ;
    background-size: cover;
    position: relative;
  

}

.chd3::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:url(../img/o6.jpg);
    background-size: cover;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 1s linear;
}
  
.chd3:hover::after{
    transform: rotateY(0deg);
}
 
.chd3 .ico7{
    position: absolute;
    width: 120px;
    height: 30px;
    left: 70px;
     
      background-color: #b7c0bf;
    bottom: 20px;
    z-index: 400;
    transition: 2s linear;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden; 

}
.chd3:hover .ico7{
    opacity: 1;
    visibility: visible; 
    transform: translateY(0);
}
/* ///////////// */
.chd4{
    width: 250px;
    height: 290px;
    background:url(../img/o27.jpg)  ;
    background-size: cover;
    position: relative;
   

}

.chd4::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:url(../img/o32.jpg) no-repeat center ;
    background-size: cover;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 1s linear;
}
  
.chd4:hover::after{
    transform: rotateY(0deg);
}
 
.chd4 .ico7{
    position: absolute;
    width: 120px;
    height: 30px;
    left: 70px;
      
      background-color: #b7c0bf;
    bottom: 20px;
    z-index: 400;
    transition: 2s linear;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden; 

}
.chd4:hover .ico7{
    opacity: 1;
    visibility: visible; 
    transform: translateY(0);
}
/* ///////////////  سكشن رقم 10     ////////// */
.parent10{
    width: 100%;
    height: 670px;
    
    padding: 18px 20px;
    background-color: #d0d0d0;
}
.m4{
    text-align: center;
     color: #ca4b3a;
}
.sk10{
    width: 100%;
    height: 600px;
    font-size: 18px;
    padding-top: 67px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
   margin-left: 40px;
   line-height: 19px;
}

.sk10 a{
    color: #7e4444;
    width: 100px;
    
}
 .sk10 a:hover{
    color: #365e45;
     transform: scale(1.05);
}
.chil1 {
    width: 400px;
    height: 500px;
  color: rgb(169, 90, 90);
  font-size: 16px;

}
.e2{
    width: 400px;
    height: 650px;
  color: rgb(169, 90, 90);
  padding: 18px 0;
  font-size: 16px;
}
.g1{
    width: 400px;
    height: 100px;
    margin-left: 4px;
}
.g2{
    width: 400px;
    height: 100px;
    
}
.chil2{
    width: 400px;
    height: 500px;
    padding: 0 5px;
   
}
.chil3 {
    width: 400px;
    height: 500px;
    padding: 0 7px;
    
}
 .chil1 p{
     width: 350px;
  margin-left: 90px;
   padding-top: 16px;
   
 color: rgb(169, 90, 90);
   
} 

.text{
    width: 300px;

}
.p3{
    width: 350px;
color: rgb(169, 90, 90);
    height: 120px;
margin-left: 90px;
}
.p2{
    width: 350px;
    color: #000;
    font-size: 20px;
    height: 20px;
margin-left: 90px;
}
.p1{
    width: 350px;
    color: #000;
    font-size: 18px;
    height: 20px;
}



.img101{
    padding-top: 7px;
    width: 300px;
    height: 360px;
    background:url(../img/o8.jpg)  ;
    background-size: cover;
}
.img101:hover{
     
 transform: scale(1.05);
}
.chil1:hover .p1{
    color:  #1b6a38;
   transform: scaleX(1.02);
}
/* /////////////////////// */
.img102{
    width: 300px;
    height: 360px;
    background:url(../img/o5.jpg) center ;
    background-size: cover;
     padding-top: 7px;
}
.img102:hover{
 transform: scale(1.05);
}
/* ///////////////// */
.img103{
    padding-top: 7px;
    width: 300px;
    height: 360px;
    background:url(../img/o3.jpg) center ;
    background-size: cover;
}
.img103:hover{
 transform: scale(1.05);
}

/* /////////////    سكشن رقم 11    /////////////// */

.parent11{
    width: 100%;
    height: 220px;
    padding: 1px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.icon-box {
    text-align: center;
    width: 210px;
    margin: 20px;
  }
  
  .icon-w {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    overflow: hidden;
  }
  .parent11 h4{
    color:   #bf5439;
  } 
  .icon {
    font-size: 40px;
    position: absolute;
   bottom: 0;
   right: 0;
  }
  
  .icon-light {
       color: #213150;
  
    z-index: 1;
  }
  
  .icon-dark {
   color:   #b22d0c;
 
    transform: translateY(100%);
    transition: transform 1s ease;
    z-index: 2;
  }
  
  .icon-box:hover .icon-dark {
    transform: translateY(0%);
  }




/* //////////////////////   سكشن رقم 12   ///////////////// */
.parent12{
    width: 100%;
    height: 480px;
    background-color: #d4d4d4;
    background-color:#c9c9c9 ; 
    position: relative;
}
.parent12 img{
     width: 100%;
    height: 100%;
    display: block;
}
.car{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient( to , rgb(230, 188, 188), transparent);
    color: rgb(228, 228, 228);
   
    padding: 14px 0;
}
.sk12{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 30px;
    text-align: center;
    color:#ffffff;
}
.btn button{
    width: 120px;
    height: 30px;
    background-color:  #bd3017; 
    border: 2px solid  #bd3017;  
    color: white;
    
}
.btn button:hover{
    transform: scale(1.03);
        transition: .3s;
}
.btn input{
    width: 220px;
    height: 30px;
}
.ico12 i{
    
    font-size: 26px;
    color: rgb(22, 2, 95);color: #031a48;
    
    padding: 0 6px;
    
}
.ico12 i:hover{
     color: #d24420;
     transition: .3s;
    
}
.line12{
    width: 80%;
    height: 2px;
    margin: auto;
    background-color: #000101;
    margin-top: -100px;
}
/* //////////////////الجزء الثاني ////////////// */
.s2k12{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
     padding: 30px 0;
}
.log012{
    width: 70px;
    height: 60px;
    background:url(../img/m2.jpg) ;
    background-size: cover;
}
.pr2{
  display: grid;
  row-gap: 10px;
}
.pr2 h3{
    padding: 5px 0;
    font-size: 24;
    color: #db3412  ; 
}
.pr2 a{
    
    font-size: 14.2;
    color: rgb(27, 26, 26);
    text-decoration: none;

}
.pr2 a:hover{
    text-decoration: underline;
    
}
.pr2 h4:hover{
    transform: scale(1.03);
    transition: .3s;
}
/* /////////////////////الجزء الثالث /////////////////////// */
.line15{
    width: 80%;
    height: 2.5px;
    margin: auto;
    background-color: #c4e4e2;
 background-color: #000101;
}
.part3{
    width: 100%;
    text-align: center;
    color:rgb(0, 0, 0);
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}
.part3 h3{
      color: #be1c1c; 
      color:#bd2a06; 
    padding: 0 3px;
}
.part3:hover{
    transform: scale(1.02);
        transition: .3s;
}
.ani{
    padding: 0 5px;
    animation-name: imk2;
    color: #050201;
    border: #010000;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}
@keyframes imk2{
   
    100%{
        color: red;
    
}

}
  
  .parent12{
    background-color: #eef0f0;
  }
   
 