body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.carousel-indicators{
  display: none;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
  border: 1px solid #f4f4f4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-size: 70% 70%;
  opacity: 1;
}
.carousel-control-next, .carousel-control-prev{
    opacity: 1;
    display: none;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 5px 0;
  border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  width: 150px;
  height: 100px;
}

#header .logo img {
  width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #16507b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2487ce;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 15px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2487ce;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#carouselExampleIndicators{
  height: 400px;
  overflow: hidden;
  width: 100%;
}
#carouselExampleCaptions,
.carousel-inner,
.carousel-item{
  height: 100%;
} 
.carousel-item img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.mainBanner{
  margin: 80px 0 0 0;
  padding: 0px !important;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.secondSec{
  margin: -70px 0 0 0;
}
.secondSec .swiper-wrapper{
  padding: 50px 0 0 0;
}
.secondSlider .testimonial-item {
  text-align: center;
}
.secondSlider .testimonial-item h3{
  font-size: 16px;
  font-weight: 500;
  margin: 0px 0 5px 0;
  color: #0F023B;
}
.secondSlider .testimonial-item p{
    padding: 0 0 5px 0;
}
.bgShapedesign{
  display: block;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin: 0 auto;
  position: relative;
  top: -25px;
  left: 0;
  overflow: hidden;
}

.bgShapedesign img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.secondSlider .testimonial-item{
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 2px 15px rgb(18 66 101 / 8%);
}
.secondSecContent{
  margin: -25px 0 0 0;
}
/*----------------second section------------------------------*/


section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.icon-boxes {
  box-shadow: 0px 2px 15px rgb(18 66 101 / 15%);
  border-radius: 10px;
  overflow: hidden;
}
.icon-boxes .col-md-3,
.icon-boxes .col-md-9{
  background: #fff;
  padding: 10px;
}
.icon-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.icon-box h3{
  color: #0F023B;
  font-weight: 600;
}
.icon-box h3 span{
  background: #ED7133;
  color: #fff;
  padding: 5px 10px;
}
.countSec{
  text-align: center;
}
.countSec h3{
  color: #0F023B;
  font-weight: 600;
}
.countSec p{
  margin: 0;
  color: #0F023B;
}
.border-r{
  border-right: 1px solid #ED7133;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about img{
  width: 100%;
}
p{
  color: #0F023B;
  font-size: 14px;
  line-height: 1.7;
}

.btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 25px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  background: #ED7133;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 1px solid #ED7133;
}

.btn-learn-more:hover {
  background: transparent;
  color: #ED7133;
}
.titleHH span{
  color: #ED7133;
  font-size: 14px;
  position: relative;
}
.titleHH span:after {
    width: 60px;
    content: "";
    position: absolute;
    right: -65px;
    bottom: 6px;
    height: 2px;
    background-color: #ED7133;
}
.titleHH h3{
  color: #0F023B;
  font-size: 30px;
  font-weight: 600;
}
/*------------------------Advantage Sec------------------------------------*/
.advantageSec{
  background: linear-gradient(to right, #fff 0%, #f4f4f4 100%);
  display: flex;
  align-items: center;
  border-radius: 0 15px 15px 0px;
  margin: 10px 0;
}
.advantageSec p{
  font-weight: 600;
}
.iconAdvantage{
  width: 80px;
  height: 60px;
  background: #ED7133;
  margin: 0 20px 0 0;
  position: relative;
  padding: 5px;
}
.iconAdvantage:after {
  content: "";
  position: absolute;
  top: 23px;
  right: -22px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ED7133;
  transform: rotate(-90deg);
}
.iconAdvantage img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.iconAdvantageBlue{
  width: 80px;
  height: 60px;
  background: #0F023B;
  margin: 0 20px 0 0;
  position: relative;
  padding: 5px;
}
.iconAdvantageBlue:after {
  content: "";
  position: absolute;
  top: 23px;
  right: -22px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #0F023B;
  transform: rotate(-90deg);
}
.iconAdvantageBlue img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*-----------------------------Testimonials------------------------------------*/
.testimonials{
  background: #f4f4f4;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px;
  transition: all .5s;
}
.testimonials .testimonial-item:hover{
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .programSlider h3 {
    font-size: 12px !important;
    font-weight: 600 !important;
}
.testimonials .testimonial-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: #0F023B;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  line-height: 1.8;
  color: #0F023B;
  margin: 20px 0;
  font-weight: normal;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2487ce;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2487ce;
}
.icon {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
}
.icon img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.testimonialH{
  font-weight: normal !important;
}
/*-----------------------------Cta-----------------------------------------*/
.cta {
  background: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #0F023B;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #0F023B;
}
.cta form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #cde5f6;
}
.cta form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}
.cta form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #ED7133;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  }
/*----------------------------Contact--------------------------------*/
.section-bg {
    background-color: #f6f9fd;
}
.section-title {
    padding-bottom: 40px;
}
.section-title h2 {
    color: #ED7133;
    font-size: 14px;
    position: relative;
}
.section-title h2::after {
    width: 60px;
    content: "";
    position: absolute;
    right: -65px;
    bottom: 6px;
    height: 2px;
    background-color: #ED7133;
}
.section-title p {
    margin: 0;
    color: #0F023B;
    font-size: 30px;
    font-weight: 600;color: #0f2f57;
}
.contact .info-box {
    color: #0b2341;
    text-align: center;
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
    padding: 20px 0 30px 0;
    background: #fff;
}
.contact .info-box i {
    font-size: 32px;
    color: #ed502e;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fbdad2;
}
.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.contact .php-email-form {
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
    padding: 30px;
    background: #fff;
}
.contact .php-email-form input {
    padding: 10px 15px;
}
/*-------------------------Breadcrumbs------------------------------*/
.breadcrumbs {
  padding: 50px 0;
  margin: 110px 0 0 0;
  background-image: url(../img/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li,
.breadcrumbs ol li a{
  color: #fff;
}
.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------Footer---------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #0F023B;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 40px 0 0px 0;
  background: #0F023B;
}
.footer-contact .logo{
  height: 100px;
  width: 100px;
}
.footer-contact .logo img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}
.footer-links p{
  color: #fff;
}
.linkF a{
  color: #fff;
}
/*-------------------------Sample Paper----------------------*/
.pdfSec{
  box-shadow: 0 0 30px rgb(214 215 216 / 30%);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}
.pdfSec h3{
  color: #0F023B;
  font-size: 18px;
  font-weight: 600;
}
.sample_paper .btn-learn-more{
  padding: 8px 20px;
}
/*-------------------------program detail--------------------------*/
.programs_detail h3{
  color: #0F023B;
  font-size: 25px;
  font-weight: 600;
  padding: 10px 0;
}
.programs_detail h3 strong {
    display: inline-block;
    border-left: 5px solid #ED7133;
    padding: 0px 12px;
}
.programs_detail ul li{
  font-size: 14px;
  padding: 5px 0;
}
.tableSec h6{
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}
.tableSec p{
  margin: 0;
}
/*----------------------register now-------------------------------*/
.registerImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.form-items{
  box-shadow: rgb(0 0 0 / 30%) 0 2px 7px;
  padding: 20px;
  border-radius: 25px;
}
.form-content h3{
  padding: 0 0 20px 0;
}
.form-content h3 strong {
    display: inline-block;
    border-left: 5px solid #ED7133;
    padding: 0px 12px;
}
.form-items select,
.form-items input{
  border: 1px solid #ed71338c;
  border-radius: 25px;
}
.form-select:focus,
.form-control:focus{
  box-shadow: none;
  border-color: #ED7133;
}
/*-----------------------------media-----------------------*/
.mediaCard{
  box-shadow: rgb(0 0 0 / 20%) 0 2px 7px;
  padding: 20px;
  border-radius: 15px;
  height: 100%;
}
.media h3 strong {
    display: inline-block;
    border-left: 5px solid #ED7133;
    padding: 0px 12px;
}
.mediaCard img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}
.mediaCard h4{
  font-size: 16px;
  margin: 0px;
  font-weight: 600;
  padding: 10px 0;
}
.mediaCard .btn-learn-more{
  padding: 5px 20px;
  margin: 0px !important;
}
.iframeSec{
  height: 450px;
}
.iframeSec iframe{
  height: 100%;
  width: 100%;
}
.mediaImg{
  height: 300px;
}
.mediaImg img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.mediaImg .modal-header{
  border: none;
}
.btn-close{
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-close i{
  color: #000;
  font-weight: 700;
  font-size: 16px;
}

/*----------------------team-------------------------------*/
.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    /*background: #fff;
    box-shadow: 0px 2px 15px rgb(18 66 101 / 8%);*/
}
.team .member .member-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.team .member .member-img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.team .member:hover .social {
    opacity: 1;
}
.team .member .social a {
    transition: color 0.3s;
    color: #124265;
    margin: 0 10px;
    display: inline-block;
}
.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
    line-height: 0;
}
.team .member .member-info {
    padding: 25px 15px;
}
.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #124265;
}
.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}
.programs_detailsImg{
  height: 350px;
  width: 350px;
  object-fit: contain;
  margin: 0 20px 20px 0;
  box-shadow: 0px 2px 15px rgb(18 66 101 / 8%);
  border-radius: 15px;
}
/*--------------------------------Responsive-------------------------*/
@media (max-width: 767px) {
  section{
    padding: 20px 0;
  }
  img{
    height: 100%;
    width: 100%;
  }
  .titleHH h3, .programs_detail h3{
    font-size: 18px;
  }
  .counterH, .counterT{
    margin: 0px !important;
  }
  .secondSec {
    margin: 0;
  }
  .counterS .col-md-3 {
    flex: 0 0 auto;
    width: 50%;
  }
  .icon-boxes{
    padding: 20px 0;
  }
  .countSec {
    border-right: 1px solid #ED7133;
    height: 100%;
  }
  .countSec p{
    font-size: 12px;
  }
  .sample_paper .btn-learn-more{
    padding: 5px 10px;
    font-size: 9px;
  }
  .programs_detailsImg{
    height: 250px;
    width: 100%;
  }
}