* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
}

body {
  color: var(--textColor);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-display: swap;
  background: var(--lightBgColor);
  counter-reset: section;
  counter-reset: my-sec-counter;
}

.clear {
  clear: both;
}

ul,
ol,
li {
  list-style: none;
}

p {
  margin: 0 0 10px;
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
  color: var(--textColor);
  cursor: pointer;
  transition: all 0.2s;
}

a:hover {
  cursor: pointer;
  color: var(--anchorColor);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--textColor);
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

:root {
  --bgcolor: #26295a;
  --lightBlueNewColor: #c5c3e5;
  --YellowColor: #f5a041;
  --lightBlueBgColor: #e9ecff;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 18px;
  margin-top: 10px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 12px;
}

.block {
  margin: 0 0 25px;
}

.block h2 {
  margin-bottom: 10px;
}

.corona-top {
  background: var(--lightBlueBgColor);
  color: var(--textColor);
  width: 100%;
  padding: 5px 0;
  overflow: hidden;
}

.corona-top .container {
  position: relative;
}

.corona-top .corona-text {
  text-align: center;
}

.corona-top .title {
  color: var(--textColor);
  margin: 0;
  letter-spacing: 0.15px;
}
.email-phone ul {
    padding-left: 0px;
    margin-bottom: 0;
}
.socials-top ul{
  margin-bottom: 0;
}

.corona-top a {
  font-size: 12px;
  padding: 2px 8px;
  background: var(--anchorColor);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  position: absolute;
  right: 305px;
  top: -1px;
  text-transform: capitalize;
  font-weight: 600;
}

.corona-top a svg {
  width: 10px;
  height: 10px;
  fill: var(--anchorColor);
  vertical-align: middle;
  margin-left: 5px;
}

.corona-top .close-btn {
  position: absolute;
  right: 20px;
  top: 2px;
  cursor: pointer;
}

.corona-top .close-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--lightTextColor);
}

nav > ul > li.last {
  display: none;
}

.email-top {
  display: block;
  background: #26295a;
  color: var(--textColor);
  width: 100%;
  padding: 5px 0;
  overflow: hidden;
}

.email-top .email-phone {
  float: left;
}

.email-phone ul li:first-child {
  display: none;
}

.email-phone ul li {
  color: var(--lightBlueColor);
  font-size: 12px;
  display: inline;
  margin-right: 10px;
  line-height: 20px;
}

.email-phone ul li a {
  color: var(--lightBlueColor);
  cursor: pointer;
  text-decoration: none;
}

.email-phone ul li.top-phone a,
.email-phone ul li.top-email a {
  position: relative;
  padding-left: 20px;
  color: #fff;
}

.email-phone ul li.top-phone a:before,
.email-phone ul li.top-email a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  background: url("https://static.collegedekho.com/static-up/images/common-sprite.68d99d4f55d0.webp")
    no-repeat;
}

.email-phone ul li.top-phone a:before {
  top: 2px;
  height: 15px;
  background-position: -128px -7px;
}

.email-phone ul li.top-email a:before {
  top: 4px;
  height: 15px;
  background-position: -128px -32px;
}

.socials-top {
  float: right;
  text-align: right;
  line-height: 1;
}

.socials-top li img {
  width: 32px;
  height: 32px;
}

.socials-top li {
  display: inline-block;
}

.socials-top li:first-child {
  vertical-align: top;
  padding: 8px 10px 0 0;
  font-size: 12px;
  color: #fff;
}

.search {
  float: right;
  width: 30px;
  height: 30px;
  margin: 20px 0 0 15px;
  position: relative;
  z-index: 11;
  border-radius: 5px;
}

.search svg.searchIcon {
  width: 100%;
  fill: #fff;
  cursor: pointer;
  margin: 9px 0;
}

.nav-custom-position {
  position: relative;
}

.checkout_box {
  width: 25px;
  height: 25px;
  border: 0;
  position: relative;
  float: right;
  margin: 28px 8px 0 8px;
  z-index: 9999;
}

.checkout_box a {
  cursor: pointer;
}

.bounceeee {
  position: absolute;
  right: -9px;
  top: -9px;
  width: 17px;
  background-color: var(--YellowColor);
  height: 17px;
  border-radius: 50%;
  padding-left: 1px;
  color: var(--textColor);
  font-weight: normal;
  line-height: 13px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -2px, 0);
  }
}

.bounceeee {
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}

h1.tooltip {
  position: relative;
  cursor: pointer;
}

.container {
  margin: 0 auto;
}

header {
  position: relative;
  display: table;
  width: 100%;
  background: #fff;
  transition: all 0.2s;
  z-index: 91;
}

.logo1 {
  float: left;
  margin-left: 77px;
  position: relative;
  z-index: 89;
  margin-top: 11px;
  width: 20%;
}

.logo1 a img {
  width: 100px;
}

header {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}

.searchContent {
  display: none;
  position: absolute;
  height: 30vh;
  background: rgba(255, 255, 255, 1);
  z-index: 999;
}

.breadcrumb {
  font-size: 12px;
  padding: 0px 0;
  margin-top: 40px;
}

.breadcrumb li {
  display: inline-block;
  color: #111;
  font-weight: normal;
}

.breadcrumb li:last-child {
  font-weight: 700;
}

.breadcrumb li a {
  color: #111;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: var(--lightBlueNewColor);
  text-decoration: underline;
}

.breadcrumb > li + li:before {
  color: #111;
  padding: 0 5px;
  content: "/\00a0";
}

.button a,
.button,
button.btn {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 15px;
  border: 0;
  border-radius: 4px;
  background: var(--anchorColor);
  transition: all 0.2s;
}

.button a:hover,
.button:hover,
button.btn:hover,
.addmissionBlock a:hover {
  background: var(--newBtnSolid);
}

.button:focus,
button.btn:focus,
button:focus {
  outline: 0;
}

.ctaBlock {
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  position: fixed;
  top: auto;
  margin: 0;
  bottom: 0;
  left: 0;
  z-index: 97;
  width: 100%;
  background-color: #fff;
}

.ctaBlock .container {
  width: 100%;
  max-width: 900px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctaBlock .container a {
  text-decoration: none;
}

.ctaBlock p {
  display: inline-block;
  margin: 0;
  color: var(--textColor);
  text-align: right;
}

.ctaBlock .btn {
  display: inline-block;
  margin-left: 15px;
  white-space: nowrap;
  position: relative;
  font-weight: bold;
  height: 40px;
  color: #fff;
  background-color: var(--anchorColor);
  line-height: 18px;
  width: auto;
}

.ctaBlock .btn:hover {
  background-color: var(--anchorColor);
}

.ctaBlock .btn.secondryBtn {
  background: transparent;
  color: var(--anchorColor);
  border: 2px solid var(--anchorColor);
}

.ctaBlock .btn.secondryBtn,
.ctaBlock .btn.primaryBtm {
  padding: 10px 5px;
}

#popupOver {
  cursor: pointer;
  position: relative;
  top: 7px;
}

#popupOver > img {
  width: 32px;
  height: 32px;
}
/* index */
.row.listing_row {
  justify-content: space-between;
}
.listing_footer {
  flex: 0 0 13%;
  padding: 0 15px;
}
.listing_footer h5 {
  color: #fff;
  white-space: nowrap;
  margin-bottom: 16px;
  margin-left: 30px;
}
.listing_footer h5 span {
  display: none;
}
.accordion {
  width: 100%;
  white-space: normal;
}
.listing_footer ul li {
  line-height: 16px;
  padding: 0 0 5px;
  color: #fff;
}
.main_footer{
  background-color: #111;
  padding-top: 40px;
  padding-bottom: 20px;
}
.listing_footer ul li a {
  font-size: 12px;
  color: #fff;
  opacity: .75;
  text-decoration: none;
}
.Document{
  color: #fff;
  margin-top: 40px;
  margin-bottom: 40px;
}
.Gurugram h3{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.Gurugram p{
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}
.Gurugram {
  margin: 20px;
}

.call p{
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin-top: -4px;
  margin-left: 10px;
}
.social i{
  color: #fff;
  margin-left: 10px;
}
.Connect_1 p{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  
}
.Connect_1{
  text-align: end;
  justify-content: end;
  margin-top: 65px;
}
.social {
  margin-left: 6px;
}
.page ul{
  display: flex;
  gap: 20px;
}
.page ul li a{
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  list-style: none;
  text-decoration: none;
}
.CollegeDekho p{
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}
.CollegeDekho {
  text-align: end;
  padding: 0px 20px;
}
.call {
  margin: 20px;
}
.Connect_with{
  padding: 20px;
}
.Read_More{
  border: 0px;
  background-color: transparent;
  color: #fc6a14;
}
.box{
  border: 1px solid #ddd;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin: 30px 0px;
  padding: 20px;
  text-align: center;
}
.box h2{
  font-size: 22px;
  font-weight: 700;
  color: #fc6a14;
}
/*  */
.appliedFilter {
  width: 60%;
  display: flex;
  
  flex-wrap: wrap;
}
.appliedFilter {
  display: flex;
  justify-content: space-between;
}
.filterCollege {
  width: 100%;
  display: flex;
}
.appliedFilter p {
  display: inline-block;
  margin: 0 0px 10px 0;
  padding-top: 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #717171;
  width: 175px;
}
.filterCollege ul {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  width: 100%;
}
.appliedFilter ul li {
  display: inline-block;
  color: #111;
  margin: 0 2px 4px;
  padding: 6px 22px 7px 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  transition: all .2s;
}
.appliedFilter ul li:after, .filterBlock .filter:before, .selectbox .mobile:before, .selectbox .closeIcon {
  background: url(https://static.collegedekho.com/static-up/images/college-listing-icons.8d3bb5644976.png) no-repeat 0 0;
}
.appliedFilter ul li:after {
  content: "";
  opacity: .6;
  position: absolute;
  right: 6px;
  top: 13px;
  width: 8px;
  height: 8px;
  background-position: -137px -4px !important;
  transition: all .2s;
}
.headingText {
  margin: 0;
  color: #717171;
}
/*  */
.applied_radio{
  display: flex;
  justify-content: end;
}
.form-check{
  margin-left: 20px;
}
.form-check-input:checked{
  font-size: 18px;
}
.form-check-input[type=radio]{
  font-size: 18px;
}
/*  */
.Ahmedabad{
  border: 1px solid #ddd;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
 margin-top: 50px;
 height: auto;
}

.main_Ahmedabad{
  display: flex;
  gap: 20px;
  margin-top: 39px;
}
.collegeRate{
  display: flex;
  gap: 7px;
}
.collegeRate_1{
  border: 1px solid #fc6a13;
  background-color: #fc6a13;
  padding: 0px 7px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
}
.Gujarat{
  display: flex;
}
.Gujarat i{
  font-size: 18px;
  color: #fc6a13;
}
.Gujarat span{
  font-size: 14px;
  margin-top: -3px;
  margin-left: 5px;
}
.goverment{
  font-size: 18px;
  color: #fc6a13;
}
.Accredition{
  display: flex;
  gap: 20px;
}
.Gujarat p{
  margin-top: 31px;
  margin-left: 7px;
}
.ranked ul li{
  border: 1px solid #ddd;
  border-width: 0px 1px 0px 0px;
  padding: 3px;
}
.ranked ul{
  display: flex;
}
.ranked {
  display: flex;
  justify-content: end;
}
#Ahmedabad_box{
  border: 1px solid #ddd;
  border-width: 0px 0px 1px 0px;
}
.college-list-bottombar{
  display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px;
    width: 100%;
}
.college-list-bottombar:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(229, 229, 229, 1);
  height: 1px;
  width: 100%;
}
.links {
  display: inline-flex;
  text-align: left;
  background: #fff;
  overflow-x: auto;
  white-space: nowrap;
  width: 50%;
}
.links li {
  display: inline-block;
  padding: 0;
  transition: all .2s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  border-radius: 2px;
  position: relative;
}
.links li::before {
  width: 4px;
  height: 4px;
  background-color: #fc6a14;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
}
.links li a, .listing-content ul.links li a:hover {
  color: #fc6a14;
  padding: 0 10px;
  text-decoration: none;
}
.downloadDetail {
  display: flex;
  width: 50%;
  justify-content: flex-end;
}
.downloadDetail>li.cta-buttons {
  display: flex;
}
.downloadDetail>li:first-child {
  margin-right: 15px;
}
.downloadDetail>li {
  width: auto;
  text-align: left;
  position: relative;
}
.downloadDetail>li.cta-buttons .applyBtn {
  display: flex;
  flex-direction: column;
}
.downloadDetail .cta-buttons .applyBtn .btn{
  background: #fc6a14;
  width: 155px;
  height: 43px;
  border: 2px solid #fc6a14;
  color: #fff;
  display: block;
  padding: 10px 12px;
  border-radius: 4px !important;
  cursor: pointer;
}
.downloadDetail>li {
  width: auto;
  text-align: left;
  position: relative;
}
.brochure-icon button, .talk-to-expert button, .getCounselling .secondry-btn {
  background: transparent;
  border: 2px solid #fc6a14;
  color: #fc6a14;
  cursor: pointer;
  border-radius: 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.clear {
  clear: both;
}
/*  */
.Degree_main{
  border: 1px solid #ddd;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 10px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.accordion-button:not(.collapsed) {
  color: #111;
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: none;
}
.accordion-item{
  border: 0px;
}
.form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: .375rem .75rem;
  font: .9rem / 1.5 'Lato', sans-serif;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 2px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  outline: 0;
  margin: 0px;
  float: none;
}
.modal-body .form-control {
  background: #fff;
}
.modal-body .search {
  float: none;
  margin: 0;
  width: 96%;
}
.collegeListing .modal-body .form-control {
  margin-bottom: 6px;
}
/*  */
.filter-option-list {
  max-height: 214px;
  overflow-y: auto;
  margin-left: -52px;
  margin-top: 20px;
}
.gs_control {
  display: block;
  position: relative;
  padding: 7px 0 7px 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: normal;
  color: #111;
}
.gs_control i {
  width: 74%;
  display: inline-block;
  font-style: normal;
}
.filter-option-list .count-number {
  float: right;
  margin: 0;
  padding: 2px 6px;
  font-size: 12px;
}
.gs_control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 6px;
  top: 6px;
}
.gs_control input:checked~.gs_control__indicator {
  border-color: #fc6a14;
}
.gs_control__indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: 15px;
  width: 15px;
  background: #fff;
  transition: all .3s ease-in 0s;
  border: solid 1px rgba(63, 83, 217, 0.35);
  border-radius: 2px;
}
.gs_checkbox .gs_control__indicator:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fc6a14;
  border-width: 0 2px 2px 0;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.gs_control input:checked~.gs_control__indicator:after {
  display: block;
}
.gs_control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
/*  */
.pagination {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li.current {
  color: #111;
}
.pagination ul li {
  display: inline-block;
  width: auto;
  height: 24px;
  background-color: #fff;
  border-radius: 4px;
  padding: 2px 7px 2px 7px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  color: #717171;
  cursor: pointer;
  margin: 0 2px;
  line-height: 20px;
}
.pagination ul li a {
  text-decoration: none;
  color: #717171;
  position: relative;
}
.pagination ul li.dots {
  color: #fc6a14;
  font-weight: 700;
}
.pagination ul li.round:last-child {
  margin-left: 5px;
}
.pagination ul li.round a span {
  font-size: 25px;
}
@media screen and (max-width: 640px) {
  .main_Ahmedabad,.Accredition {
   display: grid; 
   grid-template-columns: 1fr 1fr;
  }
  .downloadDetail{
    width: 111%;
  }
  .Ahmedabad{
    height: auto;
  }
  .college-list-bottombar{
    flex-direction: column;
  }
  .links{
    width: 100%;
  }
  .ctaBlock {
    z-index: 19;
    height: 50px;
    padding: 0 5px;
  }

  .ctaBlock .container {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .ctaBlock .btn {
    margin: 0 0 0 10px;
    text-align: center;
    width: 200px;
  }

  .ctaBlock p {
    text-align: left;
    display: table-cell;
    line-height: 1.3;
    vertical-align: middle;
  }
}

@media screen and (min-width: 1025px) {
  nav .subLink li > a:hover {
    cursor: pointer;
  }

  header {
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  }

  .cafPage header {
    box-shadow: none;
  }

  header .dataContent {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
  }

  header .searchContent {
    height: 62vh;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    left: 0;
  }

  header .searchContent hr {
    margin: 0 -35px;
    opacity: 0.1;
    margin-top: 30px;
  }

  header .close {
    right: 26px;
    top: 30px;
    display: none;
  }

  .overflowHide header .container > .search {
    opacity: 1;
  }

  header .dataContent {
    height: 100%;
    background: #fff;
  }

  .overflowHide {
    padding-right: 15px;
  }

  header .searchContent .head {
    font-weight: 600;
    font-size: 18px;
  }

  nav {
    padding: 5px 55px 0 0;
    text-align: right;
    position: relative;
  }

  button.menu {
    display: none;
  }

  nav a {
    color: var(--lightTextColor);
    text-decoration: none;
  }

  nav .more-links a {
    color: var(--textColor);
    text-decoration: none;
  }

  nav > ul > li {
    display: inline-block;
  }

  nav li.first {
    float: right;
    margin: 12px 0 0;
  }

  nav li.first .userPhoto,
  nav li.first .userName,
  nav li.first .close {
    display: none;
  }

  nav li.first.userLogin {
    height: 56px;
    position: relative;
  }

  nav li.first.userLogin .login {
    display: none;
  }

  nav li.first.userLogin .userPhoto {
    display: block;
    width: 40px;
    cursor: pointer;
  }

  nav li.first.userLogin .userPhoto svg {
    width: 100%;
    height: auto;
  }

  nav li.first.userLogin:hover .userName {
    display: block;
  }

  nav li.first.userLogin .userName {
    top: 56px;
    width: 228px;
    text-align: center;
    left: -128px;
    padding: 6px;
  }

  nav li.first .userName * {
    display: block;
    color: var(--textColor);
    padding: 5px 14px;
    border-top: 0;
  }

  nav li.first .userName p {
    margin-bottom: 0;
    font-weight: bold;
    padding: 0;
  }

  nav li.first .userName a.e-mail {
    color: var(--anchorColor);
    word-break: break-word;
  }

  nav li.first .userName a.signout-btn {
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 6px;
    color: var(--anchorColor);
    cursor: pointer;
    padding: 6px 15px;
    font-size: 15px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid var(--anchorColor);
  }

  nav li.first .userName a:hover.signout-btn {
    color: var(--anchorColor);
  }

  nav li.first .userName > :first-child {
    border-top: 0;
    color: #999;
  }

  nav .login button {
    color: #fff;
    cursor: pointer;
    padding: 12px 15px;
    font-size: 14px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    border: 1px solid var(--YellowColor);
  }

  nav .login button:hover {
    color: #fff;
  }

  nav li.sub-links > .more-links {
    position: relative;
    color: #111;
    transition: 0.3s ease-in 0s;
  }

  nav li.sub-links > .more-links:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    margin-top: -4px;
    border: solid #111;
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all 0.2s;
  }

  nav > ul > li > .more-links {
    padding: 24px 35px 24px 10px;
  }

  nav > ul > .sub-links {
    vertical-align: middle;
  }

  nav ul ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s;
  }

  nav ul > li > ul,
  nav li.userLogin .userName {
    position: absolute;
    left: 0;
    top: 75px;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--boxBorderColor);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: -1;
  }

  nav > ul > li > ul {
    display: none;
    visibility: hidden;
    opacity: 0;
    webkit-transition: opacity 0.3s linear, visibility 0.2s linear;
    -moz-transition: opacity 0.2s linear, visibility 0.2s linear;
    -o-transition: opacity 0.2s linear, visibility 0.2s linear;
    transition: opacity 0.2s linear, visibility 0.2s linear;
  }

  nav > ul > li:hover > ul {
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 88;
  }

  nav ul ul.four-column {
    flex-direction: row;
  }

  nav ul ul li > .more-links {
    float: left;
    color: var(--textColor);
    width: 280px;
    cursor: pointer;
    padding: 5px 20px 5px 25px;
    background: var(--lightBlueBgColor);
    position: relative;
  }

  nav ul ul li > .more-links.firstLink {
    padding-top: 13px;
  }

  nav ul ul li > .more-links.lastLink {
    padding-bottom: 13px;
  }

  nav li:hover > .more-links,
  nav ul ul li.active > .more-links {
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease-in 0s;
  }

  nav ul ul li.active > .more-links:after {
    content: "";
    position: absolute;
    right: -6px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-left: 6px solid var(--lightBlueBgColor);
    border-bottom: 7px solid transparent;
    z-index: 95;
  }

  nav ul ul li > .more-links.firstLink:after {
    top: 18px;
  }

  nav ul li > ul > li {
    clear: both;
  }

  nav ul ul ul {
    left: 280px;
    top: 0;
    border-top: 0;
    padding: 20px 0 0 0;
    box-shadow: none;
    font-size: 14px;
    flex-direction: row;
    opacity: 0;
    visibility: hidden;
  }

  nav li .heading,
  nav li .title {
    font-weight: 600;
  }

  nav li .heading a,
  nav li .title a {
    color: var(--textColor);
  }

  nav li .heading a:hover,
  nav li .title a:hover {
    color: var(--anchorColor);
  }

  nav .view-all {
    margin: 10px 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
  }

  nav .full-col .view-all {
    margin-top: 0;
  }

  nav .view-all a,
  nav a:hover,
  nav li .heading a:hover,
  nav .more-links a:hover,
  nav li .title:hover {
    color: var(--anchorColor);
  }

  nav ul ul ul > li {
    display: inline-block;
    width: 33.33%;
    vertical-align: top;
    padding: 0 0 0 25px;
  }

  nav ul ul ul > li.full-col {
    display: block;
    width: 100%;
  }

  nav ul ul .active > ul,
  nav ul ul .active > ul ul,
  nav ul ul.four-column ul {
    opacity: 1;
    visibility: visible;
    z-index: 89;
  }

  nav ul ul .active > ul {
    display: flex;
    flex-wrap: wrap;
  }

  nav ul ul ul ul {
    position: static;
    display: block;
    padding: 7px 0 20px;
  }

  nav ul ul ul ul li {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  nav .four-column li.full-col.back,
  nav ul ul ul li.back,
  nav ul ul ul li.go-back {
    display: none;
  }

  nav .four-column {
    padding: 10px;
  }

  nav li:hover ul.four-column {
    display: flex;
    flex-wrap: wrap;
  }

  nav .four-column li {
    display: inline-block;
    width: 25%;
    padding: 10px 15px;
    vertical-align: top;
  }

  nav .four-column li.first {
    padding-bottom: 0;
    padding-top: 0;
  }

  nav .four-column li.last {
    padding-top: 0;
  }

  nav .four-column li.full-col {
    display: block;
    width: 100%;
  }

  nav .four-column .image {
    margin: 0 0 10px;
    height: 120px;
    overflow: hidden;
  }

  nav .four-column .title {
    margin: 0 0 10px;
  }

  nav .four-column li.full-col .heading {
    margin: 0;
  }

  nav .four-column li ul {
    display: block;
    position: static;
    padding: 0;
  }

  nav .four-column li ul li {
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  nav .four-column li ul li a b {
    font-size: 15px;
    color: var(--textColor);
  }

  nav .bg {
    display: none;
  }

  nav .four-column .allLatestUpdates {
    margin: 0;
    padding: 10px 0;
    text-align: right;
  }

  nav .four-column .allLatestUpdates a {
    display: inline-block;
    color: var(--anchorColor);
    padding: 7px 15px;
  }
}

@media (max-width: 1024px) {
  .socials-top li:first-child {
    display: none;
  }

  .email-phone ul li.top-phone a:before {
    background: url("https://static.collegedekho.com/static-up/images/call-icon.422cd6b2f370.svg")
      no-repeat;
  }

  .email-phone ul li.top-email a:before {
    background: url("https://static.collegedekho.com/static-up/images/mail-icon.77578a54f873.svg")
      no-repeat;
  }

  nav > ul > li.last {
    padding: 0 20px;
  }

  nav > ul > li {
    padding: 10px 5px 20px 40px;
    margin: 8px 20px 10px 20px;
    border-bottom: 1px solid var(--bgcolor);
  }

  .email-phone ul li.top-phone a,
  .email-phone ul li.top-email a {
    padding-left: 25px;
    color: var(--textColor);
  }

  .email-phone ul li:first-child {
    color: var(--anchorColor);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    display: block;
  }

  .logo1 a img {
    margin-left: 60px;
  }

  .email-top {
    display: none;
  }

  nav.open .bg {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 170;
    background: rgba(0, 0, 0, 0.3);
  }

  nav > ul {
    transform: translateX(-103%);
    -webkit-transform: translateX(-103%);
    -moz-transform: translateX(-103%);
  }

  .corona-top a {
    right: 136px;
  }
}

@media screen and (max-width: 768px) {
  
  :root{
    width: 100vw;
    overflow-x: hidden;
}
  .corona-top .corona-text {
    width: 60%;
    float: left;
    text-align: left;
  }

  .corona-top a {
    right: 50px !important;
    top: -1px;
  }

  .corona-top .close-btn {
    top: 5px;
  }

  

  .search #search {
    fill: var(--anchorColor);
  }
  /* ** */
  .appliedFilter ul li {
    padding: 7px 10px 7px 8px;
    font-size: 12px;
  }
  .appliedFilter_3{
    display: block !important;
    margin-top: 20px;
  }
  .appliedFilter p{
    width: 100%;
    font-size: 15px;
  }
  .filterCollege ul{
    overflow-x: visible;
    width: 80%;
  }
  .appliedFilter{
    width: 100%;
  }
  .headingText{
    margin-left: 35px;
  }
  .applied_radio {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

}

@media (max-width: 640px) {
  .breadcrumb > li + li:before {
    padding: 0 1px;
  }

  .corona-top a {
    right: 0;
  }

  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .logo1 a img {
    width: 105px;
    height: 40.83px;
  }

  .search {
    margin: 13px 0 0 15px;
  }

  .checkout_box {
    margin: 22px 10px 0 8px;
  }
}

@media screen and (max-width: 480px) {
  .breadcrumb {
    font-size: 12px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .corona-top a {
    top: 5px;
  }
}

@media (max-width: 380px) {
  .corona-top a {
    right: 20px;
  }
}

@media (max-width: 360px) {
  .corona-top .corona-text {
    padding: 0;
  }

  .corona-top a {
    padding: 10px 8px;
  }
}


/*start events*/
.events-tab {
    padding: 50px 0;
}
.events-tab  .nav-pills .nav-link {
    border-bottom: 2px solid #fc6a14;
    border-radius: 0;
    color: #27295a;
    padding: 10px 40px;
    font-size: 17px;
    text-transform: uppercase;
        transition: 0.3s ease-in-out;
}
.events-tab .nav-pills .nav-link.active, .events-tab .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #fc6a14;
}
.single-event-item {
    box-shadow: 0 0 8px rgba(34, 30, 31, 0.3);
}
.event-page .single-event-item, .latest-page .single-latest-item {
    margin-bottom: 50px;
}
.single-event-image > a {
    display: block;
    position: relative;
}
.single-event-image img {
    width: 100%;
}
.event-style-2 .single-event-image a > span {
    background: #26295a none repeat scroll 0 0;
    top: 116px;
    color: #ffffff;
    font-size: 20px;
    left: 34px;
    right: auto;
    line-height: 18px;
    position: absolute;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px 0 0 50px;
    text-align: center;
    padding: 15px 16px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    width: 116px;
    height: 50px;
    bottom: -24px;
    margin: 0 auto;
}
.single-event-text {
    /* background: #f6f6f6 none repeat scroll 0 0; */
    padding: 25px;
    text-align: center;
}
.event-style-2 .single-event-text {
    text-align: left;
}
.single-event-text > h3 a, .single-event-text > h3 {
    color: #4c4c4c;
    text-decoration: none;
}
.single-event-text > h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}
.single-event-item .single-item-comment-view {
    margin-bottom: 12px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
    display: block;
    padding: 5px 0;
}
.single-event-text p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 400;
}
.single-event-item .button-default {
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    background: #26295a none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
}
.button-default:hover {
    background-color: #fc6a14;
    color: #ffffff;
}

.events-tab .nav{
  margin-bottom: 40px!important;
}
.pagination-content {
    display: block;
    line-height: 0;
    text-align: center;
}
.pagination-content.number .pagination {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}
.pagination li {
    display: inline-block;
}
.pagination-content.number .pagination li a {
    border: 1px solid #fc6a14;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    margin: 0 5px;
    width: 35px;
    vertical-align: middle;
}
.pagination-content.number .pagination li a:hover, .pagination-content.number .pagination li.current a {
    color: #fff;
    background: #fc6a14;
}
.w-100{
  width: 100%;
}
.section-padding {
    padding: 50px 0;
}

.events-details-img1 > h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.events-details-all {
    display: flex;
    overflow: hidden;
}
.events-details-time {
    display: inline-block;
    float: left;
    padding: 20px 10px;
    width: 30%;
    flex: 0 0 30%;
}
.time-icon {
    display: inline-block;
    float: left;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background-color: #fc6a1475;
    border-radius: 4px;
    border: 1px solid #fc6a14;
    text-align: center;
    line-height: 40px;
}
.time-text span {
    color: #3f3f3f;
    font-size: 14px;
    font-weight: 600;
}
p.time-mrg {
    margin: 1px 0;
    line-height: 26px;
}
.time-text {
    display: inline-block;
}
.time-text p{
  margin-bottom: 2px;
}
.time-text a {
    color: #26295a;
    font-weight: 600;
}
.event-content {
    margin-top: 20px;
}
.event-content ul{
  padding: 0;
  margin: 0;
}
.event-content li {
    color: #666;
    font-size: 14px;
    margin-bottom: 11px;
    position: relative;
    padding-left: 30px;
    line-height: 26px;
}
.event-content li:before {
    content: "\f144";
    font-family: "fontAwesome";
    left: 0;
    margin-right: 15px;
    position: absolute;
    top: 2px;
    color: #26295a;
}
.event-details-area h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #26295a;
}

.events-details-time:last-child {
    width: auto;
    flex: auto;
}
.time-text h5 {
    font-size: 30px;
    color: #26295a;
}
.single-sidebar-widget h4.title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #26295a;
}
.recent-content-item {
    margin-bottom: 22px;
    overflow: hidden;
}
.recent-content-item > a {
    border: 1px solid #fc6a14;
    display: inline-block;
    float: left;
}
.recent-text {
    overflow: hidden;
    padding-left: 12px;
}
.recent-text > h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.recent-text .single-item-comment-view {
    display: block;
}
.recent-text > p {
    color: #6b6b6b;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}
.recent-text .single-item-comment-view > span {
    color: #b2b2b2;
    font-size: 11px;
    line-height: 12px;
    margin-right: 13px;
}
.recent-text > h4 a{
  text-decoration: none;
}
.single-item-comment-view > span i {
    font-size: 13px;
    margin-right: 7px;
}

.categories .form-group {
  display: block;
  margin-bottom: 15px;
}

.categories .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.categories .form-group label {
  position: relative;
  cursor: pointer;
  display: inline!important;
}

.categories .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #26295a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.categories .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 13px;
  border: solid #f76713;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.categories .form-group span{
  float: right;
  font-weight: 600;
  vertical-align: top;
  display: inline-block;
}
.single-sidebar-widget input#check {
    width: 20px;
    float: left;
    margin-top: 5px;
}

.single-sidebar-widget .form-group  label{
  display: table;
}
.single-sidebar-widget .form-group label a {
    color: #3239a9;
}


.theme-btn {
    background-color: #fc6a14;
    color: #fff;
    border: none;
    padding: 7px 30px;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.5s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}
.login-form {
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
}
.login-form label {
    font-size: 18px;
    color: #26295a;
    margin-bottom: 5px;
}
.mb-20{
  margin-bottom: 20px;
}
.login-form .form-select{
    border: 1px solid #333;
    height: 46px;
    border-radius: 6px;
    padding: 5px 20px;
}
 .login-form .form-control {
    border: 1px solid #333;
    height: 46px;
    border-radius: 6px;
    padding: 5px 44px;
}
.login-form .form-group{
  position: relative;
}
.login-form .form-group i {
    position: absolute;
    top: 47px;
    left: 16px;
    z-index: 9999;
    font-size: 20px;
    color: #8b8585;
}
.intl-tel-input,
.iti{
  width: 100%;
}
.theme-btn::before, .theme-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #26295a;
    z-index: -1;
    transform: scaleX(0);
    transition: all ease .5s;
}
.theme-btn:hover::before {
    transform: scaleX(1);
}

/*start account*/

.myaccount-page-wrapper .nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 0.25rem;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #e0dede;
    border-bottom: none;
    padding: 15px 15px;
    color: #26295a;
    font-size: 16px;
    text-align: left;
}
.myaccount-page-wrapper .nav-pills .nav-link:nth-child(odd){
  background-color: #f2f2f2;
}
.myaccount-page-wrapper .nav-pills .nav-link.active, .myaccount-page-wrapper .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #26295a;
    border-left: 4px solid #fc6a14;
}
.myaccount-content {
    border: 1px solid #eeeeee;
    padding: 30px 30px 30px;
    background-color: #fff;
}
.myaccount-content label {
    margin-bottom: 10px;
    color: #26295a;
    font-weight: 500;
}
.rbt-dashboard-content-wrapper {
    position: relative;
    margin-bottom: 30px;
}
.tutor-bg-photo {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.tutor-bg-photo::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: block;
    z-index: -1;
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5) 90%);
    transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
    cursor: pointer;
    border-radius: 6px;
}

.height-350 {
    height: 350px;
}
.rbt-tutor-information {
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    padding: 0 40px;
    width: 100%;
    z-index: 2;
}
.rbt-tutor-information .rbt-tutor-information-left {
    display: flex;
    align-items: center;
}
.rbt-avatars.size-lg {
    min-width: 120px;
    max-width: 120px;
    width: 120px;
    height: 120px;
}
.rbt-tutor-information .rbt-tutor-information-left .thumbnail {
    margin-right: 20px;
    position: relative;
}
.rbt-tutor-information .rbt-tutor-information-left .tutor-content .title {
    margin-bottom: 8px;
    color: #ffffff;
}
.rbt-review {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.rbt-review .rating {
    display: flex;
    align-items: center;
    margin-right: 6px;
}
.rbt-review .rating i {
    font-size: 13px;
    color: #FF9747;
    transition: 0.3s;
}
.rbt-review .rating-count {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}
.single-input-item input, .single-input-item select, .single-input-item textarea, .single-input-item select {
    border: none;
    width: 100%;
    height: 45px;
    background-color: #f2f2f2;
    padding: 0 19px;
    border-radius: 2px;
}

.single-input-item {
    margin-bottom: 15px;
}
.tutor-content ul {
    padding: 0;
    margin: 0;
}
.tutor-content ul  li{
  margin-top: 5px;
}
.tutor-content ul  li a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.rbt-avatars img {
    border-radius: 100%;
    width: 100%;
    background: #fff;
    padding: 4px;
    border: 2px solid #2f57ef21;
    object-fit: cover;
}
.myaccount-page-wrapper .nav-pills .nav-link i{
  margin-right: 8px;
}
.check-btn.sqr-btn {
    background-color: #26295a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
}
.rbt-counterup {
    margin-bottom: 20px;
    background: var(--color-white);
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 5px;
    text-align: center;
    padding: 30px 30px 50px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
.rbt-border-dashed {
    border: 2px dashed #e6e3f1 !important;
}
.bg-primary-opacity {
    background: #2f57ef21 !important;
    color: #1b0e3e !important;
}

.rbt-counterup .inner .rbt-round-icon {
    margin-bottom: 20px;
    position: relative;
    background: var(--color-white);
    width: 100px;
    margin-right: auto;
    margin-left: auto;
    height: 100px;
    line-height: 100px;
    padding: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-10);
}
h3.counter{
    font-size: 40px;
    font-weight: 700;
}
.bg-coral-opacity {
    background: #e9967a21 !important;
    color: #e3805f !important;
}

.rbt-counterup .inner .rbt-round-icon {
    margin-bottom: 20px;
    position: relative;
    background: var(--color-white);
    width: 100px;
    margin-right: auto;
    margin-left: auto;
    height: 100px;
    line-height: 100px;
    padding: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-10);
    justify-content: center;
}
.rbt-round-icon i {
    color: var(--color-white);
    font-size: 24px;
}
.login-form.register .form-select {
    border: 1px solid #333;
    height: 46px;
    border-radius: 6px;
    padding: 5px 43px;
}
.login-form.register input[type='date']::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
.register p{
  color: #555;
  font-size: 20px;
}
.register p {
    text-align: center;
    color: #8b8585;
    font-size: 20px;
    margin-top: 20px;
}
.register p a{
  text-decoration: none;
  color: #fc6a14;
}
.register-title h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 0;
    color: #26295a;
}

.register p {
    text-align: center;
    color: #a69b9b;
    font-size: 20px;
    margin-top: 20px;
}
.register-profile {
    text-align: center;
        overflow: hidden;
        
}
.register-profile  img{
    text-align: center;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #26295a;
}
.register-profile h6 {
    font-size: 20px;
    margin: 10px 0 0px;
}
.register-logo {
    text-align: center;
    /* width: 200px; */
}
.register-logo img{
  width: 150px;
}
.register-title {
    margin-bottom: 25px;
}
.forgot {
    text-decoration: none;
    color: #a69b9b;
    color: #696262;
    float: right;
    font-size: 16px;
}

 .otp-input input:focus {
              border-color: #A556F6;
              box-shadow: 0 0 0 2px rgba(166, 86, 246, 0.3);
              outline: none;
          }
          .otp-input input::-webkit-outer-spin-button,
          .otp-input input::-webkit-inner-spin-button {
              -webkit-appearance: none;
              margin: 0;
          }
          .otp-input input[type=number] {
              -moz-appearance: textfield;
              width: 50px;
              height: 50px;
              margin: 10px 4px 0;
              border-radius: 5px;
              border: 1px solid #333;
              text-align: center;
              font-size: 24px;
          }
      

.register-title p {
    font-size: 16px;
    margin: 0 0 10px;
}
.register-title h5 {
    font-size: 20px;
    color: #26295a;
}

.blink-btn {
    border: 4px solid;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.2em;
    letter-spacing: 0.2em;
    line-height: 1.6em;
    padding: 10px 37px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    background-color: #26295a;
    width: auto;
    color: #fff;
    text-align: center;
    display: inline-block;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.categories p{
  font-size: 15px;
}
.categories p {
    font-size: 15px;
    text-align: center;
    margin: 10px 0;
}
.total {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.total h5{
  font-size: 20px;
 display: inline-block;
}
.total span{
  float: right;
}

/*start header*/
header.header {
  position: relative;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
}
@media only screen and (max-width: 991px) {
  header.rt-header {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  header.header {
    display: none;
  }
}
.logo-area a {
  display: block;
}
.header-menu {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-menu:after {
  clear: both;
  content: "";
  display: block;
}
.header-menu nav.template-main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}
.header-menu nav.template-main-menu > ul > li > a {
  transition: all 0.3s ease-out;
}
.header-menu nav.template-main-menu > ul > li > a:hover {
  color: #50ffe4;
}
nav.template-main-menu > ul > li {
  position: relative;
}
nav.template-main-menu > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  color: #333;
  text-transform: capitalize;
  /* font-family: "Montserrat", sans-serif; */
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  nav.template-main-menu > ul > li > a {
    font-size: 14px;
  }
}
nav.template-main-menu > ul > li > a:after {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid #333;
  display: inline-block;
  transform: rotate(45deg) translate(1px, -4px);
  border-left: none;
  border-top: none;
  margin-left: 8px;
}
@media only screen and (max-width: 1366px) {
  nav.template-main-menu > ul > li > a:after {
    right: 0px;
    margin-left: 7px;
  }
}
nav.template-main-menu > ul > li > a.active {
  color: #c72832;
}
nav.template-main-menu > ul > li > a.active:after {
  border: 1px solid #c72832;
  transform: rotate(45deg) translate(1px, -4px);
  border-left: none;
  border-top: none;
}
nav.template-main-menu > ul > li > a:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #c72832;
  position: absolute;
  left: 0;
  bottom: -2px;
  visibility: hidden;
  opacity: 0;
}
nav.template-main-menu > ul > li > a.active:before {
  visibility: visible;
  opacity: 1;
}
nav.template-main-menu > ul > li > a:last-child:after {
  display: none;
}
.header-menu nav.template-main-menu > ul > li > a:hover {
  color: var(--rt-primary-color);
}
nav.template-main-menu-2 > ul > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  display: block;
  color: #212121;
  text-transform: capitalize;
  font-family: "Ubuntu", sans-serif;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  nav.template-main-menu-2 > ul > li > a {
    font-size: 14px;
  }
}
nav.template-main-menu-2 > ul > li > a:after {
  border: 1px solid #212121;
  border-left: none;
  border-top: none;
}
nav.template-main-menu-2 > ul > li > a:before {
  background-color: var(--rt-primary-color);
}
nav.template-main-menu-2 > ul > li > a.active {
  color: var(--rt-primary-color);
}
nav.template-main-menu-2 > ul > li > a.active:after {
  border: 1px solid var(--rt-primary-color);
  border-left: none;
  border-top: none;
}
nav.template-main-menu-2 > ul > li > a:hover:after {
  color: var(--rt-primary-color);
}
nav.template-main-menu-3 > ul > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  display: block;
  color: #212121;
  text-transform: capitalize;
  font-family: "Ubuntu", sans-serif;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  nav.template-main-menu-3 > ul > li > a {
    font-size: 14px;
  }
}
nav.template-main-menu-3 > ul > li > a:after {
  border: 1px solid #212121;
  border-left: none;
  border-top: none;
}
nav.template-main-menu-3 > ul > li > a:before {
  background-color: var(--rt-primary-color);
  bottom: 1px;
}
nav.template-main-menu-3 > ul > li > a.active {
  color: var(--rt-primary-color);
}
nav.template-main-menu-3 > ul > li > a.active:after {
  border: 1px solid var(--rt-primary-color);
  border-left: none;
  border-top: none;
}
nav.template-main-menu-3 > ul > li > a:hover:after {
  color: var(--rt-primary-color);
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 {
  border-top: 1px solid var(--rt-primary-color);
  background-color: #ffffff;
  width: 250px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 0 0 4px 4px;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li {
  position: relative;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #212121;
  padding: 12px 20px;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media only screen and (max-width: 1199px) {
  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a {
    font-size: 13px;
  }
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 6px;
  color: var(--rt-primary-color);
  position: absolute;
  top: 12px;
  left: 20px;
  transform: scale(0);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a:hover {
  color: var(--rt-primary-color);
  padding-left: 40px;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a:hover:before {
  transform: scale(1);
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 100%;
  border-bottom: 1px solid #e9e9e9;
  z-index: -1;
}
nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li:last-child:after {
  border-bottom: none;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a {
  font-size: 15px;
  text-transform: capitalize;
  color: #212121;
  padding: 5px 15px 5px 30px;
  display: block;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -ms-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  position: relative;
}
nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a i {
  color: #000000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a:hover {
  color: var(--rt-primary-color);
  padding: 5px 15px 5px 35px;
}
nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a:hover i {
  color: var(--rt-primary-color);
  animation: toRightFromLeft10 0.5s;
}
nav.template-main-menu > ul > li:hover ul.dropdown-menu-col-1 {
  opacity: 1;
  visibility: visible;
  transform: translatey(0);
}
nav.template-main-menu > ul > li:hover ul.dropdown-menu-col-2 {
  opacity: 1;
  visibility: visible;
  transform: translatey(0);
}
nav.template-main-menu > ul > li:hover .template-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translatey(0);
}
.header-menu.menu-layout1 {
  background-color: transparent;
  padding: 4px 0px 8px 0;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout1 {
    padding: 10px 10px;
  }
}
.header-menu.menu-layout1 nav.template-main-menu > ul > li > a {
  padding: 15px 20px;
}
.header-menu.menu-layout1 nav.template-main-menu > ul > li .no-padding {
  padding-left: 3px;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout1 nav.template-main-menu > ul > li > a {
    padding: 20px 10px;
  }
}
.rt-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  left: 0;
  right: 0;
  background-color: #ffffff;
}
.rt-sticky nav.template-main-menu > ul > li > a {
  padding: 30px 15px;
}
.sticky-on.sticky #navbar-wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}
.header-menu.menu-layout1.rt-sticky {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 150;
  background-color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  padding-bottom: 0;
}
.header-menu.menu-layout1.rt-sticky nav.template-main-menu > ul > li > a {
  padding: 35px 18px;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout1.rt-sticky nav.template-main-menu > ul > li > a {
    padding: 20px 10px;
  }
}
.header-action-layout1 .action-list {
  display: flex;
  align-items: center;
}
.header-action-layout1 .action-item {
  color: #212121;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-action-layout1 .action-item {
    margin-right: 20px;
  }
}
.header-action-layout1 .action-item:last-child {
  margin-right: 0;
}
.header-action-layout1 .action-item-style {
  color: #212121;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
}
.header-action-layout1 .action-item-style:last-child {
  margin-right: 0;
}
.header-action-layout1 .left-right-btn {
  position: relative;
}
.header-action-layout1 .left-right-btn a:hover .item-count {
  color: var(--rt-primary-color);
  background-color: #fff;
}
.header-action-layout1 .left-right-btn a i {
  font-size: 16px;
  border: 1px solid #d1e5e0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.header-action-layout1 .left-right-btn a i:before {
  transition: all 0.3s ease-in-out;
  color: #960100;
}
.header-action-layout1 .left-right-btn a i:hover {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.header-action-layout1 .left-right-btn a i:hover:before {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
  color: #ffffff;
}
.header-action-layout1 .left-right-btn a .icon-round:before {
  color: var(--rt-primary-color);
}
.header-action-layout1 .left-right-btn a .item-count {
  color: #ffffff;
  font-size: 12px;
  background-color: var(--rt-primary-color);
  border: none;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -10px;
  right: -3px;
}
.header-action-layout1 .wish-btn {
  position: relative;
}
.header-action-layout1 .wish-btn a:hover .item-count {
  color: var(--rt-primary-color);
  background-color: #fff;
}
.header-action-layout1 .wish-btn a i {
  color: var(--rt-primary-color);
  font-size: 16px;
  border: 1px solid #d1e5e0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.header-action-layout1 .wish-btn a i:before {
  transition: all 0.3s ease-in-out;
  color: #960100;
}
.header-action-layout1 .wish-btn a i:hover {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.header-action-layout1 .wish-btn a i:hover:before {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
  color: #ffffff;
}
.header-action-layout1 .wish-btn a .icon-round:before {
  color: var(--rt-primary-color);
}
.header-action-layout1 .wish-btn a .item-count {
  color: #ffffff;
  font-size: 12px;
  background-color: var(--rt-primary-color);
  border: none;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -10px;
  right: -3px;
}
.header-action-layout1 .my-account i {
  color: #557C70;
  font-size: 16px;
  /* border: 1px solid #d1e5e0; */
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.header-action-layout1 .my-account i:before {
  transition: all 0.3s ease-in-out;
  color: #557C70;
}
.header-action-layout1 .my-account i:hover {
  color: #333;
  background-color: #fff;
}
.header-action-layout1 .my-account i:hover:before {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
  color: #070707;
}
.header-action-layout1 .my-account .icon-round:before {
  color: var(--rt-primary-color);
}
@media only screen and (max-width: 1199px) {
  .header-action-layout1 .my-account {
    margin-right: 0;
  }
}
.header-action-layout1 .my-account2 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .header-action-layout1 .my-account2:before {
    display: none;
  }
}
.header-action-layout1 .my-account2 i {
  color: var(--rt-primary-color);
  font-size: 16px;
  border: 1px solid #d1e5e0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.header-action-layout1 .my-account2 i:before {
  transition: all 0.3s ease-in-out;
  color: var(--rt-primary-color);
}
.header-action-layout1 .my-account2 i:hover {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.header-action-layout1 .my-account2 i:hover:before {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
  color: #ffffff;
}
.header-action-layout1 .listing-button {
  position: relative;
}
.header-action-layout1 .listing-button:hover .listing-btn span {
  background-color: var(--rt-primary-color);
}
.header-action-layout1 .listing-button:hover .listing-btn span i {
  transform: rotate(180deg);
}
.header-action-layout1 .listing-button:hover .listing-btn .item-text::after {
  visibility: visible;
  opacity: 1;
  width: 100%;
  left: 0;
}
.header-action-layout1 .listing-button .listing-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #557C70;
}
.header-action-layout1 .listing-button .listing-btn span {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 7px 15px;
  border-radius: 30px 0px 0px 30px;
}
@media only screen and (max-width: 1199px) {
  .header-action-layout1 .listing-button .listing-btn span {
    display: none;
  }
}
.header-action-layout1 .listing-button .listing-btn span i {
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.header-action-layout1 .listing-button .listing-btn .item-text {
    color: #557C70;
    background-color: transparent;
    padding: 6px 34px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    padding-right: 23px;
    font-size: 16px;
}
.header-action-layout1 .listing-button .listing-btn .item-text::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 0px 30px 30px 0px;
  z-index: -1;
}
.header-action-layout1 .listing-button2:after {
  left: 208px;
  bottom: -22px;
}
@media only screen and (max-width: 1199px) {
  .header-action-layout1 .listing-button2:after {
    display: none;
  }
}
.header-action-layout4 {
  justify-content: flex-end;
}
.header-menu.menu-layout3 {
  position: relative;
  z-index: 99;
  padding: 0;
}
.header-menu.menu-layout3:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e3e6e6;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.header-menu.menu-layout2 {
  background-color: #ffffff;
  position: relative;
  z-index: 1000;
  padding: 0;
}
.header-menu.menu-layout2:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  opacity: 0.2;
  position: absolute;
  bottom: 86px;
  left: 0;
  z-index: -1;
}
.header-menu.menu-layout2.rt-sticky {
  position: fixed;
  background-color: #fff;
  z-index: 100;
  left: 0;
  right: 0;
}
.header-menu.menu-layout2 nav.template-main-menu > ul > li > a {
  padding: 35px 18px;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout2 nav.template-main-menu > ul > li > a {
    padding: 30px 10px;
  }
}
.header-menu.menu-layout2.rt-sticky nav.template-main-menu > ul > li > a {
  padding: 31px 15px;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout2.rt-sticky nav.template-main-menu > ul > li > a {
    padding: 30px 10px;
  }
}
.header-menu.menu-layout2 nav.template-main-menu > ul > li .no-padding {
  padding-left: 3px;
}
.header-bottombar-area {
  padding: 15px 0px 20px;
}
.header-bottombar-area .rent-form .form-check-box {
  display: flex;
  align-items: center;
}
.header-bottombar-area .rent-form .form-check-box .checkbox-button .checkbox-button__label {
  font-size: 14px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #878c9f;
}
.header-bottombar-area .map-form {
  margin-bottom: 0;
}
.header-bottombar-area .map-form .control-style .form-control {
  height: 46px;
  border: 1px solid #e3e6e6;
  color: var(--rt-primary-color);
}
.header-bottombar-area .map-form .control-style .form-control:focus {
  box-shadow: none;
  outline: 0;
}
.header-bottombar-area .map-form .control-style ::placeholder {
  color: #878c9f;
  font-size: 15px;
  font-weight: 400;
}
.header-bottombar-area .map-form .rld-single-select .single-select {
  height: 46px;
  line-height: 46px;
  border: 1px solid #e3e6e6;
}
.header-bottombar-area .rld-main-search2 {
  box-shadow: none;
  border-radius: 0px;
  margin-bottom: 0px;
  background-color: transparent;
  position: relative;
  margin-right: 0px;
}
.header-bottombar-area .rld-main-search2 .dropdown-filter {
  cursor: pointer;
  position: relative;
  text-align: center;
  display: inline-block;
  margin: 0px 5px 0px 0px;
  border: 0;
  font-size: 20px;
}
.header-bottombar-area .rld-main-search2 .dropdown-filter:after {
  display: none;
}
.header-bottombar-area .rld-main-search2 .filter-button .filter-btn1 {
  padding: 10px 25px;
}
.header-bottombar-area .rld-main-search2 .filter-button .search-btn {
  color: #ffffff;
  border: none;
  margin-right: 0;
  background-color: var(--rt-primary-color);
  transition: all 0.3s ease-in-out;
}
.header-bottombar-area .rld-main-search2 .filter-button .search-btn:hover {
  background-color: var(--rt-primary-dark);
}
.header-bottombar-area .rld-main-search2 .filter-button .search-btn:after {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .header-bottombar-area .rld-main-search2 .filter-button .search-btn span {
    display: none;
  }
}
.header-bottombar-area .rld-main-search2 .filter-button .search-btn i {
  margin-left: 5px;
}
.header-bottombar-area .rld-main-search2 .filter-button .reset-btn {
  margin-right: 0;
}
.header-bottombar-area .rld-main-search2 .filter-button .reset-btn:hover i {
  color: #ffffff;
}
.header-bottombar-area .rld-main-search2 .filter-button .reset-btn i {
  margin-left: 5px;
  transition: all 0.4s ease;
}
.header-bottombar-area .testing-explore {
  position: relative;
}
.header-bottombar-area .explore__form-checkbox-list.full-filter {
  top: initial;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.header-bottombar-area .explore__form-checkbox-list.full-filter.filter-block {
  margin-top: 0;
}
.header-menu.menu-layout3.rt-sticky {
  position: fixed;
  background-color: #ffffff;
  box-shadow: none;
  z-index: 100;
  left: 0;
  right: 0;
  border-bottom: 0;
}
.header-menu.menu-layout3.rt-sticky nav.template-main-menu > ul > li > a {
  padding: 31px 15px;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout3.rt-sticky nav.template-main-menu > ul > li > a {
    padding: 30px 10px;
  }
}
.header-menu.menu-layout3 nav.template-main-menu > ul > li > a {
  padding: 35px 18px;
}
@media only screen and (max-width: 1199px) {
  .header-menu.menu-layout3 nav.template-main-menu > ul > li > a {
    padding: 30px 10px;
  }
}
.header-menu.menu-layout3 nav.template-main-menu > ul > li .no-padding {
  padding-left: 3px;
}
.header-menu.menu-layout4 {
  padding: 0;
}
.header-menu.menu-layout4.rt-sticky {
  padding-top: 0;
}

@media only screen and (min-width: 992px) {
  .hide-on-desktop-menu {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .hide-on-mobile-menu {
    display: none;
  }
}
.middle-bar.for-mobile-menu {
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2px 15px;
}
.middle-bar.for-mobile-menu ul li {
  margin: 3px 8px;
}
.search-wrap.for-mobile-menu form {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-wrap.for-mobile-menu input {
  color: #000000;
  border: 0;
  height: 40px;
  padding: 5px 15px;
  background-color: transparent;
}
.search-wrap.for-mobile-menu input:focus {
  outline: none;
}
.search-wrap.for-mobile-menu .search-btn {
  height: 40px;
  padding: 5px 20px;
  background-color: transparent;
  border: 0;
  color: #818284;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search-wrap.for-mobile-menu .search-btn:focus {
  outline: none;
}
.search-wrap.for-mobile-menu .search-btn:hover {
  color: var(--rt-primary-dark);
}
.search-wrap.for-mobile-menu input::-webkit-input-placeholder {
  color: #878c9f;
  font-size: 15px;
  font-weight: 400;
}
.search-wrap.for-mobile-menu input::-moz-placeholder {
  color: #878c9f;
  font-size: 15px;
  font-weight: 400;
}
.search-wrap.for-mobile-menu input:-moz-placeholder {
  color: #878c9f;
  font-size: 15px;
  font-weight: 400;
}
.search-wrap.for-mobile-menu input:-ms-input-placeholder {
  color: #878c9f;
  font-size: 15px;
  font-weight: 400;
}
.btn-ghost.for-mobile-menu {
  border: 1px solid var(--rt-primary-color);
  padding: 8px 20px;
  font-size: 16px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  border-radius: 4px;
  color: var(--color_primary);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-ghost.for-mobile-menu:hover {
  background-color: var(--color_primary);
  color: #ffffff;
}
.action-btn.for-mobile-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.action-btn.for-mobile-menu a {
  color: var(--color_text_heading);
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.action-btn.for-mobile-menu a:after {
  content: "|";
  padding: 0 5px 0 8px;
}
.action-btn.for-mobile-menu a:last-child:after {
  display: none;
}
.action-btn.for-mobile-menu a:hover {
  color: var(--color_primary);
}
.offscreen-navigation .menu > li {
  border-bottom: 1px solid #e9e9e9;
}
.offscreen-navigation .menu > li:last-child {
  border-bottom: 0;
}
.offscreen-navigation .menu > li > a {
  background-color: #f3f3f3;
  font-size: 15px;
  padding: 12px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation .menu > li > a:hover {
  background-color: #f8f8f8;
}
.offscreen-navigation .menu > li > a.opened {
  background-color: #f8f8f8;
}
.offscreen-navigation .sub-menu {
  display: none;
  background-color: #ffffff;
}
.offscreen-navigation .sub-menu li a {
  border-top: 1px solid #f1f1f1;
  padding-left: 50px;
  font-size: 14px;
  padding-top: 7px;
  padding-bottom: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation .sub-menu li a:hover {
  background-color: rgba(0, 113, 220, 0.05);
}
.offscreen-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offscreen-navigation ul li > a {
  display: block;
  position: relative;
  color: #000000;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li > a:hover {
  color: var(--color_primary);
}
.offscreen-navigation ul li.menu-item-has-children > a:after {
  color: #999999;
  content: "\f067";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  right: 20px;
  position: absolute;
  font-size: 12px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li.menu-item-has-children > a:before {
  color: #999999;
  content: "\f068";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  right: 20px;
  position: absolute;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li.menu-item-has-children > a.opened:after {
  opacity: 0;
  visibility: hidden;
}
.offscreen-navigation ul li.menu-item-has-children > a.opened:before {
  opacity: 1;
  visibility: visible;
}
.rt-slide-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    transition: .5s cubic-bezier(.77,0,.175,1);
    overflow: auto;
    background: #95bada;
}
.rt-slide-nav.open {
    left: 0;
    background: #f3f3f3;
}
@media (max-width: 991px) {
  .rt-header-menu {
    padding: 0px;
    border-bottom: 1px solid rgba(81, 81, 81, 0.15);
    transition: all 0.5s;
  }
  .rt-header-menu.rt-sticky {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    padding-top: 0;
    z-index: 150;
    background-color: #0e2e50;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
}
@media (min-width: 992px) {
  .rt-header-menu {
    display: none;
  }
}
.mean-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px 15px;
  background-color: rgb(255 255 255 / 80%);
}
.mean-bar-style-2 {
  background-color: rgba(0, 0, 0, 0.8);
}
body .sidebarBtn {
  display: none;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar {
  background: #402785;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar:nth-child(2),
body .sidebarBtn .bar:nth-child(3) {
  width: 25px;
  margin-left: 5px;
}
body .sidebarBtn .bar:last-child {
  margin-bottom: 0;
}
body.slidemenuon .sidebarBtn .bar:nth-child(2),
body.slidemenuon .sidebarBtn .bar:nth-child(3) {
  opacity: 0;
}
body.slidemenuon .sidebarBtn .bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
body.slidemenuon .sidebarBtn .bar:nth-child(4) {
  -webkit-transform: rotate(-45deg) translate(8px, -8px);
  -ms-transform: rotate(-45deg) translate(8px, -8px);
  transform: rotate(-45deg) translate(8px, -8px);
}
.mean-bar--right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 320px) {
  .mean-bar--right {
    min-width: 100px;
  }
}
.mean-bar--right .actions a {
  color: #100f0f;
  font-size: 20px;
}
.offscreen-navigation    nav > ul {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(-103%);
}
.offscreen-navigation    nav > ul > li {
        padding: 0px 5px 0px 10px;
        margin: 0;
        border-bottom: 1px solid var(--bgcolor);
    }
.temp-logo img {
    width: 160px;
}

ul.contact {
    padding: 0;
}
ul.contact li {
    display: inline-block;
    margin-right: 20px;
}
ul.contact li a {
    font-size: 20px;
    text-decoration: none;
}
ul.contact li a i {
    color: #f76713;
    margin-right: 5px;
}

.offer-list {
    box-shadow: var(--bs-box-shadow);
    padding: 20px 14px;
    width: 100%;
    display: flex;
}
.offer-list h6{
  font-size: 18px;
  margin-bottom: 10px;
}
.offer-list span{
  float: right;
}
.left-side {
    flex: auto;
}
.offer-list span {
    float: right;
    width: 50px;
    height: 50px;
    background-color: #e38b57;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
}
.offer-list span img{
  width: 35px;
}

/*start detail page*/
.deatil-banner {
    padding: 50px 0;
}
.logo-icons {
    width: 100%;
    float: left;
}
.logo-icons img{
height: 50px;
float: left;
margin-bottom: 20px;
}
.logo-icons ul {
    float: right;
    padding-left: 0;
    margin-left: 0;
}
.logo-icons ul li {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #9a9797;
    position: relative;
}
.logo-icons ul li:after {
    content: '';
    position: absolute;
    top: 15%;
    left: -13px;
    width: 1px;
    height: 70%;
    background-color: #9a9797;
}
.logo-icons ul li:first-child:after{
  display: none;
}
.reviewa {
    margin-bottom: 20px;
    background-color: #fc6a14;
    border-radius: 5px;
    padding: 3px 10px;
    color: #fff;
    display: inline-block;
}
.deatil-banner .theme-btn{
  width: auto;
      text-decoration: none;

}
.others {
    padding: 0;
    /* display: inline-block; */
}
.others li{
  display: inline-block;
  width: 50%;
  float: left;
}
.right-image img {
    border-top-left-radius: 84px;
    border-top-right-radius: 84px;
    border-bottom-right-radius: 84px;
    border-bottom-left-radius: 200px;
    height: 390px;
    background-color: #fffaf7;
    padding: 10px;
}
.right-image {
    text-align: center;
    position: relative;
   
}
.video-icon {
    width: 80px;
    height: 80px;
    background-color: #dddddd;
    border-radius: 50%;
    line-height: 80px;
    font-size: 33px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #26295a;
}


.et-hero-tabs {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.et-hero-tabs.sticky-tab {
    /* position: fixed; */
    top: 0;
    width: 100%;
    z-index: 100;
    left: 0;
    right: 0;
    height: auto;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background: #fff;
    z-index: 10;
}
.pos-fix {
    position: sticky !important;
    height: 50px !important;
    top: 0 !important;
}
.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
}
.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}
.et-hero-tab.active {
    color: #26295a;
    background: rgb(220 221 225);
    transition: all 0.5s ease;
    font-weight: 600;
    font-size: 18px;
}
.brochure-banner {
    background-color: #26295a;
    padding: 40px 0;
}
.brochure-banner h3
{
  color: #f2f2f2;
  margin-bottom: 0;
  font-size: 27px;
}
.float-right{
  float: right;
}
.author {
  display: inline-flex;
  width: 70px;
  margin-right: 10px;

}
.designation{
      display: inline-block;
    vertical-align: middle;
}
.main-content-area {
    padding: 20px 0 40px;
}
.main-content-area h5 {
    font-size: 20px;
}

.highlight-slider .owl-carousel .owl-nav .owl-prev,
.highlight-slider   .owl-carousel .owl-nav .owl-next,
.highlight-slider   .owl-carousel .owl-dot {
    font-family: 'Material Icons';
    font-size: 4rem;
}
.highlight-slider .owl-nav {height:0;margin:0;}
.highlight-slider .owl-carousel .owl-nav .owl-prev:before{
    font-family: "Material Icons";
    content: "\E5CB";
    font-size: 2rem;
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: 0%;
    background-color: #fff;
    transform: translateY(-50%);
    height: auto;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.1),
                 0px 0px 8px rgba(0,0,0,0.05),
                 0px 0px 12px rgba(0,0,0,0.05);
}
.highlight-slider .owl-carousel .owl-nav .owl-next:after{
    font-family: "Material Icons";
    content: "\E5CC";
    font-size: 2rem;
    margin-right: 0;
    position: absolute;
    top: 40%;
    top: 50%;
    right: 0%;
    background-color: #fff;
    transform: translateY(-50%);
    right: 0px;
    height: auto;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.1),
                 0px 0px 8px rgba(0,0,0,0.05),
                 0px 0px 12px rgba(0,0,0,0.05);
}


.highlight-slider {
    padding: 40px 0;
}
.hight-item {
    vertical-align: middle;
    background-color: #ffe4d4;
    text-align: center;
    padding: 20px;
    height: 200px;
    align-items: center;
    /* display: flex; */
    /* flex-wrap: wrap; */
    padding-top: 60px;
}
.hight-item i {
    width: 50px;
    background-color: #26295a75;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 10px;
}
.branch{
  padding:  10px 0 ;
}
.branches .card {
    padding: 20px;
    overflow: hidden;
}
.main-content-area h2 {
    font-size: 30px;
    color: #26295a;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(248 248 255);
}
.branches .card h4{
  font-size: 18px;
  margin-bottom: 10px;
}
.branches .card  p{
  margin-bottom: 5px;
  font-size: 13px;
}
.branches .card  p i{
  color: #fc6a14;
}
.branches .card  p strong{
  color: #666;
  font-weight: 500;
  margin-bottom: 5px;
}

/*start courses*/
.bg-gray{
  background-color: #f4f4f9;
}
.filters {
    padding: 20px;
}
.filters .nav-item{
  border-bottom: 1px solid #ddd;
  background-color: transparent;
}
.filters .nav-item button{
  background-color: transparent!important;
  color: #333!important;
  border-radius: 0;
}
.filters .nav-item .active{
  color: #fc6a14!important;
  border-bottom: 2px solid #fc6a14;
}
.filter-box.card>hr {
    margin-right: 0;
    margin-left: 0;
    margin: 0;
}
.applied {
    padding: 20px;
}
.applied span{
  font-weight: 500;
}
.apllied-btn {
    border: 1px solid #ddd;
    padding: 5px 14px;
    font-size: 13px;
    text-decoration: none;
    margin-left: 10px;
}
.ml-2{
  margin-left: 10px;
}
.card.courses-listing {
    padding: 20px;
}
.gray-card {
    background-color: #f6f6f6;
    width: 100%;
    float: left;
    padding: 20px;
    border-radius: 5px;
}
.float-left{
  float: left;
}
.courses-listing h6{
  font-size: 16px;
}
.course-filed {
    padding-left: 0;
    width: 100%;
    float: left;
}
.course-filed li {
    width: 18%;
    display: inline-block;
    padding: 0 5px;
}
.course-filed li span {
    font-size: 12px;
    line-height: 11px;
}
.course-filed p {
    font-weight: 500;
}
.btn-all a {
    vertical-align: middle;
    margin-right: 10px;
    color: #26295a;
}
.btn-all .theme-btn {
    font-size: 13px;
    padding: 8px 12px;
    text-decoration: none;
    margin-top: 0;
    border-radius: 4px;
    line-height: 21px;
    color: #fff;
}
.brochure-modal .modal-content{
  padding: 20px;
}
.brochure-modal .modal-content .form-group{
  margin-bottom: 10px;
}
.brochure-modal .modal-content .form-group label{
  font-size: 16px;
  margin-bottom: 5px;
}
.brochure-modal .modal-content .form-group .form-select {
    background-color: #f2f2f2;
    border-radius: 0;
    height: 46px;
}
.brochure-modal .modal-content  .btn-close{
  position: absolute;
  top: 0;
  right: 0;
}
.placement-box {
    padding: 20px;
}



.gallery-item {
  display: block;
  position: relative;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 75%;
  margin: auto;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
    width: 75%;
    background-color: #fff;
    padding: 60px;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 2s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.gallery-item i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    display: none;
}
.gallery-item:hover i{
  display: block;
}
.gallery-item:hover:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000005e;
  transition: 0.3s ease-in-out;

}

.review {
    padding: 40px 0;
}
.card.rating-box {
  padding: 40px 0;
}
.rating-box ul{
  padding: 0;
  margin: 0;
}
.rating-box ul li{
  display: inline-block;
}
.rating-box ul li i{
  color: #f5a041;
}
.rating-box h4{
  font-size: 30px;
  margin-bottom: 0;
  line-height: 40px;
}
.rating-box  p{
  font-weight: 600;
}
.card.rating-box ul{
  margin-bottom: 10px;
}
.rating-box  span{
  margin-left: 10px;
}
.rating-box a{
  color: blue;
}
 progress {
  width: 90%;
  height: 10px;
  border-radius: 50px;
  background-color: #ddd;
  transition: width 300ms ease;
}
progress[value]::-webkit-progress-bar {
  width: 90%;
  height: 10px;
  border-radius: 50px;
  background-color: #ddd;
  transition: width 300ms ease;
}
progress[value]::-webkit-progress-value {
  width: 0;
  border-radius: 50px;
  background-color: #f5a041;
  transition: width 300ms ease;
}

.updates {
    background: linear-gradient(271deg, #fee6c2, #e2e1f2);
    padding: 40px 0;
    margin-top: 40px;
}
.updates .card {
    padding: 20px;
}


.faculity {
    padding-top: 40px;
}
.faculity.owl-carousel .owl-nav .owl-prev,
.faculity  .owl-carousel .owl-nav .owl-next,
.faculity  .owl-carousel .owl-dot {
    font-family: 'Material Icons';
    font-size: 4rem;
}
.faculity .owl-nav {height:0;margin:0;}
.faculity .owl-carousel .owl-nav .owl-prev:before{
    font-family: "Material Icons";
    content: "\E5CB";
    font-size: 2rem;
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: 0%;
    background-color: #fff;
    transform: translateY(-50%);
    height: auto;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.1),
                 0px 0px 8px rgba(0,0,0,0.05),
                 0px 0px 12px rgba(0,0,0,0.05);
}
.faculity .owl-carousel .owl-nav .owl-next:after{
    font-family: "Material Icons";
    content: "\E5CC";
    font-size: 2rem;
    margin-right: 0;
    position: absolute;
    top: 40%;
    top: 50%;
    right: 0%;
    background-color: #fff;
    transform: translateY(-50%);
    right: 0px;
    height: auto;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.1),
                 0px 0px 8px rgba(0,0,0,0.05),
                 0px 0px 12px rgba(0,0,0,0.05);
}


.updates .card p strong{
    font-weight: 500;
}

.faculty-item {
    text-align: center;
    background-color: #f0f7ff;
    padding: 60px 0;
    height: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.faculty-item img {
    width: 40% !important;
    margin: auto;
    margin-bottom: 20px;
    max-width: 100%;
}
.video-item iframe {
    width: 100%;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
  background-color: #26295a!important;
}
.checkout-list{
  padding: 0;
  margin: 0;
}
.checkout-list li {
    font-size: 16px;
    margin-bottom: 15px;
}
.checkout-list span{
  float: right;
  font-weight: 500;
  font-size: 20px;
}
.theme-btn:hover{
  color: #fff;

}
.p-40{
  padding: 40px 0!important;
}
.category-title p {
    font-size: 16px;
    line-height: 23px;
}

/*start footer*/
.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}


.main_footer {
    background-color: #ebebf5;
}
.footer-category ul {
    padding-left: 0;
}
.footer-about p{
  padding-right: 40px;
}
.footer-about p {
    padding-right: 20%;
    font-size: 13px;
}
.footer-category li {
    margin-bottom: 10px;
}
.footer-category li a{
  text-decoration: none;
  font-size: 16px;
}
.footer-category h5{
  font-size: 20px;
}
.social a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #9596b0;
    color: #333;
    text-align: center;
    margin-left: 0;
    border: 1px solid #5b5b74;
    margin-right: 8px;
    transition: 0.3s ease-in-out;
}
.social a:hover{
   transition: 0.3s ease-in-out;
   background-color: #fff;

}
.social a i{
  margin-left: 0;

}
.social a:hover i{
   color: #5b5b74;
}
.copyright {
    text-align: center;
}
.footer-category ul i {
    margin-right: 7px;
    font-size: 13px;
}
.year-choose select{
  width: 20%;
}
.highlight-slider .owl-carousel.owl-loaded {
    display: flex;
    justify-content: center;
}
.ranked i {
    font-size: 20px;
    line-height: 29px;
    color: #959595;
}

.ranked .active i, .ranked li:hover i{
  color: red;
}
.logo-icons .active i, .logo-icons li:hover{
  color: green;
}
.rating-modal .btn-close{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
}
.avtar-modal 
.image {
  opacity: 0.8;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-position: top center;
  background-color: gray;
  display: inline-block;
  margin: 10px;
  max-width: 100%;
}
.avtar-modal  .image:hover {
  opacity: 1;
}

.avtar-modal  .radio-img > input {
  display: none;
}
.avtar-modal  .radio-img > .image {
  cursor: pointer;
  border: 2px solid black;
}
.avtar-modal  .radio-img > input:checked + .image {
  border: 2px solid orange;
}


/*start contact*/


.contacts-form {
    padding: 40px;
    box-shadow: 0 0 20px 3px rgba(0,0,0,.05);
    margin-bottom: 30px
}

.contacts-form h3 {
    font-size: 30px;
    margin-bottom: 20px
}

.contacts-form .form-group {
    margin-bottom: 25px
}

.contacts-form .form-group label {
    margin-bottom: 7px
}

.contacts-form .form-group .form-control {
    background-color: #f4f6f9;
    border: 1px solid transparent
}

.contacts-form .form-group .form-control:focus {
    border: 1px solid #cf651d
}

.contacts-form .list-unstyled {
    color: #cf651d;
    margin-top: 7px
}

.contacts-form .text-danger {
    color: #cf651d;
    font-size: 16px;
    margin-top: 7px
}

.contacts-form .form-check .form-check-input {
    border-radius: 0
}

.contacts-form .form-check .form-check-input:checked {
    background-color: #cf651d;
    border-color: #cf651d
}

.contacts-form .form-check .form-check-input:focus {
    box-shadow: none
}

.contacts-form .default-btn {
    width: 100%
}

.contact-and-address h2 {
    font-size: 30px;
    margin-bottom: 20px
}

.contact-and-address p {
    margin-bottom: 20px
}

.contact-and-address .contact-and-address-content {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 10px
}

.contact-and-address .contact-and-address-content .contact-card {
    text-align: center;
    padding: 30px;
    background-color: #f4f6f9;
    margin-bottom: 30px
}

.contact-and-address .contact-and-address-content .contact-card .icon {
    font-size: 35px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    border: 1px solid #cf651d;
    color: #cf651d;
    text-align: center;
    border-radius: 100%;
    margin: auto;
    margin-bottom: 15px
}

.contact-and-address .contact-and-address-content .contact-card h4 {
    font-size: 22px;
    margin-bottom: 15px
}

.contact-and-address .contact-and-address-content .contact-card p {
    margin-bottom: 10px
}

.contact-and-address .contact-and-address-content .contact-card p a {
    color: #555;
    transition: all ease .5s
}

.contact-and-address .contact-and-address-content .contact-card p a:hover {
    color: #cf651d
}

.contact-and-address .social-media {
    margin-bottom: 30px
}

.contact-and-address .social-media h3 {
    font-size: 24px;
    margin-bottom: 15px
}

.contact-and-address .social-media p {
    margin-bottom: 25px
}

.contact-and-address .social-media ul {
    padding-left: 0;
    margin-bottom: 0
}

.contact-and-address .social-media ul li {
    margin-right: 10px;
    list-style-type: none;
    display: inline-block
}

.contact-and-address .social-media ul li a {
    height: 35px;
    width: 35px;
    line-height: 37px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    background-color: #eee;
    color: #cf651d;
    transition: all ease .5s
}

.contact-and-address .social-media ul li a:hover {
    background-color: #cf651d;
    color: #fff;
    transform: translateY(-5px)
}
.contact-us-area {
    padding: 40px 0;
}
.account-details-form {
    margin-top: 10px;
}

/*start gallery*/
.gallery-slider .nav-pills{
  justify-content: center;
}
.gallery-slider .nav-pills .nav-link{
  padding: 8px 80px;
  border-radius: 0;
  color: #26295a!important;

}
.gallery-slider .nav-pills .nav-link.active, .gallery-slider .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #26295a;
}

.gallery-slider .item {
  background: #0c83e7;
  padding: 0px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

.gallery-slider .item {
  background: #C9C9C9;
  padding: 10px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}
.gallery-slider .item h1 {
  font-size: 18px;
  margin-bottom: 0;
}
.gallery-slider .current .item {
  background: #fc6a14;
}

.gallery-slider .owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}
.gallery-slider .owl-theme .owl-nav [class*=owl-] {
  transition: all 0.3s ease;
}
.gallery-slider .owl-theme .owl-nav [class*=owl-].disabled:hover {
  background-color: #D6D6D6;
}

.gallery-slider .owl-theme {
  position: relative;
}
.gallery-slider .owl-theme .owl-next, .gallery-slider .owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}
.gallery-slider .owl-theme .owl-prev {
  left: 10px;
}
.gallery-slider .owl-theme .owl-next {
  right: 10px;
}