* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: none;
} 

html {
	scroll-behavior: smooth;
} 

html, body {
	margin: 0;
	font-family: 'Poppins', sans-serif;  
	overflow-x: hidden;  
	width: 100%;  
	background: #0B1C32;
    color: #e7eaf6;        
    line-height: 2.2;
}  

 
  body {
	-webkit-user-select: none;
    user-select: none; 
}   

/*scrollTop*/
.scrollTop {  
    position: fixed;
    bottom: 30px; /* قمت بتعديل القيمة من 800px إلى 30px ليظهر الزر أسفل الشاشة */
    left: 15px;
    width: 35px;
    height: 35px;
    /* المسار الصحيح: ابحث عن الصورة في مجلد images الرئيسي */
    background: #D90D32 url('../images/right-arrow2.png'); 
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;  
    cursor: pointer;
    z-index: 100000; 
    visibility: hiddden; 
    opacity: 0;
    
    transition: 0.5s;
    font-weight: 600;  
}

.scrollTop.active {  
	bottom: 60px;
	visibility: visible;
	opacity: 1;
}

.scrollTop:hover {
	-moz-border-radius: 12px;
	border-radius: 12px; 
}
/*scrollTop end*/



/*section-title*/
.section-title {  
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;  
}

.section-title h1 { 
	display: inline-block;
	font-size: 15px; 
	font-weight: 700; 
	color: #e7eaf6;
	margin: 0 0 10px; 
	color: #e7eaf6;
    
} 


.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: left;
}

/*header*/
header { 
	position: absolute;
	left: 0;
	right: 0;
	/*border-bottom: 1px solid #0B1C32;  #423940;*/
	padding: 0 15px;
	z-index: 10;
	height: 75px; 
	width: 100%;   
}

header.fixed {
	background-color: #0B1C32;
	position: fixed;
	border-color: #0B1C32;
	z-index: 11;
	-webkit-animation: fixHeader 1s ease;
	animation: fixHeader 1s ease;  
}

@-webkit-keyframes fixHeader {
	0% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%)
	}
	100% {
		-webkit-transform: translateY(-%);
		        transform: translateY(-%)
	}
}
@keyframes fixHeader {
	0% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%)
	}
	100% {
		-webkit-transform: translateY(-%);
		        transform: translateY(-%)
	}
}

.container {
	max-width: 1140px; 
	margin: auto;
	width: 100%;    
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

header .row {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .brand-name img { 
	width: 110px;
	height: 110px; 
	position: absolute;
	top: 5px;    
}   

header .navbar ul {
	list-style: none;
	padding: 0;
	margin: 0;  
}

header .navbar ul li {
	display: inline-block;
	margin-left: 35px; 
}

header .navbar ul li a {
	font-size: 15px;
	text-decoration: none;
	line-height: 72px;
	color: #e7eaf6;  
	display: block;
	font-weight: 700;
	position: relative;
}

header.fixed .navbar ul li a {
	color: #e7eaf6;
}

header .navbar ul li a::before {
	content: "";
	height: 3px;
	background-color: #e7eaf6; 
	width: 0;
	position: absolute;
	right: 0;
	bottom: 22px; 
	-webkit-transition: all .5s ease; 
	-o-transition: all .5s ease;
	transition: all .5s ease;
} 

header.fixed .navbar ul li a::before {
	background-color: #D90D32;
}

header .navbar ul li a:hover::before,
header .navbar ul li a.active::before {
	width: 100%;
	left: 0;
} 

 

/*service*/
.article1 { 
	padding: 100px 15px 70px;  
    margin-top: 50px;   
} 

 /* Center the image row using your existing .row class */
.article1 .row:nth-child(2) {
    justify-content: center; 
}

.article1 p { 
	width: 60% !important;  
    margin: 10px auto 10px auto;
    font-size: 12px;
    font-weight: 700; 
} 

.row .text-center {
    text-align: center !important;
    display: block; /* لضمان أن الفقرة تعامل ككتلة */
    width: 100%;    /* لتأخذ الفقرة كامل العرض وتتوسط النصوص بداخلها */
}

/* Style the existing .img div */
.article1 .img1 {
    width: 800px;   /* Set your desired width */
    height: 400px;  /* Set your desired height */
    overflow: hidden;
    border-radius: 10px;
    margin: 60px auto;
}

.article1 .img1 img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This prevents cropping/chopping */
    background-color: transparent; /* Or set to your site's background color */
}

.control-link {
  color: #ffa500;
  font-size: 12px;
  font-weight: 700;
    margin-left: 3px;
}

.article1 .img1.article1img {  
    height: 350px;  

}

.article1 .img1.article2img {  
    height: 490px;   
}

.article1 .img1.article3img {  
    height: 450px;   
}

.article1 .img1.article4img {  
    height: 340px;   
}

.article1 .img1.article5img {  
    height: 350px;    
}

.article1 .img1.article6img {  
    height: 350px;    
}
 
.article1 .img1.article7img {  
    height: 450px;  
}

.article1 .img1.article8img {  
    height: 320px;
  width: 650px;
}

.article1 .img1.article9img {  
    height: 326px;  
}

.article1 .img1.article10img {  
    height: 320px;  
}

.article1 .img1.article11img {  
    height: 320px;
} 

.article1 .img1.article12img {  
    height: 380px;  
}

.article1 .img1.article13img {  
    height: 430px;  
}

.article1 .img1.article14img {  
    height: 360px;  
}

   .article1 .img1.article15img {  
    height: 270px;  
}

.article1 .img1.article16img {  
    height: 490px;  
}

.article1 .img1.article17img {  
    height: 315px;  
}

.article1 .img1.article18img {  
    height: 450px;  
}

.article1 .img1.article19img {  
    height: 400px;  
}

.article1 .img1.article20img {  
    height: 450px;  
}

.article1 .img1.article21img {  
    height: 420px;  
}

.article1 .img1.article22img {  
    height: 370px;  
}

.article1 .img1.article23img {  
    height: 470px;  
}

.article1 .img1.article24img {  
    height: 470px;  
}

.article1 .img1.article25img {  
    height: 470px;  
}

.article1 .img1.article26img {  
    height: 400px;  
}

.article1 .img1.article27img {  
    height: 450px;  
}

.article1 .img1.article28img {  
    height: 450px;  
}

.article1 .img1.article29img {  
    height: 420px;  
}

.article1 .img1.article30img {  
    height: 600px;  
}

.article1 .img1.article31img {  
    height: 310px;  
}

.article1 .img1.article32img {  
    height: 370px;  
}

 .article1 .img1.article33img {  
    height: 400px;  
}  

     .article1 .img1.article34img {  
    height: 450px;  
}  

      .article1 .img1.article35img {  
    height: 400px;  
}     
 
      .article1 .img1.article36img {  
    height: 450px;  
}     
 
      .article1 .img1.article37img {  
    height: 400px;  
}    

      .article1 .img1.article38img {  
    height: 410px;  
} 

           .article1 .img1.article39img {  
    height: 590px;  
} 

           .article1 .img1.article40img {  
    height: 520px;  
} 

           .article1 .img1.article41img {  
    height: 260px;  
} 

      .article1 .img1.article42img {  
    height: 450px;  
} 

        .article1 .img1.article43img {  
    height: 460px;  
} 

            .article1 .img1.article44img {  
    height: 270px;  
} 

    .article1 .img1.article45img {  
    height: 450px;  
} 

    .article1 .img1.article46img {  
    height: 400px;  
} 

          .article1 .img1.article47img {  
    height: 410px;  
} 

          .article1 .img1.article48img {  
    height: 360px;  
} 

    .article1 .img1.article49img {  
    height: 370px;  
} 

    .article1 .img1.article50img {  
    height: 470px;  
}

    .article1 .img1.article51img {  
    height: 500px;  
}

    .article1 .img1.article52img {  
    height: 340px;  
}

        .article1 .img1.article53img {  
    height: 390px;  
}

        .article1 .img1.article54img {  
    height: 440px;  
}


  .article1 .img1.article55img {  
    height: 250px; 
}

  .article1 .img1.article56img {  
    height: 380px; 
}
     
  .article1 .img1.article57img {  
    height: 343px; 
}
    
  .article1 .img1.article58img {  
    height: 330px; 
} 

  .article1 .img1.article59img {  
    height: 340px; 
}


  .article1 .img1.article60img {  
    height: 450px; 
}   

    
      .article1 .img1.article61img {  
    height: 410px; 
} 

      .article1 .img1.article62img {  
    height: 440px; 
} 
   
      .article1 .img1.article63img {  
    height: 280px;
}   
          
   
      .article1 .img1.article64img {  
    height: 450px;
} 

     
      .article1 .img1.article65img {  
    height: 340px;
} 

         
      .article1 .img1.article66img {  
    height: 300px;
}  

      
      .article1 .img1.article67img {  
    height: 380px;
} 

    
      .article1 .img1.article68img {  
    height: 280px;
}  
    
      .article1 .img1.article69img {  
    height: 340px;
}  
    
      .article1 .img1.article70img {  
    height: 340px;
}  

      .article1 .img1.article71img {  
    height: 360px;
}
     
      .article1 .img1.article72img {  
   height: 360px;
}  

       
      .article1 .img1.article73img {  
   height: 360px;
} 
         
      .article1 .img1.article74img {  
   height: 400px;
}  

         
      .article1 .img1.article75img {  
   height: 343px;
}     

     .article1 .img1.article76img {  
   height: 307px;
}      
      
         
      .article1 .img1.article77img {  
   height: 361px;
}  
   
.article1 .img1.article78img {  
   height: 320px;
} 
    
.article1 .img1.article79img {  
   height: 320px;
}   
    
.article1 .img1.article80img {  
   height: 320px;
} 
    
.article1 .img1.article81img {  
   height: 320px;
}  
 
.article1 .img1.article82img {  
   height: 400px;
}  
     
.article1 .img1.article83img {  
   height: 290px;
}  
     
.article1 .img1.article84img {  
   height: 330px;
} 
  
      
.article1 .img1.article85img {  
   height: 340px;
} 
       
.article1 .img1.article86img {  
   height: 308px;
}  
        
.article1 .img1.article87img {  
   height: 420px;
} 
         
.article1 .img1.article88img {  
   height: 470px;
}
 
.article1 .img1.article89img {  
   height: 360px;
} 
     
.article1 .img1.article90img {  
   height: 290px;  
} 
  
.article1 .img1.article91img {  
   height: 400px; 
}   
      
.article1 .img1.article92img {  
   height: 300px; 
}  

.article1 .img1.article93img {  
   height: 340px; 
} 

.article1 .img1.article94img {  
   height: 340px; 
} 
 
.article1 .img1.article95img {  
   height: 350px; 
}   
 
.article1 .img1.article96img {  
   height: 350px; 
}   

.article1 .img1.article97img {  
   height: 300px; 
}  
 
.article1 .img1.article98img {  
   height: 290px; 
}     
     
.article1 .img1.article99img {  
   height: 310px; 
} 
 
.article1 .img1.article100img {  
   height: 340px; 
} 

      
.article1 .img1.article101img {  
   height: 315px; 
} 

      
.article1 .img1.article102img {  
   height: 350px; 
}   
       
.article1 .img1.article103img {  
   height: 375px;
}  
   
.article1 .img1.article104img {  
   height: 350px;
} 

         
.article1 .img1.article105img {  
   height: 360px;
}
         
.article1 .img1.article106img {  
   height: 390px;
}  
         
.article1 .img1.article107img {  
   height: 490px;
} 

    
         
.article1 .img1.article108img {  
   height: 490px;
}

     
.article1 .img1.article109img {  
   height: 340px;
}
     
.article1 .img1.article110img {  
   height: 330px;
}      

.article1 .img1.article111img {  
   height: 300px;
} 
 
.article1 .img1.article112img {  
   height: 300px;
} 
   
.article1 .img1.article113img {  
   height: 350px;
}
   
.article1 .img1.article114img {  
   height: 300px;
}  

.article1 .img1.article115img {  
   height: 320px;
} 

.article1 .img1.article116img {  
   height: 340px;
} 
 
.article1 .img1.article117img {  
   height: 400px;
}  

.article1 .img1.article118img {  
   height: 500px;
} 

.article1 .img1.article119img {  
   height: 430px;
} 
 
.article1 .img1.article120img {  
   height: 320px;
} 

.article1 .img1.article121img {  
   height: 240px;
}









.article1 .img2 {
  width: 800px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin: 60px auto;
}

.article1 .img2 img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This prevents cropping/chopping */
    background-color: transparent; /* Or set to your site's background color */
}

.article1 .img2.article1img {
  height: 270px;
} 


.article1 .img2.article5img {  
    height: 330px;  
} 

.article1 .img2.article7img {  
    height: 450px;  
} 

.article1 .img2.article11img {  
    height: 300px;  
}
    
   .article1 .img2.article15img {  
    height: 400px;  
}


   .article1 .img2.article16img {  
    height: 450px;  
}

  .article1 .img2.article21img {  
    height: 370px;  
}

  .article1 .img2.article22img {  
    height: 440px;  
}
    
 .article1 .img2.article62img {
  height: 500px; 
    margin: 20px auto 20px auto;
}  



.article1 .img3 {
    width: 800px;   /* Set your desired width */
    height: 400px;  /* Set your desired height */
    overflow: hidden;
    border-radius: 10px;
    margin: 60px auto;
}

.article1 .img3 img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This prevents cropping/chopping */
    background-color: transparent; /* Or set to your site's background color */
}

  .article1 .img3.article22img {  
    height: 440px;   
}

.article1 .img3.article62img {
  height: 320px; 
  margin: 20px auto 20px auto;
} 





/* Ensure the image fills the .img div proportionally */


.brain-table {
        width: 60%;
        border-collapse: collapse;
        background-color: #0B1C32; /* الخلفية المطلوبة */
        color: #e7eaf6;            /* لون النص المطلوب */
        margin: 20px auto 60px auto;
        border: 1px solid #e7eaf6; /* الإطار الخارجي */
        font-size: 12px;
        font-weight: 700; 
    }

    .brain-table th {
        background-color: #0B1C32;
          color: #D90D32; 
          font-size: 13px;
          font-weight: 700;
        border-bottom: 2px solid #4facfe;
    }

    .brain-table td {
        padding: 15px;
        border-bottom: 1px solid #162a4d;
        vertical-align: top;
    }

    .brain-table ul {
        margin: 0;
        padding-left: 10px;
    }

    .brain-table li {
        margin-bottom: 5px;
    }

.brain-table th, 
    .brain-table td {
        padding: 15px;
        border: 1px solid #e7eaf6; /* جميع الخطوط الداخلية والخارجية باللون المطلوب */
        vertical-align: top; 
    }
  
 
.fullwidth {
        width: 100%;
    margin: 20px 0; 
    }

.fullwidth h4 {
       color: #ffa500;
    }



.width60 { 
        width: 60%; 
    margin: 0 auto;
    }

.article1 h1 {
    color: #D90D32;
    font-weight: 700;
    font-weight: 700;
}

.article1 h4 {
    color: #ffa500;
    font-size: 14px; 
    font-weight: 700;  
}

.width60 li {
    color: #e7eaf6;
     font-size: 12px;
    font-weight: 700; 
}


.fullwidth h3 {
    color: #D90D32;
  font-size: 13px;
  font-weight: 700;
    margin-top: 10px;
}

.width60.margin { 
    margin-top: 20px;  
} 

/* Ensure the image fills the .img div proportionally */

 
 
/* whatsapp start */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;    /* Centers horizontally */
    gap: 8px;               /* Space between text and icon */
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-text {
   background-color: #D90D32;
  color: #e7eaf6;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.whatsapp-float {
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.whatsapp-container:hover .whatsapp-float {
    transform: scale(1.1);
}
/* whatsapp end */


.offer-section { 
         width: 60%;
        margin: 20px auto; 
        background-color: #112B4A; /* لون خلفية هادئ */
        padding: 15px 0; 
        border-radius: 10px;
        text-align: center; 
    }
    .offer-section h2 { 
        color: #e7eaf6; 
        margin-bottom: 20px; 

}
    .offer-section .offerpara { 
        color: #e7eaf6;  
        margin-bottom: 14px;  
        width: 100% !important;
        padding: 0 30px;
        
}
    
    .btn-discover {
        display: inline-block;
        background-color: #D90D32; /* لون الزر */
        border-radius: 50px;
  color: #e7eaf6;
  padding: 8px 20px; 
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  transition: all .8s ease;
        margin: 20px 0; 
    }

    .btn-discover:hover {  
        background-color: #ffa500; 
} 

 
  
/*footer*/
footer {
	padding: 30px 15px;
	/*background-color: #1d2125;*/
background-image: url('../images/footerbg.png');
    line-height: 0.4 !important;
}

footer .brand-name { 
	width: 100px;
	height: 100px;
	margin: 0 auto 10px;
}

footer .brand-name img {
	width: 100%;
	height: 100%;
} 

footer .social {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
	padding-top: 15px;
}

footer .social a {
	color: #FFF;
	font-size: 25px;
	text-decoration: none;
	display: inline-block;
	margin: 0 12px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

footer .social a:hover {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}


footer .social .fa-twitter {
	color: #55acee;
}


footer .social .fa-linkedin {
	color: #007BB6;
}

footer .social .fa-whatsapp {
	color: #3BBE22;
}

footer .social .fa-instagram {
	color: #AC07EA;
}

footer .social .fa-tiktok {
	color: #000000;
	text-shadow: 1px 1px 2px #e7eaf6;
}

footer .social .fa-youtube {
	color: #D90D32;
	text-shadow: 1px 1px 2px #e7eaf6;
}

footer .social .fa-facebook-f {
	color: #0866FF;
	text-shadow: 1px 1px 2px #e7eaf6;
}

/*copyright*/
.copyright {
	/*background-color: #1d2125;*/
	background-image: url('../images/footerbg.png');
	border-top: 1px solid #0B1C32; 
	padding: 15px;
}

.copyright p{
	color: #e7eaf6;
	margin: 0;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
}   

.ham-burger #sign-one,
.ham-burger #sign-two {
	font-size: 34px; 
	height: 35px;
	width: 35px;
	margin-right:10px; 
	color: #e7eaf6;
	text-align: center;
	line-height: 40px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer; 
	display: none; 
}

#res-menu {
	display: none;
}







/*Responsive 2*/
@media(max-width: 833px) {  /*@media(max-width: 767px) {*/
    

	
	/*scrollTop*/
	.scrollTop {   
		left: 5px;
		width: 25px;
		height: 25px; 
		background-size: 14px; 
	}

	.scrollTop.active {  
		bottom: 20px; 
	} 
	
 
	
	header {
		padding: 15px;
		position: fixed;
		/*background-color: #0B1C32;*/
		border: none;
		/*border-bottom: 1px solid #0B1C32;*/
		z-index: 11;
		width: 100%;   
	}	
	
	header.fixed {
	background-color: transparent; 
	border-color: none; 
}

	header .brand-name img {
		width: 100px;
		height: 100px; 
		z-index: 100; 
	}  
	
	.ham-burger #sign-one {
		display: block;
	}
	
	#res-menu:checked ~ .navbar { 
		right: 0;  
	}
	
	#res-menu:checked ~ .ham-burger #sign-one {
		display: none;
	}
	
	#res-menu:checked ~ .ham-burger #sign-two {
		display: block;
	}

	.navbar {
		position: absolute;
		background-color: #0B1C32;
		right: -100%;
		top: 75px;
		padding: 15px;
		/*border-bottom: 1px solid #e7eaf6;*/
		width: 40%;
		text-align: center;
		-webkit-transition: all .8s ease;
		-o-transition: all .8s ease;
		transition: all .8s ease; 
	}
	
	.navbar.show {
		display: block;
	}
	
	header .navbar ul li {
		display: block;
		margin-left: 0; 
		border-bottom: 1px solid #e7eaf6;  
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: transform .5s ease;
	} 
	
	header .navbar ul li a {
		line-height: 42px;
		color: #e7eaf6;
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease; 
	}
	
	header .navbar ul li a:hover {
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
		color: #ffa500;
	}
	
	header .navbar ul li:last-child {
		border-bottom: none;
	}
	
	header .navbar ul li a::before {
	/*to hide red line on home link*/
		content: none; 
	}
	
 .article1 p {
  width: 100% !important; 
}
    
    .brain-table {
  width: 100%; 
}
    
    .width60 {
    width: 100%;  
        padding: 5px 20px;
}
    
    .offer-section {
  width: 100%; 
}
    
    .offer-section .offerpara { 
  padding: 0 15px;
}
   
	  
}

 

/*Responsive 500px*/
@media(max-width: 500px) {  
     
    
  body {      
    line-height: 2;
} 
    
     header .brand-name img {
    width: 85px;
    height: 85px; 
  }
    
    .ham-burger #sign-one, .ham-burger #sign-two {
  font-size: 30px; 
}

     
    
    .fullwidth { 
  margin: 20px 0;
}
    
    .fullwidth h3 { 
  margin-top: 0px;
}
    
       .width60 { 
    padding: 5px 20px;
}
    
    .article1 { 
  margin-top: 15px;
}
    
     .section-title h1 {
    font-size: 16px !important; 
  }
    
     br { 
  display: none;
} 
    
    .article1 .img1 { 
    margin: 40px auto 60px auto;
}
    
    .article1 .img1.article1img {  
    height: 290px;  

}
    
    .article1 .img1.article2img {
  height: 403px;
}
    
    .article1 .img1.article3img {
  height: 400px;
}
    
    .article1 .img1.article4img {
  height: 252px;
}
    
    .article1 .img1.article5img {
  height: 270px;
}
    
    .article1 .img1.article6img {
 height: 338px;
}
	
  
    .article1 .img1.article7img {
  height: 352px;
} 
    
 .article1 .img1.article8img {
  height: 251px;
} 
    
  .article1 .img1.article9img {
        height: 251px;
} 
    
         .article1 .img1.article10img {
        height: 278px;
} 
     .article1 .img1.article11img {  
    height: 271px;
}
    
    .article1 .img1.article12img {
  height: 353px;
}
    
    .article1 .img1.article13img {  
    height: 406px;
} 
    
  .article1 .img1.article14img {
            height: 382px;
}
    
  .article1 .img1.article15img {  
    height: 227px;
}
    
 .article1 .img1.article16img {
  height: 459px;
}
    
  .article1 .img1.article17img {
    height: 232px;
  }
    
    .article1 .img1.article18img {  
    height: 458px;  
}
    
    .article1 .img1.article19img {  
    height: 305px;
}
    
    .article1 .img1.article20img {  
    height: 458px;
}
    
    .article1 .img1.article21img {  
    height: 458px;
}
    
    
    .article1 .img1.article22img {  
    height: 305px; 
}
    
    .article1 .img1.article23img {  
    height: 423px;
}
    
    .article1 .img1.article24img {  
   height: 475px;
}
    
    .article1 .img1.article25img {  
   height: 405px;
}
    
    .article1 .img1.article26img {  
    height: 343px;
}
     
    .article1 .img1.article27img {  
   height: 384px;
}
    
    
 .article1 .img1.article28img {  
    height: 458px; 
}   
    
    .article1 .img1.article29img {  
    height: 334px;
} 
    
    
.article1 .img1.article30img {  
    height: 830px;  
}
    
    
.article1 .img1.article31img {  
    height: 258px;
}
    
.article1 .img1.article32img {  
   height: 277px; 
}
 
 .article1 .img1.article33img {  
   height: 337px; 
}   
    
     .article1 .img1.article34img {  
    height: 458px;  
}   
    
      .article1 .img1.article35img {  
    height: 345px; 
}     
    
      .article1 .img1.article36img {  
    height: 458px;
}   
    
      .article1 .img1.article37img {  
    height: 351px; 
} 
    
  .article1 .img1.article38img {  
    height: 351px;
} 
     
  .article1 .img1.article39img {  
    height: 638px;
}
    
  .article1 .img1.article40img {  
    height: 458px; 
}   
    
  .article1 .img1.article41img {  
    height: 353px;
} 
    
  .article1 .img1.article42img {  
    height: 458px;  
} 
    
 .article1 .img1.article43img {  
    height: 458px; 
} 
    
  .article1 .img1.article44img {  
    height: 229px; 
} 
    
  .article1 .img1.article45img {  
    height: 459px; 
} 
    
 .article1 .img1.article46img {  
    height: 313px;
} 
    
 .article1 .img1.article47img {  
    height: 338px;
} 
    
  .article1 .img1.article48img {  
    height: 256px;
}            
    
    .article1 .img1.article49img {  
    height: 312px;
} 
    
    .article1 .img1.article50img {  
    height: 463px;
}
    
    .article1 .img1.article51img {  
    height: 415px;  
}
    
        .article1 .img1.article52img {  
    height: 258px; 
}
    
        .article1 .img1.article53img {  
    height: 330px;
}
    
  .article1 .img1.article54img {  
   height: 460px; 
}
    
  .article1 .img1.article55img {  
   height: 245px;  
}
    
  .article1 .img1.article56img {  
    height: 343px;
}
     
  .article1 .img1.article57img {  
   height: 275px;
}  
    
  .article1 .img1.article58img {  
    height: 259px;
}  

  .article1 .img1.article59img {  
    height: 263px;
}

  .article1 .img1.article60img {  
    height: 465px;
}  
    
      .article1 .img1.article61img {  
    height: 388px;
}   
    
      .article1 .img1.article62img {  
    height: 463px;  
} 
    
      .article1 .img1.article63img {  
   height: 302px;
}  
    
      .article1 .img1.article64img {  
    height: 465px;
}
     
     
      .article1 .img1.article65img {  
    height: 285px;
} 
    
         
      .article1 .img1.article66img {  
    height: 239px;
}   
      
      .article1 .img1.article67img {  
    height: 308px;
}  
    
      .article1 .img1.article68img {  
    height: 236px;
}  
    
      .article1 .img1.article69img {  
    height: 308px;
}    
    
      .article1 .img1.article70img {  
    height: 310px;
} 
     
      .article1 .img1.article71img {  
   height: 321px;
}    
      
      .article1 .img1.article72img {  
   height: 308px;
}   
    
       
      .article1 .img1.article73img {  
   height: 290px;
}     
         
      .article1 .img1.article74img {  
   height: 343px;
}     
           
      .article1 .img1.article75img {  
   height: 307px;
}           
   
    .article1 .img1.article76img {  
   height: 261px;
}      
          
      .article1 .img1.article77img {  
   height: 355px;
}     
     
      .article1 .img1.article78img {  
   height: 251px;
}  
     
      .article1 .img1.article79img {  
   height: 251px;
}  
       
.article1 .img1.article80img {  
   height: 251px;
}      
     
.article1 .img1.article81img {  
   height: 251px;
} 
     
.article1 .img1.article82img {  
   height: 462px;
}  
     
.article1 .img1.article83img {  
   height: 261px;
} 
      
.article1 .img1.article84img {  
   height: 290px;
} 
     
       
.article1 .img1.article85img {  
   height: 308px;
}      
       
.article1 .img1.article86img {  
   height: 308px;
}    
        
.article1 .img1.article87img {  
   height: 462px;
}     
  
.article1 .img1.article88img {  
   height: 463px;
}  
     
.article1 .img1.article89img {  
   height: 306px;
}    
      
.article1 .img1.article90img {  
   height: 324px;
}    
    
      
.article1 .img1.article91img {  
   height: 377px; 
}     
     
.article1 .img1.article92img {  
   height: 258px;
}    
     
.article1 .img1.article93img {  
  height: 306px;
}

    
.article1 .img1.article94img {  
  height: 306px;
}
     
.article1 .img1.article95img {  
   height: 305px; 
}   
 
.article1 .img1.article96img {  
   height: 305px;
}  
     
.article1 .img1.article97img {  
   height: 290px; 
}     
     
.article1 .img1.article98img {  
   height: 258px;
}     
     
.article1 .img1.article99img {  
   height: 306px;
}     
       
     
.article1 .img1.article100img {  
   height: 307px; 
}  
    
      
.article1 .img1.article101img {  
   height: 260px;
}   
      
.article1 .img1.article102img {  
   height: 367px;
}     
       
.article1 .img1.article103img {  
   height: 312px;
}     
        
.article1 .img1.article104img {  
   height: 470px;
} 
         
.article1 .img1.article105img {  
   height: 364px;
}    
         
.article1 .img1.article106img {  
   height: 352px;
}       
         
.article1 .img1.article107img {  
   height: 374px;
}    
    
         
.article1 .img1.article108img {  
   height: 440px;
} 
     
.article1 .img1.article109img {  
   height: 328px;
}       
      
.article1 .img1.article110img {  
   height: 301px;
}    
     
.article1 .img1.article111img {  
   height: 258px;
}     
  
.article1 .img1.article112img {  
   height: 258px;
} 
     
.article1 .img1.article113img {  
   height: 307px;
}     
   
.article1 .img1.article114img {  
   height: 256px;
} 
 
    .article1 .img1.article115img {  
   height: 306px;
} 
    
.article1 .img1.article116img {  
   height: 332px;
} 
    
    
.article1 .img1.article117img {  
   height: 459px;
} 
    
    
.article1 .img1.article118img {  
   height: 594px;
} 


.article1 .img1.article119img {  
   height: 399px;
} 
    
 
.article1 .img1.article120img {  
   height: 320px;
} 
    
 
.article1 .img1.article121img {  
   height: 248px;
}   
    
    
    
    
      
     .article1 .img2 {
    margin: 40px auto 60px auto;
  } 
    
 .article1 .img2.article1img {
    height: 217px; 
     margin: 0px auto 20px auto;
  } 
    
    .article1 .img2.article5img {
  height: 168px;
        margin: 0px auto 20px auto;
}
    
    .article1 .img2.article7img {
        height: 290px;
        margin: 0px auto 20px auto;
}
    
        .article1 .img2.article11img {  
    height: 181px;  
            margin: 0px auto 20px auto;
}
    
    .article1 .img2.article15img {  
    height: 372px;  
        margin: 0px auto 20px auto;
} 
    .article1 .img2.article16img {
  height: 450px;
        margin: 0px auto 20px auto;
}
    
      .article1 .img2.article21img {  
    height: 220px;  
}
    
    
   .article1 .img2.article22img {  
    height: 364px;
       margin: 0px auto 20px auto;
}   
    
 .article1 .img2.article62img {
  height: 400px; 
    margin: 0px auto 20px auto;
}  
    
 .article1 .img2.article62img {
    height: 465px;
    margin: 20px auto 20px auto;
}  
    
   

    
    
 .article1 .img3.article22img {
  height: 363px; 
        margin: 0px auto 20px auto;
} 
    
.article1 .img3.article62img {
  height: 265px; 
  margin: 20px auto 20px auto;
} 
  
    
   
    

  
    
    .brain-table { 
  margin: 20px auto 30px auto; 
}
    
    .offer-section {  
        margin: 0px auto;  
    }

/* whatsapp start */
.whatsapp-text {
  font-size: 13px;
}

.whatsapp-float { 
    width: 50px;
    height: 50px; 
    font-size: 30px; 
}

.whatsapp-container:hover .whatsapp-float {
    transform: scale(1.1);
}
    
    .whatsapp-container { 
  bottom: 40px;
  right: 5px; 
}
/* whatsapp end */
    
    
    footer .brand-name {
  width: 85px;
  height: 85px; 
}
    
    footer .social a { 
  font-size: 20px; 
}

.copyright p {
    font-size: 13px;
     padding-right: 15px;
    padding-left: 15px; 
}
    
      .scrollTop { 
    width: 30px;
    height: 30px; 
  }

}



















