.evo-calendar {
  position: relative;
  width: 100%;
  /* box-shadow: 0 10px 50px -20px #8773c1; */
  overflow: hidden;
  z-index: 1; }

.calendar-sidebar {
  position: absolute;
  margin-top: 0;
  width: 50%;
  height: 100%;
  float: left;
  background-color: #ed3223;
  color: #fff;
  z-index: 1;
  box-shadow: 5px 0 18px -3px #1d2338;
  transition: all 0.3s ease;
  transform: translateX(0);
  display: none; }

.sidebar-hide .calendar-sidebar {
  transform: translateX(-100%);
  box-shadow: none; }

.calendar-sidebar > span#sidebarToggler {
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: 0;
  right: 1px;
  transform: translate(100%, 0);
  background-color: #8773c1;
  padding: 10px;
  cursor: pointer;
  box-shadow: 5px 0 18px -3px #8773c1; }

.calendar-sidebar > .calendar-year {
  padding: 11px;
  text-align: left; }

.calendar-sidebar > .calendar-year > p {
  margin: 0;
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: bold; }

.calendar-sidebar > .calendar-year > button.icon-button {
  display: inline-block;
  width: 20px;
  height: 20px; }

.calendar-sidebar > .calendar-year > button.icon-button > span {
  display: inline-block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 8px;
  height: 8px; }

.calendar-sidebar > .calendar-year > img[year-val="prev"] {
  float: left; }

.calendar-sidebar > .calendar-year > img[year-val="next"] {
  float: right; }

.calendar-table th > button.icon-button {
  display: inline-block;
  width: 20px;
  height: 20px; }

.calendar-table th > button.icon-button > span {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 50%;
  height: 50%; }

.calendar-sidebar > .calendar-months {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.calendar-sidebar > .calendar-months > li {
  padding: 2px 15px;
  cursor: pointer;
  font-size: 12px; }

.calendar-sidebar > .calendar-months > li:hover, .calendar-sidebar > .calendar-months > li.active-month {
  background-color: #fff; }

.calendar-inner {
  padding: 20px 5px 0px;
  float: initial;
  width: 100%;
  margin-left: 0;
  background-color: #fff;
  box-shadow: 5px 0 18px -3px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease; }

.sidebar-hide .calendar-inner {
  width: 100%;
  margin-left: 0; }

.event-hide .calendar-inner {
  width: calc(100% - 200px); }

.event-hide.sidebar-hide .calendar-inner {
  width: 100%; }

.calendar-inner .calendar-table {
  border-collapse: collapse;
  font-size: 20px;
  width: 100%;
  user-select: none; }

.calendar-table th[colspan="4"] > div {
  text-align: left;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 16px;
  width: auto;
  color: #000;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.calendar-table th[colspan="4"] > div > button {
  width: 35px;
  height: 50px; }

.calendar-table th[colspan="4"] > div > p {
  margin: 4px 0 0; }

#sidebarToggler {
  text-align: right;
  width: 100%;
  display: none; }

#sidebarToggler button.icon-button {
  background-color: #d3d3d3;
  border-radius: 50px;
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 50px;
  padding: 5px 5px; }

#sidebarToggler button.icon-button > span {
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  padding: 0 15px;
  border-radius: 50px; }

#sidebarToggler button.icon-button > span.active {
  background: #ed3223; }

tr.calendar-header .calendar-header-day {
  padding: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  color: #033952;
  font-weight: bold; }

tr.calendar-header .calendar-header-day.header-day-active {
  color: #ed3223; }

tr.calendar-body .calendar-day {
  border: 1px solid #d3d3d3;
  border-collapse: collapse;
  padding: 0; }

tr.calendar-body .calendar-day .day {
  position: relative;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease, -webkit-transform 0.5s ease;
  transition: all 0.3s ease, -webkit-transform 0.5s ease;
  -o-transition: all 0.3s ease, transform 0.5s ease;
  transition: all 0.3s ease, transform 0.5s ease;
  transition: all 0.3s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  cursor: pointer;
  font-size: 12px;
  color: #000; }

tr.calendar-body .calendar-day .day.lastmonth_day, tr.calendar-body .calendar-day .day.nextmonth_day {
  color: #4b4b50; }

tr.calendar-body .calendar-day .day:hover {
  background-color: #d3d3d3; }

tr.calendar-body .calendar-day .day:active {
  transform: scale(0.9); }

tr.calendar-body .calendar-day .day.calendar-active, tr.calendar-body .calendar-day .day.calendar-active:hover {
  color: #5a5a5a;
  background-color: #639db7; }

tr.calendar-body .calendar-day .day.calendar-today {
  color: #fff;
  background-color: #808080; }

tr.calendar-body .calendar-day .day.calendar-today:hover {
  color: #fff;
  background-color: #000; }
/* yellow
 tr.calendar-body .calendar-day .day.calendar-today {
 color: #60afa1;
 background-color: #c3f2ea;
 }*/
/*tr.calendar-body .calendar-day .day.calendar-event {
 color: #e09d9d;
 background-color: #ffc1c1;
 }
 tr.calendar-body .calendar-day .day.calendar-event:hover{
 color: #fff;
 background-color: #e09d9d;
 }*/
/*tr.calendar-body .calendar-day .day.calendar-holiday {
 color: #e8af00;
 background-color: #ffe6a4;
 }
 tr.calendar-body .calendar-day .day.calendar-holiday:hover{
 color: #fff;
 background-color: #e8af00;
 }*/
tr.calendar-body .calendar-day .day[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  background-color: transparent;
  color: #b9b9b9; }

.calendar-events {
  position: relative;
  width: 100%;
  height: auto;
  /* max-height: 240px; */
  /* padding: 25px; */
  transition: all 0.3s ease;
  overflow: auto;
  z-index: -1;
  margin: 0 5px 0 25px; }

.calendar-events > div > p {
  font-size: 14px;
  color: #fff; }

.calendar-events > .event-header {
  display: none; }

.calendar-events > .event-header > p {
  font-size: 21px;
  font-weight: 600;
  color: #fff; }

#eventListToggler {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 0;
  background-color: #8773c1;
  padding: 10px;
  cursor: pointer;
  box-shadow: 5px 0 18px -3px #8773c1; }

#eventAddButton {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #8773c1;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  box-shadow: 5px 0 18px -3px #8773c1; }

#eventAddButton > img {
  width: 40px; }

.event-container {
  display: flex;
  width: 100%;
  border-radius: 0;
  margin-bottom: 7px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: default;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.event-container > .event-icon {
  position: relative;
  display: inline-block;
  padding: 20px;
  width: 60px;
  height: 60px;
  float: left; }

.event-container > .event-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 29px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: #eaeaea;
  z-index: -1; }

.event-container:last-child > .event-icon::before {
  height: calc(50% + 10px); }

.event-container:first-child > .event-icon::before {
  top: 50%;
  height: calc(50% + 10px); }

.event-container:only-child > .event-icon::before {
  opacity: 0; }

.event-container > .event-icon > img {
  width: 30px; }

.event-container > .event-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #fff; }

.event-container > .event-info > .event-time {
  display: inline-block;
  padding: 5px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 55px;
  font-weight: 900;
  color: #fff;
  min-width: 110px;
  text-align: center; }

.event-container > .event-info > p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #fff;
  max-width: 200px; }

.event-container > .event-link {
  width: 100%;
  margin-left: 12px; }

.event-container > .event-link > .event-summary > h5 {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff; }

.event-container > .event-link > .event-summary > p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #fff; }

.event-container > .event-link > a {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #ed3223;
  float: right; }

.event-indicator {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-100% + -5px));
  -ms-transform: translate(-50%, calc(-100% + -5px));
  transform: translate(-50%, calc(-100% + -5px));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.event-indicator > .type-bullet {
  display: inline-block;
  float: left;
  padding: 1px;
  margin: 3px 0 0; }

.event-indicator > .type-bullet > div.type-event, .event-indicator > .type-bullet > div.type-holiday, .event-indicator > .type-bullet > div.type-birthday {
  width: 5px;
  height: 5px;
  border-radius: 50%; }

.event-container > .event-icon > div.event-bullet-event, .event-container > .event-icon > div.event-bullet-holiday, .event-container > .event-icon > div.event-bullet-birthday {
  width: 100%;
  height: 100%;
  border-radius: 50%; }

.event-container > .event-icon > div.event-bullet-event, .event-indicator > .type-bullet > div.type-event {
  background-color: #ff7575; }

.event-container > .event-icon > div.event-bullet-holiday, .event-indicator > .type-bullet > div.type-holiday {
  background-color: #ffc107; }

.event-container > .event-icon > div.event-bullet-birthday, .event-indicator > .type-bullet > div.type-birthday {
  background-color: #3ca8ff; }

button.icon-button {
  border: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer; }

button.icon-button > span.bars {
  position: relative;
  width: 100%;
  height: 6px;
  display: block;
  background-color: #fff; }

button.icon-button > span.bars::before, button.icon-button > span.bars::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  display: block;
  background-color: #fff; }

button.icon-button > span.bars::before {
  top: -12px; }

button.icon-button > span.bars::after {
  bottom: -12px; }

button.icon-button > span.chevron-arrow-left {
  display: inline-block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 8px;
  height: 8px;
  transform: rotate(-225deg); }

button.icon-button > span.chevron-arrow-right {
  display: inline-block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg); }
/*tr.calendar-body .calendar-day .day.calendar-active {
 color: #7e57c2;
 background-color: #d5b2f6;
 }
 tr.calendar-body .calendar-day .day.calendar-active:hover {
 color: #fff;
 background-color: #7e57c2;
 }
 tr.calendar-body .calendar-day .day:hover,
 tr.calendar-body .calendar-day .day.calendar-active {
 border-color: #5a5a5a;
 }*/
/* 1199 */
@media only screen and (max-width: 1199px) {
  .calendar-inner {
    padding: 10px 10px 20px; }

  tr.calendar-body .calendar-day .day {
    /* padding: 5px;
     height: 40px;
     width: 40px; */
    font-size: 14px; }

  .event-indicator > .type-bullet > div.type-event, .event-indicator > .type-bullet > div.type-holiday, .event-indicator > .type-bullet > div.type-birthday {
    width: 8px;
    height: 8px;
    border-radius: 50%; }

  .calendar-sidebar > span#sidebarToggler, #eventListToggler {
    width: 50px;
    height: 50px; }

  button.icon-button > span.bars {
    height: 4px; }

  button.icon-button > span.bars::before, button.icon-button > span.bars::after {
    height: 4px; }

  button.icon-button > span.bars::before {
    top: -10px; }

  button.icon-button > span.bars::after {
    bottom: -10px; } }

.cal_loc_list a {
  font-size: 12px;
  color: #fff;
  margin-right: 16px; }

.calendar-events {
  width: 65% !important; }

.event-view-all {
  text-align: center; }

.event-view-all a {
  background-color: #ed3223;
  color: #fff;
  padding: 15px 30px;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 25px 0 0 0;
  display: inline-block; }

@media (max-width: 1199px) {
  .evo-calendar {
    display: block !important; }

  #sidebarToggler button.icon-button {
    margin: 0 !important; }

  .calendar-table th[colspan="4"] > div > p {
    font-size: 12px; }

  tr.calendar-header .calendar-header-day {
    font-size: 11px; }

  tr.calendar-body .calendar-day .day {
    padding: 20px; }

  .cal_loc_list {
    text-align: center; }

  .cal_loc_list a {
    white-space: nowrap;
    display: inline-block; }

  .calendar-events {
    width: 100% !important;
    text-align: center;
    padding: 30px 0px;
    margin: 0; }

  .event-container > .event-info > .event-time {
    font-size: 35px;
    min-width: 80px; }

  .event-container > .event-link > a {
    float: unset; }

  .event-view-all a {
    font-size: 16px;
    margin: 15px 0 0 0; } }
/* md */
@media only screen and (max-width: 991px) {
  .calendar-sidebar {
    width: 150px; }

  .calendar-inner {
    padding: 40px 10px 30px 10px; }

  .calendar-events {
    padding: 30px 0;
    text-align: left; } }
/* sm */
@media only screen and (max-width: 768px) {
  .sidebar-hide .calendar-inner, .sidebar-hide .calendar-events {
    width: 100%; }

  .event-hide .calendar-inner {
    width: calc(100% - 130px); }

  .event-hide .calendar-inner {
    transform: translateX(-100%);
    box-shadow: none; }

  .calendar-sidebar > .calendar-year > button.icon-button {
    width: 16px;
    height: 16px; }

  .calendar-sidebar > .calendar-year > button.icon-button > span {
    border-right-width: 2px;
    border-bottom-width: 2px; }

  .calendar-sidebar > .calendar-year > p {
    font-size: 22px; }

  .calendar-sidebar > .calendar-months > li {
    padding: 7px 15px; }

  .calendar-events > .event-header > p {
    margin: 0; } }
/* xs */
@media only screen and (max-width: 575px) {
  .calendar-inner {
    width: 100%;
    margin-left: 0;
    padding: 15px 5px 30px; }

  .sidebar-hide .calendar-inner, .event-hide .calendar-inner {
    width: 100%; }

  .calendar-inner, .calendar-events {
    width: 100%; }

  .event-hide .calendar-inner {
    transform: translateX(-100%);
    box-shadow: none; }

  tr.calendar-header .calendar-header-day {
    padding: 0 0 5px; }

  tr.calendar-body .calendar-day {
    /* padding: 5px; */ }

  tr.calendar-body .calendar-day .day {
    padding: 10px;
    /* width: 20px;
     height: 20px; */
    font-size: 10px; }

  .event-indicator {
    transform: translate(-50%, calc(-100% + -3px)); }

  .event-indicator > .type-bullet {
    padding: 1px; }

  .event-indicator > .type-bullet > div.type-event, .event-indicator > .type-bullet > div.type-holiday, .event-indicator > .type-bullet > div.type-birthday {
    width: 6px;
    height: 6px; }

  tr.calendar-body .calendar-day .day.calendar-active, tr.calendar-body .calendar-day .day.calendar-active:hover {
    border: none; }

  .event-indicator {
    transform: translate(-50%, 0px); }

  .calendar-sidebar > .calendar-year > p {
    font-size: 14px; }

  .calendar-sidebar > .calendar-year {
    padding: 5px 10px; }

  .calendar-sidebar > .calendar-months > li {
    padding: 2px 15px; } }

@media (max-width: 575px) {
  .event-container > .event-info > p {
    max-width: 100%;
    text-align: center;
    margin: auto; }

  .cc_event_calendar {
    overflow: hidden !important; } }

.event-items-wrap.no-events:before {
  content: 'There is no class in this location.';
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 500;
  color: #fff; }

.event-items-wrap.no-events .event-view-all {
  opacity: 1;
  transition: all ease 0.3s; }

.calendar-inner .calendar-table tr.calendar-body td.calendar-day span.city_name_in {
  color: #fff;
  display: block;
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center; }

.calendar-inner .calendar-table tr.calendar-body td.calendar-day .day.hidden-loc span.city_name_in {
  display: none !important; }

@media (max-width: 767px) {
  /* display: none !important; */
    .calendar-inner .calendar-table tr.calendar-body td.calendar-day span.city_name_in {
      font-size: 7px; } }

* {
  outline: none !important; }

a:hover {
  text-decoration: none;
  color: #68acfb;
  box-shadow: none; }

body {
  font-family: 'Open Sans';
  color: #464646;
  font-size: 16px; }

p {
  font-family: 'Open Sans'; }

section {
  padding: 0px; }

#xact_header {
  width: 100%; }

#xact_header .abv_hdr.container-fluid {
  background-color: #ed3223;
  padding: 5px 15px; }

#xact_header .xc_nav_container {
  padding: 30px 2vw; }

.logo_area img {
  width: 30vw; }

.navbar-nav li a {
  color: #afafaf;
  font-size: 1.1vw;
  font-weight: 600;
  font-family: 'Open Sans'; }

#mainmenu li.nav-item {
  padding: 0px 8px; }

#mainmenu li.active a, #mainmenu li a:hover {
  color: #ed3223; }

.hdr_cnt_s > span > i {
  color: #fff;
  font-size: 14px; }

a.xc_hd_cn, a.xc_social {
  color: #fff;
  font-size: 14px;
  padding-right: 10px;
  padding-left: 10px; }

a.xc_hd_cn:hover, a.xc_social:hover {
  color: #000; }

.scrolltop {
  width: 100%;
  margin: 0px auto;
  position: fixed;
  bottom: 50px;
  right: 15px; }

.scrolltop .scroll {
  position: absolute;
  right: 0px;
  bottom: 20px;
  background: #ed3223;
  padding: 18px 22px;
  text-align: center;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  border-radius: 50%; }

.scrolltop .scroll i {
  color: #fff;
  font-size: 30px;
  margin-top: -5px;
  margin-left: 1px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s; }

.scrolltop .scroll:hover {
  background: #2ea3f2; }

#video_sec {
  position: relative;
  line-height: 0 !important;
  background: #f7f6fe; }

a.video_sec_play {
  position: absolute;
  left: 0;
  right: 0;
  width: 13vw;
  height: 10vw;
  top: 40%;
  margin: 0 auto;
  text-align: center; }

a.video_sec_play img {
  width: 90%;
  height: auto;
  margin: auto; }

section#video_sec a.video_sec_play.active {
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.each_course h5 {
  font-size: 21px;
  min-height: 52px;
  margin: 25px 0 10px;
  font-weight: 700; }

.each_course p {
  font-size: 13px;
  height: 155px;
  overflow: hidden; }

a.course_link {
  background-color: #ed3223;
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 25px 0 0 0;
  display: inline-block; }

a.course_link:hover {
  background-color: #000; }

section#cur_cls {
  background-color: #ed3223; }

section#cur_cls p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff; }

section#hm_calender {
  background-image: url(/files/images/houston.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

section#tx_license {
  background-color: #ed3223; }

section#tx_license p {
  font-size: 24px;
  font-weight: 500;
  color: #fff; }

section#tx_license a {
  margin: 0;
  font-size: 21px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 10px 15px;
  display: inline-block; }

section#tx_license a:hover, section#tx_license a:active, section#tx_license a:focus {
  background-color: #fff;
  color: #ed3223; }

footer.xc_footer {
  background-color: #2d2d2d; }

footer.xc_footer .foot_cols {
  line-height: 2;
  overflow: hidden; }

footer.xc_footer .foot_cols h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px; }

footer.xc_footer .foot_cols.ft_fr_cn p {
  font-size: 14px;
  color: #fff;
  margin: 0; }

footer.xc_footer .foot_cols.ft_fr_cn > p {
  margin-bottom: 25px; }

footer.xc_footer .foot_cols.ft_fr_cn .ft_cn_div a.xc_ft_cn {
  color: #fff;
  margin-left: 5px; }

footer.xc_footer .foot_cols.ft_fr_cn .ft_cn_div a.xc_ft_cn:hover, footer.xc_footer .foot_cols.ft_fr_cn .ft_cn_div a.xc_ft_cn:active, footer.xc_footer .foot_cols.ft_fr_cn .ft_cn_div a.xc_ft_cn:focus {
  color: #ed3223; }

footer.xc_footer .foot_cols ul.list-unstyled.locs_list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2; }

footer.xc_footer .foot_cols ul.list-unstyled.locs_list li {
  white-space: nowrap; }

footer.xc_footer .foot_cols ul.list-unstyled > li > a {
  color: #fff;
  font-size: 14px; }

footer.xc_footer .foot_cols ul.list-unstyled > li > a:hover, footer.xc_footer .foot_cols ul.list-unstyled > li > a:active, footer.xc_footer .foot_cols ul.list-unstyled > li > a:focus {
  color: #ed3223; }

footer.xc_footer .foot_cols ul.list-unstyled > li > a:before {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  padding: 0 12px 0 0; }

footer.xc_footer .blws_ftr {
  margin-top: 15px; }

footer.xc_footer .blws_ftr p {
  color: #fff;
  font-size: 14px; }

.foot_left, .foot_right {
  color: #fff;
  font-size: 16px; }

.foot_left a, .foot_right a {
  color: #ed3223;
  font-weight: 600; }

.foot_left a:hover, .foot_right a:hover {
  color: #fff; }

.breadcrump {
  background: #afafaf;
  padding: 1.5vw 0; }

.breadcrump .title_area h2 {
  color: #131e25;
  text-transform: uppercase;
  font-weight: 600; }

.breadcrump .title_area {
  width: 100%; }

.breadcrump .breadcrump_area {
  width: 100%; }

.breadcrump_area, .breadcrump_area a {
  color: #131e25; }

.breadcrump_area a:hover {
  color: #ed3223; }

.sideways {
  display: block;
  border-bottom: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden; }

.sideways li a {
  background: #fff;
  color: #535353;
  padding: 15px 25px;
  width: 100%;
  display: block;
  font-size: 18px; }

.sideways li a.active {
  background: #ed3223;
  color: #fff !important;
  padding: 15px 25px;
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 700; }

.sideways li, .sideways li a {
  position: relative; }

.sideways li, .sideways li a:hover {
  background: #ed3223;
  color: #fff; }

.sideways li:not(:last-child) a:not(.active)::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 90%;
  background: #d9d9d9;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  z-index: 999; }

.contactBox {
  background: #ddd;
  padding: 30px 0px;
  color: #fff;
  text-align: center;
  height: 100%; }

.contact-icon i {
  font-size: 25px;
  background: #ed3223;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin: auto;
  padding: 22px; }

.contact-content h3 {
  font-size: 21px;
  padding-top: 15px;
  color: #000; }

.contact-content p {
  color: #000;
  font-size: 16px; }

.contact-content a {
  font-size: 16px;
  color: #000; }

.contact-content a:hover {
  color: #ed3223; }

.contact_form .form-control, .contact_form .custom-select {
  color: #fff;
  background-color: #61656e;
  border: 1px solid #61656e;
  height: 45px;
  border-radius: 0px; }

.contact_form textarea.form-control {
  height: 140px; }

.contact_form .form-control::placeholder {
  color: #fff; }

.contact_form input.cnt_btn {
  background: #ed3223;
  color: #fff;
  padding: 10px 30px;
  font-weight: 600;
  margin-top: 5px; }

.contact_form input.cnt_btn {
  box-shadow: none; }

.contact_form .form-control:focus {
  box-shadow: none;
  border: 0; }

.contact_form input.cnt_btn:hover {
  background: #2ea3f2; }

.contact_form .g-recaptcha {
  transform: scale(0.8);
  position: absolute;
  left: -15px;
  top: 0; }

label.recaptcha_error {
  position: absolute;
  bottom: -55px; }

tr.calendar-body .calendar-day .day.hidden-loc {
  background-color: transparent !important;
  color: #000; }

@media (min-width: 1200px) {
  section#hm_calender {
    min-height: 745px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; } }

@media (min-width: 1900px) {
  .container {
    max-width: 1400px; }

  footer.xc_footer .foot_cols.ft_fr_cn > p {
    margin-bottom: 50px; } }

@media (max-width: 1199px) {
  header#xact_header {
    position: relative;
    background: #1b1b1b !important; }

  header#xact_header .logo_area img {
    width: 100%;
    max-width: 300px; }

  header#xact_header button.navbar-toggler {
    position: absolute;
    right: 0;
    top: -35px; }

  header#xact_header .nav_btn {
    padding-left: 0;
    margin-top: 8px; }

  header#xact_header .navbar-toggler {
    background-color: #ed3223;
    border: 1px solid #ed3223; }

  header#xact_header .navbar-toggler-icon {
    width: 20px;
    height: auto; }

  button.navbar-toggler[aria-expanded="false"] span.navbar-toggler-icon:before {
    content: '\f0c9';
    font-family: FontAwesome;
    color: #fff;
    line-height: 1.2; }

  button.navbar-toggler[aria-expanded="true"] span.navbar-toggler-icon:before {
    content: '\f00d';
    font-family: FontAwesome;
    color: #fff;
    line-height: 1.2; }

  .nav_btn li a {
    padding: 10px; }

  .foot_left, .foot_right {
    text-align: center !important; }

  .foot_left a, .foot_right a {
    white-space: nowrap; }

  .form-group.las_frm_btn {
    display: block;
    width: 100%;
    margin-top: 65px; }

  .navbar-nav li a, .nav_btn li a {
    font-size: 16px; } }

@media (max-width: 992px) {
  label.recaptcha_error {
    position: absolute;
    bottom: -180px;
    left: 5px; }

  footer.xc_footer .foot_cols h3 {
    margin: 25px 0 15px; }

  footer.xc_footer .blws_ftr {
    margin-top: 40px; } }

@media (min-width: 992px) and (max-width: 1199px) {
  label.recaptcha_error {
    position: absolute;
    bottom: 0; } }

@media (max-width: 767px) {
  header#xact_header .logo_area img {
    width: 100%;
    max-width: 260px; }

  header#xact_header .hdr_cnt_s {
    text-align: center; }

  header#xact_header .hdr_cnt_s span.xhd_tel, header#xact_header .hdr_cnt_s span.xhd_mail {
    display: block; }

  header#xact_header .hdr_cnt_s span.xhd_soc {
    display: inline-block; } }

@media (max-width: 575px) {
  .form-group.las_frm_btn {
    text-align: left !important; } }

.form-group.sf_hd_inp {
  display: none; }

.city_contact img.inn_lg_pic {
  padding: 30px;
  margin: auto;
  display: block; }

.vid_cap {
  position: absolute;
  left: 50%;
  right: 0;
  top: 30%;
  margin: 1%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  opacity: 0;
  z-index: -1;
  transition: all ease-in-out 1s; }

.vid_cap.show {
  opacity: 1;
  z-index: 999;
  transition: all ease-in-out 1s; }

.vid_cap .each_cap {
  width: 100% !important;
  float: left;
  max-height: 300px;
  padding: 15px; }

.vid_cap .each_cap h3 {
  color: #fff;
  font-weight: 900;
  font-size: 2.5rem;
  margin: 15px 0;
  display: block; }

.vid_cap .each_cap p {
  color: #fff;
  line-height: 1.7;
  display: block; }

.vid_cap .each_cap a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding: 0.7rem 2rem;
  margin-bottom: 25px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 5px;
  display: inline-block; }

img.xl_lg_pic {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px; }

img.xl_lg_pic, img.inn_lg_pic {
  max-width: 100%; }

@media (min-width: 1199px) {
  #mainmenu > ul.navbar-nav > li.dropdown.nav-item > ul.dropdown-menu > li.dropdown.nav-item > ul.dropdown-menu {
    display: none !important; }

  #mainmenu > ul.navbar-nav > li.dropdown.nav-item > ul.dropdown-menu > li.dropdown.nav-item.open > ul.dropdown-menu {
    left: -160px;
    top: 0px;
    display: block !important; }

  section.watermark, .container-fluid.page_inner {
    background-image: url(/files/images/logo-pattern.jpg); } }

@media (max-width: 1199px) {
  .vid_cap.show {
    top: 0;
    left: 0;
    right: 0;
    margin: 2%; }

  .vid_cap .each_cap {
    padding: 10px; }

  .vid_cap .each_cap h3 {
    font-size: 26px; }

  .vid_cap .each_cap p {
    font-size: 15px; }

  .vid_cap .each_cap a {
    font-size: 15px; } }

@media (max-width: 767px) {
  .each_course p {
    height: auto; }

  a.course_link {
    margin: 15px 0 25px 0; }

  .vid_cap .each_cap {
    padding: 5px; }

  .vid_cap .each_cap h3 {
    font-size: 22px; }

  .vid_cap .each_cap p {
    font-size: 14px; }

  .vid_cap .each_cap a {
    font-size: 14px; }

  section#video_sec .vid_cap {
    display: none; }

  section#video_sec > video {
    height: 100%;
    aspect-ratio: 1.7777777778;
    margin-top: -4vw; } }

@media (max-width: 575px) {
  header#xact_header .logo_area img {
    max-width: 200px; } }

@media (min-width: 1900px) {
  #mainmenu > ul.navbar-nav > li.dropdown.nav-item > ul.dropdown-menu li a {
    font-size: 18px; }

  #mainmenu > ul.navbar-nav > li.dropdown.nav-item > ul.dropdown-menu {
    min-width: 200px; } }

.event-link a {
  display: none; }

.cc_event_calendar {
  overflow: hidden; }
