@charset "UTF-8";
/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*-------- Main navigation --------*/
/* All styles for screen size over 992px
================================================== */
@media only screen and (min-width: 992px) {
  nav#menu.main-menu {
    display: block !important;
  }

  #mm-menu.main-menu {
    display: none !important;
  }

  header .btn_mobile {
    display: none !important;
  }

  /* Menu */
  .main-menu {
    position: relative;
    z-index: 9;
    width: auto;
    top: 12px;
    right: 15px;
    float: right;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
  }
  .main-menu ul,
.main-menu ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .main-menu ul a,
.main-menu ul li a {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    padding: 5px 10px;
    white-space: nowrap;
  }

  /*First level styles */
  .main-menu > ul > li span > a {
    color: #3f6f1a;
    padding: 0 8px 15px 8px;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .main-menu > ul > li span:hover > a {
    opacity: 0.7;
  }

  /* Submenu*/
  .main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    left: 3px;
    top: 100%;
    margin: 0;
    display: block;
    padding: 0;
    background: #fff;
    min-width: 210px;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .main-menu ul ul:before {
    bottom: 100%;
    left: 15%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 7px;
    margin-left: -7px;
  }
  .main-menu ul ul li {
    display: block;
    height: auto;
    padding: 0;
  }
  .main-menu ul ul li a {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #555555;
    border-bottom: 1px solid #ededed;
    display: block;
    padding: 15px 10px;
    line-height: 1;
  }

  .main-menu ul li:hover > ul {
    padding: 0;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  .main-menu ul ul li:last-child a {
    border-bottom: none;
  }
  .main-menu ul ul li:hover > a {
    background-color: #f9f9f9;
    color: #479900;
    padding-left: 18px;
  }
}
/* All styles for screen size under 991px
================================================== */
@media only screen and (max-width: 991px) {
  nav#menu {
    display: none !important;
  }

  .mm-menu {
    background: #fff;
  }

  .main-menu {
    top: 0;
    right: 0;
    float: none;
  }

  ul.mm-listview {
    line-height: 25px;
  }
  ul.mm-listview li a {
    color: #555555 !important;
    display: block;
  }
}
#menu.fake_menu {
  display: none !important;
  visibility: hidden !important;
}

/*-------- Preloader --------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999999 !important;
}

[data-loader=circle-side] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite 0.95s linear;
  -moz-animation: circle infinite 0.95s linear;
  -o-animation: circle infinite 0.95s linear;
  animation: circle infinite 0.95s linear;
  border: 2px solid #479900;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*-------- 1.1 Typography --------*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #f8f8f8;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Poppins", Helvetica, sans-serif;
  color: #555555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

h1 {
  font-size: 2rem;
}

p {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

strong {
  font-weight: 600;
}

hr {
  margin: 30px 0 30px 0;
  border-color: #ededed;
}

ul, ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.main_title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.main_title span {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: auto;
  margin-bottom: 20px;
  opacity: 1;
  background-color: #999;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.main_title.animated span {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

h2.sottotitolo {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.main_title_2 {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.main_title_2 span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
  margin: auto;
}
.main_title_2 span em {
  width: 60px;
  height: 2px;
  background-color: #479900;
  display: block;
  margin: auto;
}
.main_title_2 span h1 {
  margin: 25px 0 0 0;
}
@media (max-width: 767px) {
  .main_title_2 {
    margin-bottom: 10px;
  }
}
.main_title_2 h2 {
  margin: 25px 0 0 0;
}
@media (max-width: 767px) {
  .main_title_2 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.main_title_2 p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .main_title_2 p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/** Layes slider typography ab buttons **/
h3.slide_typo {
  white-space: nowrap;
  color: #fff !important;
  font-weight: normal;
  font-size: 60px;
  font-size: 3.75rem;
}

.slide_typo_2 {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  white-space: nowrap;
}

/*General links color*/
a {
  color: #569824;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  color: #fff;
  background: #3f8700;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 10px 11px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #3f8700;
  font-size: 0.9rem;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
a.btn_1:hover,
.btn_1:hover {
  background: #3f8700;
  color: #fff;
  opacity: 0.9;
}
a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
a.btn_1.medium,
.btn_1.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 40px;
}
a.btn_1.rounded,
.btn_1.rounded {
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  border-radius: 25px !important;
}
a.btn_1.outline,
.btn_1.outline {
  border: 2px solid #3f8700;
  color: #3f8700;
  padding: 11px 40px;
  background: none;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
  background: #0061f2;
  color: #fff;
  border-color: #0061f2;
}
a.btn_2.signup,
.btn_2.signup {
  background: #2675d8!important;
  border: 2px solid #0d61cb!important;
  color: #fff!important;
}
a.btn_2,
.btn_2 {
  color: #3f8700;
  background: #fff;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 10px 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  border: 2px solid #3f8700;
  font-size: 0.9rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
a.btn_2.signup:hover,
.btn_2.signup:hover {
  background: #0d61cb!important;
  color: #fff!important;
  opacity: 1!important;
}
a.btn_2:hover,
.btn_2:hover {
  background: #3f8700;
  color: #fff;
}
a.btn_2.full-width,
.btn_2.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
a.btn_2.medium,
.btn_2.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 40px;
}
a.btn_2.rounded,
.btn_2.rounded {
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  border-radius: 25px !important;
}
a.btn_2.outline,
.btn_2.outline {
  border: 2px solid #3f8700;
  color: #3f8700;
  padding: 11px 40px;
  background: none;
}
a.btn_2.outline:hover,
.btn_2.outline:hover {
  background: #0061f2;
  color: #fff;
  border-color: #0061f2;
}

a.btn_explore {
  background: #fff;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 65px;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -30px;
  font-size: 24px;
  font-size: 1.5rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.btn_explore:hover {
  bottom: 30px;
}

.closebt {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  top: 10px;
  right: 15px;
  color: #fff;
  opacity: 0.6;
  width: 30px;
  height: 30px;
}
.closebt:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
}

.btn_home_align {
  text-align: right;
}
@media (max-width: 767px) {
  .btn_home_align {
    text-align: center;
  }
}

/*Button plus-minus */
.button_plus {
  position: relative;
  width: 30px;
  height: 30px;
  /* Vertical line */
  /* horizontal line */
}
.button_plus:before, .button_plus:after {
  content: "";
  position: absolute;
  background-color: white;
  transition: transform 0.25s ease-out;
}
.button_plus:before {
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  margin-left: -2px;
}
.button_plus:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  margin-top: -2px;
}
.button_plus:hover {
  cursor: pointer;
}
.button_plus:hover:before {
  transform: rotate(90deg);
}
.button_plus:hover:after {
  transform: rotate(180deg);
}

/*-------- 1.3 Structure --------*/
/* Header */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 1050;
}
@media (max-width: 767px) {
  header {
    padding: 15px 15px 5px 15px;
  }
}
header.header {
  background: rgba(255, 255, 255, 0.96);
}
@media (max-width: 991px) {
  header.header.sticky {
    padding: 15px 15px 5px 15px;
  }
}
header.header.sticky_menu_active {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  header.header.sticky_menu_active {
    padding: 15px 15px 0 15px;
    background: #0061f2;
    background: -webkit-linear-gradient(left, #0061f2, #549bfa);
    background: linear-gradient(to right, #0061f2, #549bfa);
  }
}

ul#top_menu {
  float: right;
  margin: 0 0 0 0;
  font-size: 13px;
  font-size: 0.8125rem;
}
ul#top_menu li {
  display: inline-block;
  margin: 2px 0 0 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  margin-right: 20px;
}
ul#top_menu li:last-child {
  margin-right: 0;
  position: relative;
  top: 0;
}
@media (max-width: 991px) {
  ul#top_menu li {
    margin: 5px 0 0 10px;
  }
}
header.header.nocolor ul#top_menu li a {
  color: #fff;
}
ul#top_menu li a:hover {
  color: #fff;
  opacity: 0.7;
}
ul#top_menu li a.login, ul#top_menu li a.search-overlay-menu-btn {
  display: block;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
  position: relative;
  top: -5px;
}
ul#top_menu li a.login:before, ul#top_menu li a.search-overlay-menu-btn:before {
  font-family: "ElegantIcons";
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  text-indent: 0;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
  line-height: 1;
}
ul#top_menu li a.login:before {
  content: "~";
}
ul#top_menu li a.search-overlay-menu-btn:before {
  content: "U";
}
ul#top_menu li a.btn_1 {
  background-color: #479900;
  color: #fff;
  padding: 10px 11px;
}
ul#top_menu li a.btn_1:hover {
  background-color: #3f8700;
  color: #fff;
  opacity: 1;
}

#logo {
  float: left;
}
@media (max-width: 991px) {
  #logo {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #logo img {
    width: auto;
    height: 30px;
    margin-top: 10px;
  }
}
@media (max-width: 400px) {
  #logo {
    text-align: left!important;
  }
  #logo a{
    margin-left: 50px!important;
  }
}
#hero_in {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  #hero_in {
    height: 350px;
  }
}
#hero_in.general {
  border-bottom: 5px solid #479900;
}
#hero_in.general:before {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#hero_in.general .wrapper {
  background-color: #459400;
  background-color: rgba(71, 153, 0, 0.8);
}
#hero_in.courses:before {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#hero_in.courses .wrapper {
  background-color: #459400;
  background-color: rgba(71, 153, 0, 0.8);
}
#hero_in:before {
  animation: pop-in 5s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
#hero_in .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#hero_in .wrapper h1 {
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 30px;
}
@media (max-width: 767px) {
  #hero_in .wrapper h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}
#hero_in .wrapper h1 span {
  width: 80px;
  height: 4px;
  margin: auto;
  background-color: #479900;
  display: block;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  opacity: 1;
}
#hero_in .wrapper p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
#hero_in .wrapper p strong {
  font-weight: 600;
}

/* Animations */
@keyframes pop-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/* Delays */
#logo {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}

ul#top_menu {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  margin-top: 4px;
}

#hero_in h1 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
}

#hero_in p {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
}

#hero_in a.btn_explore {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
}

/* Main */
main {
  background-color: #f8f8f8;
  position: relative;
  /*z-index: 1;*/
}

/* Footer */
footer {
  background-color: #121921;
  color: #fbfbfb;
  color: rgba(255, 255, 255, 0.7);
}
footer .footer-text p{
  padding-bottom: 0;
}
footer a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #fff;
  opacity: 0.7;
}
footer a:hover {
  color: #3f8700;
  opacity: 1;
}
footer h5 {
  color: #fff;
  margin: 25px 0;
}
@media (max-width: 575px) {
  footer h5 {
    margin: 25px 0 10px 0;
  }
}
footer ul li {
  margin-bottom: 5px;
}
footer ul li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #fff;
  opacity: 0.7;
}
footer ul li a:hover {
  color: #3f8700;
  opacity: 1;
}
footer ul li a i {
  margin-right: 10px;
  color: #fff;
}
footer ul.links li a:hover {
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
footer ul.links li a:hover:after {
  opacity: 1;
  color: #3f8700;
}
footer ul.links li a:after {
  font-family: "ElegantIcons";
  content: "$";
  position: absolute;
  margin-left: 5px;
  top: 1px;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer ul.contacts li a i {
  margin-right: 10px;
}
footer hr {
  opacity: 0.1;
}
footer #copy {
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  opacity: 0.7;
}
@media (max-width: 767px) {
  footer #copy {
    text-align: left;
    margin: 5px 0 20px 0;
  }
}
footer.fake-footer {
  display: none;
  visibility: hidden;
}

.follow_us {
  margin-top: 15px;
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}
.follow_us h5 {
  color: #fff;
}
.follow_us ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
.follow_us ul li:first-child {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.follow_us ul li a {
  color: #fff;
  opacity: 0.7;
}
.follow_us ul li a:hover {
  opacity: 1;
}

/* Addtional links Footer */
ul#additional_links {
  margin: 0;
  color: #555;
  font-size: 13px;
  font-size: 0.8125rem;
}
ul#additional_links li {
  display: inline-block;
  margin-right: 15px;
}
ul#additional_links li:first-child {
  margin-right: 20px;
}
ul#additional_links li:last-child:after {
  content: "";
}
ul#additional_links li a {
  color: #fff;
  opacity: 0.5;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
ul#additional_links li a:hover {
  opacity: 1;
}
ul#additional_links li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 10px;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Home/front page--------*/
/* Home video background*/
.header-video {
  position: relative;
  overflow: hidden;
  background: #000;
}
@media (max-width: 991px) {
  .header-video {
    height: 450px !important;
  }
}

header.header.nocolor {
  background: none;
  color: white;
}

header.header.nocolor:not(.sticky) .main-menu > ul > li > span > a {
  background: none;
  color: white;
}

header.header.nocolor.sticky {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.96);
}

#hero_video {
  position: relative;
  background-size: cover;
  color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  font-size: 1rem;
  display: table;
  height: 100%;
  z-index: 99;
  text-align: center;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 100%);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 100%);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
#hero_video div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 10%;
}
#hero_video div h1 {
  color: #fff;
  font-size: 52px;
  font-size: 3.25rem;
  margin: 0;
  font-weight: 800;
}
@media (max-width: 767px) {
  #hero_video div h1 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media (max-width: 575px) {
  #hero_video div h1 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
#hero_video div a.btn_1 {
  color: #fff;
  opacity: 1;
  padding: 13px 30px !important;
  font-size: 0.9rem;
  text-shadow: none;
  font-size: 0.9rem;
  display: inline-block;
  margin: 2px 0 0 0;
  margin-right: 0px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  border: 2px solid #3f8700;
  background: #479900;
}
#hero_video div p {
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0 20%;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}
#hero_video div p strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  #hero_video div p {
    padding: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}

iframe {
  height: 100%;
  width: 100%;
}

video {
  width: 100%;
}

.teaser-video {
  width: 100%;
  height: auto;
}

.header-video--media {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  #hero_video {
    background: #479900 url(../img/mobile.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  #hero_video div {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .header-video {
    background: none;
  }
}
.features {
  background-color: #121921;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.features ul {
  margin: 0;
  padding: 0;
}
.features ul li {
  float: left;
  width: 33.33%;
  position: relative;
}
.features ul li span {
  opacity: 0.7;
}
.features ul li h4 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  color: #479900;
}
.features ul li i {
  color: #fff;
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .features ul li {
    width: 100%;
    float: none;
    margin-bottom: 35px;
  }
  .features ul li:last-child {
    margin-bottom: 5px;
  }
}

ul#grid_home {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
ul#grid_home li {
  position: relative;
  width: 33.33%;
  float: left;
}
@media (max-width: 767px) {
  ul#grid_home li {
    width: 100%;
    float: none;
  }
}
ul#grid_home li:nth-child(1) .short_info {
  background-color: #459400;
  background-color: rgba(71, 153, 0, 0.8);
}
ul#grid_home li:nth-child(2) .short_info {
  background-color: #459400;
  background-color: rgba(71, 153, 0, 0.8);
}
ul#grid_home li:nth-child(3) .short_info {
  background-color: #479900;
  background-color: #479900;
}
ul#grid_home li a.img_container {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
  width: 100%;
  height: 280px;
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container {
    width: 100%;
    float: none;
    height: 250px;
  }
}
ul#grid_home li a.img_container img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
@media (max-width: 1199px) {
  ul#grid_home li a.img_container img {
    height: 100%;
    width: auto;
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container img {
    width: 100%;
    height: auto;
  }
}
ul#grid_home li a.img_container:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
ul#grid_home li a.img_container .short_info {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  padding: 0 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
}
ul#grid_home li a.img_container .short_info h3 {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 5px 0;
  padding: 0;
  font-weight: 400;
}
ul#grid_home li a.img_container .short_info h3 strong {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container .short_info h3 {
    margin-top: -20px;
  }
}
ul#grid_home li a.img_container .short_info div {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
  transform: translateY(-25px);
  text-align: center;
  width: 100%;
  visibility: hidden;
  display: table;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
ul#grid_home li a.img_container .short_info div .btn_1 {
  padding: 10px 22px;
  font-size: 13px;
  font-size: 0.8125rem;
}
ul#grid_home li a.img_container .short_info div .btn_2 {
  padding: 10px 22px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container .short_info div {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
ul#grid_home li a.img_container .short_info:hover div {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}
ul#grid_home li:last-child .img_container:hover .short_info .btn_1 {
  background-color: #479900;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul#grid_home li:last-child .img_container:hover .short_info .btn_1:hover {
  background-color: #3f8700;
}

a.grid_item {
  display: block;
  margin-bottom: 30px;
}
a.grid_item .info {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 25px 25px 10px 25px;
  color: #fff;
  left: 0;
  bottom: 0;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
  box-sizing: border-box;
}
a.grid_item .info small {
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
}
a.grid_item .info small i {
  font-size: 18px;
  font-size: 1.125rem;
  margin-right: 10px;
}
a.grid_item .info h3 {
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
}
a.grid_item .info p {
  color: #fff;
  margin-bottom: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}
a.grid_item figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  a.grid_item figure {
    height: 200px !important;
  }
}
a.grid_item figure img {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.animated a.grid_item .info {
  animation: color 0.7s ease-in-out;
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  opacity: 0;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

.animated a.grid_item figure img {
  animation: color 0.5s ease-in-out;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-------- 2.2 About --------*/
a.box_feat {
  text-align: center;
  background: #fff;
  padding: 40px 30px 30px 30px;
  display: block;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-box-shadow: 0px 3px 0px 0px #f0f2f4;
  -moz-box-shadow: 0px 3px 0px 0px #f0f2f4;
  box-shadow: 0px 3px 0px 0px #f0f2f4;
  color: #555555;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 767px) {
  a.box_feat {
    padding: 20px 20px 0 20px;
  }
}
a.box_feat:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 3px 0px 0px #ebedef;
  -moz-box-shadow: 0px 3px 0px 0px #ebedef;
  box-shadow: 0px 3px 0px 0px #ebedef;
}
a.box_feat i {
  font-size: 70px;
  font-size: 4.375rem;
  color: #0061f2;
  margin-bottom: 10px;
}
a.box_feat h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.125rem;
}

/*-------- 2.2 Courses list --------*/
.tag {
  color: white;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  background: #479900;
}

.conservativa {
  background: #2980b6;
}

.protesi {
  background: #2c3e50;
}

.implantologia {
  background: #7f8c8d;
}

.ortodonzia {
  background: #F39C12;
}

.estrattiva {
  background: #C0392b;
}

.radioprotezione {
  background: #1ABC9C;
}

.filters_listing {
  padding: 30px 0 5px 0;
  background: #479900;
  z-index: 1040 !important;
  position: relative;
}
.filters_listing ul {
  margin: 0;
}
.filters_listing ul li {
  margin-right: 10px;
}
.filters_listing ul li:first-child {
  float: left;
}
.filters_listing ul li:nth-child(2) {
  float: right;
  margin-right: 0;
}
@media (max-width: 991px) {
  .filters_listing ul li:nth-child(2) {
    display: none;
  }
}
.filters_listing ul li:nth-child(3) {
  float: right;
}
@media (max-width: 991px) {
  .filters_listing ul li:nth-child(3) {
    margin-right: 0;
  }
}

.styled-select select {
  background: transparent;
  width: 107%;
  padding: 5px;
  padding-left: 15px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 41px;
  color: #999;
  margin: 0;
  font-weight: 400;
  -moz-appearance: window;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}

.styled-select select:focus {
  color: #555;
}

.styled-select {
  width: 100%;
  overflow: hidden;
  height: 44px;
  background: #fff url(../img/arrow_down.svg) no-repeat right center;
  border: 2px solid #e8ebed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.styled-select select::-ms-expand {
  display: none;
}

.styled-select select:focus {
  outline: none;
  box-shadow: none;
}

.box_grid {
  background-color: #fff;
  display: block;
  position: relative;
  margin-bottom: 30px;
  height: 100%;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.box_grid figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.box_grid figure .preview {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 2;
}
.box_grid figure .preview span {
  background-color: #fcfcfc;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  color: #222;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 10px;
}
.box_grid figure:hover .preview {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.box_grid figure a img {
  backface-visibility: initial;
}
.box_grid figure .price {
  animation: color 0.3s ease-in-out;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  opacity: 0;
  display: inline-block;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  font-size: 1.3125rem;
}
.box_grid .wrapper {
  padding: 25px;
}
.box_grid .wrapper h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}
.box_grid .wrapper h3 a {
  color: #333;
}
.box_grid .wrapper h3 a:hover {
  color: #479900;
}
.box_grid .wrapper p {
  margin-bottom: 0;
}
.box_grid .wrapper h1 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}
.box_grid small {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.box_grid ul {
  padding: 15px 1px 0 1px;
  border-top: 1px solid #ededed;
  text-align: center;
  margin-bottom: 0;
}
.box_grid ul li {
  display: inline-block;
  margin-right: 15px;
}
.box_grid ul li:last-child {
  margin-right: 0;
  float: right;
}
.box_grid ul li:last-child a {
  background: #fff;
  border: 2px solid #479900;
  color: #479900;
  padding: 5px 20px;
  font-weight: 500;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.box_grid ul li:last-child a:hover {
  background: #479900;
  color: #fff;
}

.rating i {
  margin-right: 2px;
  color: #ddd;
}
.rating i.voted {
  color: #FFC107;
}

.box_list {
  background-color: #fff;
  display: block;
  position: relative;
  margin-bottom: 30px;
  min-height: 310px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.box_list a.wish_bt {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 9px 10px;
  display: inline-block;
  color: #555;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.box_list a.wish_bt:after {
  font-family: "ElegantIcons";
  content: "";
}
.box_list a.wish_bt:hover:after {
  content: "";
  color: #479900;
}
.box_list figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  min-height: 310px;
}
@media (max-width: 991px) {
  .box_list figure {
    min-height: 200px;
    max-height: 200px;
    height: 200px;
  }
}
.box_list figure .preview {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 2;
}
.box_list figure .preview span {
  background-color: #fcfcfc;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  color: #222;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 10px;
}
.box_list figure:hover .preview {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.box_list figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 350px;
  width: auto;
  max-width: none;
}
@media (max-width: 991px) {
  .box_list figure a img {
    max-width: 100%;
    height: auto;
    width: inherit;
  }
}
.box_list figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.box_list .wrapper {
  padding: 30px 30px 20px 30px;
  min-height: 245px;
}
@media (max-width: 991px) {
  .box_list .wrapper {
    min-height: inherit;
  }
}
.box_list .wrapper .price {
  line-height: 1;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  color: #479900;
}
.box_list .wrapper h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}
.box_list small {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.box_list ul {
  padding: 20px 15px 20px 30px;
  border-top: 1px solid #ededed;
  margin-bottom: 0;
}
.box_list ul li {
  display: inline-block;
  margin-right: 15px;
}
.box_list ul li:last-child {
  margin-right: 0;
  float: right;
}
.box_list ul li:last-child a {
  background: #fff;
  border: 2px solid #479900;
  color: #479900;
  padding: 5px 20px;
  font-weight: 500;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.box_list ul li:last-child a:hover {
  background: #479900;
  color: #fff;
}

#list_sidebar .box_list {
  min-height: 330px;
}
#list_sidebar .box_list figure {
  min-height: 330px;
}
@media (max-width: 991px) {
  #list_sidebar .box_list figure {
    min-height: 200px;
    max-height: 200px;
    height: 200px;
  }
}
#list_sidebar .box_list figure a img {
  height: 350px;
}
@media (max-width: 991px) {
  #list_sidebar .box_list figure a img {
    max-width: 100%;
    height: auto;
    width: inherit;
  }
}
#list_sidebar .box_list .wrapper {
  min-height: 265px;
}
@media (max-width: 991px) {
  #list_sidebar .box_list .wrapper {
    min-height: inherit;
  }
}

.layout_view {
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 4px 8px 3px 8px;
  margin-bottom: 5px;
}
.layout_view a {
  color: #ccc;
}
.layout_view a.active {
  color: #479900 !important;
}
.layout_view a:hover {
  color: #479900;
}

.switch-field {
  overflow: hidden;
}
.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.switch-field input:checked + label {
  background-color: #479900;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #fff;
}
.switch-field label {
  float: left;
  display: inline-block;
  min-width: 70px;
  background-color: #fff;
  color: #479900;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  text-shadow: none;
  padding: 10px 15px 8px 15px;
  line-height: 1;
  border-left: 1px solid #ededed;
  border-right: 0;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 575px) {
  .switch-field label {
    padding: 10px 12px 8px 12px;
    min-width: inherit;
  }
}
.switch-field label:first-of-type {
  border-radius: 3px 0 0 3px;
  border-left: 0;
}
.switch-field label:last-of-type {
  border-radius: 0 3px 3px 0;
}
.switch-field label:hover {
  cursor: pointer;
  color: #479900;
}

.sbHolder {
  background-color: #fff;
  height: 30px;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  min-width: 250px;
}

.sbSelector {
  display: block;
  height: 32px;
  left: 0;
  line-height: 32px;
  outline: none;
  overflow: hidden;
  position: absolute;
  text-indent: 10px;
  top: 0;
  width: 100%;
}

.sbSelector:link,
.sbSelector:visited,
.sbSelector:hover {
  color: #555;
  outline: none;
  text-decoration: none;
  color: #479900;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
}

.sbToggle {
  position: absolute;
  display: block;
  height: 32px;
  outline: none;
  right: 0;
  top: 0;
  width: 35px;
  text-align: center;
  line-height: 32px;
}
.sbToggle:after {
  font-family: "ElegantIcons";
  font-size: 14px;
  font-size: 0.875rem;
  content: "C";
  color: #479900;
  text-align: center;
}

.sbHolderDisabled {
  background-color: #ededed;
  border: solid 1px #ededed;
}

.sbOptions {
  background-color: #fff;
  border: solid 1px #ededed;
  list-style: none;
  left: -1px;
  right: -1px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 40px;
  z-index: 10;
  font-size: 13px;
  font-size: 0.8125rem;
}

.sbOptions li {
  padding: 0 7px;
  float: none !important;
  border-bottom: solid 1px #ededed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.sbOptions li:last-child {
  border-bottom: none;
  float: none !important;
  margin: 0;
  padding-left: 10px;
}

.sbOptions li:hover {
  color: #479900;
}

.sbOptions a {
  display: block;
  outline: none;
  padding: 7px 0 7px 3px;
  text-transform: capitalize;
}

.sbOptions a:link,
.sbOptions a:visited {
  color: #555;
  text-decoration: none;
}

.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus {
  color: #479900;
}

.sbOptions li.last a {
  border-bottom: none;
}

.sbOptions .sbDisabled {
  border-bottom: dotted 1px #fff;
  color: #999;
  display: block;
  padding: 7px 0 7px 3px;
}

.sbOptions .sbGroup {
  border-bottom: dotted 1px #fff;
  color: #555;
  display: block;
  font-weight: bold;
  padding: 7px 0 7px 3px;
}

.sbOptions .sbSub {
  padding-left: 17px;
}

#filters_col {
  background-color: #fff;
  padding: 20px 20px 15px 20px;
  margin-bottom: 25px;
}
#filters_col label {
  color: #333;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
}

a#filters_col_bt {
  display: block;
  color: #333;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}
a#filters_col_bt:before {
  font-family: "ElegantIcons";
  content: "f";
  font-size: 26px;
  font-size: 1.625rem;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  font-weight: normal;
}

.filter_type h6 {
  border-top: 1px solid #ededed;
  margin: 15px 0;
  padding: 15px 0 0 0;
  font-size: 13px;
  font-size: 0.8125rem;
}
.filter_type ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.filter_type ul li {
  margin-bottom: 5px;
}
.filter_type ul li:last-child {
  margin-bottom: 0;
}

a.boxed_list {
  text-align: center;
  padding: 30px;
  border: 1px solid #ededed;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 25px;
}
a.boxed_list i {
  font-size: 60px;
  font-size: 3.75rem;
  margin-bottom: 15px;
}
a.boxed_list h4 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #333;
}
a.boxed_list p {
  color: #777;
  margin-bottom: 0;
}
a.boxed_list:hover i {
  color: #479900;
}

/*-------- 2.4 Course detail--------*/
.secondary_nav {
  background: #479900;
  padding: 25px 0 10px 0;
}
.secondary_nav.is_stuck {
  z-index: 99;
  width: 100% !important;
  left: 0;
}
.secondary_nav ul {
  margin-bottom: 0;
}
.secondary_nav ul li {
  display: inline-block;
  margin-right: 20px;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
}
.secondary_nav ul li a {
  color: #fff;
}
.secondary_nav ul li a.active, .secondary_nav ul li a:hover {
  color: #333;
}

.intro_title h2 {
  display: inline-block;
}
.intro_title ul {
  float: right;
  margin: 10px 0 0 0;
}
.intro_title ul li {
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
}

.list_lessons ul {
  margin: 0;
}
.list_lessons ul li {
  border-bottom: 1px solid #ededed;
  padding: 5px 0;
}
.list_lessons ul li a {
  color: #555555;
}
.list_lessons ul li a.video:before {
  font-family: "ElegantIcons";
  content: "I";
  margin-right: 10px;
}
.list_lessons ul li a.txt_doc:before {
  font-family: "ElegantIcons";
  content: "h";
  margin-right: 10px;
}
.list_lessons ul li span {
  float: right;
}

section#description, section#lessons, section#reviews {
  border-bottom: 3px solid #ededed;
  margin-bottom: 45px;
}

section#reviews {
  border-bottom: none;
  margin-bottom: 0px;
}

.coursedetail h3 {
  font-size: 1.25rem;
}

.coursedetail h4 {
  font-size: 1rem;
}

#review_summary {
  text-align: center;
  background-color: #ededed;
  color: #479900;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  #review_summary {
    margin-bottom: 15px;
  }
}
#review_summary strong {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1;
}

.reviews-container .progress {
  margin-bottom: 10px;
}
.reviews-container .progress-bar {
  background-color: #479900;
}
.reviews-container .review-box {
  position: relative;
  margin-bottom: 25px;
  padding-left: 100px;
  min-height: 100px;
}
@media (max-width: 767px) {
  .reviews-container .review-box {
    padding-left: 0;
  }
}
.reviews-container .rev-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.reviews-container .rev-thumb img {
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .reviews-container .rev-thumb {
    position: static;
    margin-bottom: 10px;
  }
}
.reviews-container .rev-content {
  position: relative;
  padding: 25px 25px 0 25px;
  border: 1px solid #ededed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.reviews-container .rev-info {
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}

.box_detail {
  padding: 0px;
  border: 1px solid #ededed;
  background-color: #f8f8f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 0px;
}
.box_detail ul {
  margin-bottom: 0;
}
.box_detail .price {
  line-height: 1;
  margin: 0 -25px 25px -25px;
  padding: 5px 25px 15px 25px;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
.box_detail .price .original_price {
  color: #3f8700;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}
.box_detail .price .original_price em {
  text-decoration: line-through;
  margin: 0 10px;
  font-style: normal;
}
.box_detail h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
}
.box_detail ul {
  margin-bottom: 0;
}
.box_detail ul li {
  margin-bottom: 5px;
}
.box_detail ul li i {
  margin-right: 8px;
}
.box_detail figure {
  position: relative;
  background-color: #000;
}
.box_detail figure img {
  opacity: 1;
}
.box_detail figure span {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 600;
}
.box_detail figure a i {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  font-size: 42px;
  font-size: 2.625rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
.box_detail figure:hover i {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

/*-------- 2.9 Course detail 2 --------*/
.list_lessons_2 ul {
  margin-bottom: 35px;
}
.list_lessons_2 ul li {
  padding: 10px;
}
.list_lessons_2 ul li:nth-child(odd) {
  background-color: #0057da;
  background-color: rgba(0, 97, 242, 0.04);
}
.list_lessons_2 ul li:before {
  font-family: "ElegantIcons";
  content: "[";
  margin-right: 10px;
  color: #999;
  position: relative;
  top: 2px;
}
.list_lessons_2 ul li span {
  float: right;
}

.box_highlight {
  padding: 0;
  border: 1px solid #ededed;
  background-color: #f8f8f8;
  margin-bottom: 30px;
  color: #555555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

ul.additional_info {
  margin: 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  ul.additional_info {
    text-align: left;
  }
}
ul.additional_info li {
  display: inline-block;
  padding: 20px;
  width: 32%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: none;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  ul.additional_info li {
    display: block;
    width: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 15px 15px 15px 85px;
  }
}
ul.additional_info li:last-child {
  border-right: none;
  border-bottom: none;
}
ul.additional_info li i {
  font-size: 52px;
  font-size: 3.25rem;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  ul.additional_info li i {
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 15px;
  }
}
ul.additional_info li strong {
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.box_detail #contactform .loader {
  position: absolute;
  right: 15px;
  top: 13px;
  color: #fff;
}

/*-------- 2.11 Faq --------*/
.box_style_cat {
  background: #fff;
  border: 1px solid #ededed;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .box_style_cat {
    display: none;
  }
}

ul#cat_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul#cat_nav li {
  border-bottom: 1px solid #ededed;
}
ul#cat_nav li i {
  font-size: 16px;
  font-size: 1rem;
  margin: 2px 10px 0 0;
  float: left;
}
ul#cat_nav li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
ul#cat_nav li a {
  position: relative;
  color: #555555;
  display: block;
  padding: 15px 10px;
}
ul#cat_nav li a:after {
  font-family: "fontello";
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
}
ul#cat_nav li a span {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #999;
}
ul#cat_nav li a:hover, ul#cat_nav li a#active, ul#cat_nav li a.active {
  color: #3f8700;
}

.accordion_2 .card {
  border: 0;
  margin-bottom: 5px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.accordion_2 .card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #ededed;
  padding: 20px;
}
.accordion_2 .card-body {
  padding-bottom: 0;
}
.accordion_2 .card-header h5 {
  font-size: 16px;
  font-size: 1rem;
}
.accordion_2 .card-header h5 a {
  border: 0;
  display: block;
  color: #999;
}
.accordion_2 .card-header h5 a i.indicator {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  float: right;
  color: #479900;
}

#hero_in form {
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
}

a.box_topic {
  text-align: center;
  background: #fff;
  padding: 40px 30px 15px 30px;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  color: #555555;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  a.box_topic {
    padding: 20px 20px 0 20px;
  }
}
a.box_topic:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
a.box_topic i {
  font-size: 70px;
  font-size: 4.375rem;
  color: #479900;
  margin-bottom: 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  background-color: #3c8100;
  background-color: rgba(71, 153, 0, 0.05);
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 15px;
}
a.box_topic h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

.list_articles ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list_articles ul li {
  float: left;
  width: 45%;
  margin-right: 45px;
  padding: 15px 0;
  border-bottom: 1px solid #ededed;
}
.list_articles ul li a {
  color: #555555;
  display: block;
}
.list_articles ul li a:hover {
  color: #3f8700;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}
.list_articles ul li i {
  margin-right: 10px;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  top: 2px;
}
@media (max-width: 991px) {
  .list_articles ul li {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.form-control:not(select) {
  padding: 12px 12px;
}
.form-control {
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ededed;
}

.bg_color_1 {
  background-color: #fff;
}

.box_1 {
  background-color: #121921;
  color: #fff;
  padding: 45px;
  opacity: 0;
}
.box_1 p {
  opacity: 0.8;
}
.box_1 h3 {
  color: #fff;
}

.badge_info {
  display: inline-block;
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  line-height: 1;
  padding: 5px 8px 4px 8px;
  background-color: #479900;
  margin-left: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  top: -2px;
}

.animated .box_1 {
  animation: color 0.3s ease-in-out;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.call_section {
  background: url(/static/fadmedica/img/foto4.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 400px;
  padding: 10% 0;
}

.call_section a.btn_1.rounded, .call_section .btn_1.rounded {
  width: 100%;
  font-size: 1.1em;
  text-transform: uppercase;
  padding: 13px 30px;
}

.call_section_admission {
  padding: 90px 0 90px 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 991px) {
  .call_section_admission {
    padding: 60px 0 35px 0;
  }
}
.call_section_admission h3 {
  color: #222;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 400;
  margin: 10px 0 60px 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .call_section_admission h3 {
    font-size: 32px;
    font-size: 2rem;
    margin: 10px 0 30px 0;
  }
}

.animated .draw-arrow {
  animation-name: draw;
  -webkit-animation-name: draw;
  -moz-animation-name: draw;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.box_faq {
  position: relative;
  padding-left: 50px;
}
.box_faq h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
.box_faq i {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

/*-------- 3.2 Accordion --------*/
.card {
  border-radius: 0;
  border: 0;
  margin-bottom: 5px;
}

.card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: none;
}
.card-header p {
  margin-bottom: 0;
}

.card-header h5 {
  font-size: 16px;
  font-size: 1rem;
}
.card-header h5 a {
  border: 0;
  display: block;
  color: #555;
}
.card-header h5 a i.indicator {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 5px;
  color: #3f8700;
}

/*-------- 3.3 List --------*/
ul.list_ok {
  list-style: none;
  margin: 25px 0 30px 0;
  padding: 0;
}
ul.list_ok li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
ul.list_ok li:before {
  font-family: "ElegantIcons";
  content: "R";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 32px;
  font-size: 2rem;
  color: #8dc63f;
}

ul.bullets {
  line-height: 1.8;
  margin-bottom: 30px;
}
ul.bullets li {
  position: relative;
  padding-left: 20px;
}
ul.bullets li:before {
  font-style: normal;
  font-weight: normal;
  font-family: "ElegantIcons";
  font-size: 14px;
  font-size: 0.875rem;
  content: "\\";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

/*-------- 3.5 Spacing --------*/
.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_10 {
  margin-top: 10px;
}

.add_top_15 {
  margin-top: 15px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.more_padding_left {
  padding-left: 40px;
}

.nomargin_top {
  margin-top: 0;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}
@media (max-width: 575px) {
  .margin_60_35 {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.margin_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .margin_120 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .margin_120 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.margin_120_95 {
  padding-top: 120px;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .margin_120_95 {
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .margin_120_95 {
    padding-top: 105px;
    padding-bottom: 5px;
  }
}

.margin_120_0 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .margin_120_0 {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .margin_120_0 {
    padding-top: 30px;
  }
}

.margin_30_95 {
  padding-top: 30px;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .margin_30_95 {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .margin_30_95 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .hidden_tablet {
    display: none !important;
  }
  .menu_tablet {
    margin: 0 5px 0 10px!important;
  }
  .menu_tablet a{
    font-size: 10px!important;
    padding: 5px 15px!important;
  }
  .dropdown-menu{
    position: relative!important;
    top: unset!important;;
    left: unset!important;;
  }
}

@media (max-width: 767px) {
  .hidden_mobile {
    display: none !important;
  }
}

/*-------- 3.6 Block reveal --------*/
.animated .block-reveal {
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.block-horizzontal, .block-vertical {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.animated .block-horizzontal {
  animation: reveal_left_to_right 1s ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  background: #479900;
}
.animated .block-vertical {
  animation: reveal_top_to_bottom 1s ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  background: #479900;
}

.block-reveal img {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.animated .block-reveal img {
  animation: color 0.5s ease-in-out;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes reveal_left_to_right {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes reveal_top_to_bottom {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes color {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sponsor .wrapper {
  text-align: center;
}

.breadcrumbs {
  font-size: 12px;
  margin-bottom: 30px;
  padding-top: 90px;
}

.profile img {
  -moz-border-radius: 180px;
  -webkit-border-radius: 180px;
  border-radius: 180px;
}

#sidebar .box_detail {
  padding: 20px;
}

.box_list .wrapper {
  padding: 30px 30px 20px 30px;
  min-height: 230px;
}

.box_list figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  min-height: 290px;
}

.box_list {
  min-height: auto !important;
}

.wrapper p {
  margin-bottom: 0px;
}

.box_grid .wrapper h3 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -0.2px;
  min-height: 100px;
}

.box_grid .wrapper {
  padding-top: 5px !important;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px !important;
}

.box_detail figure {
  position: relative;
  background-color: transparent;
}

.wow {
  visibility: hidden;
}

/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.main-menu > ul > li span > a {
  color: #3f6f1a;
  padding: 0 8px 15px 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main_title_2 h2.small {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

.main_title_2 h1 {
  margin: 25px 0 0 0;
}

.main_title_2 p.small {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 10px 0 10px 0;
}

.no-ecm span {
  position: absolute;
  background-color: #4f4e4e;
  bottom: 0;
}

header.sticky .main-menu > ul > li span > a {
  color: #4a831f;
  padding: 0 8px 15px 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testo-main {
  min-height: 190px;
}

.box_list ul {
  padding: 15px 15px 15px 30px;
  border-top: 1px solid #ededed;
  margin-bottom: 0;
}

.box_list ul.pacchetti-check {
  border-top: none;
  padding: 20px 15px 20px 0px;
}

.btn_huge {
  width: 30%;
  font-size: 1.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  text-align: center;
  margin-top: 30px;
}

.btn_huge_container {
  text-align: center;
}

.box_list ul.pacchetti-check li:last-child {
  float: none;
}

.row.display-flex {
  display: flex;
  flex-wrap: wrap;
  flex-flow: row wrap;
}

#infoecm p {
  margin-bottom: 0;
}

.row.display-flex > [class*=col-] {
  flex-grow: 1;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .reorder {
    display: flex;
    flex-direction: column;
  }

  #side_panel {
    order: 2;
  }

  .reorder h1 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  #grid_home {
    display: none !important;
  }
}

/*# sourceMappingURL=style.css.map */
ul#top_menu li{
  color: white;
  line-height: 22px!important;
  position: relative;
  z-index: 10000;
}
@media only screen and (max-width: 624px) {
  ul#top_menu{
    margin-top: -8px!important;
  }
  ul#top_menu li{
    display: grid!important;
    margin-top: 10px!important;
  }
}
.dropdown-menu{
  background-color: rgba(255, 255, 255, 1)!important;
  z-index: 1050!important
}

.fixed-height-center{
  text-align: center;
  position: relative;
  margin: 0 auto;
  height: 188px!important;
  width: auto!important;
}
@media only screen and (max-width: 799px) {
  #signupModal .modal-dialog{
    max-width: 100%!important;
    width: 100%!important;
  }
}
@media only screen and (min-width: 800px) {
  #signupModal .modal-dialog{
    max-width: 70%!important;
  }
}