body {
  font-family: "roboto", sans-serif;
  /*color: #192742;*/
  /*color: #FF7F50;*/
  color:#1e3d59;
}

a {
  color: #ef6603;
  text-decoration: none;
}

a:hover {
  color: #fc8129;
  text-decoration: none;
}

h1{
  font-family: "Oswald", sans-serif;
}
h2 {
  font-family: "modric", sans-serif;
}

h3 {
  font-family: "Oswald", sans-serif;
}

h4 {
  font-family: "coda", sans-serif;
}

h5{
  font-family: "aldrich", sans-serif;
  color:#fff;
}

h6 {
  font-family: "Gruppo", sans-serif;
  color:#000;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #072f54;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
 
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top i:hover {
  font-size: 28px;
  color: #1e3d59;
  line-height: 0;
}
.back-to-top:hover {
  border: 1px solid #1e3d59;
  background: #fff;
  color: #1e3d59;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  /*background: rgba(42, 44, 57, 0.9);*/
  /*background: #192742;*/
  /*background: #FF7F50;*/
  background:#1e3d59;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  /*background: rgba(42, 44, 57, 0.9);*/
  /*background: #192742;
  background: #FF7F50;*/
  background:#1e3d59;
}

#header .logo h1 {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  /*color: #fff;*/
  /*color:#ff6e40;*/
  color: #f6ead4;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  font-family:"coda", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 15px;
  font-style: bold;
  letter-spacing: 1px;
  color: #ffc13b;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 3px;
}
 
.navbar a i, .navbar a:focus i {
  font-size: 15px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  /*background: #ef6603;*/
  /*background: #fff;*/
  /*color: #ef6603;*/
  /*background: #ff6e40;*/
  background: #ffc13b;
  color:#1e3d59;   
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px  0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #1e3d59;
  color:#ffc13b;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 5px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  background: #1e3d59;
  color: #ffc13b;
  margin: 0 5px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1e3d59;
  background: #ffc13b;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 3px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  /*color: #2a2c39;*/
  color: #1e3d59;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  border: 1px solid #1e3d59;
  /*color: #192742;*/
  /*color: #FF7F50;*/
  color:#1e3d59;
  
  /*color: #ef6603;*/
  
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# lobby Section
--------------------------------------------------------------*/
#lobby {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, #2a2c39 0%, #33364a 100%);*/
  /*background:#192742;*/
  /*background: #FF7F50;*/
  background:#1e3d59;
  padding: 0;
}

#lobby .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 90vh;
  padding-top: 60px;
}

#lobby h3 {
  /*color: #fff;*/
  /*color:#ff6e40;*/
  color: #79cbb8;
  margin-bottom: 5px;
  font-size: 45px;
  font-weight: 700;
}

#lobby h2 {
  /*color: #fff;*/
  /*color:#ff6e40;*/
  margin-top: 50px;
  padding-top: 60px;
  /*color: #77c593/#79cbb8;*/
  color: #ffc13b;
  font-size: 75px;
  font-weight: 800;
  text-transform: uppercase;
}
.blink_span {
	color:#fff; 
	font-size:40px !important; 
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 300;
	padding:5px 0px 0px 5px;
	text-transform: capitalize !important;
}

#lobby label {
  color: #fff;
  /*color:#ff6e40;*/
  /*color: #77c593/#79cbb8;*/
  /*color: #ffc13b;*/
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
}

#lobby p {
  width: 80%;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #e5e5dc;
  font-size: 20px;
  text-transform: uppercase;
}

#lobby .carousel-control-prev, #lobby .carousel-control-next {
  width: 10%;
}

#lobby .carousel-control-next-icon, #lobby .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#lobby .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #ef6603;
}

#lobby .btn-get-started:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #lobby p {
    width: 60%;
  }
  #lobby .carousel-control-prev, #lobby .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #lobby .carousel-container {
    height: 90vh;
  }
  #lobby h2 {
    font-size: 28px;
  }
}

.lobby-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 25px;
  font-weight: 800;
  padding: 0;
  line-height: 2px;
  margin: 0 0 5px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #500472;
  font-family: "novaflat", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fd9042;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  color: #000;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ef6603;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ef6603;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ef6603;
}

.about .content .btn-learn-more:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointments .nav-tabs {
  border: 0;
}

.appointments .nav-link {
  border: 1px solid #e52165;
  padding: 15px;
  transition: 0.3s;
  color: #e52165;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appointments .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.appointments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.appointments .nav-link:hover {
  /*color: #ef6603;*/
  /*border-color: #d8318a;
  color:#d8318a;*/
  border-color: #500472;
  color:#500472;
  
}

.appointments .nav-link.active {
  /*background: #ef6603;
  border-color: #ef6603;*/
  /*background: #d8318a;
  border-color: #d8318a;
  color: #79cbb8;*/
  background: #500472;
  border-color: #500472;
  color: #79cbb8;
  
}

@media (max-width: 768px) {
  .appointments .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .appointments .nav-link {
    padding: 15px;
  }
  .appointments .nav-link i {
    font-size: 24px;
  }
}

.appointments .tab-content {
  margin-top: 30px;
}

.appointments .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.appointments .tab-pane ul {
  list-style: none;
  padding: 0;
}

.appointments .tab-pane ul li {
  padding-bottom: 10px;
}

.appointments .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3d8c95;
}

.appointments .news  {
  font-family: "UniNeue", sans-serif;
  font-size: 22px;
  color:#000;
}

.appointments .tab-pane p:last-child {
  margin-bottom: 0;
}


.custom-ul{
    list-style-type: square;
    margin-left: 10px;
	line-height: 1.5em;
}

.custom-ul li {
    margin-bottom: 12px;
    margin-left: -10px;
    display: flex-start;
    align-items: center;
}

.custom-ul li::before {
	color: #000;
	/*content:"👉";*/
	content:"";
	font-weight: 900;
    margin-left: -1.3em;
    margin-right: 15px;
    padding: 10px;
	/*background: #d8318a
	background: url('http://localhost/ptbeassets/ptbecss/remixicon/ri:honour-fill.svg') no-repeat center center / contain;
	list-style-image: url('/ptbeassets/ptbecss/remixicon/ri:honour-fill.svg');
	background: url('https://api.iconify.design/ri:honour-fill.svg') no-repeat center center / contain;*/
	
} 

/*
.custom-ul .burst li::before {
      content: ""; 
      position: absolute; 
      left: 0; 
      top: 5px;
      background: #000bbb; 
      width: 10px; 
      height: 10px;
      text-align: center; 
      -webkit-transform: rotate(0deg); 
      -moz-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
	}
.custom-ul .burst li::after {
      content: ""; 
      position: absolute; 
      top: 5px; 
      left: 0; 
      height: 10px; 
      width: 10px; 
      background: #000bbb; 
      -webkit-transform: rotate(45deg); 
      -moz-transform: rotate(45deg); 
      -ms-transform: rotate(45deg); 
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }



/*
ul .square {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 5px;
			width: 10px;
			height: 10px;
			background-color: #000bbb;
		}
	}
}
ul .round {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 5px;
			width: 10px;
			height: 10px;
			background-color: #000bbb;
			border-radius: 50%;
			-moz-border-radius: 50%;
			-webkit-border-radius: 50%;
		}
	}
}
ul .triangle {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 5px;
			width: 0;
			height: 0;
			border-left: 5px solid transparent;
			border-right: 5px solid transparent;
			border-bottom: 10px solid #000bbb;
		}
	}
}
ul .arrow {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 6px;
			height: 5px;
			width: 5px;
			border: 1px solid #000bbb;
			border-width: 2px 2px 0 0;
			transform: rotate(45deg);
		}
	}
}
ul .line {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 9px;
			width: 8px;
      display: block;
			border-top: 2px solid #000bbb;
		}
	}
}
ul .plus {
	li {
		&::before {
			content: "";
			position: absolute;
      background: #000bbb; 
			left: 0;
      top: 9px;
      height: 2px; 
      width: 8px;
		}
    &::after { 
      content: ""; 
      position: absolute; 
      background: #000bbb; 
      left: 3px; 
      top: 5px; 
      height: 10px; 
      width: 2px;
    }
	}
}
ul .diamond {
	li {
		&::before {
      content: "";
      position: absolute; 
      left: 0px; 
      top: 0px; 
      width: 0; 
      height: 0; 
      border: 5px solid transparent; 
      border-bottom-color: #000bbb;
		}
    &::after { 
      content: ""; 
      position: absolute; 
      left: 0px; 
      top: 10px; 
      width: 0; 
      height: 0; 
      border: 5px solid transparent; 
      border-top-color: #000bbb;
    }
	}
}
ul .pac-man {
	li {
		&::before {
      content: ""; 
      position: absolute; 
      left: 0px; 
      top: 5px; 
      width: 0px; 
      height: 0px; 
      border-right: 5px solid transparent; 
      border-top: 5px solid #000bbb; 
      border-left: 5px solid #000bbb; 
      border-bottom: 5px solid #000bbb; 
      border-top-left-radius: 5px; 
      border-top-right-radius: 5px; 
      border-bottom-left-radius: 5px; 
      border-bottom-right-radius: 5px;
		}
	}
}
ul .checkmark {
	li {
		&::before {
      content: ""; 
      position: absolute; 
      left: 2px; 
      top: 5px; 
      width: 3px;
      height: 6px;
      border: solid #000bbb;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
		}
	}
}
ul .circle-checkmark {
	li {
		&::before {
      content: ""; 
      position: absolute; 
      left: 0; 
      top: 2px; 
      border: solid 8px #000bbb;
      border-radius: 8px;
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
		}
    &::after {
      content: ""; 
      position: absolute; 
      left: .25%;
      top: 5px;
      width: 3px;
      height: 6px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
	}
}
ul .burst {
	li {
		&::before {
      content: ""; 
      position: absolute; 
      left: 0; 
      top: 5px;
      background: #000bbb; 
      width: 10px; 
      height: 10px;
      text-align: center; 
      -webkit-transform: rotate(0deg); 
      -moz-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
		}
    &::after {
      content: ""; 
      position: absolute; 
      top: 5px; 
      left: 0; 
      height: 10px; 
      width: 10px; 
      background: #000bbb; 
      -webkit-transform: rotate(45deg); 
      -moz-transform: rotate(45deg); 
      -ms-transform: rotate(45deg); 
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
	}
}
ul .heart {
	li {
		&::before,
    &::after {
      content: ""; 
      position: absolute; 
      left: 7px; 
      top: 5px; 
      width: 7px; 
      height: 12px; 
      background: #000bbb; 
      -moz-border-radius: 50px 50px 0 0; 
      border-radius: 50px 50px 0 0; 
      -webkit-transform: rotate(-45deg); 
      -moz-transform: rotate(-45deg); 
      -ms-transform: rotate(-45deg); 
      -o-transform: rotate(-45deg); 
      transform: rotate(-45deg); 
      -webkit-transform-origin: 0 100%; 
      -moz-transform-origin: 0 100%; 
      -ms-transform-origin: 0 100%; 
      -o-transform-origin: 0 100%; 
      transform-origin: 0 100%;
		}
    &::after {
      content: ""; 
      position: absolute; 
      top: 5px; 
      left: 0; 
      -webkit-transform: rotate(45deg); 
      -moz-transform: rotate(45deg); 
      -ms-transform: rotate(45deg); 
      -o-transform: rotate(45deg); 
      transform: rotate(45deg); 
      -webkit-transform-origin: 100% 100%; 
      -moz-transform-origin: 100% 100%; 
      -ms-transform-origin: 100% 100%; 
      -o-transform-origin: 100% 100%; 
      transform-origin :100% 100%;
    }
	}
}
ul .x {
	li {
		&::before {
      content: '';
      position: absolute;
      height: 15px;
      border-left: 2px solid #f60;
      transform: rotate(45deg);
      top: 2px;
      left: 5px;
		}
    &::after {
      content: '';
      position: absolute;
      height: 15px;
      border-left: 2px solid #f60;
      transform: rotate(-45deg);
      top: 2px;
      left: 5px;
    }
	}
}
ul .outline-round {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 4px;
			width: 8px;
			height: 8px;
			border-radius: 50%;
			-moz-border-radius: 50%;
			-webkit-border-radius: 50%;
      border: 2px solid #000bbb;
		}
	}
}
ul .curved-round {
	li {
		&::before {
      content: '';
      position: absolute;
      width: 0; 
      height: 0;
      left: 4px;
      top: 3px;
      border-top: 9px solid transparent; 
      border-right: 9px solid #000bbb; 
      -webkit-transform: rotate(10deg); 
      -moz-transform: rotate(10deg); 
      -ms-transform: rotate(10deg); 
      -o-transform: rotate(10deg);
		}
    &::after {
      content: '';
      position: absolute;
      border: 0 solid transparent; 
      border-top: 3px solid #000bbb; 
      border-radius: 20px 0 0 0; 
      top: 0; 
      left: -5px; 
      width: 12px; 
      height: 12px; 
      -webkit-transform: rotate(45deg); 
      -moz-transform: rotate(45deg); 
      -ms-transform: rotate(45deg); 
      -o-transform: rotate(45deg);
    }
	}
}
ul .outline-square {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 3px;
			top: 6px;
			width: 5px;
			height: 5px;
      border: 1px solid #000bbb;
		}
	}
}

*/
/*------------------------Calendar---------------------------------*/

.sticky .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color:#f5f5f5;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.67);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.sticky .icon-box:hover {
  transform: translateY(-20px);  
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.67);
}

.sticky .title {
  /*margin-left: 40px;*/
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 25px;
  text-align: center;
  color:#500472;
}

.sticky .p1 {
  font-size: 14px;
  text-align: center;
}

.sticky .sbox {
  padding: 20px;
  background: #6b7b8c;
  color:#fff;
  text-align: center;
  box-shadow: 2px 10px 5px rgba(0, 0, 0, 0.67);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height:35%;
}
/*
.sticky .description {
  font-size: 14px;
  margin-left: 3px;
  margin-right: 3px;
  line-height: 24px;
  margin-bottom: 0;
}




.eligible .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.eligible .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.eligible .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.eligible .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}

.eligible .title a:hover {
  color: #ef6603;
}

.eligible .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}



/*

.sticky .sh1 {
  font-weight: 400;
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.sticky .featured {
  border: 1px solid #455a5f;
}
.sticky .featured h1 {
  color: #fff;
  background: #072f54;
}
/*
time.sticky
{
  font-size: 1em; /* change icon size *//*
  display: block;
  position: relative;
  width: 7em;
  height: 7em;
  background-color: #fff;
  margin: 2em auto;
  border-radius: 0.6em;
  box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: rotate(0deg) skewY(0deg);
  -webkit-transform-origin: 50% 10%;
  transform-origin: 50% 10%;
}

time.sticky *
{
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}

time.sticky strong
{
  position: absolute;
  top: 0;
  padding: 0.4em 0;
  color: #fff;
  background-color: #fd9f1b;
  border-bottom: 1px dashed #f37302;
  box-shadow: 0 2px 0 #fd9f1b;
}

time.sticky em
{
  position: absolute;
  bottom: 0.3em;
  color: #fd9f1b;
}

time.sticky span
{
  width: 100%;
  font-size: 2.8em;
  letter-spacing: -0.05em;
  padding-top: 0.8em;
  color: #2f2f2f;
}

time.sticky:hover, time.sticky:focus
{
  -webkit-animation: swing 0.6s ease-out;
  animation: swing 0.6s ease-out;
}

*/

time.icon
{
  font-size: 1em; /* change icon size */
  display: block;
  position: relative;
  width: 10em;
  height: 10em;
  background-color: #fff;
  /*margin: 2em auto;*/
  border-radius: 0.6em;
  box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: rotate(0deg) skewY(0deg);
  -webkit-transform-origin: 50% 10%;
  transform-origin: 50% 10%;
}

time.icon *
{
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}

time.icon strong
{
  position: absolute;
  top: 0;
  padding: 0.4em 0;
  color: #fff;
  background-color: #fd9f1b;
  border-bottom: 1px dashed #f37302;
  box-shadow: 0 2px 0 #fd9f1b;
}

time.icon em
{
  position: absolute;
  bottom: 5em;
  color: #fd9f1b;
}

time.icon p
{
  width: 100%;
  font-size: 1em;
  letter-spacing: -0.05em;
  padding-top:0.8em;
  /*margin-top: 3.25em;
  padding-top:1em;
  padding-bottom: 4.25em;*/
  color: #2f2f2f;
  /*background-color: #fd9f1b;*/
 
}


time.icon span
{
  width: 100%;
  font-size: 1em;
 /* font-size: 2.8em;*/
  letter-spacing: -0.05em;
  padding-top: 4.25em;
  color: #500472;
}

time.icon:hover, time.icon:focus
{
  -webkit-animation: swing 0.6s ease-out;
  animation: swing 0.6s ease-out;
}

@-webkit-keyframes swing {
  0%   { -webkit-transform: rotate(0deg)  skewY(0deg); }
  20%  { -webkit-transform: rotate(12deg) skewY(4deg); }
  60%  { -webkit-transform: rotate(-9deg) skewY(-3deg); }
  80%  { -webkit-transform: rotate(6deg)  skewY(-2deg); }
  100% { -webkit-transform: rotate(0deg)  skewY(0deg); }
}

@keyframes swing {
  0%   { transform: rotate(0deg)  skewY(0deg); }
  20%  { transform: rotate(12deg) skewY(4deg); }
  60%  { transform: rotate(-9deg) skewY(-3deg); }
  80%  { transform: rotate(6deg)  skewY(-2deg); }
  100% { transform: rotate(0deg)  skewY(0deg); }
}
/*------------------------Calendar---------------------------------*/

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .nav-tabs {
  border: 0;
}

.courses .nav-link {
  border: 1px solid #e52165;
  padding: 15px;
  transition: 0.3s;
  /*color: #d9302c;*/
  color: #e52165;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.courses .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.courses .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.courses .nav-link:hover {
  /*color: #ef6603;
  border-color: #d9302c;
  color:#d9302c;*/
  border-color: #500472;
  color:#500472;
}

.courses .nav-link.active {
  /*background: #ef6603;
  border-color: #ef6603;
  background: #d9302c;
  border-color: #d9302c;*/
  background: #500472;
  border-color: #500472;
  color: #79cbb8;
  
}

@media (max-width: 768px) {
  .courses .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .courses .nav-link {
    padding: 15px;
  }
  .courses .nav-link i {
    font-size: 24px;
  }
}

.courses .tab-content {
  margin-top: 30px;
}

.courses .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.courses .tab-pane ul {
  list-style: none;
  padding: 0;
  font-family: "UniNeue", sans-serif;
  font-size: 24px;
  color: #e52165;
}

.courses .tab-pane ul li{
  padding-bottom: 10px;
}

.courses .tab-pane ul i {
  font-size: 24px;
  padding-right: 20px;
  color: #500472;
}

.courses .tab-pane li i {
  font-size: 24px;
  font-style: normal;
  color: #500472;
}

.courses .tab-pane p:last-child {
  margin-bottom: 0;
}
 
/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
.register {
  background: #500472;
  padding: 80px 0;
}

.register h3 {
  /*color: #143d59;*/
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
}
.register h6 {
  color: #fff;
}

.register p {
  color: #143d59;
}

.register .register-btn {
  font-family: "UniNeue", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
  color: #000;
  background: #79cbb8;
}

.register .register-btn:hover {
  background: #e52165;
  color: #fff;
}

@media (max-width: 1024px) {
  .register {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .register .register-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Eligibility
--------------------------------------------------------------*/
.eligible .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /*background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);*/
  background-color:#f5f5f5;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.67);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.eligible .icon-box:hover {
  transform: translateY(-20px);
  /*box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);*/
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.67);
}

.eligible .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.eligible .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.eligible .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.eligible .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}

.eligible .title a:hover {
  color: #ef6603;
}

.eligible .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

.eligible .tab-pane ul {
  list-style: none;
  /*padding: 0;*/
  font-family: "viola", sans-serif;
  font-size: 22px;
  color: #d9172a;
  padding-bottom: 20px;
}

.eligible .tab-pane ol li{
  font-family: "UniNeue", sans-serif;
  font-size: 22px;
  font-style:bold;
  color: #000;
  text-align: justify;
  padding-bottom: 10px;
  padding-left: 25px;
}

.eligible .tab-pane ol i {
  font-size: 20px;
  padding-right: 20px;
  color: #000;
}

.eligible .tab-pane li i {
  font-size: 20px;
  font-style: normal;
  color: #000;
}

.eligible .tab-pane p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #ef6603;
}

.portfolio #portfolio-flters li.filter-active::before, .portfolio #portfolio-flters li.filter-active::after {
  color: #ef6603;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fedac0;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fd9f5b;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #fd9f5b;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 44, 57, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

/*--------------------------------------------------------------
# Fee
--------------------------------------------------------------*/
.fee .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.67);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.fee h3 {
  font-family: "viola", sans-serif;
  letter-spacing: 2px;
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #e52165;
  background: #f8f8f8;
}

.fee h4 {
  font-size: 50px;
  /*color: #f20c90;*/
  color:#000;
  font-weight: 600;
  font-family: "UniNeue", sans-serif;
  margin-bottom: 20px;
}

.fee h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.fee h4 span {
  color: #f20c90;
  font-size: 18px;
  font-weight: 300;
}

.fee ul {
  padding: 0;
  list-style: none;
  color: #000;
  text-align: center;
  line-height: 20px;
  font-family: "UniNeue", sans-serif;
  font-size: 25px;
}

.fee ul li {
  padding-bottom: 20px;
}

.fee ul i {
  color: #143d59;
  font-size: 18px;
  padding-right: 4px;
}

.fee ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.fee .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #455a5f;
  text-align: center;
}

.fee .btn-buy {
  background: #ff6666;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 5px;
  color: #fff;
  transition: none;
  font-size: 18px;
  font-weight: 700;
  font-family: "UniNeue", sans-serif;
  letter-spacing:2px;
  font-weight: 600;
  transition: 0.3s;
}

/*
	background: #adefd1ff;
.fee .btn-buy:hover {
  background: #fc8129;
}
*/

.fee .featured {
  border: 1px solid #455a5f;
}

.fee .featured h3 {
  color: #ffc13b;
  background: #455a5f;
}

.fee .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  /*background: #ef6603;
  color: #fff;*/
  background:#fff;
  color:#1e3d59;
}

/* Counselling Fee */

.fee .cbox {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.67);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.fee .ch3 {
  font-weight: 400;
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
/*
.fee .ch4 {
  font-size: 36px;
  color: #218dbb;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.fee .ch4 .csup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.fee .ch4 .cspan {
  color: #218dbb;
  font-size: 16px;
  font-weight: 300;
}

.fee .cul {
  padding: 0;
  list-style: none;
  color: #218dbb;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.fee .cul li {
  padding-bottom: 16px;
}

.fee .cul .ci {
  color: #ff6666;
  font-size: 18px;
  padding-right: 4px;
}

.fee .cul .cna {
  color: #ccc;
  text-decoration: line-through;
}
*/

.fee .cbtn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #ff6666;
  text-align: center;
}

.fee .cbtn-buy {
  background: #455a5f;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 5px;
  color: #fff;
  transition: none;
  font-size: 20px;
  font-weight: 700;
  font-family: "UniNeue", sans-serif;
  letter-spacing:2px;
  font-weight: 600;
  transition: 0.3s;
}

.fee .cfeatured {
  border: 2px solid #ff6666;
}

.fee .cfeatured h3 {
  color: #fff;
  background: #ff6666;
}

.fee .cadvanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background:#fff;
  color:#1e3d59;
}


/*--------------------------------------------------------------
# Counselling Fee
--------------------------------------------------------------*/
.cfee .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.cfee h3 {
  font-weight: 400;
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-family: "viola", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.cfee h4 {
  font-size: 36px;
  color: #f20c90;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.cfee h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.cfee h4 span {
  color: #f20c90;
  font-size: 16px;
  font-weight: 300;
}

.cfee ul {
  padding: 0;
  list-style: none;
  color: #143d59;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.cfee ul li {
  padding-bottom: 16px;
}

.cfee ul i {
  color: #143d59;
  font-size: 18px;
  padding-right: 4px;
}

.cfee ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.cfee .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #072f54;
  text-align: center;
}

.cfee .btn-buy {
  background: #19c0ff;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 5px;
  color: #072f54;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

/*
.cfee .btn-buy:hover {
  background: #fc8129;
}
*/

.cfee .featured {
  border: 2px solid #072f54;
}

.cfee .featured h3 {
  color: #fff;
  background: #072f54;
}

.cfee .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  /*background: #ef6603;
  color: #fff;*/
  background:#fff;
  color:#1e3d59;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #ececf1;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #ef6603;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #bd5102;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #ef6603;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(239, 102, 3, 0.8);
  transition: ease-in-out 0.3s;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  background: #fc8129;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2a2c39;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #1e3d59;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-family: "viola", sans-serif;
  font-size: 22px;
  color: #d9172a;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-family: "UniNeue", sans-serif;
  font-size: 19px;
  color: #000;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  border:1px solid #1e3d59;
  background: #fff;
  color: #1e3d59;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-family: "UniNeue", sans-serif;
  font-size: 18px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  font-family: "UniNeue", sans-serif;
  font-size: 20px;
  letter-spacing:1px;
  background: #1e3d59;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  font-family: "UniNeue", sans-serif;
  font-size: 20px;
  letter-spacing:1px;
  border: 1px solid #e52165;
  background: #e52165;
  color:#fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  margin-top: 70px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1e3d59;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 35px;
  font-weight: 10;
  /*color: #ef6603;*/
  color: #FFFF00;
  position: relative;
  font-family: "aldrich", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-family:"coda", sans-serif;
  font-size: 20px;
  letter-spacing:1px;
  /*font-style: italic;*/
  padding: 0;
  margin: 0 0 40px 0;
}
 
#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ef6603;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #bd5102;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  font-family: "aldrich", sans-serif;
  font-size: 20px;
  letter-spacing:1px;
  /*color: #ffc13b;
  color: #ef6603;*/
  color: #FFFF00;
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

.slide-side-cat {
	font-family: "aldrich", sans-serif;
	font-size:13px;
    position: fixed;
    right: 0;
    top: calc(50% - 90px);
    z-index: 10;
}
.slide-side-cat a:not(:last-child) {
    border-bottom: 1px solid rgba(247,245,245,.1);
}
.slide-side-cat a {
	
    background: #ef6603;
	color: #fff;
    width: 80px;
    height: 80px;
	margin-top:1px;
}
.slide-side-cat a:hover {
	border:1px solid #ef6603;
    background: #fff;
	color: #000;
    width: 80px;
    height: 80px;
}

.itm-cntr {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.jstfy-cntr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.d-flx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.i-slide-apnt {
    background-position: 0 0!important;
}
.i-side-cat {
    width: 80px;
    height: 80px;
    -webkit-transition: background .3s ease-in-out;
    -o-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
/*a, button, input[type=submit] {
    cursor: pointer;
}
a {
    text-decoration: none;
}*/
@media (max-width: 767px)
.slide-side-cat {
    display: none;
}
.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {   opacity: 0; }
}