:root {
    --color01: #ffffff;
    --color02: #3d36d0;
    --color02Hover: #402068;
    --color03: #2a2a33;
    --color04: #00bcd4;
    --color04Hover: #0096a9;
    --color05: #ffcc33;
    --color06: #3d36d0;;
    --color06Hover: #f62929;
    --color07: #0097a7;
    --color08: #f4f4f4;
    --color09: #fbfbfb;
    --color10: #ffd400;
    --color11: #f96e6f;
    --color12: #362e42;
    --color13: #aaa;
}

body{
	font-family: 'Jost', sans-serif;
}
.search_box {
  padding-top : 20px;
}

.search {
  padding-left: 25px;
  display: flex;
  align-items: center;
  margin : auto;
  width : 100%;
  height: 54px;
  background-color : white;
  border-radius: 25px;
  -webkit-box-shadow: 0px 10px 38px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 10px 38px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 10px 38px 0px rgba(0,0,0,0.1);
}

.select_area {
  color : #4451FE;
  display : flex;
  align-items: center;
  font-family: 'Roboto', sans-serif; line-height:24px;
  font-weight : medium ;
}

.text {
  padding-left:0px;
}

.line {
  margin-left: 15px;
  border-left: 1px solid #D8D8D8;
  height: 40px;
}

.search_text {
  width: 100%;
  border: none;
  margin-left : 15px;
  font-size : 16px;
  font-family: 'Roboto', sans-serif; line-height:24px;
  font-weight : Regular ;
  place
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ADB1B8;
}


.text_and-icon {
  width: 85%;
  display: flex;
  align-items: center;
}
.search_icon {
  color : #5E6573;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out; /** Chrome & Safari **/
    -moz-transition: all .6s ease-in-out; /** Firefox **/
    -o-transition: all .6s ease-in-out; /** Opera **/
}

.search_text:focus {
  outline: none !important;
}

.search_text:focus + .search_icon{
  color : #4451FE;
  transform: translate(55px,0);
    -webkit-transform: translate(55px,0); 
    -o-transform: translate(55px,0); 
    -moz-transform: translate(55px);
}

.summary{
	    background: #fff;
    padding: 20px;
    box-shadow: -1px 2px 6px 3px rgba(0,0,0,0.4);
    margin-bottom: 45px;
}
.coupon{
	font-size: 16px;
    color: #fff;
    background: #4039d3;
 border:none;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 0px;
}
.apply{
	 height:50px;
	  border:1px solid#333;
	   border-radius:0px;
}
.side_menu .fa{
	 color:#3d36d0;
	 margin-right:10px;
	  font-size:20px;
}
.bg1{
	 background:#3d69e3;
}
.bg2{
	 background:#b43ce3;
}
.bg3{
	 background:#4c9c86;
	
}
.card {
   
    min-height: 470px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;

    /* Flex */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transform: scale(1.04);
}

.card::before {
    background-color: var(--color05);
    color: var(--color02);
    padding: 21px 54px 25px;

    /* Transform */
    transform: translate(calc(31px + 35px), -35px) rotate(45deg);
    transform-origin: top left;
    
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.card:nth-of-type(2)::before {
    background-color: var(--color06);
		color: var(--color03);
}

.card:nth-of-type(3)::before {
    background-color: var(--color07);
    color: var(--color12);
}

/* Info */
.card__info {
    width: 100%;
    height: 130px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    display: flex;
}

.card__info::before {
    background-color: var(--color02);
    width: 100%;
    height: 100%;
    opacity: 0.8;

    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

.card:nth-of-type(2) .card__info::before {
    background-color: var(--color03);
}

.card:nth-of-type(3) .card__info::before {
    background-color: var(--color04);
}

.card__name {
    color: var(--color01);
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
}

.card__price {
    color: var(--color05);
    font-size: 24px;
    font-weight: 400;
}

.card__priceSpan {
   
}

.card:nth-of-type(3) .card__priceSpan {
    color: var(--color01);
}

/* Content */
.card__content {
    background-color: var(--color09);
    width: 100%;
    height: calc(100% - 130px);
    border-top: solid 2px;
    border-bottom:4px solid#ffcc33;

    /* Flex */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card__rows {
    width: 100%;
}

.card__row {
    color: #000;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.card__row:nth-of-type(odd) {
    background-color: var(--color08);
}

.card__link {
    color: #000;
    padding: 10px 15px;
    margin: 20px 0;
    text-decoration: none;
    
	font-size: 16px;
   
   
   
    width: 150px;
    height: 50px;
    text-align: center;
    
  
    max-width: 100%;
    border-radius: 0px;
}

.card__link:hover {
    background-color: var(--color02Hover) !important;
}

.card:nth-of-type(2) .card__link:hover {
    background-color: var(--color06Hover) !important;
}

.card:nth-of-type(3) .card__link:hover {
    background-color: var(--color04Hover) !important;
}
.bg-banner{
	
    width: 100%;
    height: 100%;
    background-image: url(../img/bg-banner.jpg);
    background-position: center center;
    background-size: cover;
	padding:80px 0px;
	 border-top:15px solid#ffcc33
   
}
.bg-banner h1{
	 font-weight:500;
}
.sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index:999
      }
.gap{
	 padding-left:100px;
	 padding-right:100px;
}

.download_app{
	margin-bottom: -100px;
    position: sticky;
	background:#ffcc33;
	padding:30px 30px;
	 border-radius:5px;
	
}
.social a{ color:#fff;
font-size:20px;
padding:15px 15px;
 display:inline-block}
.cont-info .fa{
	 color:#ffcc33;
	 font-size:24px;
	  font-size:30px;
}
.cont-info p{
	 color:#ffcc33;
	 font-size:20px;
	 
}
.quick-link a{
	 color:#fff;
	  font-size:16px;
	  padding:0px 15px;
	   border-right:1px solid#fff;
}
.main-banner{
	background-image: linear-gradient(to right, #4039d3 , #6478eb);
	padding:10px 0px 100px;
	height:400px;
}
.main-caption h1{
	font-weight:500;
	letter-spacing:0px;
}
.main-caption p{
	font-weight:normal;
	letter-spacing:0px;
	 font-size:22px;
}
.main-image{
	margin-top:-207px;
}
.hire{font-size: 16px;
    
    background: #ffcc33;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 0px;
	text-transform:uppercase;
	 margin:20px 10px;
	 cursor:pointer
	}
	.hire:hover, .get_job:hover{
		background:#000;
		color:#fff;
	}
	.get_job{font-size: 16px;
    color: #fff;
    background: #fff;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 0px;
	text-transform:uppercase;
	margin:20px 10px;
	 cursor:pointer}
.num-scroller{
   background-image: linear-gradient(#625bea,#4039d3);
   padding:50px 0px;
   margin-top:50px;
   
}
.counter .fa{
    color:#ff6820;
}
.counter {  padding: 20px 0; border-radius: 5px; text-align:center;}
.count-title { font-size: 40px;  margin-top: 20px; font-weight: normal;  color:#fff; margin-bottom: 0; text-align: center;font-family: 'Jost', sans-serif; }
.count-text {   color:#fff;font-size: 14px; font-weight: normal;  margin-top: 10px; margin-bottom: 0; text-align: center;text-transform:uppercase; }
.circle{
	 width:80px;
	 height:80px;
	 background:#ffcc33;
	 border-radius:100%;
	 padding:16px 0px;
	 text-align:center;
	 margin:auto;
	 border:5px solid#fff;
}
.btns{
     display:flex;
}
.new-login{
     display:none;
}
.hide{
     display:block;
}
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: #f00;
  padding: 3px 11px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  background:#fff;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */

.or{padding-right:20px;
    padding-left:20px;
    padding-top:10px;
    color:#000;
}
.con-info ul li  a{
          color: #fff;
    padding: 15px 10px;
    display: inline-block;
    font-size: 18px;
}
.con-info ul li  a i{
     margin-right:5px;
}
.con-info ul li {
    display:inline-block;
}
.htp-register-btn.black a {
    background: #ffcc33;
	color:#000
   
}
.populer-course.pt--50.pdt30 {
    padding-bottom: 45px;
}
.course-feee.job {
    background: #ff6820;
}
.htp-register-btn.black a:hover {
    background: #000;
	 color:#fff;
}
.populer-course.pt--50 {
    
}
.search-jobs {
    margin-top: 27px;
    display: inline-block;
    width: 100% !important;
}
.filter {
    margin-bottom: 40px;
}
.course-thumb img {
       border-radius: 10px;
}
.jobs-left.no-left {
    float: none;
    width: 100%;
}
.jobs-right.employer a {
    padding: 7px;
    height: auto;
    width: auto;
    margin-top: 0;
    line-height: 8px;
    background: #909090;
    font-size: 12px;
    float: right;
    margin-left: 4px;
}
a.applyed_jobs {
    position: relative;
    bottom: -30px;
    background: #eaeaea !important;
    width: auto !important;
    height: auto !important;
    text-align: center;
    line-height: 19px !important;
    border-radius: 50%;
    color: #333 !important;
}
.jobs-right.employer {
    float: right;
}
.panel-heading {
    background: #f5f5f5;
    padding: 5px 12px;
    font-size: 16px;
    color: #000;
}
.panel.panel-default {
    border: 1px solid #f1f1f1;
}
.panel-body {
    padding: 12px;
    color: #696969;
}
.box-left {
    float: left;
    width: 50%;
}
.box-left p {
    font-size: 12px;
    margin: 0;
    line-height: 16px;
}
.box-right p {
    font-size: 12px;
    margin: 0;
    line-height: 16px;
}
.panel-footer {
    border-top: 1px solid #e4e4e4;
    padding: 3px 12px;
}
.panel-footer a {
   padding: 10px 10px;
    color: #fff;
    border-radius: 4px;
    float: right;
    margin-left: 7px;
    line-height: 23px;
}
.panel.panel-default p {
    line-height: 19px;
   font-size: 16px;
    margin-top: 9px;
}
.panel-footer span {
   font-size: 16px;
}
.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: white;
    background: #0482ed;
    padding: 2px 5px;
    border-radius: 5px;
}
.bootstrap-tagsinput {
    display: block !important;
}
.cta-left1 {
    position: relative;
    z-index: 1;
    padding: 50px 0px;
}
.cta-left1 a {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    background: #222222;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    cursor: pointer;
}
.cta-left1 a:hover {
    background-color: #fff;
    color: #222 !important;
}
.jobs-left {
    float: left;
    width: 65%;
}
.abt-right-content.joblist div {
    color: #8c8c8c;
}
.abt-right-content.joblist div span {

}
.jobs-right{
     float:right
}
.jobs-left h5 {
    font-family: unset;
    letter-spacing: 0;
    font-size: 15px;
}
.jobs-left h6 {
   font-size:16px;
   color:#333;
   letter-spacing:0px;
}
.jobs-left span {
    color: #6b6b6b;
    font-size: 16px;
    letter-spacing: 0;
}
.jobs-left h2 a {
    background: transparent;
    color: #101010;
    line-height: 0;
    margin: 0;
    height: auto;
    font-size: 20px;
    width: auto;
    font-family: 'Jost', sans-serif;
}
a.link {
    height: auto!important;
    line-height: 13px!important;
    background: transparent!important;
    color: #0482ed!important;
    font-size: 12px!important;
    width: auto!important;
    margin-top: 0!important;
    margin-left: 9px!important;
}
a.link:hover {
    height: auto;
    line-height: 13px;
    background: transparent;
    color: #0482ed;
    font-size: 12px;
    width: auto;
    margin-top: 0;
    margin-left: 9px;
}
p.short {
    margin-top: 20px;
}
.jobs-left h2 {
    margin-bottom: 0!important;
}
.jobs-left p {
    margin-bottom: 0!important;
    color: #3d36d0!important;
    font-size: 16px !important;
	 font-weight:500;
}
.jobs-left p span {
    
    color: #333;
    
}
.abt-right-content.joblist {
    padding: 15px;
    border: 2px solid #ddd;
    margin: 15px 0px;
    border-radius: 12px;
    box-shadow: 0px 4px 5px -1px rgb(64 64 64 / 31%);
    -webkit-box-shadow: 0px 4px 5px -1px rgb(64 64 64 / 31%);
    -moz-box-shadow: 0px 4px 5px -1px rgba(64,64,64,0.31);
}
a.sold {
    background: #dedede !important;
    cursor: not-allowed !important;
}
a.sold:hover {
    background: #dedede;
    cursor: not-allowed;
}
.abt-right-content.joblist:hover{
  background-color: #eaf5ff;
  color: #000;
  box-shadow: 0px 4px 5px -1px rgba(64,64,64,0.31);
-webkit-box-shadow: 0px 4px 5px -1px rgba(64,64,64,0.31);
-moz-box-shadow: 0px 4px 5px -1px rgba(64,64,64,0.31);
     text-decoration: none;
    transition: 0.3s all;
}
.abt-right-content.joblist:nth-child(odd){
  background-color: #fff;
  color: #000;
      text-decoration: none;
    transition: 0.3s all;
}
.abt-right-content.joblist:nth-child(evn){
  background-color: #fff;
  color: #000;
      text-decoration: none;
    transition: 0.3s all;
}
.course-content.blg-content ul {
    
    padding-top: 20px;
}
p.only {
    text-align: center;
    width: 100%;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 45px;
    font-size: 13px;
}
/*Table*/
.showdetails span {
    color: #333;
    font-size: 16px;
}
.edubox p {
    text-align: center;
    font-size: 16px;
}
.edubox img {
    width: 150px;
    margin: 0 auto;
    display: table;
}
.edubox{
	margin-bottom: 20px;
}
.language input {
    float: left;
    width: 18px;
    height: 25px;
    margin-right: 7px;
    margin-bottom: 0;
}
input[type='submit'] {
    font-size: 16px;
    
    color: #fff;
    background: #4039d3;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius:0px;
    outline: none;
    padding: 0;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: none;
}
input[type='submit']:hover {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #333;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    outline: none;
    padding: 0;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: none;
}
.sector {
    margin-right: 6px;
    width: 14px;
    height: 14px;
}
.pagination-container {
    width: 70%;
    float: left;
}
.pagination>li {
    display: inline;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.edu-years-filter.dashbord-tab {
    margin-bottom: 0;
}
.edu-yeras-content .tab-pane.dash ul li:before{
	display: none;
}
.edu-yeras-content .tab-pane.dash ul li{
	padding-left: 0;
}
table th , table td{
    text-align: center;
    letter-spacing: 0;
}
/***table tr:nth-child(even){
    background-color: #e4e3e3
}
***/
.total table td{
	text-align:left
}
th {
  background: #333;
  color: #fff;
}
.pagination {
  margin: 0;
}
.pagination li:hover{
    cursor: pointer;
}
.header_wrap {
  padding:12px 0;
}
.num_rows {
  width: 20%;
  float:left;
}
.tb_search{
  width: 20%;
  float:right;
}
.pagination-container {
  width: 60%;
  float:left;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(191 191 191 / 5%);
}
.rows_count {
  width: 40%;
  float:right;
  text-align:right;
  color: #999;
}
/*Table*/ 
.input-group.mgt50 {
    margin: 40px auto;
}
ul.side_menu li a {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 39px;
    border-bottom: 1px dotted #8e8e8e;
    width: 100%;
    display: BLOCK;
}
ul.side_menu{
    margin-top: 20px;
}
.edu-years-filter.dashbord-tab a {
    display: block;
    height: 40px;
    width: 180px;
    background: #ff6820;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(0deg);
}
.edu-years-filter.dashbord-tab a span {
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(0deg);
}
.modal-header {
    border-bottom: 0px solid #e9ecef;
}
.close {
    font-size: 2.5rem;
}
.bg-danger1 {
    background-color: #0371b1!important;
}
p.manymore {
    font-size: 27px !important;
    margin-top: 27px;
    color: #20adff !important;
}
.footer-contact li {
    margin-bottom: 10px;
}
span.d-flex.align-items-center {
    font-size: 26px;
    font-weight: 900;
}
p.playsote {
    margin-top: 30px;
}
.teacher-thumb img {
    margin: 0 auto;
    display: table;
}
.input-group .form-control {
    height: 79px;
    border-radius: 42px;
    border:solid 1px #23abfb;
    background-color: #ffffff;
    padding-left: 50px;
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}
.texttype {
    position: absolute;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    z-index: 9;
    top: 25px;
    left: 30px;
   font-family: 'Jost', sans-serif;
}
.Search-btn {
    height: 79px;
    border-radius: 40px;
    border: solid 1px #f47b20;
    background-color: #ff6820;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    padding: 0px 120px 0px 50px;
    line-height: 79px;
    margin-left: -80px;
    z-index: 9;
    background-image: url(../img/white-arrow.svg);
    background-repeat: no-repeat;
    background-position: 80% center;
    position: relative;
}
.Search-btn:hover {
    height: 79px;
    border-radius: 40px;
    border: solid 1px #f47b20;
    background-color: #ff6820;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    padding: 0px 120px 0px 50px;
    line-height: 79px;
    margin-left: -80px;
    z-index: 9;
    background-image: url(../images/white-arrow.svg);
    background-repeat: no-repeat;
    background-position: 80% center;
    position: relative;
}
.blg-content.pd0 {
        padding: 0 25px 25px 25px;
}
.pull-left {
    width: 50%;
    float: left;
}
.pull-right {
    width: 50%;
    float: right;
}
.color-orange {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    margin-top: 10px;
}
.blg-content.pd0 img {
    width: 125px;
    height: 125px;
}
.block {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.modal-lg {
    max-width: 600px;
    margin-top: 70px;
}
.pull-right.color-blue{
	color: #00A1FF;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    margin-top: 50px;
}
.color-blue{
	color: #000;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    margin-top: 10px;
}
.navbar {margin-bottom:10px;}
.search-area {
    background-image: url('../img/banner_bg.jpg');
    background-repeat:no-repeat;
    background-size:cover;
}
.search-area h2 {
  text-align: left;
    width: 100%;
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    line-height: 44px;
   
    margin-bottom: 0px;
    padding-left: 11px;
    text-transform: capitalize;
}
.search-area h4 {
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}
.news {
    width: 237px;
    border-right: 2px solid #fff;
    margin-right: 1px;
}
.news-scroll a {
    text-decoration: none
}
.dot {
    height: 9px;
    width: 9px;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 2px !important;
    background-color: rgb(149 213 251);
    border-radius: 50%;
    display: inline-block;
}
.breaking-news {
    margin-bottom: 50px;
}
.footer-bottom a {
    color: #ff6820;
}
.blg-thumb img {
    height: 200px;
    width: 100%;
}

.highlight {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 17px;
}
marquee.news-scroll {
    background: #0371b1;
}
marquee.news-scroll a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0;
}
.header-top {
   background-image: linear-gradient(#0573b6,#0193e9);
    
}
ul.htp-addresss li {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    float: right;
}
li.mob a {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    top: 10px;
    position: relative;
}
ul.htp-addresss li i {
    margin-right: 8px;
}

ul.htp-social {
    text-align: left;
}

ul.htp-social li {
    display: inline-block;
}

ul.htp-social li a {
    display: block;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    margin: 9px 3px;
}

ul.htp-social li:last-child a {
    margin-right: 0;
}

ul.htp-social li a:hover {
    background-color: #ff6820;
    border: 1px solid #ff6820;
}


/*============================================
* END Header Top
*=============================================*/

/*============================================
* 1.2 Header Bottom
*=============================================*/
input#agree {
    width: auto;
    float: left;
    height: 30px;
    margin-right: 8px;
}
.header-bottom {
    position: relative;
    height: 78px;
	  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2); 
}
.header-bottom.logintop {
    position: relative;
    height: auto;
}
.hb-inner{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
}
.sticky-header .hb-inner{
    position: fixed;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

.logo {
    display: block;
}

.logo a {
    display: inline-block;
}

.logo a img {
    max-width: 100%;
}
.main-menu nav ul {
    text-align: right;
}

.main-menu nav ul li {
    display: inline-block;
    position: relative;
 
}
.main-menu nav ul li:last-child{
    border-right: 0;
}
.main-menu nav ul li a {
    display: block;
    font-size: 16px;
    
    color: #222222;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 30px 20px;
}
.quiz.blink {
    color: #00a1ff !important;
    animation: blinker 1.5s linear infinite;
    margin-right: 9px;
    font-size: 25px;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.main-menu nav ul li.mob a:after {
    position: absolute;
    right: 4px;
    top: 8px;
    height: 29px;
    width: 19px;
    content: '';
    background-image: url(../img/mobile.png);
    background-repeat: no-repeat;
    background-position: right center;
}
.mob span {
    font-size: 12px;
    color: #bbb;
    margin-right: 12px;
    font-weight: 400;
}
.main-menu nav ul li:last-child a {
    /*padding-right: 0;*/
}

.main-menu nav ul li:hover>a,
.main-menu nav ul li.active>a {
    color:#4039d3;
}

.main-menu nav .submenu {
    position: absolute;
    left: 0;
    top: 78px;
    z-index: 5;
    width: 220px;
    padding: 4px 0px;
    text-align: left;
    background-color: #fff;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.main-menu nav ul li:hover>.submenu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.main-menu nav .submenu li {
    display: block;
}

.main-menu nav .submenu li a {
    padding: 11px 20px;
    font-weight: 500;
}

.htp-register-btn {
    text-align: right;
}

.htp-register-btn a {
    font-size: 16px;
   
    color: #fff;
    background: #4039d3;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 0px;
   
}

.htp-register-btn a:hover {
    background-color: #222222;
}

/*mobile menu start*/
.slicknav_menu .slicknav_menutxt {
    display: none;
}

.slicknav_menu {
    background: transparent;
    padding: 0;
}

.slicknav_menu .slicknav_icon-bar {
    height: 4px;
    width: 27px;
    margin: 4px 0px;
    background-color: #ff6820;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slicknav_btn {
    background-color: transparent;
    position: relative;
    margin-top: -46px;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(2px, 10px);
    transform: rotate(45deg) translate(2px, 10px);
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-9px);
    transform: rotate(-45deg) translateY(-9px);
}

.slicknav_nav {
    margin: 0px;
    padding: 16px 0px 18px;
    background-color: #222;
}

.slicknav_nav a:hover,
.slicknav_nav a:visited {
    background: #fefefe none repeat scroll 0 0;
    border-radius: 0;
    color: #fff;
}

.slicknav_nav .slicknav_arrow {
    float: right;
}

.slicknav_nav>a {
    font-size: 14px;
    letter-spacing: 0.01em;
}

.slicknav_menu>a {
    position: relative;
    top: -19px;
    cursor: pointer;
}

.slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: #444;
}

.slicknav_nav li.active>a>a {
    color: #ffb607;
}

/*============================================
* END Header Bottom
*=============================================*/

/*============================================
* 1.3 Slider Area
*=============================================*/
.zoom-slider-area {
    height: 650px;
    position: relative;
    z-index: 1;
}

.zoom-slider-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6);
}

.slider-content {
    position: relative;
    z-index: 1;
    padding: 60px 15px 60px 100px;
}

.slider-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    z-index: -1;
    border-radius: 6px;
    background-color: rgba(255, 182, 6,0.6);
}

.slider-content h2 {
    font-size: 63px;
    font-weight: 900;
    color: #ffffff;
    line-height: 60px;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.slider-content a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #222222;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
}

.slider-content a i{
    margin-left: 6px;
}
.slider-content a:hover {
    background-color: #fff;
    color: #222;
}

/*============================================
* END Slider Area
*=============================================*/

/*============================================
* 1.4 Course Subscription
*=============================================*/
.course-subscription-area{
    position: relative;
    z-index: 5;
}
.course-subscription{
    background: #ff6820 url(../img/icon/pie-face.png);
    padding: 50px 60px;
    border-radius: 5px;
    margin-top: -77px;
}
.course-subscription form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.course-subscription input,
.course-subscription .select-course{
    flex: 1;
    margin-right: 15px;
}
.select-course .course-select,
.course-subscription input{
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: none;
    padding-left: 20px;
    line-height: 50px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 15px;
}
.nice-select .list{
    width: 100%;
}
.course-subscription button{
    flex-basis: 150px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #222222;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 52px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.course-subscription button i{
    margin-left: 6px;
}
.course-subscription button:hover {
    background-color: #fff;
    color: #222;
}

/*============================================
* END Course Subscription
*=============================================*/

/*============================================
* 1.5 Feature Area
*=============================================*/
.single-feature{
        border: 1px solid #e9e0e0;
    padding: 45px 35px;
    position: relative;
    z-index: 1;
}
.bl-none{
    border-left: none;
}
.single-feature:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0;
    background: url(../img/feature-bg.jpg) center center/cover no-repeat;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(27,27,27,0.9);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature:hover:before,
.single-feature:hover:after{
    opacity: 1;
}
.single-feature .icon{
        font-size: 57px;
    color: #ff6820;
    margin-bottom: 20px;
}
.single-feature h4{
        font-size: 20px;
    font-weight: 500;
    color: #222222;
    letter-spacing: 0;
    margin-bottom: 13px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature p{
    color: #515151;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature:hover h4,
.single-feature:hover p{
    color: #fff;
}

/*============================================
* END Feature Area
*=============================================*/

/*============================================
* 1.6 Populer Course
*=============================================*/
.section-title{
    text-align: center;
    margin-bottom: 60px;
}
.section-title.jobsectors {
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #f2f2f2;
    padding: 30px 0;
    background: #fffdfd;
}
.section-title h2{
        font-size: 36px;
    font-weight: 500;
    color: #222222;
    letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 30px;
}
.section-title p{
        font-size: 14px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}
.single-course{
    
}
.course-thumb{
    display: block;
    border-radius: 0px 0px 5px 5px;
    overflow: hidden;
}
.course-thumb a{
    /*display: inline-block;*/
}
.course-thumb a img{
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-course:hover .course-thumb a img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.course-content{
    position: relative;
    z-index: 1;
    
    padding: 0px 15px 50px 30px;
   
}
em.small_font {
    font-size: 17px;
    font-weight: 600;
    padding-left: 11px;
}

.course-content.blg-content.blue ul li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: '\f00c';
	color:#ffcc33;
    font-family:FontAwesome;
margin-right:10px;
}
.course-content.blg-content ul li {
    position: relative;
    color: #101010;
    font-size: 17px;
    line-height: 33px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-family: 'Jost', sans-serif;
    letter-spacing: normal;
}
.course-feee {
   
   
   
    color: #000;
    letter-spacing: 0;
    
}
.course-feee h3{
	font-size: 26px;
    font-weight: 600;
    letter-spacing: 0px
}
.course-feee span {
    display: inline-block;
    padding: 4px 20px;
    width: auto;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}
.course-feee span:last-child{
    border-left: 2px solid #fff;
}
.course-content h2 a{
        display: block;
    font-size: 19px;
    color: #222222;
    font-weight: 500;
    margin: 17px 0px 17px;
    letter-spacing: 0;
}
.course-content h2 a:hover{
    color: #ff6820;
}
.course-content p{
    font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
    line-height: 28px;
    margin-bottom: 24px;
}
.s-course-meta{
    overflow: hidden;
}
.s-course-meta .sc-thumb{
        float: left;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}
.s-course-meta .sc-text{
    overflow: hidden;
}
.s-course-meta .sc-text h4{
        font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: #222222;
}
.s-course-meta .sc-text span{
    font-size: 14px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}

/*============================================
* END Populer Course
*=============================================*/

/*============================================
* 1.7 Callto Action
*=============================================*/
.callto-action{
    position: relative;
    z-index: 1;
    background: #202020 url(../img/icon/pie-face.png);
}
.callto-action:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: -1;
    background: #008aff url(../img/icon/pie-face.png);
}
.cta-left{
    position: relative;
    z-index: 1;
    padding: 50px 0px;
    padding-right: 19%;
}
.cta-left-inner{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    -webkit-transform: skew(32deg);
    -ms-transform: skew(32deg);
    -o-transform: skew(32deg);
    transform: skew(32deg);
    border-right: 10px solid #fff;
}
.cta-left-inner:before{
    content: '';
    position: absolute;
    right: -40%;
    top: 0;
    height: 100%;
    width: 140%;
    z-index: -1;
    -webkit-transform: skew(-32deg);
    -ms-transform: skew(-32deg);
    -o-transform: skew(-32deg);
    transform: skew(-32deg);
    background: #008aff url(../img/icon/pie-face.png);
}
.cta-left h2{
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 35px;
    margin-bottom: 21px;
}

.cta-left a {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    background: #222222;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
}

.cta-left a i{
    margin-left: 6px;
}
.cta-left a:hover {
    background-color: #fff;
    color: #222 !important;
}
.cta-right{
    display: flex;
    flex-wrap: wrap;
    padding-left: 100px;
    justify-content: space-between;
}
.cta-count-single{
    text-align: center;
}
.cta-count-single .icon{
        height: 70px;
    width: 70px;
    font-size: 59px;
    background: #fff;
    color: #222;
    text-align: center;
    line-height: 70px;
    border-radius: 3px;
    margin: auto;
    margin-bottom: 9px;
}
.cta-count-single span{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
}

/*============================================
* END Callto Action
*=============================================*/

/*============================================
* 1.8 Teacher Area
*=============================================*/
.teacher-area{}
.single-teacher{
    box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    border-radius: 40px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-teacher:hover{
    box-shadow: 0px 1px 5px rgba(255, 182, 6,0.3);
}
.teacher-thumb{
    position: relative;
    display: block;
    border-radius: 0px 0px 40px 40px;
    overflow: hidden;
}
.teacher-thumb img{
    max-width: 100%;
}
ul.t-social{
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-teacher:hover ul.t-social{
    opacity: 1;
}
ul.t-social li{
    display: inline-block;
}
ul.t-social li a{
    display: block;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    margin: 0px 5px;
    background: #ff6820;
}
ul.t-social li a:hover{
    background-color: #fff;
    color: #ff6820;
}
.single-teacher:hover ul.t-social li a{
    margin: 0;
}
.tch-meta{
    padding: 13px 0px;
    text-align: center;
}
.tch-meta h4 a{
        font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    color: #222222;
}
.tch-meta h4 a:hover{
    color: #f3ae06;
}
.tch-meta span{
    font-size: 14px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}

/*============================================
* END Teacher Area
*=============================================*/

/*============================================
* 1.9 Event Testimonial
*=============================================*/
.upcooming-event >h2,
.our-student-say >h2{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    padding-bottom: 36px;
    margin-bottom: 10px;
    position: relative;
}
.upcooming-event >h2:before,
.our-student-say >h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 80px;
    background-color: #fff;
    border-radius: 5px;
}
.event-list{}
.signle-event:first-child{
    /*border-top: 1px solid #d9d9d9;*/
}
.signle-event{
    padding: 12px 0px;
    /*border-bottom: 1px solid #d9d9d9;*/
}
.ev-left{
        float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #00A1FF url(../img/icon/pie-face.png);
    padding: 18px 10px;
    border-radius: 4px;
    margin-right: 25px;
}
.ev-left strong{
    font-size: 35px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 5px;
}
.ev-left span{
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 20px;
}
.ev-content{
    overflow: hidden;
}
.ev-content h2 a{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0;
    margin-bottom: 6px;
}
.ev-meta{}
.ev-meta span{
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    color: #515151;
    font-weight: 300;
    letter-spacing: 0;
    margin-right: 10px;
}
.ev-meta span i {
    margin-right: 5px;
}
.ev-content p{
    font-size: 16px;
    color: #515151;
    font-weight: 300;
    letter-spacing: 0;
    margin-top: 8px;
}
.our-student-say{
    position: relative;
    z-index: 1;
}
.our-student-inner:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 7px;
    border-bottom: 15px solid #222222;
}
.our-student-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0px;
    border-radius: 5px;
    background: #008aff;
}
.student-thumbnil-active{
    margin-bottom: 45px;
    padding-top: 30px;
}
.student-thumbnil-active .item{
    display: block;
    border: 3px solid #fff;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 25px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.student-thumbnil-active .center .item{
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
}
.student-thumbnil-active .item img{
    max-width: 100%;
}
.student-cmnt-active{
    padding: 0px 40px;
}
.student-cmnt-active .item{
    text-align: center;
}
.student-cmnt-active .item h4{
        font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    line-height: 23px;
}
.student-cmnt-active .item span{
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0;
}
.student-cmnt-active .item p{
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    font-style: italic;
    margin-top: 22px;
}

.student-cmnt-active .owl-dots{
    text-align: center;
    margin-top: 40px;
}
.student-cmnt-active .owl-dot{
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0px 4px;
    display: inline-block;
}
.student-cmnt-active .owl-dot.active{
    background: #222222;
}

/*============================================
* END Event Testimonial
*=============================================*/

/*============================================
* 1.10 Subscription Area
*=============================================*/
.subscription-area{
    padding: 60px 0px;
    background: #ff6820 url(../img/icon/pie-face.png);
}
.subscription-area h2{
    font-size: 27px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 33px;
}
.subs-form{}
.subs-form form{
    position: relative;
}
.subs-form form input[type='email']{
    height: 56px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    padding-left: 20px;
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 300;
    outline: none;
    border: none;
}
.subs-form form input[type='submit']{
    position: absolute;
    right: 4px;
    top: 4px;
    height: 48px;
    background-color: #222222;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    padding: 0px 15px;
    line-height: 48px;
    border: none;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.subs-form form input[type='submit']:hover{
    background-color: #fcb406;
}

/*============================================
* END Subscription Area
*=============================================*/

/*============================================
* 1.11 Feature Blog
*=============================================*/
.ft-single-blog{
    border-radius: 7px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #e9e0e0;
}
.ft-single-blog:hover{
    border: 1px solid #ff6820;
}
.blg-thumb{
    display: block;
    overflow: hidden;
}
.blg-thumb a{
    display: inline-block;
}
.blg-thumb a img{
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.ft-single-blog:hover .blg-thumb a img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.blg-meta{
    text-align: center;
    margin-top: -19px;
    position: relative;
    z-index: 5;
}
.blg-meta span{
    background: #ff6820;
    border: 2px solid #fff;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    color: #ffffff;
    display: inline-block;
    padding: 4px 18px;
}
.blg-content{
   
}
.blg-content h2 a{
        display: block;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    margin: 23px 0px 16px;
}
.blg-content h2 a:hover{
    color: #ff6820;
}
.blg-content p{
    font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}
.blg-content a.readmore_btn{
     display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
   /** background: #00A1FF;**/
    background:#4039d3;
    padding: 10px 20px;
    border-radius: 0px;
	margin-top:26px;
	
}
.blg-content a.readmore_btn:hover{
    background-color: #222;
    transform: scale(1.1);
}
.blg-content a.readmore_btn1{
        display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: #000;
   /** background: #00A1FF;**/
    background:#ffcc33;
    padding: 10px 20px;
    border-radius: 0px;
    margin-top: 26px;
    
}
.blg-content a.readmore_btn1:hover{
    background-color: #222;
    transform: scale(1.1);
	 color:#fff;
}
/*============================================
* END Feature Blog
*=============================================*/

/*============================================
* 1.12 Footer Area
*=============================================*/
.dtp{
     display:none;
}
.dropbtn {
 font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ff6820;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    border-radius: 40px;
    border:none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
padding: 3px 5px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */

.bg-dark {
    background-image: linear-gradient(#0573b6,#0193e9);

}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1.0);
    font-size:16px;
    
    padding: 12px 5px
}

#login_bg{
	background: #efefef;

}
#box {
    background: #fff;
    padding: 28px;
   
    box-shadow: -1px 2px 6px 3px rgba(0,0,0,0.4);
    margin-bottom: 45px;
}
label {
    display: inline-block;
    margin-bottom: .2rem;
    letter-spacing: 0;
    color: #333;
    font-size: 16px;
}
.footer-top{
    /**background-image:url(../img/footer-bg.jpg);**/
    background:#3d36d0;
    /**background-attachment: fixed;
    height: 370px;   **/
  
    padding:120px 0px 0px;
} 
.about-company a {
    display: inline-block;
}
.about-company a img{
    max-width: 100%;
}
.about-company p{
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0;
    margin: 24px 0px 24px;
}
.about-company ul{
    text-align: left;
}
.important-link h2{
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    margin-bottom: 37px;
}
.important-link ul li a i{
    margin-right: 10px;
}
.important-link ul li a{
        display: block;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 13px;
    letter-spacing: 0;
}
.important-link ul li a:hover{
    color: #ff6820;
}
.footer-map{}
.footer-map #google-map{
    height: 185px;
    border-radius: 8px;
}
.footer-contact{
    overflow: hidden;
    margin-top: 20px;
}
.footer-contact ul li{
    float: left;
    width: 100%;
    overflow: hidden;
}
.footer-contact ul li p{
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0;
    overflow: hidden;
    line-height: 23px;
}
.footer-contact ul li span{
        float: left;
    font-size: 24px;
    color: #fff;
    margin-top: 4px;
    margin-right: 14px;
}

/*footer-bottom*/
.footer-bottom{
    text-align: center;
    background-color: #3d36d0;
	border-top:1px solid#fff;
}
.footer-bottom p{
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0;
    padding: 8px 0px;
}

/*============================================
* END Footer Area
*=============================================*/

/*============================================
* 2. About Page
*=============================================*/
.crumbs-area{
    z-index: 1;
    padding: 80px 0px;
    position: relative;
    background: #222 url(../img/bg/crumbs-bg.jpg) center center/cover no-repeat;
}
.crumbs-area:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: rgba(31, 51, 69, 0.7);
}
.crumbs-inner{}
.crumbs-inner h2{
    font-size: 31px;
    color: #ff6820;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 14px;
}
.crumbs-inner ul{}
.crumbs-inner ul li{
    display: inline-block;
}
.crumbs-inner ul li a,
.crumbs-inner ul li span{
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0;
    display: block;
}
.crumbs-inner ul li a{
    position: relative;
    margin-right: 14px;
}
.crumbs-inner ul li a:hover{
    text-decoration: underline;
}
.crumbs-inner ul li a:before{
    content: '-';
    position: absolute;
    right: -13px;
    top: 0;
}

/*about-area*/
.about-area{}
.abt-left{}
.abt-left img{
    width: 387px;
    max-width: 100%;
}
.abt-right-content{}
.abt-right-content h2{
        font-size: 30px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: 32px;
}
.abt-right-content p{
     
}
.abt-right-content a{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: #ffcc33;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
   
    max-width: 100%;
 
}
.abt-right-content a:hover{
    background-color: #222;
	color:#fff;
}

/*education-years-area*/
.education-years-area{}
.edu-years{}
.edu-years-filter{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
    margin-bottom: 32px;
}
.edu-years-filter:before{
    content: '';
    position: absolute;
    left: 3%;
    top: 58px;
    width: 94%;
    height: 3px;
    background: #e0e0e0;
}
.edu-years-filter a{
        display: block;
    height: 80px;
    width: 80px;
    background: #ff6820;
    text-align: center;
    line-height: 80px;
    border-radius: 5px;
    font-size: 21px;
    font-weight: 900;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.edu-years-filter a.active{
    background-color: #222222;
    color: #fff!important;
}
.edu-years-filter a span{
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.edu-yeras-content{}
.edu-yeras-content .tab-pane ul li{
        font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
    line-height: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.edu-yeras-content .tab-pane ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 10px;
    width: 10px;
    background-color: #222222;
    border-radius: 50%;
}
.edu-right-thumb{
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

/*============================================
* END About Page
*=============================================*/

/*============================================
* 3. Contact Area
*=============================================*/
.wpcf7 h2{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
   
    padding-bottom:5px;
  margin-bottom: 20px;
    
}
a.create {
       letter-spacing: 0;
        height: 50px;
    display: inline-block;
    border-radius: 0px;
    font-size: 16px;
    border: 1px solid #ffcc33;
    padding: 8px 26px;
    background: #ffcc33;
	border:none;
   
   
}
a.create:hover{
	background:#000;
	color:#fff;
}
/**.wpcf7 h2:before{
        content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 80px;
    background-color: #ff6820;
    border-radius: 5px;
}
****/
form{}
form input,
form select,
form textarea{
    width: 100%;
    height: 40px;
    border: 1px solid #e9e0e0;
    border-radius: 3px;
    padding-left: 12px;
    letter-spacing: 0;
    font-weight: 300;
    margin-bottom: 6px;
}
form textarea{
    height: 155px;
}
.wpcf7 form input[type='submit']{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #4039d3;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 0px;
    outline: none;
    padding: 0;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
   
}
.wpcf7 form input[type='submit']:hover{
    background-color: #222;
}
.wpcf8 h2{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    margin-bottom: 20px;
    padding-bottom: 36px;
    position: relative;
}

.wpcf8 h2:before{
        content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 80px;
    background-color: #ff6820;
    border-radius: 5px;
}
.wpcf8 form{}
.wpcf8 form input,
.wpcf8 form textarea{
        width: 100%;
    height: 50px;
    border: 1px solid #e9e0e0;
    border-radius: 3px;
    padding-left: 20px;
    letter-spacing: 0;
    font-weight: 300;
    margin-bottom: 20px;
}
.wpcf8 form textarea{
    height: 155px;
}
.wpcf8 form input[type='submit']{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ff6820;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    outline: none;
    padding: 0;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.wpcf8 form input[type='submit']:hover{
    background-color: #222;
}
.wpcf9 h2{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    margin-bottom: 20px;
    padding-bottom: 36px;
    position: relative;
}

.wpcf9 h2:before{
        content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 80px;
    background-color: #ff6820;
    border-radius: 5px;
}
.wpcf9 form{}
.wpcf9 form input,
.wpcf9 form textarea{
        width: 100%;
    height: 50px;
    border: 1px solid #e9e0e0;
    border-radius: 3px;
    padding-left: 20px;
    letter-spacing: 0;
    font-weight: 300;
    margin-bottom: 20px;
}
.wpcf9 form textarea{
    height: 155px;
}
.wpcf9 form input[type='submit']{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ff6820;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    outline: none;
    padding: 0;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.wpcf9 form input[type='submit']:hover{
    background-color: #222;
}

.contact-r-thumb{}
.contact-r-thumb img{}

.contact-info-section{
    position: relative;
    z-index: 1;
    padding: 100px 0px;
}
.contact-info-section #google-map{
    height: 550px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.ft-map-img{
    height: 180px;
    border-radius: 5px;
    overflow: hidden;
    background: url(../img/bg/contact-gmp-bg.jpg) center center/cover no-repeat;
}

.contact-info-box{
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    padding: 80px 15px 30px 40px;
    background-color: #ff6820;
}
.cnt-single{
    margin-bottom: 40px;
}
.cnt-single .icon{
        float: left;
    height: 50px;
    width: 50px;
    background: #fff;
    color: #222222;
    font-size: 22px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}
.cnt-content span{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 23px;
}

/*============================================
* END Contact Area
*=============================================*/

/*============================================
* 4. Course Page
*=============================================*/
.all-courses .single-course{
    margin-bottom: 30px;
}
.courses-list .single-course{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.courses-list .course-thumb{
    flex-basis: 40%;
}
.courses-list .course-content{
    flex-basis: 60%;
    margin-top: 0;
    padding-bottom: 0;
}
.pagination-area {
    margin-top: 20px;
}

.pagination-area ul {
    text-align: center;
}

.pagination-area ul li {
    display: inline-block;
}

.pagination-area ul li a,
.pagination-area ul li span{
        display: block;
    background: #222222;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
.pagination-area ul li span,
.pagination-area ul li:hover a,
.pagination-area ul li:hover span{
    background-color: #ff6820;
}
.widget {
    margin-bottom: 50px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget_search form {
    position: relative;
}

.widget_search form input {
    height: 45px;
    width: 100%;
    border: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 45px;
    background: #fff;
    letter-spacing: 0;
}

.widget_search form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    background-color: #f8c000;
}

h2.widget_title {
    font-size: 24px;
    color: #333333;
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 34px;
}

h2.widget_title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 40px;
    height: 6px;
    z-index: 1;
    background: #f8c000;
}

h2.widget_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 230px;
    height: 1px;
    background: #b7b7b7;
}

.widget_category ul li {
    display: block;
}

.widget_category ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    border-bottom: 1px solid #b7b7b7;
    letter-spacing: 0;
    line-height: 20px;
    margin: 13px 0px;
    padding-bottom: 13px;
    position: relative;
    padding-left: 18px;
}

.widget_category ul li a:first-child {
    margin-top: 0;
}

.widget_category ul li a:before {
    content: '\f0da';
    position: absolute;
    left: 0;
    top: 0;
    font-family: fontawesome;
}

.widget_category ul li a:hover {
    color: #f8c000;
}

.widget_category ul li a span {
    float: right;
}
.rcp_single {
    overflow: hidden;
    margin-bottom: 20px;
}

.rcp_single:last-child {
    margin-bottom: 0;
}

.rcp_thumb {
    float: left;
    margin-right: 20px;
}

.rcp_thumb img {
    max-width: 70px;
}

.rcp_content {
    overflow: hidden;
    margin-top: -7px;
}

.rcp_content h2 a {
    display: block;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 600;
}

.rcp_content h2 a:hover {
    color: #f8c000;
}

.rcp_content span {
        font-size: 13px;
    font-weight: 400;
    color: #999999;
    letter-spacing: 0;
}

.widget_tags ul li {
    display: inline-block;
}

.widget_tags .jobs li{
    font-size: 25px;
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: 0;
    border: 1px solid #ffeaea;
    padding: 14px 18px;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-right: 3px;
    background: #fff6f2;
    cursor: auto;
}

.widget_tags .jobs li:hover {
    background-color: #e4f5ff;
    color: #4e4e4e;
    border: 1px solid #c8ebff;
}

/*course details*/
.course-tags{
    margin-top: 30px;
}
.course-tags h4{
        display: inline-block;
    margin-right: 17px;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
}
.course-tags a{
        display: inline-block;
    color: #ff6820;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-right: 8px;
    border-right: 1px solid #f1e9e9;
    padding-right: 8px;
    line-height: 15px;
    margin-bottom: 9px;
}
.course-tags a:hover{
    color: #444;
}

/*comment area*/
.comment-area {
    overflow: hidden;
    margin-bottom: 22px;
    margin-top: 60px;
}

h4.comment-title {
    font-size: 21px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 19px;
}

h4.comment-title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 70px;
    background-color: #999999;
}

.comment-info-inner article {
    overflow: hidden;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.comment-thumb {
    float: left;
}

.comment-thumb img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.comment-content {
    overflow: hidden;
}

.comment-content .meta-data h2 {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.comment-content .meta-data span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.comment-content p {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0;
    line-height: 23px;
    margin-top: 16px;
}

.comment-content a {
    margin-top: 12px;
    display: inline-block;
    color: #999999;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 14px;
}

.comment-content a:hover {
    color: #f8c000;
}

.children {
    padding-left: 60px;
}

/*leave-comment-area*/
.leave-comment-area form input,
.leave-comment-area form textarea {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #999999;
    padding-left: 20px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: capitalize;
}

.leave-comment-area form textarea {
    height: 120px;
    padding-top: 12px;
}

.leave-comment-area form #c_submit {
    margin-bottom: 0;
    max-width: 120px;
    background-color: #ff6820;
    text-align: center;
    padding-left: 0;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.leave-comment-area form #c_submit:hover {
    background-color: #333;
}

/*============================================
* END Course Page
*=============================================*/

/*============================================
* Blog
*=============================================*/
.all-blog .ft-single-blog{
    margin-bottom: 30px;
}

/*============================================
* 6. Event
*=============================================*/
.event-list-type{
    margin-bottom: 30px;
}
.event-list-type .evnt-thumb{
        border-radius: 10px;
    overflow: hidden;
}
.event-list-type .evnt-thumb img{
    max-width: 100%;
}
.event-list-type .ev-left{
        float: none;
    width: 120px;
    margin-bottom: 40px;
}
.event-list-type .ev-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-list-type .ev-content p {
    margin-top: 20px;
}
.ev-content h2 a:hover{
    color: #ff6820;
}
/*event details*/
.event-details{}
.event-details .ev-content{
    padding: 20px 15px;
    display: flex;
    align-items: center;
}
.event-details .ev-meta{
    overflow: hidden;
}
.event-details p.text{
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 28px;
}
.countdown{
    margin-top: 15px;
    padding: 0px 10px;
    margin-bottom: 30px;
}
.countdown >div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cdown{
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 34px 0px 15px;
    margin: 5px;
    text-align: center;
}
.cdown span{
    display: block;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
}
.cdown p{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #555;
}
.feature-teacher{
    margin-top: 60px;
}

/*============================================
* END Event
*=============================================*/
@media(max-width:992px){
	.gap{
		padding-left:15px;padding-right:15px;
	}
	.header-bottom .navbar-dark .navbar-nav .nav-link {
    color: rgba(0,0,0,1.0);
    font-size: 16px;
    padding: 12px 5px;
}
}
@media(max-width:480px){
	.gap{
		padding-left:15px;padding-right:15px;
	}
	.htp-register-btn a {
		width:100%;
	}
	.htp-register-btn {
    text-align: center;
	 width:100%;
}
.main-caption h1 {
    font-size:24px;
	line-height:30px
}
.main-caption p{
	font-size:14px;
	line-height:18px
}
.main-image {
    margin-top: -87px;
}
.hire{
	margin:10px 0px;
}
.con-info{
	 margin-top:0px;
}
.sticky{
	top:auto;
}
.header-bottom .navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1);
	background:#4039d3
}
    .counter{
        margin-bottom:15px;
    }
    .count-title{
        font-size:30px;
    }
    .hide{
     display:none;
}
    .new-login{
     display:block;
}
    .search-area {
    background-image: url('../img/bg-mobile.jpg');
}
.search-area h4 {
   
     margin-bottom: 0px;
}
p.only {
    
 margin-bottom: 0px;
   
}
    .btns{
     display:block;
}
    .search-area h2 {
  
    font-size: 30px;
    line-height: 28px;
   
}
.wpcf7 h2 {
    font-size: 30px;
     margin-bottom:0px;
     line-height: 30px;
}
.input-group .form-control {
     width:100%;
     border-radius:42px;
     height:58px;
}
.input-group>.form-control:not(:last-child) {
     border-top-right-radius: 42px; 
     border-bottom-right-radius:42px;
}
.Search-btn {
    width:100%;
    margin-left:0px;
    margin-top:10px;
     height:58px;
     line-height:53px;
     background-position: 96% center;
}
p.playsote {
  
    text-align: center;
}
.or {
    padding-right: 0px;
    padding-left: 20px;
    padding-top:10px; 
    color: #000;
}
.abc{
     float:left;
     margin-right:15px;
}
p.playsote img{
     margin:20px auto;}
.texttype {
   
    font-size: 28px;
   
    top: 13px;
    left: 30px;
    
}
.footer-top {
    background-image:none;
    background:#008aff;
    
}
.btns{
     display:block;
}
.important-link h2 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    margin-bottom:10px;
  
}
.footer-contact {
    
     margin-top: 0px;
}
}




