@media screen and (max-device-width:480px){#search div.radio-controls div.n-lbl{float:right;margin-right:5px;margin-top:6px}}

/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
        :root {
            --primary: #00a651;
            --secondary: #ffd900;
            --white: #ffffff;
            --dark: #333;
		   --shadow: 0 8px 30px rgba(0, 166, 81, 0.2);

        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Cairo', sans-serif; }

        /* Background Image Animation */
        body {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                        url('logo/bg.jpg');
            background-size: 100% 100%;
            background-attachment: fixed;
            animation: bgZoom 20s infinite alternate;
            padding-top: 130px; padding-bottom: 90px;
			font-family:'Cairo', sans-serif;
        }

        @keyframes bgZoom {
            0% { background-position: 0% 0%; background-size: 100% 100%; }
            100% { background-position: 100% 100%; background-size: 130% 130%; }
        }

        /* Fixed Banner */
        .fixed-header {
            position: fixed; top: 0; width: 100%; z-index: 2000;
            background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
		        /* Fixed Banner */
        .header-container {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .top-bar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px 20px; border-bottom: 1px solid #eee;
        }

        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-circle { width: 35px; height: 35px; background: var(--primary); border-radius: 50%; }
        .company-name { font-weight: 800; color: var(--primary); font-size: 1.2rem; }
        .branch-tag { background: var(--secondary); padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: bold; }


        .banner-top {
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px 20px; border-bottom: 1px solid #eee;
        }

        .brand { display: flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 800; }
        .logo-box { width: 30px; height: 30px; background: var(--secondary); border-radius: 5px; }

        .banner-icon-row {
            display: grid; grid-template-columns: repeat(3, 1fr);
            padding: 8px 0; text-align: center; background: #fdfdfd;
        }
        .banner-icon-row i { color: var(--primary); font-size: 1.2rem; background: var(--secondary);padding:7px;border-bottom:var(--primary) 2px solid;padding-right:40px;padding-left:40px;border-radius:10px}

        /* Animated Icon Row with Text */
        .animated-feature-row {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 10px; padding: 20px 10px; text-align: center;
        }
        .feature-item i {
            display: inline-block; font-size: 2rem; color: var(--secondary);
            margin-bottom: 8px; animation: pulse 2s infinite;
        }
        .feature-item span { display: block; color: var(--white); font-size: 0.8rem; font-weight: bold; }

        @keyframes pulse {
            0% { transform: scale(1); filter: drop-shadow(0 0 0px var(--secondary)); }
            50% { transform: scale(1.1); filter: drop-shadow(0 0 10px var(--secondary)); }
            100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--secondary)); }
        }







        .banner-container {
            position: relative;
            width: 100%;
            height: 300px;
            max-height: 300px;
            background: #000;
            overflow: hidden;
            border-bottom: 4px solid var(--secondary);
        }

        /* Slide Core Styling */
        .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-size: cover;
            background-position: center;
            animation: slideCycle 15s infinite;
        }

        /* Overlay per Slide */
        .slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0,166,81,0.9), rgba(0,0,0,0.8));
            z-index: 1;
        }

        /* Slide Content (Text) */
        .slide-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            transform: translateY(20px);
            transition: 0.8s ease;
        }

        .slide-content h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .slide-content p {
            color: #ffffff;
            font-size: 1.1rem;
            max-width: 600px;
            font-weight: 300;
        }

        /* Specific Images */
		.slide0 { background-image: url('logo/bg.jpg'); animation-delay: 0s; }

        .slide1 { background-image: url('logo/slider1.jpg'); animation-delay: 5s; }
        .slide2 { background-image: url('logo/slider2.jpg'); animation-delay: 10s; }
        .slide3 { background-image: url('logo/slider3.jpg'); animation-delay: 15s; }

        /* Animation Keyframes */
        @keyframes slideCycle {
            0% { opacity: 0; }
            5%, 33% { opacity: 1; }
            38%, 100% { opacity: 0; }
        }

        /* Secondary animation for text movement */
        .slide { animation-name: slideCycle; }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .banner-container { height: 250px; }
            .slide-content h2 { font-size: 1.6rem; }
            .slide-content p { font-size: 0.9rem; }
        }
		
		
		
		
		
		
		
		
		
		
		
        /* Branch Banner */
        .branch-banner {
            background: var(--secondary); color: var(--dark);
            padding: 10px; text-align: center; font-weight: bold; font-size: 0.75rem;
            margin: 10px 0; border-left: 5px solid var(--primary);border-right: 5px solid var(--primary);
        }
		
		  /* Social Banner */
        .Social-banner {
            background: var(--primary); color: var(--dark);
            padding: 10px; text-align: center; font-weight: bold; font-size: 0.85rem;
            margin: 10px 0; border-left: 5px solid var(--secondary);border-right: 5px solid var(--secondary);
        }

      /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .service-box {
            background: var(--primary);
			color: var(--secondary);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
			font-size: 1.2rem;
        }
		a {
  text-decoration: none;
}
		 .service-box i { font-size: 1.5rem; }

		 .service-box:hover i { transform: scale(1.2) rotate(10deg);font-size: 1.7rem; }
		  /* Generic Section Styling */
        section { padding: 20px; }
        h2 { margin-bottom: 15px;text-align:center;color: var(--primary); border: 2px solid var(--secondary); padding-left: 10px; font-size: 1.2rem; }
	  /* Generic Section Styling */
        section { padding: 20px; }
        h3 { margin-bottom: 15px;color: var(--white);text-align:center; border-bottom: 2px solid var(--secondary); padding-left: 10px; font-size: 1.2rem; }
       .service-box h4 { margin-bottom: 15px;color: var(--white);text-align:center;  padding-left: 10px; font-size: .9rem; }




     /* Projects Swiper */
        .swiper { width: 100%; padding: 10px 0; }
        .swiper-slide { border-radius: 15px; overflow: hidden; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .swiper-slide img { width: 100%; height: 250px; object-fit: cover; }
		.swiper-slide h4 { text-align:center; }

        .swiper-button-next, .swiper-button-prev { color: var(--secondary); }

        /* 3 Animated Hero Images */
        .hero-images {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 10px; padding: 10px; max-width: 900px; margin: 0 auto;
        }
        .hero-img-card {
            height: 120px; border-radius: 12px; overflow: hidden;
            border: 2px solid var(--white); opacity: 0;
            animation: slideIn 0.8s ease-out forwards;
        }
        .hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
        .hero-img-card:nth-child(1) { animation-delay: 0.2s; }
        .hero-img-card:nth-child(2) { animation-delay: 0.4s; }
        .hero-img-card:nth-child(3) { animation-delay: 0.6s; }

        @keyframes slideIn {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Project Swiper */
        .swiper-container {
            position: relative; max-width: 600px; margin: 20px auto; overflow: hidden; padding: 0 20px;
        }
        .swiper-track { display: flex; transition: 0.5s ease; }
        .project-card {
            min-width: 100%; background: var(--white); padding: 15px;
            border-radius: 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
		h4{ color:#00a651}
			.project-card p{ color:var(--dark);font-size: .8rem}
        .nav-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: var(--primary); color: white; border: none;
            width: 35px; height: 35px; border-radius: 50%; cursor: pointer; z-index: 10;
        }
        .prev { left: 0; } .next { right: 0; }
      /* Social Media Icons (4 in Row) */
        .social-row { display: flex; justify-content: center; gap: 20px; padding: 20px 0; }
        .social-btn {
            width: 45px; height: 45px; background: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; font-size: 1.2rem; transition: 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .social-btn:hover { transform: translateY(-5px); background: var(--secondary); }
        .social-btn i { color: var(--primary); }

        /* Sections */
        .info-section {
            display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px;
        }
        .card { background: rgba(255,255,255,0.95); padding: 20px; border-radius: 15px; }
        .card h3 { color: var(--primary); border-bottom: 2px solid var(--secondary); margin-bottom: 10px; }

         /* الحاوية الرئيسية مع خلفية صورة */
        .special-tab-section {
            position: relative;
            width: 100%;
            min-height: 50px;
			max-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('logo/slider2.jpg') no-repeat center center/cover;
            overflow: hidden;
        }

        /* غطاء أخضر شفاف (Overlay) */
        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 166, 81, 0.9) 0%, rgba(0, 77, 38, 0.8) 100%);
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            width: 100%;
            max-width: 800px;
            padding: 20px;
        }

        .title {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 40px;
            text-transform: uppercase;
			color: var(--white);
			
           
        }

        .title span {
            color: var(--secondary);
        }

        /* صف الأيقونات - بجانب بعضهم البعض */
        .branch-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: nowrap; /* يضمن بقاءهم في صف واحد */
        }

        .branch-item {
            text-decoration: none;
            color: var(--white);
            flex: 1;
            max-width: 250px;
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 15px;
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .branch-item:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--secondary);
            transform: translateY(-10px);
        }

        /* الأيقونات والأنيميشن */
        .icon-box {
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        /* الأيقونة الأولى: اهتزاز عمودي */
        .ani-float {
            animation: float 3s infinite ease-in-out;
        }

        /* الأيقونة الثانية: نبض */
        .ani-pulse {
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 0px var(--secondary)); }
            50% { transform: translateY(-15px); filter: drop-shadow(0 0 0px var(--secondary)); }
        }

    
        .branch-item h3 {
            font-size: 1.2rem;
            font-weight: 700;
			border:none;
        }
		
		
		
		
		
		
		
		
		        .tab-list {
            max-width: 800px;
            margin: 50px auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* The Tap Row - Set to Row-Reverse for Right Alignment */
        .tap-row {
            background: var(--white);
            padding: 20px 25px;
            border-radius: 15px;
            text-decoration: none;
            display: flex;
            flex-direction: row-reverse; /* Icons and text to the right */
            align-items: center;
            justify-content: flex-start; /* Aligns everything to the right side */
            border-right: 6px solid var(--primary); /* primary accent on the right */
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
			margin-bottom:10px;
        }

        .tap-row:hover {
            background: var(--primary);
            transform: translatey(-4px); /* Slides slightly left on hover */
            box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2);
        }

        /* Text Container - Aligned to the right of the icon */
        .text-content {
            display: flex;
            flex-direction: column;
            text-align: right;
            margin-right: 15px; /* Space between text and the icon to its right */
        }

        /* Title Class */
        .n-lbl {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--primary);
            transition: 0.3s;
			
        }

        /* Subtitle Class */
        .value {
            font-size: 0.9rem;
            color: #666;
            transition: 0.3s;
        }

        /* Hover States for Text */
        .tap-row:hover .n-lbl { color: var(--secondary); }
        .tap-row:hover .value { color: var(--white); opacity: 0.9; }

        /* Right Icon Styling */
        .right-icon {
            font-size: 1.8rem;
            color: var(--secondary);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Icon Animation on Hover */
        .tap-row:hover .right-icon {
            transform: scale(1.2) rotate(-10deg);
            filter: drop-shadow(0 0 5px rgba(255, 217, 0, 0.5));
        }

        /* Mobile Adjustments */
        @media (max-width: 600px) {
            .tap-row { padding: 15px; }
            .n-lbl { font-size: 1rem; }
            .right-icon { font-size: 1.5rem; }
        }

        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 600px) {
            .title { font-size: 2rem; }
            .branch-row { gap: 15px; }
            .icon-box { font-size: 2.5rem; }
            .branch-item h3 { font-size: 1rem; }
            .branch-item { padding: 20px 10px; }
        }


        /* Fixed Footer (6 Icons) */
        .fixed-footer {
            position: fixed; bottom: 0; width: 100%; height: 80px;
            background: var(--white); display: flex; justify-content: space-around;
            align-items: center; border-top: 3px solid var(--primary); z-index: 2000;
        }
        .footer-item { text-align: center; text-decoration: none; color: var(--dark); font-size: 0.65rem; }
        .footer-item i { display: block; font-size: 1.3rem; color: var(--primary); margin-bottom: 3px; }
        .footer-item:nth-child(even) i { color: var(--secondary); }

        @media (min-width: 768px) {
            .info-section { grid-template-columns: 1fr 1fr; }
            .hero-img-card { height: 250px; }
        }
	

        /* Logic to hide footer when screen is larger than 600px */
        @media screen and (min-width: 601px) {
            .fixed-footer {
                display: none;
            }
        }

    







/*--------------------------------------------------------------
# Main page
--------------------------------------------------------------*/

#header{position:fixed;top:0px;width: 100%;overflow:hidden;z-index: 99;min-height:110px;max-height:135px;background-image: url(../logo/banner.jpg);background-size: cover;background-position: center;}

#avatar{position:absolute;top:5px;right:5px}#header div.avatar img{max-height:75px;max-width:autopx;}
#text{min-width:220px;text-align:right;margin:81 110px 70px -85px}

#text-header{margin-top: -35px;height: 0px;padding:-20px}
#text-header-about{margin-top: 40px;height: 0px;padding:-20px}
#text-header-Branch{margin-top: 20px;}


#text-header-vision{margin-top: -40px;height: 0px;padding:-20px}

#text-header-share{margin-top: 140px;height: 0px;padding:-20px}

#title{position:fixed;top:120px;width: 100%;overflow: hidden;background-color: #00a651;background-position: center;background-size: cover;z-index:110;height:130px; border-top-left-radius:20px;border-top-right-radius:20px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;}

#footer{position: fixed; bottom: 0px; width: 100%; height: 58px; border-top-left-radius:20px;border-top-right-radius:20px;background-color: #1c3f38;border-top:3px solid #ffd900;background-size: cover;background-position: center;}padding:6px 0 10px 0;}

#footer-share{position: fixed; bottom: 0px; width: 100%; height: 50px; background: linear-gradient(to top right, #fff 30%, #fff 70%);border-top:3px solid #00a651;padding:6px 0 10px 0;}
span.n-lbl-main{display:block;margin-left:62px;color:#fff;font-size:19px;margin-bottom:3px;margin-top:-40px;word-wrap:break-word}
span.value-main{display:block;color:#fff;text-align:center;margin-top:60px;font-size:16px;word-wrap:break-word} 

/*--------------------------------------------------------------
# English page
--------------------------------------------------------------*/

#avatar-EN{position:absolute;top:5px;left:5px}#header div.avatar-EN img{max-height:100px;max-width:autopx}
#text-EN{min-width:220px;margin:30 90px 8px 100px}
#header2{position:fixed;top:0px;width: 100%;overflow:hidden;min-height:120px;max-height:120px;padding:-3px 0 1px 0;border-bottom:3px solid #00a651;border-bottom-left-radius:20px;border-bottom-right-radius:20px;background-image: url(../logo/banner.jpg);background-size: cover;background-color: #fff;}


/*--------------------------------------------------------------
# Internal pages
--------------------------------------------------------------*/


#text-header-internal{margin-top: 190px;height: 0px;padding:-20px}
#breadcrumbs{position:fixed;top:120px;width: 100%;overflow: hidden;min-height:0px;z-index: 97;text-indent:10px;padding:9px 0 10px 0; color:#00a651;border-bottom-left-radius:20px;border-bottom-right-radius:20px;background-color: #00a651;border-bottom:solid 2px #ffd900;border-top:solid 2px #00a651;padding-bottom:5px;margin:13px 0px}
#breadcrumbs2{position:fixed;top:147px;width: 100%;overflow: hidden;min-height:0px;z-index: 97;text-indent:10px;padding:9px 0 10px 0;color:#00a651;background-color: #1f447e;border-bottom:solid 2px #00a651;border-top:solid 2px #00a651;padding-bottom:5px;margin:13px 0px}
#text-header-search{margin-top: 120px;height: 0px;padding:-20px}

span.n-lbl{display:block;margin-left:55px;color:#00a651;margin-bottom:3px;margin-top:-40px;word-wrap:break-word}
span.value{display:block;color:#afafac;margin-left:55px;word-wrap:break-word} 

span.n-lbl-Ar{display:block;margin-right:65px;text-align:right;font-size:20px;color:#00a651;margin-bottom:3px;margin-top:0px;word-wrap:break-word}
span.value-Ar{display:block;color:#afafac;margin-right:65px;text-align:right;word-wrap:break-word} 


span.search-need{display:block;color:#fff;margin-left:52px;word-wrap:break-word} 
.raquo{color:#fff;}.crumb{color:#fff;}.crumb:hover{color:#fff;}


.contact-item{background-color: #fff;background-position: center;background-size:  cover;border-radius:20px;border-bottom:2px solid #00a651;margin:3px;border-top:2px solid #00a651;display:block;min-height:45px;padding:7px;position:static}
.contact-item:hover{background-image: url(../logo/banner-item2.jpg);
		background-repeat:  no-repeat;
		background-size:  cover;
			 transition:0.6s;
background-position: center center; border-radius:10px;display:block;margin:3px;min-height:45px;padding:7px;position:static}

.contact-item-collapse{background-color: #fff;background-position: center;background-size:  cover;border-radius:20px;border-bottom:2px solid #00a651;margin:3px;border-top:2px solid #00a651;display:block;min-height:45px;padding:7px;position:static}



.contact-item-lab{background-image: url(../logo/labmed.png);background-position: center;background-size:  cover;width:90%;border-radius:20px;border-bottom:2px solid #00a651;margin:7px;border-top:2px solid #00a651;display:block;min-height:65px;padding:7px;position:static}

.contact-item-map{background-image: url(../logo/map.gif);background-position: center;background-size:  cover;width:90%;border-radius:20px;border-bottom:2px solid #ffd900;margin:7px;border-top:2px solid #ffd900;display:block;min-height:65px;padding:7px;position:static}


.contact-item2{background-color:#00a651;background-position: center;background-size:  cover;border-radius:20px;border-bottom:2px solid #00a651;margin:5px;border-top:2px solid #00a651;display:block;margin-bottom:-1px;min-height:45px;padding:7px;position:static}
.contact-item2:hover{background-color:#00a651;
			 transition:0.6s;
background-position: center center; border-radius:10px;display:block;margin-bottom:-1px;min-height:45px;padding:7px;position:static}





div.related-content4{	background-image: url(../logo/3.png) ;background-position: center;border-radius:20px;margin:0px 10px 10px;padding: 7px 3px;}


div.related-content{	background-image: url(../logo/3.png) ;background-position: center;background-size: cover;border-radius:20px;border-top:2px solid #00a651;border-bottom:2px solid #00a651;margin:0px 10px 20px; padding:5px;}
div.related-content2{	background-color: #00a651;background-position: center;background-size:  cover;position:fixed;bottom:40px;border-radius:20px;border-top:2px solid #ffd900;border-bottom:2px solid #ffd900;margin:10px 20px 20px 32px;padding:0px 7px 5px 10px; }
div.related-content3{	background-image: url(../logo/2.png) ;background-position: center;background-size: cover;border-radius:20px;border-top:2px solid #00a651;border-bottom:2px solid #00a651;margin:0px 10px 20px; padding:5px 60px;}

div.related-content-near{	background-image: url(../logo/bg3.jpg) ;box-shadow: 0px 0px 10px 5px rgba(255,255,255,0.6);background-position: center;background-size: cover;border-radius:20px;border-top:2px solid #00a651;border-bottom:2px solid #00a651;margin:10px 20px 0px; padding:5px;}

div.related-content-map{	background-image: url(../logo/map.gif) ;height:80px;width:100%;box-shadow: 0px 0px 10px 5px rgba(255,255,255,0.6);background-position: center;background-size: cover;border-radius:20px;border-top:2px solid #00a651;border-bottom:2px solid #00a651; padding:5px;margin-bottom:40px}

div.related-content-small{	  	background-image: url(../logo/2.png);
		background-repeat:  no-repeat;
		background-size:  cover;
background-position: center center;
	width: 85px;
	height: 78px;
	display: flex;
	justify-content: center;
	border-bottom:3px solid #ffd900;
border-radius:20px;
	margin-left: 7px;
	margin-right:7px;
	
-webkit-filter: drop-shadow(2px 2px 2px #222);
  filter: drop-shadow(2px 2px 2px #222);
	}

	

	
	div.related-content-larg{	  	background-image: url(../logo/2.png);
		background-repeat:  no-repeat;
		background-size:  cover;
background-position: center center;
	width: 250px;
	height: 180px;
	display: flex;
	justify-content: center;
	padding:10px;
border-radius:20px;
	
	

	}
	
	
#footer-internal{position: fixed; bottom: 0px; width: 100%; height: 45px; background: linear-gradient(to top right, #fff 30%, #fff 70%);border-top:3px solid #d5a53f;padding:6px 0 10px 0;}


/*--------------------------------------------------------------
# Engage
--------------------------------------------------------------*/
div.related-content-f{background-color:#00a651;background-size: cover;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #fff;padding:7px}
div.related-content-t{background-image: url(../logo/bg4.jpg);background-size: cover;background-color: #fff;;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #00a651;padding:7px}
div.related-content-l{background-image: url(../logo/banner.jpg);background-size: cover;background-color: #fff;;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #00a651;padding:7px}
div.related-content-y{background-image: url(../logo/banner.jpg);background-size: cover;background-color: #fff;;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #00a651;padding:7px}
div.related-content-i{background-image: url(../logo/bg5.jpg);background-size: cover;background-color: #fff;;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #00a651;padding:7px}
div.related-content-p{background-image: url(../logo/banner.jpg);background-size: cover;background-color: #fff;;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #00a651;padding:7px}
div.related-content-g{background-image: url(../logo/banner.jpg);background-size: cover;background-color: #fff;;margin:-5px 10px 0px;width:220px;height:100px;border-radius:20px;border:4px solid #00a651;padding:7px}

#text-header-Engage{margin-top: 95px;height: 0px;padding:-20px}

	.fb-container{
    display: flex;
}

.fb-like{
    width: 142px;
    overflow: hidden;
    margin: auto;
}



/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);





#scrolltop {
  display: none;
}

#rocketmeluncur {
  position: fixed;
  bottom: 75px;
  z-index: 7;
  display: none;
  visibility: hidden;
  width: 26px;
  height: 48px;
  right: 25px;
  background: url(../logo/Ask.png) no-repeat 50% 0;
  opacity: 0;
  -webkit-transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), -webkit-transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -moz-transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), -moz-transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

#rocketmeluncur i {
  display: block;
  margin-top: 48px;
  height: 14px;
  background: url(https://1.bp.blogspot.com/-UR9I7YEuEUY/VXIJn8MrBPI/AAAAAAAAKRE/qZObHBd5zIo/s1600/rocket.png) no-repeat 50% -48px;
  opacity: .5;
  -webkit-transition: -webkit-transform .2s;
  -moz-transition: -moz-transform .2s;
  transition: transform .2s;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0
}

#rocketmeluncur:hover {
  background-position: 50% -62px
}

#rocketmeluncur:hover i {
  background-position: 50% 100%;
  -webkit-animation: flaming .7s infinite;
  -moz-animation: flaming .7s infinite;
  animation: flaming .7s infinite
}

#rocketmeluncur.showrocket {
  visibility: visible;
  opacity: 1
}

#rocketmeluncur.launchrocket {
  background-position: 50% -62px;
  opacity: 0;
  -webkit-transform: translateY(-800px);
  -moz-transform: translateY(-800px);
  -ms-transform: translateY(-800px);
  transform: translateY(-800px);
  pointer-events: none
}

#rocketmeluncur.launchrocket i {
  background-position: 50% 100%;
  -webkit-transform: scale(1.4, 3.2);
  -moz-transform: scale(1.4, 3.2);
  transform: scale(1.4, 3.2)
}

/**
 * ----------------------------------------
 * animation rotate-diagonal-1
 * ----------------------------------------
 */
@-webkit-keyframes rotate-diagonal-1 {
    0% {
        -webkit-transform: rotate3d(1, 1, 0, 0deg);
        transform: rotate3d(1, 1, 0, 0deg);
    }
    50% {
        -webkit-transform: rotate3d(1, 1, 0, -180deg);
        transform: rotate3d(1, 1, 0, -180deg);
    }
    100% {
        -webkit-transform: rotate3d(1, 1, 0, -360deg);
        transform: rotate3d(1, 1, 0, -360deg);
    }
}
@keyframes rotate-diagonal-1 {
    0% {
        -webkit-transform: rotate3d(1, 1, 0, 0deg);
        transform: rotate3d(1, 1, 0, 0deg);
    }
    50% {
        -webkit-transform: rotate3d(1, 1, 0, -180deg);
        transform: rotate3d(1, 1, 0, -180deg);
    }
    100% {
        -webkit-transform: rotate3d(1, 1, 0, -360deg);
        transform: rotate3d(1, 1, 0, -360deg);
    }
}


.rotate-diagonal-1 {
    -webkit-animation: rotate-diagonal-1 0.9s linear both;
    animation: rotate-diagonal-1 1.4s linear both;
	
}

