*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Sen", sans-serif;
}

:root {
  --clr-bg-header: #3D8361;
  --clr-btn: #FFF;
  --clr-dropdown: #ef962bfE;
  
  --clr-dropdown-hov: #ef962bfE;
  --clr-dropdown-link-hov: #ef962bfE;
  --clr-light: #ef962bfE;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0px;
  background-color: var(--clr-bg-header);
  width: 100%;
  z-index: 1000;
}




.logo-container img{
  width: 55%;
}

.container {
 
  position: relative;
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
}

.log-sign {
  display: flex;
  justify-content: end;
  align-items: center;
  flex: 1;
}

.logo {
  color: var(--clr-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}

.nav-link {
  position: relative;
  padding: 13px 4px;
}

.nav-link > a {
  line-height: 3rem;
  color: var(--clr-light);
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link > a > i {
  margin-left: .2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}

.dropdown ul {
    position: relative;
    padding-left: 0px;
    background-color: #fff;
    width: 200px;
    border: solid 1.5px #ef962b;
    border-radius: 4px;
}

.dropdown-link > a {
  display: flex;
  background:none;
  color: #ef962b;
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover > a {
  background-color: #ef962b;
  color: #fff;
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: var(--clr-light);
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #ef962b;
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: -58px;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 73px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--clr-light);
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: var(--clr-light);
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(120vh - 3rem);
    top: 0rem;
    left: 0;
    width: 100%;
    background-color: var(--clr-btn);
    flex-direction: column;
    align-items: center;
    justify-content: left;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }

  .dropdown.second ul{
    border: solid 1px #2d93d0;
  }

  .dropdown ul {
   width: 100% ;
    border: solid 1px #ef962b;
}

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
    margin-top: 62px;
  }

  .nav-links > ul {
    flex-direction: column;
    padding-left: 0px;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}



.all_padding{
    padding: 80px 0px;
}

.background_all{
    background: #3a9ad369;
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}


.header {
    padding: 5px 0;
    background-color: #fff;
    position: fixed;
    top: 15px;
    left: 31px;
    border-radius: 100px;
    width: 95%;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    z-index: 2;
  }

  .active {
    position: fixed;
    z-index: 1000;
    height: 90px;
    width: 100%;
    background: rgb(255 255 255);
    padding: 7px 0px;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    top: 0px;
    left: 0px;
    border-radius: 0px;
    box-shadow: 0px 0px 7px -4px #00000057;
}
  
.owl-theme .owl-dots .owl-dot{
  display: none;
}
.dots {
  display: none !important;
}
  
  
  .thoimg.text-center h5{
    color: #000;
  }
  
  .activeer {
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px -1px #00000059;
  }
  
  .logo {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
  }
  
 
  
  
  button.ad_btn {
    color: #fff;
    border-radius: 3px;
    border: solid 1px #ef962b;
    padding: 7px 18px;
    font-weight: 500;
    background-image: -webkit-linear-gradient(30deg, #c266d3 50%, transparent 50%);
    background-image: linear-gradient(10deg, #ef962b 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    transition: 0.5s;
  }
  
  
  button.ad_btn:hover {
    background-position: 100%;
    color: #f5811e;
    border: solid 1px #f5811e;
    background-color: #fff;
  }

  
.slider {
    width: 100%;
    height: 600px;
    margin: auto;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
  }
  
  .slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s;
    opacity: 0;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    bottom: 0%;
    width: 40px;
  
    height: 40px;
    padding: 9px 14px !important;
    transform: translateY(-50%);
    font-size: 19px;
    color: #ffffff9f;
    background-color: rgba(0, 0, 0, 0.219);
    padding: 10px;
    border-radius: 50%;
  }
  
  a.prev,
  a.next {
    color: #fff;
  }
  
  .prev {
    left: 93% !important;
    bottom: 50px !important;
  }
  
  
  .next {
    left: 93% !important;
  }
  
  .dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .dot {
    cursor: pointer;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
  }
  
  .dot.active {
    background-color: #ef962b ;
  }

  

  .zoom-in-zoom-out {
    width: 100%;
    animation: zoom-in-zoom-out 35s ease-out infinite;
  }
  
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }


.men img{
    width: 30%;
    position: absolute;
    bottom: 0px;
    right: 340px;
    z-index: 1;
}

.best_coching img{
    width: 100%;
    border-radius: 5px;
}

.best_coching {
    padding: 20px;
    background: #ffffff;
    border-radius: 5px;
    position: absolute;
    width: 20%;
    bottom: 77px;
    right: 108px;
    z-index: 1;
}

.gallery.four img.w-50 {
  width: 25% !important;
  margin-bottom: 55px;
}

.best_coching h1{
    font-size: 20px;
    font-weight: 800;
    padding-top: 10px;
    margin-bottom: 0px;
    color: #f5811e;
}

.best_coching p{
    margin-bottom: 0px;
    font-size: 14px;
    padding: 15px 0px;
}

.elem-group select#room-selection {
  padding: 11px .75rem;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  color: #6c757d;
  border-radius: 3px;
}

.content_alo{
    position: absolute;
    top: 181px;
    left: 105px;
    z-index: 1111;
    width: 42%;
}

.content_alo h2 {
    font-size: 37px;
    font-weight: 800;
    color: #ef962b;
    line-height: 51px;
    text-transform: capitalize;
}

ul.nav-list button.ad_btn{
    margin-left: 122px;
}

.col-md-6.dd{
  background: #218dce;
  padding: 30px 40px;
  border-radius: 5px;

}

.content_alo p{
    font-size: 15px;
    color: #fff;
    line-height: 29px;
    margin-bottom: 30px;
}

.learn_forcard{
    padding: 20px;
    background: #3a9ad3;
    border-radius: 5px;
    
}

.learn_forcard i{
    font-size: 50px;
    color: #fff;
    margin-right: 20px;
}

.learn_forcard h2{
    font-size: 23px;
    font-weight: 800;
    color: #fff;
}

.learn_forcard p{
    font-size: 13px;
    color: #fff;
    margin-bottom: 0px;
}


.learn_forcard.dif {
    background: #ef962b;
   
}

.learn_forcard{
    transition: 0.5s;
}

.learn_forcard:hover{
    transform: translate(0px,-10px);
    box-shadow: 0px 8px 11px -5px #ef962b;
}

.web_de {
  padding: 20px 23px;
}

.popular_courses h5{
    color: #ef962b;
    font-size: 24px;
}

.all_head{
    font-size: 32px;
    font-weight: 800;
}

.all_perag{
    font-size: 15px;
    color: #767676;
}

.popular_courses.text-center {
    width: 84%;
    margin: auto;
}

.corse_card img {
  width: 100%;
  border-radius: 10px;
  height: 210px;
  object-fit: cover;
 
}

.corse_card{
    padding: 26px;
    background: #fff ;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
}

.corse_card h2{
    font-size: 27px;
    font-weight: 700;
    color: #ef962b;
    padding-top: 15px;
    margin-bottom: 20px;
}

span.pric_c {
  position: absolute;
  top: 187px;
  left: 31px;
  background: #fff;
  padding: 10px;
  color: #3a9ad3;
  border-radius: 5px;
  font-weight: 800;
}

p.yyyr{
    padding-left: 35px;
}

.d-flex.yyrte i{
  margin-right: 5px;
    color: #ef962b;
}

.d-flex.yyrte p{
  font-weight: 600;
  color: #0000008a;
  margin-bottom: 7px;
}

span.reat i{
  color: #efca2b;
  margin-left: 3px;
}

button.ad_btn.asd {
  margin-left: 30px;
}

hr:not([size]) {
  height: 1px;
  margin: 30px 0px;
}

button.ad_btn.asd.all {
  margin-top: 40px;
}

.learn_forcard.align-items-center.web_de2 {
  height: 345px;
  margin-top: 30px;
}

.learn_forcard.align-items-center.web_de2 svg{
  width: 70px;
  height: 70px;
}

.learn_forcard.align-items-center.web_de2 svg path {
  fill: #fff;
}

.popular_courses.why_chose h2.all_head {
  padding: 15px 0px;
  color: #429bd1;
}

.popular_courses.text-center h2{
  color: #3a9ad3;
}

.ce_ixelgen_progress_bar {
	max-width: 800px;
	margin: 0 auto;
  padding-top: 25px;
    .progress_bar_item {
        margin-bottom: 20px;
    }
    .item_label,
    .item_value {
		font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }
	.item_value {
		font-weight: 400;
	}
    .item_bar {
        position: relative;
        height: 12.9px;
        width: 100%;
        background-color: #ffffff;
        border: solid 0.5px #acacac8a;
        border-radius: 2px;
        .progress {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
			height: 12px;
			margin: 0;
            background-color: #3a9ad3;
            border-radius: 2px;
            transition: width 100ms ease;
        }
    }
}

.item_value.cell.shrink {
  font-weight: 600;
}

.item_label.cell.auto{
 
  font-size: 18px;
}

ul.contant{
  padding-left: 0px;
}

ul.contant li{
  list-style: none;
  padding: 3px 0px;
}

ul.contant li i{
  color: #0dcf2d;
  margin-right: 10px;
}

.graph_box i.fa-solid.fa-chart-line{
  font-size: 45px;
  margin-bottom: 12px;
}

.graph_box h2 {
  font-size: 26px;
  font-weight: 900;
}

.graph_box {
  padding: 15px 39px;
  background: #ef962b;
  color: #fff;
  border-radius: 5px;
}

.chose_img img{
  width: 100%;
  height: 485px;
  object-fit: cover;
  border-radius: 5px;

}



.prosess_cours i{
  font-size: 33px;
  background: #429bd1;
  color: #fff;
  padding: 17px;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 30px;
}

.book_text h2{
  font-size: 22px;
  font-weight: 700;
  color: #ef962b;
  margin-bottom: 2px;
}

.chose_img.proseds img{
  height: 649px;
  width: 95%;
}

.accordion-item{
  margin-bottom: 25px;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #2d93d0;
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
  font-weight: 600;
   
}

div#accordionFlushExample {
  margin-top: 35px;
}

.accordion-item{
  border-radius: 5px !important;
  box-shadow: 0px 5px 7px -5px #ef962b;
}

h2#flush-headingOne {
  border-radius: 5px;
}

button.accordion-button.collapsed{
  border-radius: 20px !important;
  font-weight: 600;
    color: #ef962b;
}

.quest img{
  height: 550px;
    width: 95%;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}

.swiper-navBtn {
  display: none;
}

@media screen and (max-width: 768px) {
 .swiper-navBtn {
    display: block;
  }

  .col-md-6.dd{
    background: #218dce;
    padding: 20px 0px;
    border-radius: 5px;
  
  }
}


.formsc.modl input {
  border: solid 1px #a3a9af;
}

.col-md-12.dec.modsl select#room-selection{
  border: solid 1px #a3a9af;
}

.review_img img {
  width: 70px;
  border-radius: 100%;
  height: 70px;
  object-fit: cover;
  border: solid 2px #ef962b;
}

.project-image{
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}

.review_txt {
  margin-left: 26px;
  padding-top: 4px;
  position: relative;
}

.review_txt h4{
  margin-bottom: 0px;
  font-weight: 700;
  color: #429bd1;
}

.review_txt p{
  color: #f3921e;
}

.owl-carousel.our-products.owl-theme.owl-loaded.owl-drag {
  margin-top: 40px;
}

section.all_padding.review_test{
  background-image: url(../images/review_back.png);
    background-size: cover;
    height: auto;
    background-attachment: fixed;
    background-position: center top;
}

.popular_courses.sert.text-center h2.all_head {
  color: #fff;
}

.popular_courses.sert.text-center p{
  color: #fefefe;
}

span.quate{
  position: absolute;
  top: 37px;
  right: 14px;
  font-size: 32px;
}

span.quate i{
  color: #ef962b;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow_we.svg);
  transform: rotate(-180deg);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url(../images/arrow_we\ 1.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.subsc{
  padding: 45px 20px;
    background: #2d93d0;
    border-radius: 5px;
    position: relative;
}

.inpt input.form-control{

  padding: 12px;
  border: none;
  border-radius: 0px;
}

h2.newslt {
  margin-bottom: 0px;
  font-weight: 700;
  color: #fff;

}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}

a.secbrib {
  position: absolute;
  top: 0px;
}

a.secbrib {
  position: absolute;
  top: 49px;
  right: 26px;
}

a.secbrib button{
  border-radius: 0px;
}


.foot_log img {
  width: 75%;
}

footer.padd_all.all_back {
 background-color: #fff;
 padding: 80px 0px 30px 0px;
}

.foot_log p {
  font-size: 13px;
  padding: 16px 0px;
  margin-bottom: 0px;
}

.d-flex.links_social img {
  width: 100%;
  padding-right: 10px;
}

.d-flex.links_social a {
  width: 13%;
}

.implinks{
  margin-top: 30px;
 
}

.implinks.yvyt{
  margin-left: 40px;
}

.implinks h2{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ef962b;
}
ul.linkss li {
  list-style: none;
  padding: 5px 0px;
  
}

ul.linkss li a{
  text-decoration: none;
  color: #565454;
  font-weight: 500; 
}

ul.linkss{
  padding-left: 0px;
}

ul.linkss li a:hover{
  text-decoration: underline;
  color: #ef962b;
}

.implinks.dsa ul.linkss li {
  padding: 10px 0px;
}

.implinks ul.linkss li i{
  margin-right: 5px;
  font-size: 17px;
  color: #ef962b;
}

section.copy_write1{
  background: #ef962b;
    padding: 15px 0px;
    text-align: center;
}

.copy_write h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px;
}

.copy_write i{
  margin-right: 5px;
 font-size: 16px;
}

footer.all_padding.background_all {
  padding: 80px 0px 40px 0px;
}

input[type="text"] {
  box-sizing: border-box;
  width: 100%;
 margin-bottom: 20px;
  padding: 6px;
  color: #000;
  border: none;
  border-radius: 3px;
  background: #fff;
	font-size: 16px;
  resize: none;
  outline: none;
}

.formsc input{
  padding: 10px 10px;
}

textarea.wpcf7-form-control.wpcf7-textarea.form-control {
  width: 98%;
  border: none;
  border-radius: 2px;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 1px #3a9ad3;
}

input[type="text"]:focus {
  border-color: #3a9ad3;
  border: solid 1px #3a9ad3;
}
input[type="text"]:focus + label[placeholder]:before {
  color: #3a9ad3;
}
input[type="text"]:focus + label[placeholder]:before,
input[type="text"]:valid + label[placeholder]:before {
  transition-duration: .2s;
  transform: translate(0, -1.6em) scale(0.9, 0.9);	
	font-weight: bold;
}

input[type="text"]:invalid + label[placeholder][alt]:before {
  content: attr(alt);
}
input[type="text"] + label[placeholder] {
  display: block;	
  pointer-events: none;
  line-height: 1.25em;
  margin-top: calc(-3em - 2px);
  margin-bottom: calc((3em - 1em) + 2px);
}
input[type="text"] + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(0.5em + 2px);
  padding: 0 2px;
  color: #7d7d7d;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #ffffff, #ffffff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}

.modal-header{
  border: none;
  padding: 20px 20px 0px 0px;
}


.form-container {
  max-width: 500px;
  padding: 0px 27px;
  /* border: 5px solid #071F25; */
  border-radius: 5px;
}

ul.wyudis li {
  list-style: disc;
  padding: 5px 0px;
}

ul.wyudiss li {
  list-style: decimal;
  padding: 5px 0px;
}

strong.bets {
  color: #ef962b;
}

.image-box.lob img{
  height: 450px;
  object-fit: cover;
  object-position: center;
}

.form-container p{
  text-align: center;
  font-size: 30px;
  color: #3a9ad3;
  font-weight: 700;
}

button.ad_btn.mt-3.text-center.mdol {
  margin-bottom: 30px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0px;
}

form#admission-form input#input {
  border: solid 1px #3a9ad3;
  border-radius: 2px;
}
/* define animation */


.modal-footer{
  border-top: none;
}

div#exampleModal{
  background: #3a9bd35d;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 35px;
}

section.pages_main_bnr {
background-image: url(../images/all_page_main.png);
background-size: 100%;
background-repeat: no-repeat;
height: 400px;
background-position: center;
}

.pages_bnr {
  padding-top: 195px;
  text-align: center;
  padding-bottom: 90px;
}

.pages_bnr h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.pages_bnr p, a {
  color: #fff;
}

.pages_bnr p a:hover{
  color: #ef962b;
}

button.ad_btn.hna {
  margin-top: 40px;
}

.main_vis.d-flex{
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 40px;
}

.vesion i{
  font-size: 35px;
  margin-right: 23px;
  color: #2c92cf;
  margin-top: 10px;
}

.vision_txt h2{
  font-weight: 700;
}

.main_vis.d-flex.colw {
  background: #ef962b;
  color: #fff;
}

.main_vis.d-flex.colw i{
  color: #fff;
}


.counter {
  background-color: #ffffff;
  padding: 20px 0;
  border-radius: 5px;
}

.count-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #2d93d0;
}

.count-text {
  font-size: 17px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
}

.fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: #4ad1e5;
}

section.padd_all.counter-s {
  background-image: url(../images/count_back.png);
  background-size: cover;
  height: 509px;
  background-attachment: fixed;
  background-position: center top;
  padding: 80px 0px;
}

.counter.col_fourth {
  width: 23%;
}

.wrapper{
  display: flex;
  justify-content: space-between;
}

ul.submenu-inner {
  padding-left: 0px;
  margin-top: 12px;
  border: solid 2px #439dd3;
    border-radius: 5px;
}

.corse_card.cousesepage {
  box-shadow: 0px 0px 10px -3px #2790cf;
}

.sidebar-page-container .content-side {
  position: relative;
  z-index: 1;
}

/* Sidebar */
.sidebar-page-container .sidebar-side {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-page-container .sidebar {
  position: relative;
}

.sidebar .sidebar-widget {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sidebar .sidebar-widget:last-child {
  margin-bottom: 0px;
}

.sidebar .sidebar-widget .widget-inner {
  position: relative;
  display: block;
  padding: 45px 45px;
  background: #f4f5f8;
  border-radius: 7px;
}

.sidebar-title {
  position: relative;
  margin-bottom: 20px;
}

.sidebar-title h4 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 1.1em;
  color: var(--thm-black);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0px;
}

.sidebar .services ul {
  position: relative;
}

.sidebar .services ul li {
  position: relative;
  line-height: 48px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--thm-text);
  margin-bottom: 5px;
}

.sidebar .services ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  right: -20px;
  bottom: 0;
  background: #ffffff;
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar .services ul li:after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -12px;
  height: 24px;
  border-left: 2px solid var(--thm-base);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar .services ul li:last-child {
  margin-bottom: 0;
}

.sidebar .services ul li a {
  position: relative;
  display: block;
  line-height: 48px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--thm-text);
  font-family: var(--thm-b-font);
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.sidebar .services ul li:hover a,
.sidebar .services ul li.active a {
  color: var(--thm-black);
}

.sidebar .services ul li:hover:before,
.sidebar .services ul li.active:before,
.sidebar .services ul li:hover:after,
.sidebar .services ul li.active:after {
  opacity: 1;
}

.sidebar .services ul li a:after {
  position: absolute;
  right: 0;
  top: -1px;
  font-family: "Flaticon";
  content: "\f15f";
  opacity: 1;
  font-size: 10px;
  line-height: 48px;
  font-weight: 700;
  z-index: 1;
}

.sidebar .services ul li a:hover:before,
.sidebar .services ul li.active a:before {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}

.sidebar .call-up .widget-inner {
  background: var(--thm-black);
  color: #999b9f;
}

.sidebar .call-up .sidebar-title h4 {
  color: #ffffff;
}

.sidebar .call-up .text {
  position: relative;
  display: block;
}

.sidebar .call-up .phone {
  position: relative;
  margin-top: 20px;
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--thm-font);
  font-weight: 300;
}

.sidebar .call-up .phone .icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--thm-base);
  font-size: 20px;
  padding-right: 15px;
}

.sidebar .call-up .phone a {
  position: relative;
  color: #ffffff;
}

.sidebar .call-up .phone a:hover {
  text-decoration: underline;
}

.sidebar .search-box .widget-inner {
  padding: 0;
  background: none;
}

.sidebar .search-box .form-group {
  position: relative;
  margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
  position: relative;
  line-height: 40px;
  padding: 19px 15px 19px 35px;
  background: #2790cf;
  color: #fff;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 80px;
  border: 1px solid var(--thm-base);
  font-family: var(--thm-b-font);
  border-radius: 7px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group ::-webkit-input-placeholder {
  opacity: 1;
  color: inherit;
}

.sidebar .search-box .form-group :-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

.sidebar .search-box .form-group ::-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

.sidebar .search-box .form-group ::placeholder {
  opacity: 1;
  color: inherit;
}

.sidebar .search-box .form-group input:focus {
  border-color: var(--thm-black);
}

.sidebar .search-box .form-group button {
  position: absolute;
  right: 20px;
  top: 0px;
  height: 80px;
  width: 60px;
  line-height: 80px;
  display: block;
  font-size: 24px;
  color: #ffffff;
  background: none;
  font-weight: normal;
  border: none;
}

.sidebar .search-box .form-group input:focus+button,
.sidebar .search-box .form-group button:hover {
  color: #181b1f;
}

.sidebar .recent-posts .post {
  position: relative;
  font-size: 20px;
  color: var(--thm-text);
  padding: 7px 0px 0px 85px;
  min-height: 62px;
  margin-bottom: 30px;
}

.sidebar .recent-posts .post:last-child {
  margin-bottom: 0px;
}

.sidebar .recent-posts .post-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.sidebar .recent-posts .post-thumb img {
  position: relative;
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.sidebar .recent-posts .post:hover .post-thumb img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

.sidebar .recent-posts .text {
  font-size: 15px;
  line-height: 1.3em;
  color: var(--thm-text);
  font-weight: 300;
  text-transform: capitalize;
  margin: 0;
  letter-spacing: 0px;
  max-width: 100%;
}

.sidebar .recent-posts .text a {
  color: var(--thm-text);
  text-decoration: none;
}

.sidebar .recent-posts .text a:hover {
  color: var(--thm-black);
}

.sidebar .popular-tags .tags-list {
  padding-right: 20px;
}

.sidebar .popular-tags .tags-list li,
.sidebar .popular-tags .tags-list a {
  position: relative;
  color: var(--thm-text);
  display: inline-block;
}

.sidebar .popular-tags .tags-list a {
  position: relative;
  display: inline-block;
  line-height: 1.45em;
  text-align: center;
  color: var(--thm-text);
  text-transform: capitalize;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .popular-tags .tags-list a:hover {
  color: var(--thm-black);
}

.sidebar .archives ul {
  position: relative;
  padding-left: 0px;
}

.sidebar .archives ul li {
  position: relative;
  line-height: 30px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--thm-text);
  margin-bottom: 15px;
  list-style: none;
}

.sidebar .archives ul li:last-child {
  margin-bottom: 0;
}

.sidebar .archives ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 30px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--thm-text);
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.sidebar .archives ul li:hover a,
.sidebar .archives ul li.active a {
  color: var(--thm-black);
  font-weight: 400;
}

.sidebar .archives ul li a:after {
  position: absolute;
  right: 0;
  top: -1px;
  font-family: "fontawesome";
  content: "\f054";
  opacity: 1;
  font-size: 10px;
  line-height: 30px;
  font-weight: 700;
  z-index: 1;
}

.sidebar .recent-comments .comment {
  position: relative;
  font-size: 20px;
  color: var(--thm-text);
  padding: 0px 0px 0px 70px;
  min-height: 48px;
  margin-bottom: 30px;
}

.sidebar .recent-comments .comment:last-child {
  margin-bottom: 0px;
}

.sidebar .recent-comments .comment .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 48px;
  height: 48px;
  font-size: 18px;
  line-height: 48px;
  background-color: var(--thm-black);
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar .recent-comments .comment:hover .icon {
  background: var(--thm-base);
}

.sidebar .recent-comments .comment .text {
  font-size: 20px;
  line-height: 24px;
  color: var(--thm-text);
  font-weight: 300;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0;
}

.sidebar .recent-comments .comment .text a {
  color: var(--thm-text);
}

.sidebar .recent-comments .comment .text a:hover {
  color: var(--thm-black);
}

/* Post Details */
.post-details {
  position: relative;
  margin-bottom: 30px;
}

.post-details .inner-box {
  position: relative;
  display: block;
}

.post-details .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.post-details .image-box img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 7px;
}

.post-details .inner-box:hover .image-box img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

.post-details .lower-box {
  position: relative;
  padding: 30px 0px 0px;
}

.post-details .post-meta {
  position: relative;
  display: block;
}

.post-details .post-meta ul {
  position: relative;
  display: block;
}

.post-details .post-meta ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 5px 0px;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.post-details .post-meta ul li .far,
.post-details .post-meta ul li .fa {
  position: relative;
  top: -2px;
  color: var(--thm-base);
  font-size: 14px;
  padding-right: 3px;
  vertical-align: middle;
}

.post-details .lower-box h4 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.1em;
  color: var(--thm-black);
  margin-bottom: 30px;
}

.post-details .lower-box h4 a {
  color: var(--thm-black);
}

.post-details .lower-box h4 a:hover {
  color: var(--thm-base);
  text-decoration: underline;
}

.post-details .lower-box .text {
  position: relative;
  display: block;
}

.post-details .lower-box .text p {
  position: relative;
  margin-bottom: 35px;
}

.post-details .info-row {
  position: relative;
  display: block;
  padding: 28px 0px 0px;
  border-top: 1px solid #e9ebee;
  font-size: 16px;
  line-height: 30px;
}

.post-details .info-row strong {
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--thm-font);
  color: var(--thm-black);
}

.post-details .info-row a {
  color: var(--thm-text);
}

.post-details .info-row a:hover {
  text-decoration: underline;
}

.post-details .info-row .tags-info {
  position: relative;
  float: left;
}

.post-details .info-row .cat-info {
  position: relative;
  float: right;
}

.sidebar-page-container .post-control-two {
  position: relative;
  margin-bottom: 20px;
}

.sidebar-page-container .post-control-two .control-col {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-page-container .post-control-two .control-inner {
  position: relative;
  display: block;
  padding: 55px 50px;
  background: #f4f5f8;
  height: 100%;
  min-height: 100%;
  border-radius: 7px;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.sidebar-page-container .post-control-two .control-inner:hover {
  background: var(--thm-base);
}

.sidebar-page-container .post-control-two .over-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.sidebar-page-container .post-control-two .control-inner h4 {
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1em;
  color: var(--thm-black);
  margin-bottom: 0px;
}

.sidebar-page-container .post-control-two .control-inner h4 a {
  color: var(--thm-black);
}

/***
  
  ====================================================================
  50.		Comment Area
  ====================================================================
  
   ***/
.comments-title {
  position: relative;
  margin-bottom: 40px;
}

.comments-title h3 {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--thm-black);
  margin: 0;
}

.comments-area {
  position: relative;
  margin-bottom: 70px;
}

.comments-area .comment-box {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e9ebee;
}

.comments-area .comment {
  position: relative;
  min-height: 90px;
  padding-left: 130px;
}

.comments-area .comment-box .author-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 20px;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 90px;
  height: 90px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.comments-area .comment-box .info {
  position: relative;
  margin-bottom: 25px;
  line-height: 24px;
}

.comments-area .comment-box .info .name {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--thm-black);
  text-transform: uppercase;
  font-family: var(--thm-font);
}

.comments-area .comment-box .info .date {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
}

.comments-area .comment-box .text {
  position: relative;
  display: block;
  color: var(--thm-text);
  margin-bottom: 30px;
}

.comments-area .comment-box .reply-btn {
  position: relative;
  display: block;
}

.comments-area .comment-box .theme-btn .btn-title {
  padding: 6px 30px 4px;
  line-height: 30px;
}

/***
  
  ====================================================================
  51.		Leave Comments Form
  ====================================================================
  
   ***/
.leave-comments {
  position: relative;
}

.leave-comments form .row {
  margin: 0 -10px;
}

.leave-comments form .form-group {
  padding: 0px 10px;
  margin-bottom: 20px;
}

.leave-comments form .form-group:last-child {
  margin-bottom: 0;
}

***/
.news-section {
  position: relative;
  padding: 120px 0px 90px;
}

.news-section.alt-bg {
  background: #ffffff url(../images/background/pattern-2.png) left top repeat;
}

.news-section .more-box {
  position: relative;
  display: block;
  padding-top: 30px;
  text-align: center;
  padding-bottom: 10px;
}

.news-block {
  position: relative;
  margin-bottom: 30px;
}

.news-block .inner-box {
  position: relative;
  display: block;
  text-align: center;
}

.news-block .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block .image-box img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 7px;
}

.news-block .inner-box:hover .image-box img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

.news-block .lower-box {
  position: relative;
  padding: 0px 20px 0px;
}

.news-block .post-meta {
  position: relative;
  top: -27px;
  margin: 0 10px -3px;
}

.news-block .post-meta ul {
  position: relative;
  display: block;
  padding: 10px 5px 0px;
  background: #ffffff;
  border-radius: 7px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.news-block .post-meta ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 10px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--thm-font);
}

.news-block .post-meta ul li .far,
.news-block .post-meta ul li .fa {
  position: relative;
  color: var(--thm-base);
  font-size: 14px;
  padding-right: 3px;
  vertical-align: middle;
}

.news-block .lower-box h5 {
  text-transform: uppercase;
  font-size: 34px;
  color: var(--thm-black);
  margin-bottom: 35px;
}

.news-block .lower-box h5 a {
  color: var(--thm-black);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.news-block .lower-box h5 a:hover {
  color: var(--thm-base);
  text-decoration: underline;
}

.news-block .lower-box .text {
  position: relative;
  top: -5px;
  color: var(--thm-text);
  display: block;
}

.news-block .lower-box .link-box {
  position: relative;
  margin-top: 20px;
}

.news-block .lower-box .link-box a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  background: #d3d3d4;
  border-radius: 50%;
}

.news-block .lower-box .link-box a span {
  font-weight: 700;
  vertical-align: middle;
}

.news-block .lower-box .link-box a:hover {
  background: var(--thm-base);
  color: var(--thm-black);
}

.news-block-two {
  position: relative;
  margin-bottom: 40px;
}

.news-block-two .inner-box {
  position: relative;
  display: block;
}

.news-block-two .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-two .image-box img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 7px;
}

.news-block-two .inner-box:hover .image-box img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

.news-block-two .lower-box {
  position: relative;
  padding: 30px 0px 0px;
}

.news-block-two .post-meta {
  position: relative;
  display: block;
}

.news-block-two .post-meta ul {
  position: relative;
  display: block;
  padding-left: 0px;
  margin-bottom: 0px;
}

.news-block-two .post-meta ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 5px 0px;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--thm-font);
}

.news-block-two .post-meta ul li .far,
.news-block-two .post-meta ul li .fa {
  position: relative;
  top: -2px;
  color: #2790cf;
  font-size: 14px;
  padding-right: 3px;
  vertical-align: middle;
}

.news-block-two .lower-box h4 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.1em;
  color: var(--thm-black);
  margin-bottom: 30px;
}

.news-block-two .lower-box h4 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 23px;
  text-decoration: none;
}

.news-block-two .lower-box h4 a:hover {
  color: #2790cf;
  text-decoration: underline;
}

.news-block-two .lower-box .text {
  position: relative;
  top: -5px;
  display: block;
}

.news-block-two .lower-box .link-box {
  position: relative;
  margin-top: 20px;
}

.news-block-two .lower-box .link-box a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--thm-black);
  letter-spacing: 1px;
  font-family: var(--thm-font);
  text-decoration: none;
}

.news-block-two .lower-box .link-box a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid #2790cf;
}

.news-block-two .lower-box .link-box a:hover {
  color: #2790cf;
}

.news-block-two .lower-box .link-box a:hover:before {
  border-color: var(--thm-black);
}

.news-block-two .image-box .vid-link {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  font-size: 24px;
  color: var(--thm-black);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 3;
}

.news-block-two .image-box .vid-link .icon {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 24px;
  color: var(--thm-black);
  background: var(--thm-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.news-block-two .image-box .vid-link:hover .icon {
  background: var(--thm-black);
  color: var(--thm-base);
}

.news-block-three {
  position: relative;
  margin-bottom: 30px;
}

.news-block-three .inner-box {
  position: relative;
  display: block;
  padding: 50px 50px 40px;
  background: #f4f5f8;
  border-radius: 7px;
}

.news-block-three .quote-icon {
  position: relative;
  display: block;
  top: 30px;
  font-weight: 400;
  font-size: 125px;
  line-height: 0.4em;
  color: #2790cf;
  margin-bottom: 10px;
}

.news-block-three .link-icon {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 40px;
  line-height: 1em;
  color: var(--thm-base);
  margin-bottom: 15px;
}

.news-block-three .inner-box h4 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.1em;
  color: var(--thm-black);
  font-weight: 400;
  margin-bottom: 0px;
}

.news-block-three .inner-box h4 a {
  color: var(--thm-black);
}

.news-block-three .inner-box:hover h4 a {
  color: var(--thm-base);
  text-decoration: underline;
}

.news-block-three .inner-box .text {
  position: relative;
  top: -5px;
  display: block;
  margin: 0;
}

.news-block-three .over-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.sidebar-page-container .more-box {
  position: relative;
  padding-top: 20px;
}

/* news two */
.news-two {
  padding-top: 120px;
  padding-bottom: 120px;
}

.news-two .swiper-pagination {
  position: relative;
  left: auto;
  bottom: auto;
  margin-top: 40px;
}

.news-two .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--thm-black);
  opacity: 0.2;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 2.5px;
  margin-right: 2.5px;
}

.news-two .swiper-pagination span:hover,
.news-two .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--thm-base) !important;
}

.news-two__image {
  margin-bottom: 35px;
  background-color: var(--thm-base);
}

.news-two__image>img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.news-two__box:hover .news-two__image>img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.7;
}

.news-two__content {
  text-align: center;
}

.news-two__content h3 {
  margin: 0;
  color: var(--thm-black);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.28;
  max-width: 466px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}

.news-two__content h3 a {
  color: inherit;
}

.news-two__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

.news-two__meta li {
  font-weight: 600;
  font-size: 16px;
  color: var(--thm-base);
  line-height: 1;
}

.news-two__meta li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__meta li a:hover {
  color: var(--thm-black);
}

.news-two__meta li::after {
  content: "-";
  margin-left: 10px;
  margin-right: 10px;
}

.news-two__meta li:last-child::after {
  content: "";
  margin: 0;
}

.contact_sec {
  padding: 30px;
  background: #ef962b;
  text-align: center;
  border-radius: 5px;
  height: 141px;
  width: 71%;
  margin: auto;
  margin-bottom: 18px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #ef962b;
}

.contact_sec a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

}

.contact_sec i {
  font-size: 23px;
  color: #ef962b;
  margin-right: 5px;
  background: #fff;
  padding: 14px 10px;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  margin-bottom: 13px;
}

.map iframe{
  border-radius: 10px;
}

.whtasapp a {
  color: #fff;
}

.whtasapp i {
  font-size: 35px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #05b905;
  padding: 11px 12px;
  height: 55px;
  border-radius: 55px;
  width: 55px;
  z-index: 1111;
}

.call a {
  color: #fff;
}

.call i {
  font-size: 25px;
  position: fixed;
  bottom: 80px;
  right: 10px;
  background: #0870e7;
  padding: 16px 15px;
  height: 55px;
  border-radius: 55px;
  width: 55px;
  z-index: 1111;
}

@media (max-width:768px){


  .image-box.lob img{
    height: auto !important;
 
  }
  

  .header {
    padding: 5px 0;
    background-color: #fff;
    position: fixed;
    top: -1px;
    left: 0px;
    border-radius: 0px;
    width: 100%;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    z-index: 2;
}
  .best_coching {
    display: none;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

.logo-container img {
  width: 85%;
  padding: 5px 0px;
}

.active {
  height: auto;

}

.slide img {
  height: 500px;
}
.next {
  left: 53%;
  bottom: 5%;
}

.prev {
  left: 37%;
  bottom: 5%;
}

.slider {
  width: 100%;
  height: 500px;
  margin: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.content_alo {
  position: absolute;
  top: 115px;
  left: 7px;
  z-index: 1111;
  width: 96%;
  text-align: center;
}

.content_alo h2 {
  font-size: 28px;
  line-height: 33px;
}

.content_alo p {
  font-size: 13px;
  line-height: 22px;
}

.prev {
  left: 85% !important;
  bottom: 40px !important;
}

.next {
  left: 85% !important;
  bottom: -1%;
}

ul.nav-list button.ad_btn {
  margin-left: 0px;
  width: 50%;
}

.pages_bnr h1 {
  font-size: 22px;
}

.all_padding {
  padding: 50px 0px;
}

.learn_forcard.d-flex.align-items-center {
  margin-bottom: 25px;
}

.learn_forcard.d-flex h2 {
  font-size: 17px;
}

.learn_forcard.d-flex i {
  font-size: 42px;
}

.popular_courses h5 {
  font-size: 20px;
}

.all_head {
  font-size: 24px;
}

.popular_courses.text-center {
  width: 100%;
}

.all_perag {
  font-size: 13px;
  margin-bottom: 0px;
}

.corse_card h2 {
  font-size: 20px;
}

.d-flex.yyrte p {
  font-size: 12px;
}

hr:not([size]) {
  height: 1px;
  margin: 25px 0px;
} 

span.reat i {

  font-size: 12px;
}

button.ad_btn.asd {
  margin-left: 17px;
  padding: 9px 13px;
  font-size: 13px;
}

.graph_box {
  margin-bottom: 20px;
}

.chose_img img {
  height: auto;
  margin-top: 20px;
}

.chose_img.proseds img {
  height: auto;
  width: 100%;
}

.chose_img.proseds img {
  width: 100%;
  margin-bottom: 25px;
}

.prosess_cours i {
  font-size: 25px;
  padding: 15px;
  width: 60px;
  margin-right: 0px;
}

.prosess_cours {
  margin-bottom: 10px;
}

.quest img {
  height: auto;
  width: 100%;
  margin-bottom: 20px;
}

.accordion-button{
  font-size: 15px;
}

h2.newslt {
  font-size: 20px;
  margin-bottom: 15px;
}

.inpt input.form-control {  
  font-size: 10px;
}

a.secbrib button {
  border-radius: 0px;
  font-size: 11px;
  padding: 7px 10px;
}

a.secbrib {
  position: absolute;
  top: 87.4px;
  right: 24px;
}

.foot_log img {
  width: 45%;
}

footer.all_padding.background_all {
  padding: 40px 0px 0px 0px;
}

.implinks.yvyt {
  margin-left: 0px;
}

.implinks {
  margin-top: 12px;
}

ul.linkss li {
  list-style: none;
  padding: 4px 0px;
  font-size: 14px;
}

.copy_write h5 {
  font-size: 12px;
}

section.pages_main_bnr {
  height: 303px;
}

.pages_bnr {
  padding-top: 37px;
  padding-bottom: 0px;
}

section.pages_main_bnr {
  height: 148px;
  margin-top: 78px;
}

.pages_bnr h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.pages_bnr p{
  font-size: 13px;
}

.vision_txt p{
font-size: 13px;
}

section.padd_all.counter-s {
  height: auto;
}

.counter.col_fourth {
  width: 85%;
  margin: auto;
  margin-bottom: 20px;
}

.wrapper{
  display: contents;
}

.news-block-two .lower-box h4 a {
  font-size: 14px;
  font-weight: 700;
}

.news-block-two .lower-box h4 {
  font-size: 22px;

}

.news-block-two .lower-box .text {
  font-size: 13px;
}

.news-block-three .inner-box .text {
  font-size: 13px;
}

.news-block-three .inner-box {
  padding: 30px 25px 30px;
}

.map iframe {
  height: 300px;
}

.contact_sec {
  padding: 28px 0px;
  background: #ef962b;
  text-align: center;
  border-radius: 5px;
  height: 141px;
  width: 100%;
  margin: auto;
  margin-top: 18px;
}

.call i {
  font-size: 21px;
  bottom: 67px;
  right: 10px;
  padding: 15px 14px;
  height: 48px;
  width: 48px;
}

.whtasapp i {
  font-size: 28px;
  bottom: 10px;
  right: 10px;
  padding: 11px 12px;
  height: 48px;
  width: 48px;
}

.review_txt{
  margin-left: 0px    ;
}

.chose_img.so img {
  height: auto !important;
  margin-bottom: 10px;
}

.learn_forcard.align-items-center.web_de2 {
  height: auto !important;

}

.lai li{
  font-size: 14px !important;
}

.seo li {
  font-size: 14px !important;
}

}



.lai{
  padding-left: 20px;
}

.lai li{
  list-style: auto;
  padding: 5px 0px;
}

.chose_img.so img{
  height: 557px;
}

.seo{
  padding-left: 0px;
}

.seo li{
  list-style: none;
  padding: 3px 0px;
}

.seo li i{
  margin-right: 5px;
  color: #ef962b;
}

