@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Montserrat/Montserrat-Regular.otf") format("opentype"), url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Montserrat/Montserrat-Medium.otf") format("opentype"), url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Montserrat/Montserrat-Bold.otf") format("opentype"), url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Iciel";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Iciel/iCielBCCubano-Normal.otf") format("opentype");
  /* IE6-IE8 */
}
h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid #ebedef;
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

html {
  height: 100%;
  font-size: 1rem;
}

body {
  font-family: "Helvetica", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #252529;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #f4f4f4;
}

a,
a:hover {
  text-decoration: none;
  color: #17a976;
  cursor: pointer;
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: calc(100% - 14rem);
  }
}

.register-form .form-check-input:checked {
  background-color: #17a976;
  border-color: #17a976;
}

.btn-theme {
  background-color: #17a976 !important;
  border-color: #17a976 !important;
}
.btn-theme:hover {
  background-color: #8ff0ce !important;
  border-color: #8ff0ce !important;
}

.layout-wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.layout-wrapper .layout-menu-container {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
@media only screen and (min-width: 1400px) {
  .layout-wrapper .layout-menu-container {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
  .layout-wrapper .layout-menu-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.layout-wrapper .layout-menu-container .layout-menu {
  list-style-type: none;
  margin: 8px 0;
  padding: 0;
  text-align: right;
}
@media only screen and (max-width: 992px) {
  .layout-wrapper .layout-menu-container .layout-menu {
    display: none;
  }
}
.layout-wrapper .layout-menu-container .layout-menu > li {
  position: relative;
  display: inline-block;
  height: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.layout-wrapper .layout-menu-container .layout-menu > li > a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 13px;
  color: #000;
  text-transform: uppercase;
  padding: 27px 20px 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.layout-wrapper .layout-menu-container .layout-menu > li > a:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 50%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 24px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(1) > a:before {
  background-image: url("../../images/menu/home-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(2) > a:before {
  background-image: url("../../images/menu/edit-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(3) > a:before {
  background-image: url("../../images/menu/file-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(4) > a:before {
  background-image: url("../../images/menu/file-x2-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(5) > a:before {
  background-image: url("../../images/menu/contact-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(6) > a:before {
  background-image: url("../../images/menu/file-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(7) > a:before {
  background-image: url("../../images/menu/file-x2-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:nth-child(8) > a:before {
  background-image: url("../../images/menu/edit-icon.png");
}
.layout-wrapper .layout-menu-container .layout-menu > li:hover > a, .layout-wrapper .layout-menu-container .layout-menu > li.active > a {
  color: #EA3223;
}
.layout-wrapper .layout-menu-container .layout-menu > li:hover > a:before, .layout-wrapper .layout-menu-container .layout-menu > li.active > a:before {
  background-position: 0 -24px;
}
.layout-wrapper .layout-menu-container .layout-menu > li:hover ul.submenu {
  opacity: 1;
  z-index: 1;
}
.layout-wrapper .layout-menu-container .layout-menu > li ul.submenu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 4px #707070;
  padding: 0.5rem;
  background-color: #fff;
}
.layout-wrapper .layout-menu-container .layout-menu > li ul.submenu > li {
  padding: 0.5rem;
  background-color: #fff;
  text-align: center;
}
.layout-wrapper .layout-menu-container .layout-menu > li ul.submenu > li > a:hover {
  color: #EA3223;
}
.layout-wrapper .layout-menu-container .dropdown .user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50px;
}
.layout-wrapper .layout-menu-container .dropdown .user-name {
  font-size: 15px;
}

#aside-nav {
  background: #fff;
  width: 280px;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: -280px;
  height: 100%;
  overflow: hidden;
  -wekit-box-shadow: 0 0px 6px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 6px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 6px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#aside-nav #main-aside-navigation {
  width: 300px;
  height: calc(100% - 40px);
  overflow: auto;
  padding-right: 20px;
  position: relative;
}
#aside-nav #main-aside-navigation .main-nav-wrapper {
  height: auto;
  border-bottom: none !important;
  width: 280px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  #aside-nav #main-aside-navigation .main-nav-wrapper {
    height: 60px;
  }
}
#aside-nav #main-aside-navigation .main-nav-wrapper .close-aside-nav {
  position: absolute;
  top: 6px;
  right: 30px;
  font-size: 1.5rem;
  color: #303030;
  cursor: pointer;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #aside-logo {
  margin: 3rem 0 2rem;
  display: block;
  padding-right: 0;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #aside-logo a {
  display: block;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #aside-logo a img {
  display: block;
  margin: auto;
  max-width: 170px;
  height: auto;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu {
  width: 235px;
  float: none;
  height: auto;
  display: block;
  padding-left: 18px;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu .submenu > a {
  position: relative;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu .submenu > a:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  right: 12px;
  top: 12px;
  color: #121212;
  -webkit-transition: transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu .submenu:hover > a:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu .submenu > a.is-open:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul {
  list-style: none;
  display: table;
  height: 100%;
  margin-bottom: 0;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul .is-open {
  color: #17a976;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li {
  position: relative;
  float: left;
  height: 100%;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > a {
  color: #212121;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  vertical-align: middle;
  letter-spacing: 2px;
  margin: 0;
  padding: 12px 15px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul {
  margin-top: 0;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul a {
  color: #4E4E4E;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul > li a {
  display: block;
  padding-left: 15px;
  height: 100%;
  font-size: 13px;
  text-align: left;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul > li > a {
  margin-left: 10px;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul > li ul > li a {
  margin-left: 20px;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul > li ul > li > a {
  margin-right: 0;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li > ul > li ul > li ul > li a {
  margin-left: 30px;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul ul {
  display: none;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul, #aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu > ul > li {
  width: 235px;
  float: none;
  height: auto;
  display: block;
  padding-left: 0;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu ul li ul {
  background: #fff;
  padding-left: 0;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu ul > li > ul {
  width: 235px;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu ul ul {
  margin: 0;
  padding-left: 12px;
  position: relative;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  border: none;
  height: auto;
  z-index: 1;
  top: 0;
  left: 0;
  border-left: none !important;
}
#aside-nav #main-aside-navigation .main-nav-wrapper #main-aside-menu ul ul a {
  height: 38px;
  line-height: 38px;
  font-weight: 500;
}

.menu-mobile.mobile-menu-open:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  padding-top: 4rem;
  background: rgba(0, 0, 0, 0.3);
  z-index: 400;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s;
  -moz-transition: all 0.4s ease-in-out;
  transition: opacity 0.4s;
}
.menu-mobile.mobile-menu-open #aside-nav {
  left: 0;
  visibility: visible;
}

.layout-menu-button {
  display: none;
  line-height: 65px;
  font-size: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .layout-menu-button {
    display: block;
  }
}

.layout-logo img {
  width: auto;
  max-width: 160px;
  margin-top: 2px;
  display: block;
}

.layout-wrapper .layout-footer {
  background-color: #17a976;
  color: #ffffff;
  padding: 2rem 0 1rem;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1400px) {
  .layout-wrapper .layout-footer {
    font-size: 1rem;
  }
}
.layout-wrapper .layout-footer_top {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 575px) {
  .layout-wrapper .layout-footer_top {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .layout-wrapper .layout-footer_top_left {
    margin-bottom: 2rem;
  }
}
.layout-wrapper .layout-footer_top .title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1400px) {
  .layout-wrapper .layout-footer_top .title {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .layout-wrapper .layout-footer_top .title {
    margin-bottom: 0.5rem;
  }
}
.layout-wrapper .layout-footer_top .content p {
  margin-bottom: 0.315rem;
}
.layout-wrapper .layout-footer_top .content p:last-child {
  margin-bottom: 0;
}
.layout-wrapper .layout-footer_top .content p a {
  color: #ffffff;
}
.layout-wrapper .layout-footer_copy {
  padding: 1rem 0;
  text-align: center;
}

.widget-title {
  background-color: #17a976;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (min-width: 1400px) {
  .widget-title {
    font-size: 1.5rem;
  }
}

.widget-content {
  padding: 1.5rem 2.5rem;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .widget-content {
    padding: 1.5rem;
  }
}
.widget-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-content ul li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #707070;
}
.widget-content ul li a,
.widget-content ul li span {
  display: block;
}
.widget-content ul li a {
  color: #252529;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.widget-content ul li a:hover {
  color: #8ff0ce;
}
.widget-content ul li span {
  color: #65656a;
  font-size: 0.815rem;
  font-style: italic;
}

.slide .slick-track {
  display: flex;
  align-items: center;
}
.slide .slick-slide > div {
  margin: 0 0.625rem;
}
.slide .slick-slide > div img {
  max-width: 100%;
}
.slide.slide-ogn .slide-item img {
  margin: 0 auto;
}

.widget-banner {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 1400px) {
  .widget-banner {
    margin-bottom: 2.5rem;
  }
}

.widget-contest {
  margin-bottom: 0.9375rem;
  position: relative;
}
@media only screen and (min-width: 1400px) {
  .widget-contest {
    margin-bottom: 2.5rem;
  }
}
.widget-contest .join-contest-box,
.widget-contest .rules-box {
  background-color: #17a976;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.widget-contest .join-contest-box:hover,
.widget-contest .rules-box:hover {
  background-color: #8ff0ce;
}
.widget-contest .join-contest-box a,
.widget-contest .rules-box a {
  color: #ffffff;
  font-family: "Iciel", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1400px) {
  .widget-contest .join-contest-box a,
.widget-contest .rules-box a {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .widget-contest .join-contest-box a,
.widget-contest .rules-box a {
    font-size: 1rem;
  }
}
.widget-contest .join-contest-box i,
.widget-contest .rules-box i {
  padding-left: 1rem;
}
.widget-contest [class*=box-time-] {
  width: 22%;
  float: left;
  margin-right: 1rem;
  font-size: 1rem;
  color: #17a976;
  border: 1px solid #17a976;
  text-transform: uppercase;
  font-family: "Iciel", sans-serif;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-contest [class*=box-time-] {
    margin-right: 0.8rem;
  }
}
.widget-contest [class*=box-time-]:last-child {
  width: 50%;
  margin-right: 0;
}
@media only screen and (max-width: 575px) {
  .widget-contest [class*=box-time-]:last-child {
    width: 100%;
  }
}
.widget-contest [class*=box-time-] .top {
  border-bottom: 1px solid #17a976;
  padding: 0.5rem 0.5rem;
  font-weight: 800;
  text-align: center;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .widget-contest [class*=box-time-] .top {
    font-size: 0.875rem;
  }
}
.widget-contest [class*=box-time-] .bottom {
  padding: 0.5rem 0.5rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .widget-contest [class*=box-time-] .bottom {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 575px) {
  .widget-contest .box-time-start,
.widget-contest .box-time-end {
    width: 47.6%;
    margin-bottom: 1rem;
  }
}
.widget-contest .box-time-start .bottom,
.widget-contest .box-time-end .bottom {
  padding-top: 7px;
  padding-bottom: 7px;
}
@media only screen and (min-width: 1400px) {
  .widget-contest .box-time-start .bottom,
.widget-contest .box-time-end .bottom {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.widget-contest .box-time-start .bottom .time,
.widget-contest .box-time-end .bottom .time {
  color: #17a976;
  font-weight: 600;
}
.widget-contest .box-time-start .bottom .date,
.widget-contest .box-time-end .bottom .date {
  color: #17a976;
  font-weight: lighter;
}

.widget-time-line {
  margin-bottom: 0.9375rem;
  border-radius: 4px;
}
@media only screen and (min-width: 1400px) {
  .widget-time-line {
    margin-bottom: 2.5rem;
  }
}
.widget-time-line .widget-title {
  background-color: transparent;
  color: #17a976;
}
.widget-time-line .widget-content {
  background-color: transparent;
  padding-top: 0;
}
.widget-time-line .widget-content .timeline {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.widget-time-line .widget-content .timeline-item {
  display: flex;
  min-height: 70px;
  position: relative;
}
.widget-time-line .widget-content .timeline-item-content,
.widget-time-line .widget-content .timeline-item-opposite {
  line-height: 1;
  flex: 1;
  padding: 0 1rem;
}
.widget-time-line .widget-content .timeline-item-content {
  background: #17a976;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 1rem;
  margin: 1rem;
  border-radius: 4px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.widget-time-line .widget-content .timeline-item-content:hover {
  background-color: #8ff0ce;
}
.widget-time-line .widget-content .timeline-item-content .timeline-title {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-weight: 600;
}
.widget-time-line .widget-content .timeline-item-content .timeline-text {
  font-size: 0.8125rem;
  line-height: 1.4;
}
.widget-time-line .widget-content .timeline-item-separator {
  align-items: center;
  display: flex;
  flex: 0;
  flex-direction: column;
  position: relative;
}
.widget-time-line .widget-content .timeline-item-separator:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #17a976;
  border-radius: 10px;
  transform: translate(-50%, -50%);
}
.widget-time-line .widget-content .timeline-item-connector {
  flex-grow: 1;
  background-color: #471097;
}
.widget-time-line .widget-content .timeline-horizontal {
  flex-direction: row;
}
@media only screen and (max-width: 575px) {
  .widget-time-line .widget-content .timeline-horizontal {
    display: none;
  }
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item {
  flex-direction: column;
  flex: 1;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item:last-child .timeline-item-separator:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 10px solid #471097;
  border-bottom: 8px solid transparent;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-content,
.widget-time-line .widget-content .timeline-horizontal .timeline-item-opposite {
  line-height: 1;
  flex: 1;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-opposite {
  padding: 4.56rem 0;
}
@media only screen and (min-width: 1400px) {
  .widget-time-line .widget-content .timeline-horizontal .timeline-item-opposite {
    padding: 4.56rem 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-time-line .widget-content .timeline-horizontal .timeline-item-opposite {
    padding: 5.7rem 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  .widget-time-line .widget-content .timeline-horizontal .timeline-item-opposite {
    padding: 6.14rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .widget-time-line .widget-content .timeline-horizontal .timeline-item-opposite {
    padding: 6.1rem 0;
  }
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-content {
  margin-top: 2rem;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-content:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #17a976;
  transition: all 0.3s ease-in-out;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-content:hover:before {
  border-bottom-color: #8ff0ce;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-content .timeline-title {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-weight: 600;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-content .timeline-text {
  font-size: 13px;
  line-height: 1.4;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-separator {
  flex-direction: row;
}
.widget-time-line .widget-content .timeline-horizontal .timeline-item-connector {
  width: 100%;
  height: 1px;
}
.widget-time-line .widget-content .timeline-horizontal.timeline-alternate .timeline-item:nth-child(2n) {
  flex-direction: column-reverse;
}
.widget-time-line .widget-content .timeline-horizontal.timeline-alternate .timeline-item:nth-child(2n) .timeline-item-content {
  margin: 1rem 1rem 2rem;
  position: relative;
}
.widget-time-line .widget-content .timeline-horizontal.timeline-alternate .timeline-item:nth-child(2n) .timeline-item-content:before {
  top: auto;
  bottom: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #17a976;
  border-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.widget-time-line .widget-content .timeline-horizontal.timeline-alternate .timeline-item:nth-child(2n) .timeline-item-content:hover:before {
  border-top-color: #8ff0ce;
}
.widget-time-line .widget-content .timeline-vertical {
  display: none;
}
@media only screen and (max-width: 575px) {
  .widget-time-line .widget-content .timeline-vertical {
    display: block;
  }
}
@media only screen and (max-width: 479px) {
  .widget-time-line .widget-content .timeline-vertical.align-left .timeline-item-opposite {
    display: none;
  }
}
.widget-time-line .widget-content .timeline-vertical .timeline-item-connector {
  width: 1px;
  height: 100%;
}
.widget-time-line .widget-content .timeline-vertical .timeline-item:last-child .timeline-item-separator:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid #471097;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: translateX(-50%);
}
.widget-time-line .widget-content .timeline-vertical .timeline-item .timeline-item-separator {
  margin: 0 2rem;
}
.widget-time-line .widget-content .timeline-vertical .timeline-item-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #17a976;
  transition: all 0.3s ease-in-out;
}
.widget-time-line .widget-content .timeline-vertical .timeline-item-content:hover:before {
  border-right-color: #8ff0ce;
}

.widget-partners {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 1400px) {
  .widget-partners {
    margin-bottom: 2.5rem;
  }
}
.widget-partners .widget-title {
  background-color: transparent;
  color: #17a976;
}

.widget-organizers .widget-content {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.widget-organizers .slide-item img {
  margin: 0 auto;
  max-height: 102px;
}

.widget-partners-slide .slide-item img {
  max-height: 71px;
  margin: 0 auto;
}

.widget-chart {
  margin: 0 2rem 0.9375rem;
}
@media only screen and (min-width: 1400px) {
  .widget-chart {
    margin: 0.5rem 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .widget-chart {
    margin: 0 0 0.9375rem;
  }
}
.widget-chart .widget-title {
  background-color: transparent;
  color: #65656a;
  font-weight: lighter;
  border-bottom: 2px solid #17a976;
  font-size: 1.3rem;
  padding: 1rem 1rem;
  text-align: left;
}
@media only screen and (min-width: 1400px) {
  .widget-chart .widget-title {
    font-size: 1.3rem;
  }
}
.widget-chart .widget-title span {
  position: absolute;
  top: 5px;
  left: -3rem;
}
@media only screen and (min-width: 1400px) {
  .widget-chart .widget-title span {
    top: 0;
    left: -5rem;
  }
}
@media only screen and (max-width: 575px) {
  .widget-chart .widget-title span {
    display: none;
  }
}
.widget-chart .widget-title span img {
  max-width: 80px;
}
@media only screen and (min-width: 1400px) {
  .widget-chart .widget-title span img {
    max-width: 100%;
  }
}
.widget-chart .widget-title .count {
  color: #17a976;
  display: flex;
  float: left;
  margin-right: 0.7rem;
  margin-left: 3rem;
}
.widget-chart .widget-title a {
  color: #252529;
  font-size: 1.3rem;
}
.widget-chart .widget-title .nav-item .nav-link {
  background-color: transparent;
  border: none;
  color: #65656a;
}
.widget-chart .widget-title .nav-item .nav-link.active {
  color: #17a976;
}
.widget-chart .widget-content {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
}
.widget-chart .widget-content-rank ul li:last-child {
  border-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .widget-chart .widget-content-rank ul li:last-child {
    margin-bottom: 0;
  }
}
.widget-chart .widget-content-rank ul li a,
.widget-chart .widget-content-rank ul li span {
  display: inline-block;
}
.widget-chart .widget-content-rank ul li span {
  color: #252529;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  width: 42px;
  padding: 0 15px 2px;
  margin-right: 1rem;
  position: relative;
}
.widget-chart .widget-content-rank ul li span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
}
.widget-chart .widget-content-rank ul li:nth-child(1) > span {
  background-color: #f1d809;
}
.widget-chart .widget-content-rank ul li:nth-child(1) > span:after {
  border-top: 6px solid #f1d809;
}
.widget-chart .widget-content-rank ul li:nth-child(2) > span {
  background-color: #ccc;
}
.widget-chart .widget-content-rank ul li:nth-child(2) > span:after {
  border-top: 6px solid #ccc;
}
.widget-chart .widget-content-rank ul li:nth-child(3) > span {
  background-color: #e84e24;
}
.widget-chart .widget-content-rank ul li:nth-child(3) > span:after {
  border-top: 6px solid #e84e24;
}
.widget-chart .widget-content-list ul li:last-child {
  border-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .widget-chart .widget-content-list ul li:last-child {
    margin-bottom: 0;
  }
}
.widget-chart .widget-content-list ul li a,
.widget-chart .widget-content-list ul li span {
  display: inline-block;
}
.widget-chart .widget-content-list ul li span {
  font-size: 1.5rem;
  font-weight: bold;
  font-style: normal;
  margin-right: 0.5rem;
  position: relative;
}

.widget-notifications {
  margin-bottom: 0.9375rem;
  position: relative;
}
@media only screen and (min-width: 1400px) {
  .widget-notifications {
    margin-bottom: 2.5rem;
  }
}

.widget-document {
  margin-bottom: 0.9375rem;
  /*.widget-title {
      &:after {
          @include pseudo();
          top: 5px;
          right: 15px;
          bottom: 5px;
          width: 80px;
          background: url("../../images/content/icon-fish.png") no-repeat center top/100% 100%;
      }
  }*/
}
@media only screen and (min-width: 1400px) {
  .widget-document {
    margin-bottom: 2.5rem;
  }
}

.widget-videos {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 1400px) {
  .widget-videos {
    margin-bottom: 2.5rem;
  }
}
.widget-videos .widget-content ul li {
  border-bottom: 0;
}
.widget-videos .widget-content ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.widget-videos .widget-content ul li .thumbnail {
  width: 40%;
  float: left;
  margin-right: 0.625rem;
}
.widget-videos .widget-content ul li .thumbnail img {
  max-width: 100%;
}
.widget-videos .widget-content ul li h4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}
.widget-videos .widget-content ul li h4 a {
  font-weight: 600;
}
.widget-videos .widget-content ul li:after {
  content: "";
  display: table;
  clear: both;
}
.widget-videos .widget-content ul li.first {
  border-bottom: 1px solid #707070;
}
.widget-videos .widget-content ul li.first .thumbnail {
  width: 100%;
  float: none;
}
.widget-videos .widget-content ul li.first .thumbnail img {
  width: 100%;
}
.widget-videos .widget-content ul li.first h4 {
  font-size: 1rem;
  text-align: center;
}

.view-more {
  display: block;
  color: #65656a;
  border: solid 1px #17a976;
  border-radius: 5px;
  padding: 1rem;
  margin: 0 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.view-more:hover {
  background-color: #17a976;
  color: white;
}

.more {
  display: none;
}

/*# sourceMappingURL=layout-class.css.map */
