:root {
    --primary: #292929
    ;
    --secondary: #224056 ;
    --gray: #716c80
  }
  img {
    max-width: 100%;
  }
  html,
  body {
    overflow-x: hidden;
    font-family: 'Nunito Sans', sans-serif;
  }
  a {
    text-decoration: none;
    transition: all 0.3s ease, background-position 1ms;
  }
  p{
    line-height: 26px;
  }
  .container{
    max-width: 1200px;
  }
  .pt-70{
    padding-top: 70px;
  }
  .pb-70{
    padding-bottom: 70px
  }
  .w-90{
    width: 90%;
  }
  header {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    position: relative;
    
    z-index: 99;
   
  }
  .container-sm{
    max-width: 960px;
  }
  .logo img{
    height: 38px;
  }
  .btn-primary {
    background: #169bd6;
    border-color: #169bd6;
  }
  .modal-footer {
    justify-content: center;
  }
  .min-h-100{
    min-height: 100vh;
  }
  .min-h-80{
    min-height: 80vh;
  }
  .text-primary{
    color: var(--primary) !important;
  }
  .text-secondary{
    color: var(--secondary) !important;
  }
  .w-80{
    width: 80%;
  }
  .row-flex {
    display: flex;
    flex-wrap: wrap;
  }
  @keyframes myanimation {
    0% {
      background-color: #169bd6;
    }
    25% {
      background-color: green;
    }
    50% {
      background-color: #ffc525;
    }
    75% {
      background-color: rgb(250, 141, 16);
    }
    100% {
      background-color: #169bd6;
    }
  }
  
  .page-start {
    padding-top: 80px;
  }
  .top-header {
    background: #054374;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .top-header-left a {
    color: #ffffff;
    /* opacity: 0.8; */
    font-size: 13px;
    display: inline-block;
    font-weight: 700;
    /* margin-right: 30px; */
  }
  .top-header-left a i {
    margin-right: 5px;
  }
  .top-header-right {
    text-align: right;
  }
  .top-header-right a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
    display: inline-block;
    margin-right: 15px;
  }
  .top-header a:hover {
    color: #84898b;
  }
  
  .profile-image{
    width: 40px;
    height: 40px;
    border: 1px solid #169bd6;
  }
  .cart-header{
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #054374;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
  }
  .banner{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .banner .banner-img{
    max-height: 430px;
  }
  .banner h1{
    
    font-size: 43px;
  
    color: #000;
    /* text-transform: uppercase; */
    font-weight: 800;
    margin-bottom: 10px;
  
  }
  
  .banner p{
    font-size: 19px;
      /* line-height: 1.6rem; */
    color: #000;
    font-weight: 300;
    margin-bottom: 20px;
  
  }
  /* .banner .carousel-caption {
    bottom: 30%;
  }
  .banner .carousel-caption h1 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .banner .carousel-caption p {
    max-width: 600px;
    margin: 0px auto;
    font-size: 18px;
  } */
  .banner-btn {
    background: rgb(36,62,143);
    background: linear-gradient(90deg, rgba(36,62,143,1) 0%, rgba(67,181,232,1) 100%);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    color: #fff;
    transition: all 0.3s ease, background-position 1ms;
    font-weight: 600;
  }
  .banner-btn:hover {
    background: #ffffff;
    color: #000;
  }
  
  .icon-box {
    background: #ffffff;
    width: 60px;
    border-radius: 100px;
    margin: 0px auto;
    display: inline-block;
    height: 70px;
    line-height: 70px;
    text-align: center;
  }
  .services{
     background: #eff8ff;
  
  }
  
  .home-about{
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .home-about h1{
    font-weight: 800;
    color: #000000;
    font-size: 35px;
  }
  .home-about p{
    max-width: 400px;
    font-size: 18px;
    margin: 0px auto;
    
  }
  .home-about img{
    max-width: 350px;
  }
  .home-about .logo-icon{
    height: 40px;
  }
  .about{
    background: url(../images/about-bg.png) no-repeat left top;
  }
  .about p{
    color: var(--gray);
  }
  
  .about img{
    max-height: 350px;
  }
  .main-btn{
    background: var(--primary);
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  padding: 6px 12px;
  color:  #fff;
  font-size: 14px;
  transition: all 0.3s ease, background-position 1ms;
  }
  .main-btn:hover{
    background: #0076ff;
    color: #fff;
  }
  .seconadry-btn{
    background: var(--secondary);
  display: inline-block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 10px 40px;
  color:  var(--primary);
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease, background-position 1ms;
  }
  .seconadry-btn:hover{
    background: var(--primary);
    color: var(--secondary);
  }
  /* .products{
    border-bottom: 1px solid #e3e3e3;
  } */
  .product-list{
    border: 1px solid #cfcfcf;
    padding:40px 20px;
    border-radius: 5px;
    text-align: center;
  }
  .product-list img{
    height: 50px;
  }
  .border-right-bottom{
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
  .border-bottom-only{
    border-bottom: 1px solid #e3e3e3;
  }
  .border-right-only{
    border-right: 1px solid #e3e3e3;
  }
  .clients{
    background: rgb(239, 248, 255);
  }
  .client-list{
    
    padding: 20px;
    height: 150px;
    
  }
  .client-list img{
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    transition: 0.5s ease-in-out;
  
  }
  .client-list:hover{
    cursor: pointer;
  }
  .client-list:hover img{
    filter: none;
    -webkit-filter: grayscale(0%);
    cursor: pointer;
    transform: scale(1.1);
  }
  
  .image-bg h2{
    padding-top: 90px;
    padding-bottom: 90px;
    color: #ffffff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    text-transform: uppercase;
  }
  .india{
    background: url(../images/india.png) no-repeat center top;
    padding: 0px;
    background-size: 100%;
  }
  .uae{
    background: url(../images/uae.png) no-repeat center top;
    padding: 0px;
    background-size: 100%;
  }
  .germany{
    background: url(../images/germany.png) no-repeat center top;
    padding: 0px;
    background-size: 100%;
  }
  .camp{
    background: url(../images/camp.png) no-repeat center top;
    padding: 0px;
    background-size: 100%;
  }
  .bg-light{
    background: #F6F6F6;
  }
  .white-box{
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .white-box h6{
    color: #003399;
    font-weight: 600;
    font-size: 18px;
  }
  
  .white-box p{
    color: #707070;
    font-size: 13px;
  }
  .home-video{
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #cacaca;
  }
  .home-video h2{
    color: #003399;
    font-weight: bold;
    text-transform: uppercase;
  
  }
  
  .testimonial {
    border-top: 1px solid #e3e3e3;
    position: relative;
  }
  
  
  .testimonial-user img {
    border-radius: 100%;
    width: 60px !important;
    height: 60px;
    margin: 0px auto  ;
    border: 1px solid #5eb1df;
    
  }
  .testimonial-user h6 {
    font-size: 18px;
    font-weight: 600;
  }
  .testimonial-user h6 small {
    font-size: 14px;
    color: var(--gray);
  }
  .testimonial-list {
    
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    
  }
  .testimonial-list p {
    color: #000;
    padding-bottom: 20px;
  }
  .carousel-control-prev-icon {
    background-image: url(../images/prev.png);
    width: 34px;
    height: 34px;
    background-size: auto;
  }
  .carousel-control-next-icon {
    background-image: url(../images/next.png);
    width: 34px;
    height: 34px;
    background-size: auto;
  }
  
  .course-list a {
    background: #169bd6;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    transition: all 0.3s ease, background-position 1ms;
  }
  .news-letter {
    background: #243E90;
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .news-letter h2 {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 36px;
  
  }
  .news-letter p {
    color: #fff;
    /* margin-bottom: 20px; */
  }
  .news-letter .form-control-lg,.btn-lg{
    border-radius: 0px;
  }
  .white-btn {
    background: #fff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    color: #000;
  }
  .news-letter-btn{
    max-width: 150px;
  }
  .white-btn:hover {
    background: #169bd6;
    color: #ffffff;
  }
  .choose {
    background: #054374;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .choose h2 {
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .choose p {
    color: #ebebeb;
    margin-bottom: 20px;
  }
  .box {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 50px 20px;
    position: relative;
    min-height: 310px;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.806); */
  }
  
  .box h6 {
    font-weight: 600;
    color: var(--secondary);
    font-size: 20px;
  }
  
  .box p {
   color: #868686;
   margin-bottom: 15px;
   font-size: 14px;
  }
  
  .box img{
    height: 35px;
    margin-bottom: 25px;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
  }
  .box a{
      color: var(--secondary);
      display: block;
      font-size: 14px;
      
  }
  .box a i {
      color: var(--primary);
      margin-left: 8px;
  }
  .news {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .news p {
    color: #6d6d6d;
  }
  .news-list {
    position: relative;
    margin-top: 20px;
  }
  .news-list img {
    border-radius: 5px;
  }
  .news-content {
    position: absolute;
    background-image: linear-gradient(
      to bottom,
      rgba(255, 0, 0, 0),
      rgb(0, 0, 0)
    );
    padding: 20px 15px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .news-content h5 {
    color: #ffffff;
  }
  .news-content button {
    margin-bottom: 10px;
  }
  footer {
    padding-top: 40px;
    background: #fff;
     border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .footer-logo{
    height: 32px;
  }
  footer p {
    color: #000000;
    opacity: 0.5;
    font-size: 14px;
  }
  footer p a {
    color: #000000;
    opacity: 0.5;
  }
  footer h6 {
    font-weight: 600;
    color: #000000;
   
    font-size: 18px;
  }
  footer h5 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #000000;
  }
  .footer-menu ul {
    padding: 0px;
    /* margin: 0px auto; */
    display: inline-block;
  }
  .footer-menu li {
    list-style: none;
    line-height: 34px;
    display: inline-block;
    text-align: center;
  }
  .footer-menu li a {
    color: #000;
    opacity: 0.5;
    padding: 0px 15px;
  }
  .footer-menu li a:hover {
    color: #000;
    opacity: 1;
  }
  footer .form-control {
    border-radius: 30px;
  }
  footer .btn-primary {
    border-radius: 30px;
  }
  .footer-top {
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top:20px;
    padding-bottom: 5px;
  }
  .footer-social ul {
    padding: 0px;
    margin: 0px;
  }
  .footer-social li {
    list-style: none;
    float: left;
    margin-right: 20px;
  }
  .footer-social li a {
    color: #000;
    opacity: 0.5;
  }
  .footer-social li a:hover {
    color: #169bd6;
  }
  .footer-social p {
    font-size: 14px;
  }
  .footer-social p span {
    color: #169bd6;
  }
  .mobile-bth {
    
    display: none;
  }
  .programs{
    padding-top:60px ;
    padding-bottom: 60px;
  }
  .programs-filter h6{
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
  }
  .programs-filter .bg-light{
    border: 1px solid #797979;
    padding: 8px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .program-list{
    margin-top: 20px;
    border-radius: 10px;
  }
  .program-list h3{
    color: #054374;
    font-weight: bold;
  }
  .program-list img{
    border-radius: 10px;
    position: relative;
  }
  .program-list .badge{
    position: absolute;
    right: 25px;
    top: 15px;
    background: #43B5E8;
    color: #ffffff;
    font-weight: 400;
    z-index: 9;
    font-size: 12px;
  }
  .program-list p{
    font-size: 14px;
  }
  .bg-light-blue {
    background: #169bd6;
  }
  .bg-dark {
    background: var(--secondary) !important;
  }
  .arrow-right-one {
    margin-top: 90px;
  }
  .arrow-left-bottom {
    width: 80px;
    margin-top: 70px;
  }
  .arrow-right-bottom {
    width: 80px;
    margin-top: 70px;
  }
  .popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .inner-page {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .inner-page h5 {
    color: var(--secondary);
    font-weight: bold;
    font-size: 30px;
  }
  .inner-page p{
    font-size: 1rem;
    line-height: 1.6rem;
    color: var(--secondary);
    font-weight: 300;
    margin-bottom: 20px;
  }
  .contact-page h6 {
    color: #169bd6;
  }
  .contact-page h3 {
    font-size: 22px;
  }
  .contact-page p {
    color: #666e75;
  }
  .course-page p {
    font-size: 19px;
  }
  .testimonial-page .card {
    border-radius: 10px !important;
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 10%);
    border: none !important;
  }
  .testimonial-page .testimonial-user {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .announcement-list {
    margin-bottom: 20px;
  }
  .announcement-list img {
    max-width: 40px;
    position: absolute;
    /* left: 0; */
    right: 20px;
    top: 20px;
    opacity: 0.5;
  }
  .page-head{
    padding-top: 80px;
    padding-bottom: 90px;
    background:  #eff8ff;
    margin-top: 100px;
    border-top: 1px solid #e3e3e3;
   
  }
  .page-head p{
    font-size: 1rem;
    line-height: 1.6rem;
    color: var(--secondary);
    font-weight: 300;
    margin-bottom: 20px;
  
  }
  
  .contact-btn{
    background: #5fb1df;
    display: inline-block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
    padding: 8px 20px;
    color: #224056 !important; 
    font-size: 14px;
    
  }
  .location-btn i{
    margin-right: 3px;
  }
  .reg-box-one{
    background: #fffce4;
  }
  .reg-box-two{
    background: #f5fffa;
  }
  .reg-box p{
    font-size: 14px;
  }
  .reg-box .main-btn{
    padding: 10px 20px;
    font-size: 13px;
  }
  .reg-box h4{
    font-weight: 600;
    color: #054374;
    font-size: 20px;
  }
  .custom-checkbox{
    font-size: 12px;
      line-height: 1;
      position: relative;
      display: inline-block;
      /* margin: 0 5px 0 0; */
      text-transform: uppercase;
      color: #000;
      background-color: #f1f2f6;
      
  }
  .custom-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer;
    opacity: 0;
  }
  .custom-checkbox .size-name {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 0;
    border-radius: 3px;
   
    padding: 8px;
    display: inline-block;
  }
  .custom-checkbox input:checked~.size-name {
    color: #fff;
    background-color: #2d8f56;
  }
  .custom-checkbox .size-name small{
    font-size: 12px;
    font-weight: 400;
    padding-top: 5px;
    display: inline-block;
  }
  .custom-checkbox .disabled{
    color: red !important;
    text-decoration: line-through;
  }
  .custom-checkbox .disabled small{ 
    
    text-decoration: line-through;
  }
  .videos h4{
    font-weight: 600;
    margin-bottom: 20px
  }
  .videos h4 i{
    margin-right: 10px;
    color: #169bd6;
  }
  .videos p{
    margin-top: 10px;
  }
  .video-list{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 60.25%;
  }
  .video-list iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  /* Profile container */
  .profile-side {
     background: #ececec;
     background: #f2fbff;
     padding: 20px;
     min-height: 70vh;
   
     border: 1px solid rgba(0,0,0,.125);
  
  }
  .progile-image{
    width: 60px;
    height: 60px;
    border: 1px solid #ffffff;
  }
  .profile-side h5{
    font-size: 16px;
    margin-top: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid #b3b3b3;
  }
  .profile-content .card-body{
    min-height: 70vh;
  }
  
  .price-details p {
    color: #000;
    margin-bottom: 10px;
  }
  .price-details p span {
    float: right;
  }
  .price-details h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
  }
  .price-details h5 span {
    float: right;
  }
  .form-bg{
    background: #003399;
  }
  .skills-icon{
    margin-bottom: 30px;
  }
  .skills-icon p{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    
  }
  .skills-icon img{
    height: 30px;
  }
  .image-hover{
    
    transition: 0.5s ease-in-out;
  }
  .image-hover:hover{
   
    cursor: pointer;
    transform: scale(1.1);
  }
  .home-section{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-section h1{
    color: #000000;
    font-weight: 800;
    font-size: 29px;
  }
  .home-section p{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
  }
  .home-section .icon{
    height: 35px;
    /* margin-bottom: 20px; */
  }
  .about-page{
    padding-top: 100px;
    padding-bottom:100px;
  }
  .about-page h6{
    font-size: 18px;
    font-weight: 600;
  }
  .about-page h6 span{
    opacity: 0.5;
  }
  .about-page h1{
    font-weight: 800;
    font-size: 50px;
    color: #000;
  }
  .about-page h2{
    font-weight: 800;
    font-size: 30px;
    color: #000;
  }
  .about-page p{
    font-size: 16px;
    color: #69727A;
    font-weight: 400;
  }
  .investors-list{
    margin-bottom: 30px;
  }
  .investors-list img{
    max-height: 110px;
  }
  .investors-list p{
    color: #000;
    font-size: 17px;
    margin-bottom: 0px;
  }
  .investors-list span{
    color: #000;
    opacity: 0.5;
    font-size: 15px;
  }
  .banner .card{
    border: none;
    box-shadow: 0 0px 10px rgba(0,0,0,.1);
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    /* margin-bottom: 12px; */
  }
  .banner .card h6{
    font-weight: 600;
    font-size: 14px;
  }
  .banner .card:hover{
    cursor: pointer;
    transform: scale(1.1);
  }
  .flow-list{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .rotate {
    transform: rotate(180deg);
  }
  .icon-one{
    position: absolute;
    /* height: 65px; */
    top: 0;
    left: 0px;
    background: #fff;
    z-index: 2;
    width: 13%;
  }
  .icon-two{
    position: absolute;
    width: 13%;
    top: 0;
    left: -52px;
    background: #fff;
    z-index: 2;
  }
  .rounded-large{
    border-radius: 20px;
  }
  .flow-img-one{
    max-width: 90%;
  }
  .line-one{
    top:  80px;
    bottom:  0;
   margin-left: 20px;
   
  }
  .line-two{
    top:  0px;
    bottom:  0;
  margin-left: 22px;
    
  
  }
  .flow-content{
    width: 87%;
  }
  .flow-content p{
    line-height: 23px;
  }
  .icon-round{
    width: 60px;
    height: 60px;
    display: inline-block;
    line-height: 60px;
  }
  .icon-round svg{
    width: 25px;
    height: 25px;
  }
  .bg-light-green{
    background: #E1F2E1;
    text-align: center;
  }
  .bg-light-rose{
    background: #FBE9EF;
    text-align: center;
  }
  .bg-light-blue{
    background: #DBF3FA;
    text-align: center;
  }
  .contact-box h6{
    font-weight: 700;
    font-size: 20px;
    color: #000;
  }
  .contact-box a{
    color: #69727A;
  }

.contact-box  p{
  color: #69727A;
}
  .card-right{
    max-width: 282px;
  }
  
  .btncolor{
    background-color: var(--primary);
    border-radius: 5px;
    padding: 6px 12px;
    color:  #fff;
    font-size: 14px;
    transition: all 0.3s ease, background-position 1ms;
    display: block;
    width: 100%;
  }
  
  
  .package{
    list-style-type: none;
  }
  
  .pricing{
   padding-left: 1.5rem;
  }
  
  .parent{
    height: 300px;
    display: flex;
    border:2px solid yellow;
  }
  
  .child{
    background-color: red;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    color: white;
  }
  
  .icon-color
  {
    color:#3291f9;
  
  }

  
 /* landing-page-banner */

 .landin-page-banner{
    background: url(../images/banner.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
   }
   .landin-page-banner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.6;
    bottom: 0px;
    background: rgb(24,24,24);
  background: -moz-linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(28,40,62,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(28,40,62,1) 100%);
  background: linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(28,40,62,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#181818",endColorstr="#1c283e",GradientType=1);
  }
  .landin-page-banner h1{
    font-size: 43px;
      font-weight: 700;
      margin-bottom: 10px;
  }
  .landin-page-banner h3{
    font-size: 22px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 34px;
  }
  .landin-page-banner h2{
     font-size: 30px;
     color: #000;
     font-weight: 700;
  }
  .banner-btn{
    background: #fff;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  padding: 8px 15px;
  color:  var(--primary);
  font-size: 14px;
  transition: all 0.3s ease, background-position 1ms;
  }
  .banner-btn:hover{
    background: #0076ff;
    color: #fff;
  }
  .landing-btn{
    background: var(--primary);
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  padding: 8px 15px;
  color:  #fff;
  font-size: 14px;
  transition: all 0.3s ease, background-position 1ms;
  }
  .landing-btn:hover{
    background: #0076ff;
    color: #fff;
  }
  .banner-form{
    padding: 35px;
  }
  .btn-primary{
    background: #104BBA;
    border-color: #104BBA ;
  }
  .banner-bottom{
    background: #F4F4F4;
    padding: 10px 0px;
  }
  .banner-bottom img{
     max-height: 38px;
     transition: 0.5s ease-in-out;
  }
  .banner-bottom img:hover{
    cursor: pointer;
    transform: scale(1.1);
  }
  .landin-section h2{
    font-size: 35px;
    font-weight: 700;
  }
  
  .landin-section{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .product-features-bg{
    background: rgb(191,212,249);
    background: -moz-linear-gradient(90deg, rgba(191,212,249,0.3744091386554622) 0%, rgba(141,165,191,0.29597776610644255) 100%);
    background: -webkit-linear-gradient(90deg, rgba(191,212,249,0.3744091386554622) 0%, rgba(141,165,191,0.29597776610644255) 100%);
    background: linear-gradient(90deg, rgba(191,212,249,0.3744091386554622) 0%, rgba(141,165,191,0.29597776610644255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bfd4f9",endColorstr="#8da5bf",GradientType=1);
  }
  .product-features-list{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    min-height: 545px;
  }
  .product-features-list h3{
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
  }
  .product-features-list p{
    font-size: 14px;
    line-height: 20px;
  }
  .benefits-list{
    min-height: 300px;
    padding: 20px;
    background: rgb(195,201,210);
  background: -moz-linear-gradient(135deg, rgba(195,201,210,0.2539609593837535) 0%, rgba(99,118,154,0.309983368347339) 100%);
  background: -webkit-linear-gradient(135deg, rgba(195,201,210,0.2539609593837535) 0%, rgba(99,118,154,0.309983368347339) 100%);
  background: linear-gradient(135deg, rgba(195,201,210,0.2539609593837535) 0%, rgba(99,118,154,0.309983368347339) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c3c9d2",endColorstr="#63769a",GradientType=1);
  border-radius: 20px;
  }
  .benefits-list h3{
    font-size: 21px;
    font-weight: bold;
    margin-top: 10px;
  }
  .benefits-list p{
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 0px;
  }
  .benefits-list .icon-bg{
    background: #000;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
  }
  .benefits-list .icon-bg img{
    height: 30px;
    margin-top: 15px;
  }
  .review-list{
    background: rgb(41,56,84);
  background: -moz-linear-gradient(90deg, rgba(41,56,84,1) 0%, rgba(9,48,121,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(41,56,84,1) 0%, rgba(9,48,121,1) 100%);
  background: linear-gradient(90deg, rgba(41,56,84,1) 0%, rgba(9,48,121,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#293854",endColorstr="#093079",GradientType=1);
  padding: 20px;
  border-radius: 20px;
  }
  .review-list p{
    font-size: 22px;
    color: #fff;
    font-weight: 200;
    font-style: italic;
    max-width: 800px;
    margin:10px auto;
    line-height:30px;
  }
  .review-list img{
    width: 60px !important;
    height: 60px;
    border-radius: 100%;
    display: inline-block;
    margin: auto;
    
  }
  .review-list h6{
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0px;
  
  }
  .review-list small{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
  }
  .landing-bg-img{
    background: url(../images/bg-img.jpg) center bottom;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-attachment: fixed;
  }
  .landing-bg-img::before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.7;
    bottom: 0px;
    background: rgb(24,24,24);
  background: -moz-linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(28,40,62,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(28,40,62,1) 100%);
  background: linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(28,40,62,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#181818",endColorstr="#1c283e",GradientType=1);
  }
  .landing-bg-img .logo-icon{
    height: 60px;
  }
  .landing-bg-img h2{
   font-weight: 700;
   font-size: 40px;
   margin-top: 20px;
  }
  .landing-bg-img p{
    opacity: 0.9;
    font-size: 20px;
    font-weight: 300;
  }
  .landing-faq{
    background: #F7F7F7;
  }
  .landng-contact-us{
    background: #ECF2FC;
  }
  .landng-contact-us input {
    height: 55px;
   
  }
  .landng-contact-us .form-control{
    border-radius: 0px;
    border: none;
    color: #000;
  }
  @media (max-width: 1200px) {
    .banner h1{
      font-size: 40px;
    }
    .out-line-heading{
      font-size: 60px;
    }
    .box-item h1{
      font-size:28px;
    }
    .icon-box{
     width: 55px;
     height: 55px;
     line-height: 55px;
    }
    .top-header-left a {
      font-size: 12px;
    }
   
  }
  @media (max-width: 992px) {
    .banner-form{
      padding: 20px;
    }
    .banner h1{
      font-size: 30px;
  
    }
   
    .location-btn{
      text-transform: uppercase;
      padding: 10px 20px;
    }
  
    .banner .carousel-caption h1 {
      font-size: 40px;
    }
    .mobile-bth {
      display: block;
    }
    .top-header-left {
      display: none;
    }
    .demo-btn {
      display: block;
    }
  }
  @media (max-width: 768px) {
    .privacy-img{
      max-height: 50px;
      margin-bottom: 15px;
    }
    .line-one{
      display: none !important;
    }
    .line-two{
      display: none !important;
    }
    .about-page h2{
      font-size: 20px;
    }
    .flow-content{
      width: 100%;
    }
    .flow-content p{
      font-size: 14px;
      line-height: 20px;
    
    }
    .mobile-hide{
      display: none;
    }
    .icon-one{
      position: relative;
      width: 60px;
      margin-bottom: 10px;
    }
    .icon-two{
      position: relative;
      width: 60px;
      margin-bottom: 10px;
      left: 0;
    }
    .flow-list{
      text-align: center;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    /* .flow-line-one{
      left: 25px;
    } */
    
    /* .icon-one,.icon-two{
      display: none;
    }
    .w-90{
      width: 100%;
    } */
    .home-section{
      padding-top: 10px;
      padding-bottom: 10px;
    }
    section{
      padding-left:15px ;
      padding-right: 15px;
    }
    .about-page{
      padding-top: 30px;
    }
    .about-page h1{
      font-size: 40px;
    }
    .header-right{
      display: none;
    }
    .min-h-100{
      min-height: auto  ;
    }
    .banner{
      padding-top: 30px;
    }
    .banner h1 .out-line-heading{
     display: block;
    }
   
    .product-list{
      margin-bottom: 20px;
    }
    .about,.home-video,.gallery,.testimonial{
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .about h2{
      margin-top: 20px;
      font-size: 24px;
    }
    .home-video h2{
      font-size: 24px;
    }
    header {
      position: relative;
      padding-top: 10px;
      padding-bottom: 12px;
      border-bottom: 1px solid #eee;
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-start {
      padding-top: 0px;
    }
    .flow-chart {
      display: none;
    }
  
    .logo {
      text-align: right;
    }
    .logo img {
      max-height: 32px;
      margin-top: 0px !important;
    }
    .home-section .icon{
      /* margin-top: 20px; */
      height: 30px;
    }
    .home-section h1{
      font-size: 22px;
    }
    .home-section p{
      line-height: normal;
    }
    .skills-icon img{
      margin-bottom: 15px;
    }
    .skills-icon p{
      margin-top: 20px;
    }
    .banner-img{
      margin-top: 20px;
    }
    .white-box {
      margin-top: 30px;
    }
  
    .box-item {
      padding: 10px 25px;
     
      margin-bottom: 10px;
      /* text-align: left; */
    }
    .icon-box {
      width: 55px;
      height: 55px;
      line-height: 55px;
  }
    .box-item img {
      max-height: 30px;
    }
    .box-item h1{
      font-size: 25px;
    }
    .box-item h4 {
      font-size: 16px;
      font-weight: 400;
    }
    .courses,
    .news-letter,
    .news,.programs {
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .choose {
      padding-top: 30px;
    }
    .choose img {
      margin-top: 20px;
    }
  
    .top-header-right {
      text-align: center;
    }
    .nav-link {
      text-transform: uppercase;
    }
    .news-letter h2{
      font-size: 25px;
    }
    .news-letter p{
      font-size: 14px;
    }
    .footer-social{
      margin-bottom: 20px;
      overflow: hidden;
    }
    .page-head{
      padding-top:30px;
      padding-bottom: 30px;
    }
    .page-head h1{
      font-size: 25px;
    }
    .inner-page{
      padding-top:30px;
      padding-bottom: 30px;
    }
    .program-list img{
      margin-bottom: 12px;
    }
    .price-details{
      margin-top: 30px;
    }
    .profile-side{
      min-height: auto;
      margin-bottom: 20px;
    }

    /* landing-page */
    .landin-page-banner h1{
      font-size: 30px;
    }
    .banner-btn{
      margin-bottom: 15px;
    }
    .landin-section h2{
      font-size: 24px;
    }
    .landin-section{
      padding-top: 40px;
      padding-bottom: 40px
    }
    .review-list p{
      font-size: 20px;
    }
    .landing-bg-img h2{
      font-size: 30px;
    }
    .landing-bg-img .logo-icon{
      height: 50px;
    }
    .landing-bg-img{
      padding-top: 50px;
      padding-bottom: 50px;
      background-position: center;
    }
  }