@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
 /* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}


/*--================--second---navbar-link---==============---------------*/

	   :root {
     --text-color:#000;
	 --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Header and Navbar */
.header {
    position: fixed !important;
    top:0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
	background-color:#fff;
   /* background: var(--nav-bg);*/
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border-bottom: 1px solid var(--border-color);
    /*box-shadow: 0 4px 30px var(--shadow-color);*/
    transition: var(--transition-medium);
}
.navbar ul {
    padding-left:100px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    /*gap: 0rem;*/
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
	color:#000;
    /*color: var(--text-color);*/
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size:18px;
}

.nav-link:hover,
.nav-link.active {
     color:red;
}

/* Icons */
.icon {
    transition: var(--transition-medium);
    vertical-align: middle;
}

.chevron-icon {
    transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 0.6rem;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
	 padding: 0.6rem;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all var(--transition-medium);
    border-radius: 10px;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 70%;
}

.hamburger span:last-child {
    top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-active .hamburger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}

/* Content Styling */
.content {
    margin-top: 70px;
    padding: 2rem;
}


.section {
    padding: 5rem 2rem;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.navbar-buttons a {
	font-size:13px;
	color:#ffff !important;
	padding:12px 30px;
	border-radius:15px;
	background-color:#000;
	font-weight: 700;
	text-transform: uppercase;
	border: none;

}


/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
	

    .nav-menu {
        position: fixed;
        top:80px;
        right: -100%;
        flex-direction: column;
        align-items: flex-start;
       /* background: var(--nav-bg);*/
	   background-color:#fff;
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        width: 80%;
        /*height: calc(100vh - 70px);*/
        padding:0rem 1rem;
        transition: right var(--transition-slow);
        /*box-shadow: -10px 0 30px var(--shadow-color);*/
        border-left: 1px solid var(--border-color);
    }

    .nav-active .nav-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
    }
    .nav-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .theme-toggle {
        align-self: flex-start;
    }

    .chevron-icon {
        position: absolute;
        right: 1rem;
    }

    .has-dropdown.active .chevron-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        width: 100%;
    }
    
    .xyz {
	display:none;
	}
    .content {
        padding: 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
	.nav-brand a {
    padding-left:10px !important;
}
.nav-brand a img {
    width:150px !important;
}
.navbar-buttons {
    display: none;
    padding-left:0px;
}
.nav-brand a {
padding-left:0px
}
.navbar ul {
    padding-left:0px;
}
	
}
	
.nav-brand a img {
    width:220px;
}
.nav-brand a {
padding-left:30px
}	
.navbar-buttons {
padding-left:150px;
}





/*--=====-----navbar-end-----====---*/

/*--=====-----hero--section-start-----====---*/
.hero {
    padding-top:30px;
    /*background-image: url('../images/web-banner.png');*/
    background-repeat: no-repeat;
   background-size:cover;
   background-color:#000;
   width:100%;
  /*padding-bottom:20px;*/
  margin:0px !important;
	
}
 .hero-body {
	 padding-top:130px;
	 margin-left:60px;
	
 }
 .hero-images {
     margin-left:150px;
 }
.hero-body h1 {
    font-size: 4rem;
    color: #fff;
	font-family: 'poppins-bold', sans-serif !important;
	font-weight:bold;
	line-height:4.8rem;
}

.hero .hero-images img {
	margin-top:-30px;
    height:630px;
   
}

.discription p {
	color:#fff;
    font-size: 20px;
	width:75%;
}
.discription a {
	font-size:15px;
	margin-top:18px;
	color:#ffff !important;
	padding:12px 30px;
	border-radius:12px;
	background-color:rgb(255, 0, 0);
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid rgb(255, 0, 0);
}
.discription a:hover {
	color:#000 !important;
	background-color:#ffff;
	border:1px solid #ffff;
}

/* If the screen size is 600px wide or less, hide the element */
@media only screen and (max-width: 600px) {
    .hero {
        padding-top:0px;
    }
	.hero-body{
		padding-top:50px;
	} 
    .hero-body h1 {
    font-size: 2.5rem;
	line-height:4rem;
	text-align:center;
	line-height:3rem;
	
  }
  .hero .hero-images img {
	height:350px;
	margin-top:15px;
 }
 .discription p {
	width:100%;
	padding:15px 20px;
	text-align:center;
	font-size: 18px;
}

.discription a {
	margin-top:20px;
	position:relative;
	left:20%;
}
.hero-body {
	 margin-left:0px;
 } 
 .hero-images {
     margin-left:0px;
 }
 .hero-body a {
     margin:0px auto;
 }
 
}
/*--=====-----hero--section-end-----====---*/

/*--=====-----about--section-start-----====---*/
.about {
	background-color:#ffff;
	padding:40px 0px;
}

.about-images img {
   width:500px;
   /*transition: 15s */
}
.about .about-images img:hover {
    transform:rotate(360deg);
    transition: 15s;
}

.about-body h1 {
	font-size:2.9rem;
	font-weight:400;
	font-family: 'poppins-bold', sans-serif !important;
}
.about-body p {
	font-size:1.1rem;
	padding:25px 0px;
}
.about-body {
    margin-top:100px;
}
.about-body a {
	font-size:13px;
	color:#ffff !important;
	padding:12px 30px;
	border-radius:15px;
	background-color:#000;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
}
.about-body a:hover {
	color:#ffff !important;
	background-color:rgb(255, 0, 0);
	/* text-decoration: 3px underline #000 !important;
	 text-underline-offset: 5px;*/
	
}

@media only screen and (max-width: 600px) {
    .about-images {
    text-align: center;
    
}
.about-images img {
   width:200px;
  /*position: relative;
   left:5%;
  transition: 1s;*/
  
}
.about-body {
    margin-top:30px;
    text-align:center;
}
.about-body h1 {
   	font-size:1.3rem;
}
.about-body p {
	padding:0px;
	font-size:13px;
}

}	

.salider img {
	width:98% !important;
}
@media only screen and (max-width: 600px) {
.salider img {
	width:100% !important;
}

  
}

/*--=====-----about--section-end-----====---*/
.solution {
	/*background-color:#0e0e0e;*/
	background-color:#000;
	padding:50px 0px;
	margin:50px 0px;

}
.solution {
	/*background-color:#0e0e0e;
 	background-color:#000;
	padding-bottom:60px;*/
}
.solution{
   	/*padding:50px 0px !important;
	color:#fff;*/ 
}

.solution-text .contante h6 {
	font-size:20px;
	letter-spacing:1px;
	font-weight:bold;
	
}
.solution-text .contante h1 {
	font-size:3.5rem;
	font-family: 'poppins-bold', sans-serif !important;
	font-weight:bold;
	line-height:60px;
}

.solution h6 {
	font-size:20px;
	fonetter-spacing:1px;
	color:rgb(255, 0, 0);
	font-family: 'poppins-bold', sans-serif !important;
}
.solution h1 {
	color:#fff;
	font-family: 'poppins-bold', sans-serif !important;
	font-weight:bolder;
	font-size:3rem;	
}
.contante .card-body {
    height:510px;
}
.contante .card {
	background-color:#0e0e0e;
	margin-top:20px;
	color:#fff;
	padding:15px;
	border-radius:30px;
}
.cart-firse {
	margin-left:20px;
}

.cart-three {
	margin-right:20px;
}
.solution .card h5 {
	font-size:22px;
	margin:20px 0px;
}
	
.text {
	padding:40px 0px;
}
.card-body a {
	text-transform:uppercase;
	color:#e2e2e2;
	font-size:14px;
	font-weight:600;
	letter-spacing:1px;
	text-decoration:none
}
.card-body a:hover{
	border-bottom:2px solid red;
}

.card-body .first-button {
    margin-top:60px;
}
.second-button {
     margin-top:60px !important;
}
	
.solution .card p {
	font-size:19px !important;
	color:#e2e2e2;
}

@media only screen and (max-width: 600px) {
    .contante .card-body {
    height:340px;
} 
    
    .solution-text .contante h6 {
	font-size:18px;
}
.solution h1 {
	font-size:2.2rem;	
}
.cart-firse {
	margin-left:0px;
}
.cart-three {
	margin-right:0px;
}
 .solution-text .contante h1 {
	font-size:1.4rem;
	line-height:30px;
}
.card-body .first-button {
    margin-top:0px;
}
.card-body .second-button {
     margin-top:0px !important;
}
.solution .card p {
	font-size:15px !important;
}
.text {
	padding:10px 0px;
}

}	

/*--=====-----soluction--section-end-----====---*/

.soluction {
background-color:#ffff;
padding:0px 30px;
/*margin-bottom:50px;*/

}
.soluction h1 {
     text-align: center;
     font-weight:bold;
     font-family: 'poppins-bold', sans-serif !important;
      padding:30px 0px;
}

.soluction-inside {
    background-color:#fff8e4;
      border-radius:50px 50px 0px 0px;
     padding:50px 0px;
}

.soluction-images img {
    width:300px;
    /*transition: 15s;*/
    margin-bottom:50px;
    
}
.soluction-images img:hover {
    transform:rotate(360deg);
    transition: 15s;
}
.soluction-contante p a {
    font-size:16px !important;
    letter-spacing:1px;
    color:#3e3838;
    font-family: 'poppins-bold', sans-serif;
}
.soluction-contante p a:hover {
    text-decoration:none;
}

@media only screen and (max-width: 600px) {
.soluction {
padding:0px 0px;
}
.soluction-inside {
    background-color:#fff8e4;
      border-radius:30px 30px 0px 0px;
     padding:30px 0px 1px 0px;
}
 .soluction h1 {
   font-size:15px;
      padding:20px 0px;
}
.soluction-images img {
    width:200px;
    /*transition: 15s;*/
    margin-bottom:20px;
   
   
}
.soluction-contante p {
   line-height:15px;
}
	
}

.soluction-text p a {
  font-size:16px;
  color:#3e3838;
  letter-spacing: 1px;
  font-family: 'poppins-bold', sans-serif;
}

.soluction-text p a:hover {
    text-decoration: none;
    border-bottom: 2px solid red;
}
@media only screen and (max-width: 600px) {
 .heading-menu p a {
  line-height:15px;
}
.liness {
    display:none;
}
}


/*---next---soluction---=----*/


.carousel-control-next {
   /* right: 0;
     background: #ece9de;
     border: none;
    opacity: 50;*/
}

/*--=====-----service--section-start------====---*/

.success {
	background-color:#ffff;
	padding:100px 0px 0px 0px;
}
.service-body {
    margin-left:20px;
}
.service-body h5 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'poppins-bold', sans-serif !important;
}
.service-body h1 {
    font-size: 3.5rem;
    font-family: 'poppins-bold', sans-serif !important;
    line-height:60px;
}
.service-body p {
    font-size: 1.1rem;
    font-family: 'poppins-bold', sans-serif !important;
    color: #4c4949;
}
.service-body a {
    font-size:12px;
	color:#ffff !important;
	padding:12px 30px;
	border-radius:13px;
	background-color:#000;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	letter-spacing:1px;
}
.service-body a:hover {
    color:#ffff !important;
	background-color:rgb(255, 0, 0);
	text-decoration: none;
}

 .salider img {
   border-radius:10px;
}

@media only screen and (max-width: 600px) {
    
.success {
	padding:10px 0px;
}
 .service-body {
    margin-left:0px;
    text-align: center;
}
.service-body h5 {
    font-size:16px;
}
.service-body h1 {
    font-size:1.6rem;
    line-height:30px;
}
.service-body p {
  font-size:0.9rem;
}
.salider img {
   margin-top:50px;
}

}
.location {
    padding:50px 30px;
   background-color:#e2e2e2;
}

.map-images iframe {
	width:100%;
	height:325px;
	border-radius:10px;
	border:none;
}

@media only screen and (max-width: 600px) {
.map-images iframe {
	width:100%;
	height:300px;
	border-radius:10px;
	border:none;
	margin-top:20px;
}
.location {
    padding:50px 15px;
   background-color:#e2e2e2;
}
.slick-dotted.slick-slider {
    margin-bottom:0px !important;
}

}
 /*--=====-----service--section-end-----====---*/
 
 .nackground-images h1 {
     text-align: center;
     color:#fff;
     margin-top:100px;
     font-size:60px;
     font-weight:bold;
     font-family: 'poppins-bold', sans-serif !important;
     padding: 0px 30px;
 }
 
.contact {
    background-color:#ece9de;
    padding:70px 30px;
   
}

.contact-body h1 {
    font-size:65px;
    font-weight:bold;
     font-family: 'poppins-bold', sans-serif !important;
     width:80%;
     color:#000;
     margin-top:30px;
}
.contact-body p {
    font-size:20px;
    width:70%;
    margin-top:50px;
}
.number {
    margin:40px 0px;
}
.number p {
    font-size:18px;
    color:#747070;
    
}
.number h6 a {
    line-height:10px;
    font-family: 'poppins-bold', sans-serif !important;
    color:#000;
    font-size:18px;
}
.number h6 a:hover {
   text-decoration-line:none;
   border-bottom:3px solid red;

}

.location-mapaa p {
     font-size:18px !important;
     font-family: 'poppins-bold', sans-serif !important;
    color: #000;
 } 
 .location-mapaa p i {
   color:red;
   font-size:30px;
   background-color:#fff;
   padding:5px 10px 10px 10px;
   border-radius:50%;
}
.location-mapaa {
    margin-top:35px;
}
     


.location-map {
    /*margin-top:30px;*/
}
.location-map h6 a:hover {
    text-decoration-line:none !important;
   border-bottom:3px solid red;
}
.location-map p i {
   /*color:red;
   font-size:30px;
   background-color:#fff;
   padding:0px 10px 10px 10px;
   border-radius:50%;*/
}
.location-map p {
 font-size:18px;
 width:100%;
 /*text-align:left;*/

}
.location-map a {
    text-transform:uppercase;
    font-family: 'poppins-bold', sans-serif;
    font-size:14px;
    color:#000;
    text-decoration:none;
    text-decoration-thickness:2px; 
    font-weight:400;
}

.input-form {
    background-color:#fff;
    padding: 50px;
    border-radius:50px;
    box-shadow: 10px 10px #000;
}
.input-form input {
    font-family: 'poppins-bold', sans-serif !important;
    font-size:16px;
    border-radius:20px;
    height:55px;
    padding: 22px;
    border:1px solid #ece9de;
   margin:20px 0px;
   
}
.input-form input:hover{
    border:1px solid rgb(255, 0, 0);
}

.input-form input:focus{
    box-shadow:none;
    border:1px solid rgb(255, 0, 0);
}
.textareaa input {
   padding-bottom:120px;
}
.input-form button {
    background-color:#000;
    border-radius:20px;
    font-size:18px;
    padding:12px 0px;
    font-family: 'poppins-bold', sans-serif !important;
    font-weight:bold;
    letter-spacing: 1px;
    
}
.input-form i {
    font-size:14px;
}
.input-form button:focus{
    box-shadow:none;
}
.input-form button:hover {
    background-color:rgb(255, 0, 0);
    border: 1px solid rgb(255, 0, 0);
      
}
.infomaction {
    width:70%;
}

@media only screen and (max-width: 600px) {
.contact {
    padding:40px 0px;
   
}
.contact-body h1 {
    font-size:40px;
     width:100%;
}
.contact-body p {
    font-size:16px;
    width:100%;
    margin-top:20px;
}
.number {
    margin:15px 0px;
}
.number p {
    font-size:16px;
}
.input-form {
    margin-top:30px;
    padding: 15px;
    border-radius:20px;
    box-shadow: 5px 5px #000;
}
.location-map {
    margin-top:20px;
}
.location-map p {
 width:100%;
 /*text-align:left;*/
}
.location-map p i {
  display:none;
}

}


/*----=====---second---footer----start----#fff8e4---*/
.bottom-footer {
    background-color:#fff8e4;
    padding:20px 30px;
}
.buttom-body {
    display: flex;
    justify-content:space-between;
    align-items:center;
}
.button-contante p {
    margin-top:15px;
}
.button-contante p a {
    font-size:18px;
    font-family: 'poppins-bold', sans-serif !important;
    color: #000;
    text-decoration:none;
   
}
.button-contante i {
    background-color:#ece9de;
    font-size:20px;
    color:#000;
    padding:10px 15px 15px 15px;
    border-radius:10px;
}
.button-contante i:hover {
    color:red;
}


@media only screen and (max-width: 600px) {
  .buttom-body {
    display: flex;
   flex-direction: column;
}
.bottom-footer {
    padding:20px 10px;
}
.button-contante p {
    margin-top:0px;
}

   }


/*----========---second---footer----start-------*/



/*--=====-----about-section-start------------====---*/

.abouta {
	background-color:#000;
}
.abouta h1 {
	font-size:6rem;
	color:#ffff;
	font-weight:bold;
	font-family: 'poppins-bold', sans-serif !important;
	text-align:center;
	margin:70px 0px 100px 0px;
}
@media only screen and (max-width: 600px) {
 .abouta h1 {
	font-size:2.8rem;
}
.abouta {
	height:200px;
}

}
/*--=====-----about-section-end----------====---*/


/*-----history-section-end----------*/

.directing {
	margin-top:50px;
}
.directing h1 {
    font-weight: bold;
    font-size: 50px;
    color: #000;
	margin-top:20px;
	font-family: 'poppins-bold', sans-serif !important;
}
.directing h2 {
     font-size:40px;
     color: #000;
 	font-family: 'poppins-bold', sans-serif !important;
}
.menu-imagesa img {
    height:100% !important;
}


/*-----directing-section-end----------*/

.boarder-images {
    background-color:#000;
    text-align: center;
    padding: 20px 0px;
}
.boarder-images h1 {
    color:rgb(255, 0, 0);
    font-weight:bold;
}
/*-----boarder-section-end----------*/

.work-gellary {
    background-color:#e2e2e2;
    padding:30px 30px 50px 30px;
}

.work-images {
    /*margin-top:50px;*/
    margin-bottom:10px;
}
 .work-images img {
      width:900px;
      height:auto;
  }  
  .directing {
      text-align: center;
  }
    .grid-images {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
	
    }
    .work-images img {
        border-radius:15px;
    }
.soluctiona h1 {
     color:#000 !important;
    font-weight:bold;
    font-size:60px !important;
    margin:10px 0px;
   font-family: 'poppins-bold', sans-serif !important;
}
.soluctiona {
    margin:70px 30px 0px 30px;
}

@media only screen and (max-width: 760px) {
.directing h3 {
   font-size:25px;
}
.directing h1 {
   font-size:30px;
}
.directing h2 {
   font-size:20px;
   line-height:20px;
}
.work-images img {
    /*height:300px;*/
}
.boarder-images h1 {
   font-size:25px;
}
.story {
    margin:40px;
    padding:10px;
}
.story h1 {
    font-size:30px;
}
.story p {
    font-size:16px;
}
.mission-vision {
     margin:0px 20px;
}
.mission {
     padding:20px;
    box-shadow: 5px 5px #000;
    margin-bottom:40px;
}
.mission h1 {
    font-size:30px;
}
.mission p {
    font-size:16px;
}
.soluctiona h1 {
    font-size:30px !important;
    margin:10px 0px;
}
.work-gellary {
    padding:0px 0px 0px 0px;
}
.soluctiona {
    margin:30px 0px 0px 0px !important;
}
.work-images {
  margin-bottom:10px;   
}


}


/*-------mission--vision--section-end----------*/



/*----career-section-start----*/
 .carrer {
            padding:70px 30px 30px 30px;
        }
        .carrer-body h1 {
            font-size:52px;
            font-family: 'poppins-bold', sans-serif;
        }
        .horigental-line {
            border-bottom:1px solid #000;
             margin:30px 0px;
        }
        .carrer-body {
            padding:0px 0px 0px 30px;
            margin-top:20px;
        }
        .carrer-body p {
            font-size:18px;
            margin-bottom:40px;
        }
        .carrer-body a {
        font-size:13px;
    	color:#fff !important;
    	padding:13px 30px;
    	border-radius:6px;
    	text-transform:uppercase;
    	font-weight:700;
        font-family: 'poppins-bold', sans-serif;
       background-color:#000;
       
        }
        
         .carrer-body a:hover {
          background-color:rgb(255, 0, 0);
          text-decoration:none;
       
        }
        .bottom-horigentalin {
             border-bottom:1px solid #000;
             margin-top:120px;
        }
        /*----=====career---section--end--=====---*/
        .course-heading {
            text-align: center;
        }
        .course-heading h1 {
            font-size: 3rem;
            font-family: 'poppins-bold', sans-serif !important;
            font-weight: bold;
            color:#000;
        }
        .course-heading p {
            font-size:19px;
            font-family: 'poppins-bold', sans-serif !important;
            font-weight:500;
            color:#1e1d1d;
            margin:15px 0px 50px 0px;
            
        }
        
        .coures-card {
           margin: 30px;
        } 
        
       .cart-display {
          display:grid;
          grid-template-columns:repeat(6,1fr);
          gap: 20px;
       }
       
     
 @media only screen and (max-width: 760px) {
   .cart-display {
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:0px; 
   }
    .coures-card {
       margin:0px 0px 30px 0px; !important;
    } 
    
    .course-heading h1 {
        font-size: 1.8rem;
    }
    .course-heading p {
        font-size:15px;
        
    }

}
     
     
     
    .cart-grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    }
    .course-body {
        margin:20px;
    }
    .course-body .card {
        border-radius:10% !important;
    }
   .course-body a  {
       text-decoration:none;
       
    }
    .course-body h2 {
        font-size:20px;
        color: #fff;
    }
    .course-body h3 {
        font-size:16px;
        color: #fff !important;
    }
     .course-body p {
        color: #fff !important;
        font-size:20px !important;
    } 
    
    @media only screen and (max-width: 600px) {
     .cart-grid {
    grid-template-columns:repeat(2,1fr);
      }
      .cart-images img {
          width:100%;
      }
      .course-body h2 {
        font-size:16px;
        color: #fff;
    }
    .course-body h3 {
        font-size:14px;
        color: #fff !important;
    }
    
     .Video-cart {
         padding:0px !important;
         margin-bottom:30px !important;
     }
     .video-contante {
         margin-top:50px !important;
         text-align: center;
     }
      .course-body {
        margin:0px 5px 10px 5px;
    }
    .video-line {
         border-bottom:1px solid #ece9de;
         width:100% !important;
     }
     
      
      
    }
    /*----=====cart-desing---section--end--=====---*/
    
    
    .form-page {
        margin:80px 0px 0px 0px;
        background-color:#ece9de;
        padding:50px 30px;
    }
    .form-page h1 {
        text-align: center;
        font-weight:bold;
        font-size:45px;
    }
     .form-page p {
         text-align: center;
         font-size:18px;
         line-height:20px;
         
     }
     .form-page label {
         font-size:18px;
         font-weight:600;
     }
     .form-page input {
         font-size:16px;
         height:50px;
        border: 1px solid transparent;
     }
     .form-page select {
          height:50px !important;
     }
     .form-page select:focus {
          border:1px solid transparent;
        box-shadow:none;
     }
     .form-page input:focus{
        border:1px solid transparent;
        box-shadow:none;
     }
     .form-page a {
         background-color:#000 !important;
         font-weight:600;
       font-family: 'poppins-bold', sans-serif;
       font-size:18px !important;
       color: #fff !important;
     }
     .form-page i {
          font-size:22px !important;
          font-weight:bold;
     }
     .form-page textarea:focus {
          border:1px solid transparent;
        box-shadow:none;
     }
      /*----=====form---section--end--=====---*/
      
     .Video-cart {
         background-color:#000;
         padding:60px 30px;
         margin-bottom:50px;
     }
     .Video-cart h1 {
         color: #ffff;
        font-family: 'poppins-bold', sans-serif;
     }
     .Video-cart p {
         color:#ffff;
         font-size:18px;
     }
     .video {
         display:grid;
         grid-template-columns: repeat(2,1fr);
         gap:10px;
         
     }
     .video iframe {
         border-radius:30px;
     }
     .video-line {
         border-bottom:1px solid #ece9de;
         width:55%;
     }
     .video-contante {
         margin-top:150px;
     }
     .video-contante a {
         background-color: rgb(255, 0, 0);
         font-size:14px;
         text-transform:uppercase;
         color:#fff !important;
     }
     
}
     
     
     
     
     /*----=====video--section--end--=====---*/
     


.accordion{
  /*padding:100px;*/
}

.accordion .accordion-item {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding:15px 20px;
  margin-top:20px;
  border-radius:10px;
}
.accordion .accordion-item button[aria-expanded=true] {
/*   border-bottom: 1px solid #03b5d2; */
}
.accordion h2 {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
/*    padding: 1em 0; */
  color: #333333;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  padding:0px;
  line-height:25px;
  margin:0px;
  font-family: 'Open Sans', sans-serif;
}
.accordion h2:hover, .accordion h2:focus {
  cursor: pointer;
  color: red;
}
.accordion h2:hover::after, .accordion h2:focus::after {
  cursor: pointer;
  color:red;
  border: 1px solid #03b5d2;
}
.accordion h2 .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion h2 .icon {
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.faq-content {
    padding: 80px 0px;
}
.accordion h2 .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion h2 .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion h2[aria-expanded=true] {
  color:red;
}
.accordion h2[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion h2[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 5000px;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 0px;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
}

@media only screen and (max-width: 760px) {
   .carrer {
            padding:30px 0px 0px 0px;
        }
        .carrer-body h1 {
            font-size:30px;
        }
        .horigental-line {
             margin:15px 0px;
        }
        .carrer-body {
            padding:0px;
            margin-top:20px;
        }
        .carrer-body p {
            font-size:16px;
            margin-bottom:30px;
        }
        .bottom-horigentalin {
             margin-top:40px;
        }
        
         .form-page {
        margin:80px 0px 0px 0px;
        background-color:#ece9de;
        padding:50px 0px;
    }
    .form-page h1 {
        font-size:30px;
    }
    .form-page a {
         font-weight:400;
       font-size:16px !important;
     }
  
   .accordion h2  {
     font-size:18px;
     padding:0px 20px 0px  0px;
   }
   .soluctiona {
   /* padding:40px 0px;
    margin-top:0px;*/
}
.according-heading h2 {
     font-size:28px !important;
 } 
 .according-heading p {
    font-size:14px;
    
} 

 
}

/*----career-section-end----*/

/*----successes-story-section-start----*/




.workcontante {
    background-color:#ece9de;
    padding:40px 0px;
}
   .heading h1 {
     font-size:50px;
    font-weight:bold;
    font-family: 'poppins-bold', sans-serif;
    color:#000;
}
.workcontante p {
    font-size:20px;
    font-weight:400;
    color:#000;
} 

.work-page {
    padding: 0px 30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.heading a {
    font-size:13px;
 	color:#ffff !important;
 	padding:13px 30px;
 	border-radius:5px;
 	background-color:#000;
 	text-transform:uppercase;
 	font-weight:700;
     font-family: 'poppins-bold', sans-serif;
    border:1px solid #000;
    margin:40px 0px 100px 0px;
}
 .heading a:hover {
 	color:black !important;
  	background-color:#ffff;
   	border:1px solid #ffff;
    color:#000;
   
}

@media only screen and (max-width: 760px) {
  
 .heading h1 {
     font-size:28px;
     
}
.heading p {
    font-size:14px;
    }
    
    .heading a {
    font-size:10px;
 	padding:10px 20px;
    margin:30px auto;
}
    .work-page {
    padding: 0px 10px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.workcontante {
    padding:40px 0px 20px 0px;
}


}
 
.responsivea img {
    width:100%;
     border-radius:5px !important;
}
.team-images {
    padding:0px 10px;
}
.soluctiona {
 /*background-color:#ece9de;
  padding:0px 30px 80px 30px;*/
}

@media only screen and (max-width: 760px) {
 .contact-salider {
    margin-top:0px;
}
.responsivea img {
     margin:0px 0px !important;
    padding:0px;
}
}


/*----successes-story-section-end----*/


/*---====================================--Menu--item--section---==================================-----------*/

  .salider img {
        width:100%;
    }
    .menumission {
        margin: 50px 20px;
    }
    .menu-contante i {
        font-size:40px;
        color:#fff;
        margin-right:10px;
    }
     .menu-contante h3 {
        color:#fff;
        font-size:25px;
    }
    .vision-header h4 {
        color:#fff !important;
    }
    
    .menu-contante {
        display:flex;
        
    }
    .menu-boxleft {
        padding: 0px;
        background-color:#4ABCD8AD;
    }
    .menu-vision {
        padding:20px;
    }
    
     .menu-boxright {
          padding: 0px;
        background-color:#68E09CC7;
     }
    
    
  @media only screen and (max-width: 760px) {
 .menu-contante {
     /*text-align: center;
    display:flex;
    flex-direction:column;*/
}
 .vision-header h4 {
       
       
}
 .menu-vision {
        padding:20px 0px;
    }
    .menumission {
        margin: 50px 0px;
    }
    
   .menu-contante i {
        font-size:25px;
        margin-top:10px;
    }
     .menu-contante h3 {
        font-size:20px;
    } 
    
    
    
}






.contact-salider {
    margin:0px 100px 50px 100px;
}


 @media only screen and (max-width: 760px) {
 .contact-salider {
    margin:20px;
    text-align: center;
}
}

.box-first {
    height:380px;
    padding:25px;
    border-radius:50px;
    margin-right:20px;
} 
.box-first h1 {
    color:#fff;
    font-weight:bold;
    font-size:50px;
     font-family: 'poppins-bold', sans-serif;
}
.box-first i {
    font-size:40px;
}
.box-first p {
    color:#fff !important;
    font-size:18px !important;
    width:80%;
    font-family: 'poppins-bold', sans-serif;
}
.box-first h6 {
    color:#000;
    font-size:16px;
    font-weight:500;
    width:70%;
    padding:10px 10px 10px 20px;
    border-radius:25px;
    margin-bottom:10px;
    font-family: 'poppins-bold', sans-serif;
}
.box-first .seo {
    width:40%;
    background-color:#a3fba0;
}
.box-first .desing {
    background-color:#fff;
    width:45%;
}

.box-second {
     margin-top:40px;
    height:340px;
    padding:30px;
    border-radius:50px;
    margin-right:20px;
}
.box-second i {
    border-radius:50%;
    padding:20px;
   /* background-color:#6ef768;*/
   background-color:#ffff;
   font-size:20px;
}
.box-second p {
    font-size:18px !important;
    color:#fff !important;
    font-family: 'poppins-bold', sans-serif;
}
.milian h2 {
    color:#fff;
    font-weight:bold;
    margin-top:130px;
}

.box-three {
    margin-top:80px;
    height:300px;
    padding:30px;
    border-radius:50px;
    margin-right:20px;
}
.box-three h3 {
    width:20px;
   color: #fff;
     border-radius:50%;
    padding:20px;
   /* background-color:#6ef768;*/
   background-color:#facc15;
   font-size:20px;
}
.box-three h2 {
    color:#fff;
    font-weight: bold;
}
.box-three p {
    color:#ffff !important;
    font-size:18px !important;
    margin-top:90px !important;
    font-family: 'poppins-bold', sans-serif;
}

.box-for {
     margin-top:40px;
    height:340px;
    padding:30px;
    border-radius:50px;
    margin-right:20px;
}
.box-for p {
     color:#ffff !important;
     font-size:16px !important;
}
.box-for h6 {
     margin-top:90px;
    color:#fff;
    font-family: 'poppins-bold', sans-serif;
}


.box-five {
     height:380px;
    padding:25px;
    border-radius:50px;
    margin-right:20px;
}
.box-five h1 {
     color:#000;
    font-weight:bold;
    font-size:50px;
     font-family: 'poppins-bold', sans-serif;
} 


.box-five p {
    color:#000 !important;
    font-size:17px !important;
   font-family: system-ui;
    font-family: 'poppins-bold', sans-serif;
}
.box-five h6 {
    color:#000;
    font-size:16px;
    font-weight:500;
    width:58%;
    padding:10px 10px 10px 20px;
    border-radius:25px;
    margin-bottom:10px;
    font-family: 'poppins-bold', sans-serif;
}
.box-five .Logo {
    width:70%;
    background-color:#a3fba0;
}
.box-five .Brand {
    background-color:#fff;
    width:80%;
}

.review-rating {
    padding:10px 30px;
}

.cart-rating {
    padding:0px 70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    }
    
    
    .review-body {
        background-color:#fff;
        text-align: center;
        padding:50px 30px;
        border-radius:20px;
    }
    .review-body i {
        color:#f7c830;
    }
    .review-body h5 {
        font-size:16px;
        color:#777;
        font-family: "Poppins", Sans-serif;
        margin:30px 0px;
    }
     .review-body h6 {
         color:#777;
         font-family: "Poppins", Sans-serif;
     }
    @media only screen and (max-width: 760px) {
  .cart-rating {
    padding:0px 0px !important;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    }
 .review-rating h1 {
    font-size:25px !important;
    margin:0px 0px 25px 0px !important;
}
.review-rating {
    padding:0px 0px;
}
.review-body h5 {
 font-size:10px !important;
 margin:10px 0px;
    }
.review-body {
    padding:15px 5px;
    border-radius:10px;
}
.contante .card-body {
    padding: 0px;
}
.contante .card-body h2 {
   font-size:8px !important;
}
.contante .card-body .text h5 {
   margin:5px !important;
}
.course-body .card-body p {
    font-size:8px !important;
}
.course-body .card-body {
    height:150px !important;
}
.course-body .card-body hr {
    margin:0px auto !important;
}

.box-first h6 {
    position: relative;
    left:10%;
}
.box-first p {
    font-size:14px !important;
    width:100%;
}
.box-five h6 {
   position: relative;
    left:10%;
}
.review-body i {
    font-size:10px;
}
.review-body h6 {
    font-size:12px;
}

} 





.review-rating h1 {
    text-align:center;
    font-size:70px;
    font-weight:bold;
    margin:50px 0px;
}
.course-body .card-body {
   /* height:220px !important;*/
}
.cart-images .card .card-body {
   padding:60px 0px !important;
}
.card-body i {
    margin: 0px 3px;
}
.card-body p {
    font-size:13px !important;
   color:#ffff !important;
}

.card-body h5 {
    font-size:17px !important;
   color:#afacab;
   font-family: 'poppins-bold', sans-serif;
   margin:20px 0px !important;
}




/*------====---menu-sections---start-----------*/
.menu-header {
    background-color:#ece9de !important;
    padding:50px 0px;
}

.menu-header img {
    width:70%;
}

.menu-header p {
    font-family: "Poppins", Sans-serif;
    font-size: 23px;
    font-weight:500;
    letter-spacing: .1px;
    word-spacing: 3px;
    color: #000;
    margin:10px 0px;
}

.menu-header a {
     font-size:15px;
 	color:#ffff !important;
 	padding:13px 30px;
 	border-radius:10px;
 	background-color:#000;
 	text-transform:uppercase;
 	font-weight:700;
    font-family: 'poppins-bold', sans-serif;
    border:1px solid #000;
    margin:20px 0px 0px 0px;
}
.menu-header a i {
    font-size:15px;
    font-weight:bold;
}
.menu-header a:hover {
    background-color:red;
    border:1px solid red;
}

@media only screen and (max-width: 760px) {
  .menu-header img {
    width:100%;
}
.menu-header p {
    font-size:16px;
}
.menu-header a {
     font-size:13px;
 	padding:10px 20px;
}

}

     
     
     
/*------====---menu-sections---end-----------*/

.soluctionpage {
    background-color:#ece9de;
    padding:80px;
    
}
.soluction-header h1 {
     text-align:center;
    font-size:80px !important;
    font-weight:bold;
}
.soluction-header p {
     text-align:center;
     font-size:18px !important;
     margin:30px 0px 80px 0px !important;
   
}
.soluctionpage-card {
   background-color:#fff;
     padding:10px 30px;
    border-radius:30px;
    height:390px;
	margin-bottom:30px;
}

.soluctionpage-card i {
    font-size:50px;
}
.soluctionpage-card h4 {
    font-family: "Poppins", Sans-serif;
    font-size: 23px;
    font-weight:bold;
    letter-spacing:1px;
    margin-top:60px;
}
 .soluctionpage-card h5 {
    font-size:20px !important;
    text-align:left;
    font-family: "Poppins", Sans-serif;
    font-weight: 300;
    letter-spacing:1px;
    color:#474444;
    line-height:32px;
     margin-top:30px;
}

.soluctionpage-lunching {
    background-color:#fff;
    margin:70px 0px;
    padding:125px 0px;
     border-radius:40px;
}
.lunching-logo img {
    width:300px;
   margin-top:20px;
   text-align: center;
}
.lunching-body h2 {
   font-size:38px;
   font-weight:bold;
   font-family: "Poppins", Sans-serif;
}

.soluctionpage-count .counting h1 {
    font-size:50px !important;
    font-weight:500 !important;
    font-family: "Poppins", Sans-serif;
}
.soluctionpage-count .counting p {
   margin:10px auto;
    font-size:18px !important;
    letter-spacing: 1px;
}

.soluctionpage-different {
    margin:60px 0px;
}
.soluctionpage-different h2 {
    font-size:40px !important;
    font-weight:bold !important;
     font-family: "Poppins", Sans-serif;
     text-align:center;
     margin:50px 0px;
}
.different-body {
    padding:40px 0px;
    border-radius:40px;
   margin-bottom:20px;
  
}
.different-body h4 {
    font-size:20px;
    font-weight:600;
    color:#000;
     font-family: "Poppins", Sans-serif;
     text-align: center;
}
.different-body p {
    font-size:14px !important;
    color:#fff;
   font-family: "Poppins", Sans-serif;
   text-align: center;
   margin:20px 0px;
    
  
}
.diff-body {
    background-color:#fff;
     padding:20px 0px;
    border-radius:60px !important;
}
.diff-body h5 {
    font-weight:bold;
}
.diff-body h5 i {
    font-size:25px !important;
    font-weight:800 !important;
}
.diff-body h6 {
    font-size:17px !important;
    color:#918a8a;
}
.Branding-body {
    padding:30px;
    border-radius:30px;
}

.Branding-body h4 {
    font-size:23px;
    font-weight:600;
    color:#000;
     font-family: "Poppins", Sans-serif;
}

.Branding-body p {
    text-align: left;
    font-size:18px !important;
    color:#fff;
    margin:20px 0px;
}
.Branding-body ul {
    margin:10px 0px 10px 20px !important;
    
}
.Branding-body ul li {
    font-size:18px !important;
    color:#fff;
}
.tools-body {
     padding:30px;
    border-radius:30px;
}
.tools-body h4 {
    margin-bottom:35px;
    font-size:23px;
    font-weight:600;
    color:#000;
     font-family: "Poppins", Sans-serif;
     text-align: center;
}

.graphic-flex {
    display: flex;
    justify-content:space-around;
    margin:10px 0px;
}
.graphic-flex p {
   background-color:#fff;
    font-size:18px;
    padding:10px;
    border-radius:15px;
    color:#9b5fe1;
    letter-spacing:1px;
}

.Project {
    padding:50px 0px;
    border-radius:30px;
    height:250px;
}

.Project h4 {
    font-size:23px;
    font-weight:600;
    color:#fff;
     font-family: "Poppins", Sans-serif;
}
.Project p {
    font-size:18px;
    color:#fff;
    margin:20px 0px 40px 0px;
    
}
.Project a {
    background-color:#fff;
    font-size:18px;
    color:#000;
    padding: 12px 15px;
    text-decoration:none;
     border-radius:15px;
     font-weight:600;
}


.marketing {
    padding:50px 0px;
    border-radius:30px;
    height:250px;
}

.marketing h4 {
    font-size:23px;
    font-weight:600;
    color:#000;
     font-family: "Poppins", Sans-serif;
}
.marketing p {
    font-size:18px;
    color:#000;
    margin:20px 0px 40px 0px;
}
.marketing a {
    background-color:#000;
    font-size:18px;
    color:#fff;
    padding: 12px 15px;
    text-decoration:none;
     border-radius:15px;
     font-weight:600;
}

.icon-box {
    margin-top:20px;
}



@media only screen and (max-width: 760px) {
   
.soluctionpage {
    padding:20px 0px;
}
 .soluction-header h1 {
    font-size:30px !important;
}
.soluction-header p {
     font-size:12px !important;
     margin:20px !important;
}
.soluctionpage-card {
	margin-bottom:0px;
	padding:5px;
	border-radius:10px;
	height:160px;
}
 .axy {
        padding:5px;
        
    }
    .boxabc {
        position: relative;
        left:50%;
    }
.soluctionpage-card i {
    font-size:20px;
}
.icon-box{
    margin-top:0px;
}
.soluctionpage-card h4 {
    font-size:11px;
    margin-top:10px;
}
 .soluctionpage-card h5 {
    font-size:9px !important;
     margin-top:8px;
     line-height:13px;
}
.soluctionpage-lunching {
    margin:15px 0px !important;
    padding:40px 0px;
     border-radius:30px;
}
.lunching-logo h1 {
   font-size:50px !important;
   margin-top:20px;
}
.lunching-body h2 {
   font-size:22px;
   text-align: center;
}
.lunching-logo img {
   width:200px;
   margin:0px 0px 20px 0px;
}

.soluctionpage-count {
   margin-top:30px;
}
.soluctionpage-count .counting h1 {
    font-size:35px !important;
}
.soluctionpage-different {
    margin:20px 0px;
}
.soluctionpage-different h2 {
    font-size:22px !important;
     margin:25px 0px;
}

.Branding-body {
   margin-bottom:20px;
}
.diff-body {
     padding:10px 0px;
     width:70%;
    margin: 0px auto;
} 

.graphic-flex {
    display: flex;
    justify-content:space-around;
    margin:5px 0px;
}
.graphic-flex p {
   background-color:#fff;
    font-size:15px;
    padding:6px;
    border-radius:10px;
    color:#9b5fe1;
    letter-spacing:0px;
}
.Project {
    margin-bottom:20px;
}

.Project p {
    font-size:18px;
    color:#fff;
    margin:20px 0px 40px 0px;
}
.marketing {
    padding:50px 10px;
}
.marketing h4 {
    font-size:20px;
}
.marketing p {
    font-size:16px;
}

}


.reviewe-rating {
    background-color:#fff;
    width:100%;
    height:330px;
    border-radius:10px;
    text-align: center;
    padding-top:20px;
     
}
.reviewe-rating img {
    width:80px!important;
    margin: 0px auto;
    border-radius:40% !important;
  
}
.reviewe-rating h3 {
    font-weight:bold;
    font-size:25px;
     font-family: "Poppins", Sans-serif;
     margin:10px auto 5px auto;
}
.reviewe-rating h6 {
    margin:10px auto;
}
.reviewe-rating p {
    font-size:18px;
   padding: 20px 50px;
   font-family: "Poppins", Sans-serif;
    
}
.reviewe-rating i {
    color:#f7c830;
    font-size:20px;
}

@media only screen and (max-width: 760px) {
 .reviewe-rating img {
    width:40px!important;
   position: relative;
   left:40%;
  
}
.reviewe-rating h3 {
    font-size:18px;
}
.reviewe-rating h6 {
    margin:10px auto;
}
.reviewe-rating p {
    font-size:15px;
   padding:10px;
   font-family: "Poppins", Sans-serif;
    
}

}


.responsiveaa video {
    width:210px;
    height:400px;
    border-radius:20px;
}

@media only screen and (max-width: 760px) {
    .responsiveaa {
    margin: 25px;
}
.responsiveaa video {
    width:160px;
    height:200px;
    border-radius:20px;
}
}

/*-----------Blog--start------------*/
  