@import url("bootstrap.min.css");
@import url("slick.min.css");

:root {
  --unicons-font: "unicons-line";
  --first-color: #0a1e3e;
  --second-color: #1b3c82;
  --third-color: #3576fb;
}

html,
body {
  background-color: #f5f6f7;
  font-family: "Silka", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  outline: none !important;
  resize: none !important;
}
body * {
  /* overflow: initial !important; */
}
a,
a:hover,
a:link,
a:active,
a:visited {
  text-decoration: none;
}

.container {
  position: relative;
}

.default__btn {
  align-items: center;
  border: 2px solid var(--third-color);
  border-radius: 100px;
  color: var(--third-color);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  line-height: 1.2;
  padding: 0 30px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}

.default__btn.link__btn {
  border: 0;
}

.page__heading .heading__breadcrumbs ul li + li:before {
  content: "-" !important;
  margin: 0 10px;
}

.default__btn i {
  font-size: 25px;
  margin-right: 10px;
}

.default__btn:hover {
  background-color: var(--third-color);
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.default__btn.link__btn:hover {
  background-color: transparent;
}

/* Header */

.site__header {
  background-color: #fff;
  height: 170px;
  position: sticky;
  top: 0;
  transition: background-color 0.3s, box-shadow 0.3s, height 0.3s;
  z-index: 9;
}

body.home .site__header:not(.fixed) {
  background-color: transparent;
  transition: background-color 0.3s, box-shadow 0.3s, height 0.3s;
}

.site__header.fixed {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  height: 130px;
  transition: background-color 0.3s, box-shadow 0.3s, height 0.3s;
}

.site__header .container,
.site__header .container-fluid {
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 30px;
}

.site__header .header__logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  filter: inherit;
  transition: filter 0.3s;
}

body.home .site__header:not(.fixed) .header__logo {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.site__header .header__logo img,
.site__header .header__logo svg {
  display: block;
  height: 70px;
  width: auto;
}

.site__header .header__toggle {
  flex-grow: 1;
}

.site__header .header__toggle .toggle__content {
  display: flex;
  justify-content: center;
  height: 100%;
}

.site__header .header__menu {
  display: flex;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.site__header .header__menu > ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site__header .header__menu > ul > li {
  display: flex;
  position: relative;
}

.site__header .header__menu > ul > li > a {
  align-items: center;
  color: #666;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s;
}

body.home .site__header:not(.fixed) .header__menu > ul > li > a {
  color: #fff;
}

.site__header .header__menu > ul > li.menu__sub > a:after {
  content: "\eb3a";
  font-family: var(--unicons-font);
  font-size: 18px;
  line-height: 1;
  margin-left: 5px;
}

.site__header .header__menu > ul > li:hover > a,
body.home .site__header:not(.fixed) .header__menu > ul > li:hover > a {
  color: var(--third-color);
  transition: color 0.3s;
}

.site__header .header__menu > ul > li > ul {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.2);
  left: 50%;
  list-style: none;
  margin: 0;
  min-width: 200px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 150%;
  transform: translateX(-50%);
  transition: opacity 0.3s, top 0.3s, visibility 0.3s;
  visibility: hidden;
}

.site__header .header__menu > ul > li > ul:before {
  border-bottom: 5px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  bottom: 100%;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.site__header .header__menu > ul > li:hover > ul {
  opacity: 1;
  top: calc(100% - 40px);
  transition: opacity 0.3s, top 0.3s, visibility 0.3s;
  visibility: visible;
}

.site__header .header__menu > ul > li > ul > li + li {
  border-top: 1px solid #eee;
}

.site__header .header__menu > ul > li > ul > li > a {
  align-items: center;
  color: #666;
  display: flex;
  font-size: 13.5px;
  justify-content: center;
  padding: 15px;
  text-align: center;
  transition: color 0.3s;
}

.site__header .header__menu > ul > li > ul > li:hover > a {
  color: var(--third-color);
  transition: color 0.3s;
}

.site__header .header__panel {
  align-self: center;
}

/* Main */

body.home .site__main {
  margin-top: -170px;
}

.home__slide {
  background-color: var(--first-color);
  overflow: hidden;
  position: relative;
}

.home__slide:before {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  content: "";
  height: 170px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.home__slide .arrow {
  align-items: center;
  background-color: #fff;
  color: var(--third-color);
  cursor: pointer;
  display: flex;
  font-size: 25px;
  height: 50px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 1;
}

.home__slide .arrow.prev {
  border-radius: 0 100px 100px 0;
  left: 0;
  transform: translate3d(-150%, -50%, 0);
  transition: transform 0.3s;
}

.home__slide .arrow.next {
  border-radius: 100px 0 0 100px;
  right: 0;
  transform: translate3d(150%, -50%, 0);
  transition: transform 0.3s;
}

.home__slide:hover .arrow {
  transform: translate3d(0, -50%, 0);
  transition: transform 0.3s;
}

.home__slide .slide__item {
  opacity: 0;
  position: absolute;
}

.home__slide .slide__item:nth-child(1) {
  opacity: 1;
  position: relative;
}

.home__slide .slide__item a {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.home__slide .slide__item a:not([href]),
.home__slide .slide__item a[href=""] {
  cursor: default;
  pointer-events: none;
}

.home__slide .slide__item .container-fluid {
  align-items: center;
  background-color: #0a1e3e80;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 760px;
  padding: 0 120px;
}

.home__slide .slide__item .column__left {
  align-items: flex-start;
  display: flex;
  flex-grow: 1;
  padding: 170px 0 0;
}

.home__slide .slide__item .column__right {
  align-self: flex-end;
  flex-shrink: 0;
}

.home__slide .slide__item .item__logo {
  flex-shrink: 0;
  margin-right: 40px;
}

.home__slide .slide__item .item__logo img {
  display: block;
  height: auto;
  max-width: 150px;
}

.home__slide .slide__item .item__content {
  color: #fff;
}

.home__slide .slide__item .item__content .content__label {
  color: var(--third-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 0 10px;
}

.home__slide .slide__item .item__content .content__title {
  font-size: 45px;
  font-weight: 200;
  line-height: 1.2;
}

.home__slide .slide__item .item__content .content__title b,
.home__slide .slide__item .item__content .content__title strong {
  font-weight: 700;
}

.home__slide .slide__item .item__content .content__text {
  font-size: 20px;
  font-weight: 300;
}

.home__slide .slide__item .item__content .content__text > * {
  margin: 30px 0 0;
  padding: 0;
}

.home__slide .slide__item .item__content .content__text ol,
.home__slide .slide__item .item__content .content__text ul {
  list-style-position: inside;
}

.home__slide .slide__item .item__content .content__text ol li,
.home__slide .slide__item .item__content .content__text ul li {
  margin: 5px 0 0;
}

.home__slide .slide__item .item__content .content__text b,
.home__slide .slide__item .item__content .content__text strong {
  font-weight: 700;
}

.home__slide .slide__item .item__content .content__btn {
  margin: 30px 0 0;
}

.home__slide .slide__item .item__image img {
  display: block;
  height: auto;
  max-width: 480px;
}

.mb__block {
  margin-bottom: 50px;
}

.home__buttons .buttons__list {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  margin: -30px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.home__buttons .buttons__list .list__item {
  flex: 1 0 16.6666667%;
}

.home__buttons .buttons__list .list__item + .list__item {
  box-shadow: inset 1px 0 0 0 #eee;
}

.home__buttons .buttons__list .list__item a {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s;
}

.home__buttons .buttons__list .list__item .item__icon {
  color: var(--third-color);
  font-size: 48px;
  line-height: 1;
}

.home__buttons .buttons__list .list__item .item__title {
  color: #666;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 15px 0 0;
}

.home__buttons .buttons__list .list__item a:hover {
  background-color: rgba(0, 0, 0, 0.025);
  transition: background-color 0.3s;
}

.home__contests .contests__header {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
}

.home__contests .contests__header .header__contests {
  color: #797979;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  text-transform: uppercase;
}

.home__contests .contests__header .header__contests span {
  align-items: center;
  color: var(--second-color);
  cursor: pointer;
  display: flex;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
}

.home__contests .contests__header .header__contests span:after {
  color: var(--third-color);
  content: "\eb3a";
  display: inline-flex;
  font-family: var(--unicons-font);
  font-weight: normal;
  line-height: 1;
  margin-left: 3px;
}

.home__contests .contests__header .header__contests .contests__dropdown {
  background-color: #fff;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  margin: 10px 0 0;
  padding: 0;
  width: 200px;
}

/*.home__contests .contests__header .header__contests .contests__dropdown:before {
	border-bottom: 5px solid #fff;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	bottom: 100%;
	content: '';
	position: absolute;
	right: 22.5px;
}*/

.home__contests .contests__header .header__contests .contests__dropdown a {
  align-items: center;
  color: #666;
  display: flex;
  font-size: 13.5px;
  font-weight: 400;
  justify-content: center;
  padding: 15px;
  text-align: center;
  text-transform: none;
  transition: color 0.3s;
}

.home__contests .contests__header .header__contests .contests__dropdown a + a {
  border-top: 1px solid #eee;
}

.home__contests
  .contests__header
  .header__contests
  .contests__dropdown
  a:hover {
  color: var(--third-color);
  transition: color 0.3s;
}

.home__contests .contests__header .header__filter {
  align-items: center;
  display: flex;
  gap: 20px;
}

.home__contests .contests__header .header__filter .filter__item {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  position: relative;
}

.home__contests
  .contests__header
  .header__filter
  .filter__item.filter__select:after {
  color: #ddd;
  content: "\eb3a";
  font-family: var(--unicons-font);
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.home__contests .contests__header .header__filter .filter__item.filter__search {
  width: 350px;
}

.home__contests .contests__header .header__filter .filter__item .item__input {
  background-color: transparent;
  border: 0;
  color: #999;
  font-size: 14px;
  height: 55px;
  padding: 0 20px;
  width: 100%;
}

.home__contests
  .contests__header
  .header__filter
  .filter__item
  select.item__input {
  appearance: none;
  padding-right: 50px;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
}

.home__contests .contests__header .header__filter .filter__item button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #ddd;
  display: flex;
  font-size: 20px;
  line-height: 1;
  padding: 0 20px 0 0;
}

.home__contests .contests__list .list__item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  height: calc(100% - 30px);
  margin: 30px 0 0;
  text-align: center;
  transition: transform 0.3s;
}

.home__contests .contests__list .list__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home__contests .contests__list .list__item .item__logo {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  height: 130px;
  margin: -10px auto 0;
  padding: 10px;
  width: 130px;
}

.home__contests .contests__list .list__item .item__logo img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.home__contests .contests__list .list__item .item__content {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 15px;
  padding: 20px;
}

.home__contests .contests__list .list__item .item__content .content__label {
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
}

.home__contests .contests__list .list__item .item__content .content__title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.home__contests .contests__list .list__item .item__content .content__alert {
  background-color: #fffad2;
  border-radius: 5px;
  color: #666;
  font-size: 12px;
  padding: 10px;
}

.home__contests .contests__list .list__item .item__content .content__infos {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.home__contests .contests__list .list__item .item__footer {
  border-radius: 0 0 8px 8px;
  display: flex;
  margin-top: auto;
  overflow: hidden;
}

.home__contests .contests__list .list__item .item__footer .footer__item {
  align-items: center;
  background-color: #f8f8f8;
  color: #666;
  display: flex;
  flex: 1 0 auto;
  font-size: 15px;
  height: 50px;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}

.home__contests .contests__list .list__item .item__footer .footer__status {
  background-color: var(--third-color);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.home__contests
  .contests__list
  .list__item
  .item__footer
  .footer__status.status__opened {
  background-color: #2db200;
}

.home__contests .contests__list .list__item .item__footer .footer__job b {
  color: var(--second-color);
  margin-right: 5px;
}

.home__contests .contests__list .list__item:hover {
  transform: scale(1.025);
  transition: transform 0.3s;
}

.home__contests .contests__pagination {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  margin: 60px 0 0;
  text-align: center;
}

.home__contests .contests__pagination a,
.home__contests .contests__pagination span {
  color: var(--third-color);
  padding: 15px;
  transition: color 0.3s;
}

.home__contests .contests__pagination .prev,
.home__contests .contests__pagination .next {
  color: #999;
}

.home__contests .contests__pagination span {
  color: var(--second-color);
  font-weight: 700;
}

.home__contests .contests__pagination a:hover {
  color: #333;
  transition: color 0.3s;
}

.home__features .features__list {
  display: flex;
}

.home__features .features__list .list__item {
  flex: 1 0 33.3333333%;
  overflow: hidden;
  position: relative;
}

.home__features .features__list .list__item:before {
  content: "";
  display: block;
  padding-bottom: 70%;
}

.home__features .features__list .list__item .item__content,
.home__features .features__list .list__item .item__image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.home__features .features__list .list__item .item__content {
  align-items: flex-start;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.5)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  padding: 45px;
  z-index: 1;
}

.home__features .features__list .list__item .item__content .content__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.home__features
  .features__list
  .list__item
  .item__content
  .content__description {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.home__features .features__list .list__item .item__content .content__btns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 0;
}

.home__features .features__list .list__item .item__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.home__news {
  background-color: #fff;
}

.home__news .container {
  padding: 80px 15px;
}

.home__news .news__header {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}

.home__news .news__header .header__title {
  color: #797979;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.home__news .news__header .header__title span {
  color: var(--second-color);
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
}

.home__news .news__list .list__item {
  margin: 0 0 30px;
}

.home__news .news__list .list__item a {
  color: #999;
  display: block;
  transition: color 0.3s;
}

.home__news .news__list .list__item .item__date {
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 15px;
}

.home__news .news__list .list__item .item__title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
}

.home__news .news__list .list__item .item__description {
  font-size: 14px;
  line-height: 1.8;
  margin: 25px 0 0;
}

.home__news .news__list .list__item a:hover {
  color: #666;
  transition: color 0.3s;
}

.home__news .news__list .list__item a:hover .item__title {
  color: var(--third-color);
  transition: color 0.3s;
}

/* Internal Pages */

.page__heading {
  background-color: var(--first-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.page__heading .heading__mask {
  background-color: #0a1e3e95;
  position: relative;
}

.page__heading .heading__mask:before {
  background: linear-gradient(to bottom, #0a1e3e25, #0a1e3e);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.page__heading .container {
  padding: 100px 15px;
  position: relative;
  z-index: 1;
}

.page__heading .heading__title {
  align-items: flex-end;
  display: flex;
  font-size: 35px;
  font-weight: 300;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.page__heading .heading__title b,
.page__heading .heading__title strong {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}

.page__heading .heading__title span:before {
  content: "/";
  font-weight: 200;
  margin: 0 15px;
}

.page__heading .heading__breadcrumbs {
  background-color: var(--third-color);
  border-radius: 100px;
  font-size: 13px;
  left: 50%;
  position: absolute;
  top: calc(100% - 25px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.page__heading .heading__breadcrumbs ul {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0 30px;
}

.page__heading .heading__breadcrumbs ul li {
  align-items: center;
  display: flex;
}

.page__heading .heading__breadcrumbs ul li + li:before {
  content: "Â»";
  margin: 0 10px;
}

.page__heading .heading__breadcrumbs ul li a {
  color: #fff;
  transition: color 0.3s;
}

.page__heading .heading__breadcrumbs ul li a:hover {
  color: #ffffff90;
  transition: color 0.3s;
}

.page__main .container {
  padding: 100px 15px;
}

.page__content {
  color: #333;
  font-size: 16px;
  line-height: 2;
  position: relative;
}

.page__content > * {
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0;
}

.page__content > *:first-child {
  margin-top: 0;
}

.page__content > *:last-child {
  margin-bottom: 0;
}

.page__content a {
  color: var(--third-color);
  text-decoration: underline;
}

.page__content img {
  display: block;
  height: auto;
  max-width: 100%;
}

.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6 {
  color: var(--second-color);
  font-weight: 700;
}

.page__content ol,
.page__content ul {
  list-style-position: inside;
}

.about__cards {
  margin: 10px 0 0;
}

.about__cards .cards__item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.1);
  height: calc(100% - 30px);
  margin: 30px 0 0;
  padding: 40px;
  text-align: center;
}

.about__cards .cards__item .item__icon {
  color: #eee;
  font-size: 115px;
  line-height: 1;
  margin: 0 0 35px;
}

.about__cards .cards__item .item__title {
  color: var(--second-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
}

.about__cards .cards__item .item__description {
  color: #666;
  font-size: 15px;
  line-height: 2;
}

.page__footer {
  align-items: center;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  margin: 80px 0 0;
  padding: 20px 0 0;
}

.page__footer ul {
  align-items: center;
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page__footer ul li a {
  align-items: center;
  color: #999;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.page__footer ul li a i {
  margin-right: 5px;
  opacity: 0.5;
}

.page__footer ul li a:hover {
  color: var(--third-color);
  transition: color 0.3s;
}

.contest__links {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 30px;
  overflow: hidden;
  text-align: center;
  top: 200px;
  width: 50px;
  z-index: 9;
}

.contest__links a {
  align-items: center;
  color: var(--third-color);
  display: flex;
  font-size: 20px;
  height: 50px;
  justify-content: center;
  transition: border-left 0.3s;
}

.contest__links a + a {
  border-top: 1px solid #eee;
}

.contest__links a.active {
  border-left: 2px solid var(--third-color);
  transition: border-left 0.3s;
}

.tooltip.show {
  opacity: 1;
}

.tooltip .tooltip-inner {
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

.tooltip .arrow:before {
  border-left-color: #fff;
}

.contest__information {
  align-items: flex-start;
  display: flex;
}

.contest__information .information__left {
  background-color: #f7f8f9;
  border-radius: 10px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin-right: 50px;
  width: 255px;
}

.contest__information .information__logo {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 35px;
}

.contest__information .information__logo img {
  display: block;
  height: auto;
  width: 100%;
}

.contest__information .information__job {
  color: #666;
  font-size: 16px;
  line-height: 1.3;
  padding: 15px;
  text-align: center;
}

.contest__information .information__job b,
.contest__information .information__job strong {
  color: var(--second-color);
}

.contest__information .information__label {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.contest__information .information__title {
  color: #333;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.contest__information .information__alert {
  background-color: #fffad2;
  border-radius: 5px;
  color: #666;
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px;
  margin: 30px 0 0;
}

.contest__information .information__info {
  color: #666;
  font-size: 15px;
  line-height: 2;
  margin: 30px 0 0;
}

.contest__information .information__btn {
  align-items: center;
  background-color: #2db200;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
  margin: 30px 0 0;
  padding: 15px 40px;
  text-align: center;
  text-transform: uppercase;
}

.contest__information .information__btn:hover {
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.1);
}

.contest__table .table__title {
  color: var(--second-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
}

.contest__table .table__content table {
  background-color: #fff;
  border-collapse: separate;
  border-radius: 5px;
}

.contest__table .table__content table th,
.contest__table .table__content table td {
  border: 1px solid rgba(0, 0, 0, 0.075);
  padding: 12px 18px;
}

.contest__table .table__content table th {
  background-color: var(--second-color);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contest__table .table__content table th[align="center"] {
  text-align: center;
}

.contest__table .table__content table th:first-child {
  border-radius: 5px 0 0 0;
}

.contest__table .table__content table th:last-child {
  border-radius: 0 5px 0 0;
}

.contest__table .table__content table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.contest__table .table__content table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.contest__table .table__content table td {
  color: #666;
  font-size: 13.5px;
  font-weight: 500;
  padding: 15px 18px;
}

.contest__table .table__content table tr:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.025);
}

.contest__table .table__content table td a {
  color: #666;
  transition: color 0.3s;
}

.table__content table td {
  white-space: normal !important;
}

.contest__table .table__content table td a[href$=".pdf"],
.contest__table .table__content table td a[href$=".doc"],
.contest__table .table__content table td a[href$=".docx"],
.contest__table .table__content table td a[href$=".xls"],
.contest__table .table__content table td a[href$=".xlsx"] {
  align-items: center;
  display: flex;
}

.contest__table .table__content table td a:before {
  align-items: center;
  background-color: royalblue;
  border-radius: 3px;
  color: #fff;
  content: "LINK";
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  height: 16px;
  justify-content: center;
  margin-right: 15px;
  padding: 0 5px;
  text-align: center;
  text-transform: uppercase;
}

.contest__table .table__content table td a[href$=".pdf"]:before,
.contest__table .table__content table td a[href$=".doc"]:before,
.contest__table .table__content table td a[href$=".docx"]:before,
.contest__table .table__content table td a[href$=".xls"]:before,
.contest__table .table__content table td a[href$=".xlsx"]:before {
  align-items: center;
  background-color: #d90000;
  border-radius: 3px;
  color: #fff;
  content: "PDF";
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  height: 16px;
  justify-content: center;
  margin-right: 15px;
  padding: 0 5px;
  text-align: center;
  text-transform: uppercase;
}

.contest__table .table__content table td a[href$=".doc"]:before,
.contest__table .table__content table td a[href$=".docx"]:before {
  background-color: #3778fb;
  content: "DOC";
}

.contest__table .table__content table td a[href$=".xls"]:before,
.contest__table .table__content table td a[href$=".xlsx"]:before {
  background-color: #00b200;
  content: "XLS";
}

.contest__table .table__content table td a:hover {
  color: #333;
  transition: color 0.3s;
}

.contest__table .table__content table caption {
  font-size: 12px;
  font-style: italic;
}

.contact__cards {
  background-color: #fff;
}

.contact__cards .container {
  padding: 50px 15px;
}

.contact__cards .cards__item {
  margin: 20px 0;
  text-align: center;
}

.contact__cards .cards__item .item__icon {
  color: var(--third-color);
  font-size: 35px;
  margin: 0 0 20px;
}

.contact__cards .cards__item .item__title {
  color: #999;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 10px;
}

.contact__cards .cards__item .item__description {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.contact__cards .cards__item .item__description a {
  color: #666;
  transition: color 0.3s;
}

.contact__cards .cards__item .item__description a:hover {
  color: var(--third-color);
  transition: color 0.3s;
}

.page__form {
  margin: 10px 0 0;
}

.page__form .form-group {
  margin: 30px 0 0;
  position: relative;
}

.page__form .form-group.form-select:after {
  align-items: center;
  bottom: 0;
  color: #999;
  content: "\eb3a";
  display: flex;
  font-family: var(--unicons-font);
  font-size: 20px;
  height: 50px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

.page__form .form-group label {
  color: #666;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}

.page__form .form-group label span {
  color: #d90000;
}

.page__form .form-group .form-control {
  border-color: #ddd;
  box-shadow: inherit;
  font-size: 14px;
  padding: 15px;
}

.page__form .form-group .form-control:not(textarea) {
  height: 50px;
}

.page__form .form-group select.form-control {
  appearance: none;
  padding-right: 40px;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
}

.page__form .form-group .form-control:hover,
.page__form .form-group .form-control:focus {
  border-color: #bbb;
}

.page__form .form-group input[type="submit"],
.page__form .form-group button[type="submit"] {
  align-items: center;
  background-color: #3778fb;
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
  padding: 15px 40px;
  text-align: center;
  text-transform: uppercase;
}

.page__form .form-group input[type="submit"]:hover,
.page__form .form-group button[type="submit"]:hover {
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.1);
}

.page__form .form-group input[type="submit"]:disabled,
.page__form .form-group button[type="submit"]:disabled {
  cursor: default;
  filter: grayscale(100%);
  opacity: 0.75;
  pointer-events: none;
}

/* Footer */

.site__footer {
  background-color: var(--second-color);
  color: #fff;
  position: relative;
  z-index: 1;
}

.site__footer .container {
  display: flex;
}

.site__footer .footer__column {
  flex: 1 0 50%;
}

.site__footer .footer__left {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 50px 50px 0;
}

.site__footer .footer__right {
  background-color: #1d418b;
  box-shadow: 350px 0 0 0 #1d418b;
  margin-top: -20px;
  padding: 50px 0 50px 50px;
}

.site__footer .footer__menu {
  flex: 1 0 auto;
}

.site__footer .footer__menu .menu__title {
  color: var(--third-color);
  font-size: 17px;
  font-weight: 600;
}

.site__footer .footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site__footer .footer__menu ul li {
  margin: 25px 0 0;
}

.site__footer .footer__menu ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  transition: color 0.3s;
}

.site__footer .footer__menu ul li a:hover {
  color: var(--third-color);
  transition: color 0.3s;
}

.site__footer .footer__copyright {
  color: var(--third-color);
  font-size: 12px;
  margin: 50px 0 0;
  opacity: 0.75;
  width: 100%;
}

.site__footer .footer__about .about__title {
  font-size: 18px;
  font-weight: 700;
}

.site__footer .footer__about .about__document {
  font-size: 16px;
  margin: 5px 0 0;
}

.site__footer .footer__about ul.about__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site__footer .footer__about ul.about__contacts li {
  align-items: center;
  display: flex;
  margin: 30px 0 0;
}

.site__footer .footer__about ul.about__contacts li i {
  color: var(--third-color);
  font-size: 36px;
  line-height: 1;
  opacity: 0.5;
}

.site__footer .footer__about ul.about__contacts li p {
  font-size: 14px;
  margin: 0 0 0 20px;
}

.site__footer .footer__about ul.about__contacts li p a {
  color: #fff;
  transition: color 0.3s;
}

.site__footer .footer__about ul.about__contacts li p a:hover {
  color: var(--third-color);
  transition: color 0.3s;
}

.site__footer .footer__about .about__btn {
  margin: 40px 0 0;
}

/* Media Queries */

/* Desktops */

@media (max-width: 1199px) {
  .site__header {
    height: 150px;
  }

  .site__header.fixed {
    height: 110px;
  }

  .site__header .header__logo img,
  .site__header .header__logo svg {
    height: 60px;
  }

  .site__header .header__menu > ul > li > a {
    font-size: 13px;
  }

  .home__slide .slide__item .container-fluid {
    min-height: 670px;
    padding: 0 100px;
  }

  .home__slide .slide__item .column__left {
    padding: 150px 0 0;
  }

  .home__slide .slide__item .column__right {
    padding-left: 30px;
  }

  .home__slide .slide__item .item__logo img {
    max-width: 100px;
  }

  .home__slide .slide__item .item__content .content__label {
    font-size: 15px;
  }

  .home__slide .slide__item .item__content .content__title {
    font-size: 32px;
  }

  .home__slide .slide__item .item__content .content__text {
    font-size: 18px;
  }

  .home__slide .slide__item .item__image img {
    max-width: 370px;
  }

  .home__contests .contests__header .header__contests span {
    font-size: 32px;
  }

  .home__contests
    .contests__header
    .header__filter
    .filter__item.filter__search {
    width: 300px;
  }

  .home__features .features__list .list__item:before {
    padding-bottom: 100%;
  }

  .home__features .features__list .list__item .item__content {
    padding: 35px;
  }

  .home__features .features__list .list__item .item__content .content__title {
    font-size: 26px;
  }

  .home__features
    .features__list
    .list__item
    .item__content
    .content__description {
    font-size: 14px;
  }
}

/* Tablets */

@media (max-width: 991px) {
  .site__header {
    height: 120px;
  }

  .site__header.fixed {
    height: 90px;
  }

  .site__header .header__logo img,
  .site__header .header__logo svg {
    height: 45px;
  }

  .site__header .header__btn {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site__header .header__btn span {
    background-color: #fff;
    display: block;
    height: 2px;
    margin: 4px 0;
    transition: background-color 0.3s;
    width: 32px;
  }

  body:not(.home) .site__header .header__btn span,
  .site__header.fixed .header__btn span {
    background-color: var(--third-color);
    transition: background-color 0.3s;
  }

  .site__header .header__toggle {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    z-index: 99;
  }

  .site__header .header__toggle.active {
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: visible;
  }

  .site__header .header__toggle .toggle__content {
    background-color: #fff;
    box-shadow: 0 0 50px 0 #000;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 0 0 -260px;
    overflow-y: auto;
    transition: margin 0.3s;
    width: 260px;
  }

  .site__header .header__toggle.active .toggle__content {
    margin: 0;
    transition: margin 0.3s;
  }

  .site__header .header__menu {
    height: auto;
    padding: 0;
    width: 100%;
  }

  .site__header .header__menu > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .site__header .header__menu > ul > li {
    flex-direction: column;
  }

  .site__header .header__menu > ul > li + li {
    border-top: 1px solid #eee;
  }

  .site__header .header__menu > ul > li > a {
    padding: 15px;
    width: 100%;
  }

  body.home .site__header:not(.fixed) .header__menu > ul > li > a {
    color: #666;
  }

  .site__header .header__menu > ul > li > ul {
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: inherit;
    opacity: 1;
    position: relative;
    top: inherit;
    visibility: visible;
  }

  .site__header .header__menu > ul > li:hover > ul {
    top: inherit;
  }

  .site__header .header__menu > ul > li > ul:before {
    border-bottom-color: rgba(0, 0, 0, 0.03);
  }

  .site__header .header__panel {
    border-top: 1px solid #eee;
    padding: 15px;
    width: 100%;
  }

  .site__header .header__panel a {
    padding: 0;
    width: 100%;
  }

  .home__slide .slide__item .container-fluid {
    min-height: 620px;
  }

  .home__slide .slide__item .column__left {
    padding: 100px 0 0;
  }

  .home__slide .slide__item .column__right {
    display: none;
  }

  .home__slide .slide__item .item__content .content__title br,
  .home__slide .slide__item .item__content .content__text br {
    display: none;
  }

  .home__slide .slide__item .item__content .content__text {
    font-size: 17px;
  }

  .home__buttons .buttons__list {
    flex-wrap: wrap;
  }

  .home__buttons .buttons__list .list__item {
    border: 0.5px solid #f5f5f5;
    flex: 1 0 33.3333333%;
  }

  .home__buttons .buttons__list .list__item + .list__item {
    box-shadow: none;
  }

  .home__buttons .buttons__list .list__item a {
    flex-direction: row;
    padding: 20px;
  }

  .home__buttons .buttons__list .list__item .item__icon {
    font-size: 28px;
  }

  .home__buttons .buttons__list .list__item .item__title {
    font-size: 13px;
    margin: 0 0 0 10px;
    text-align: left;
  }

  .home__contests .contests__header {
    align-items: center;
  }

  .home__contests .contests__header .header__contests {
    font-size: 13px;
  }

  .home__contests .contests__header .header__contests span {
    font-size: 25px;
  }

  .home__contests
    .contests__header
    .header__filter
    .filter__item.filter__search {
    width: 250px;
  }

  .home__contests .contests__header .header__filter .filter__item .item__input {
    font-size: 13px;
  }

  .home__features .features__list {
    flex-direction: column;
  }

  .home__features .features__list .list__item:before {
    padding-bottom: 35%;
  }

  .home__features .features__list .list__item .item__content {
    padding: 40px;
  }

  .home__news .news__header .header__title {
    font-size: 14px;
  }

  .home__news .news__header .header__title span {
    font-size: 28px;
  }

  .page__heading .container {
    padding: 80px 15px;
  }

  .page__heading .heading__title {
    font-size: 28px;
  }

  .page__heading .heading__title b,
  .page__heading .heading__title strong {
    font-size: 40px;
  }

  .page__heading .heading__breadcrumbs {
    font-size: 12px;
  }

  .page__main .container {
    padding: 80px 15px;
  }

  .page__content {
    font-size: 15px;
  }

  .contest__information .information__left {
    width: 200px;
  }

  .contest__information .information__title {
    font-size: 30px;
  }

  .contest__table .table__content {
    overflow-y: auto;
  }

  .contest__table .table__content table {
    white-space: nowrap;
  }

  .contact__cards .cards__item {
    padding-left: 55px;
    position: relative;
    text-align: left;
  }

  .contact__cards .cards__item .item__icon {
    left: 0;
    margin: 0;
    position: absolute;
    top: -10px;
  }

  .contact__cards .cards__item .item__title {
    font-size: 12px;
  }

  .contact__cards .cards__item .item__description {
    font-size: 14px;
  }

  .site__footer .footer__right {
    box-shadow: 300px 0 0 0 #1d418b;
  }

  .site__footer .footer__menu ul li {
    margin: 15px 0 0;
  }

  .site__footer .footer__menu + .footer__menu {
    margin: 25px 0 0;
  }
}

/* Smartphones - Landscape */

@media (max-width: 767px) {
  .default__btn {
    font-size: 13px;
  }

  .home__slide .slide__item .item__logo {
    margin-right: 30px;
  }

  .home__slide .slide__item .item__logo img {
    max-width: 90px;
  }

  .home__slide .slide__item .item__content .content__title {
    font-size: 28px;
  }

  .home__slide .slide__item .item__content .content__text {
    font-size: 16px;
  }

  .home__contests .contests__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home__contests .contests__header .header__filter {
    margin: 30px 0 0;
    width: 100%;
  }

  .home__contests .contests__header .header__filter .filter__item {
    flex-grow: 1;
  }

  .home__contests
    .contests__header
    .header__filter
    .filter__item.filter__search {
    width: auto;
  }

  .home__contests .contests__list .list__item .item__content .content__title {
    font-size: 16px;
  }

  .home__contests .contests__list .list__item .item__content .content__infos {
    font-size: 13px;
  }

  .home__contests .contests__pagination {
    font-size: 14px;
  }

  .home__features .features__list .list__item:before {
    padding-bottom: 50%;
  }

  .home__news .news__list .col-12 + .col-12 .list__item {
    border-top: 1px solid #eee;
    padding-top: 35px;
  }

  .home__news .news__list .list__item .item__title {
    font-size: 16px;
  }

  .home__news .news__list .list__item .item__description {
    font-size: 13px;
  }

  .page__heading .container {
    padding: 60px 15px 70px;
  }

  .page__heading .heading__title {
    align-items: center;
    flex-direction: column;
    font-size: 25px;
  }

  .page__heading .heading__title b,
  .page__heading .heading__title strong {
    font-size: 35px;
  }

  .page__heading .heading__title span:before {
    display: none;
  }

  .page__heading .heading__breadcrumbs ul li:last-child {
    display: none;
  }

  .about__cards .cards__item .item__icon {
    font-size: 85px;
  }

  .about__cards .cards__item .item__title {
    font-size: 20px;
  }

  .about__cards .cards__item .item__description {
    font-size: 14px;
  }

  .contest__links {
    border-radius: 5px 0 0 5px;
    right: 0;
  }

  .contest__information {
    align-items: center;
    flex-direction: column;
  }

  .contest__information .information__left {
    margin: 0 auto 35px;
    width: 180px;
  }

  .contest__information .information__right {
    text-align: center;
  }

  .contest__information .information__job {
    font-size: 14px;
  }

  .contest__information .information__label {
    font-size: 13px;
  }

  .contest__information .information__title {
    font-size: 25px;
  }

  .contest__information .information__alert {
    font-size: 13px;
  }

  .contest__information .information__info {
    font-size: 14px;
  }

  .contest__table .table__title {
    font-size: 22px;
    margin: 0 0 20px;
  }

  .contact__cards .cards__item {
    margin: 15px 0;
    padding-left: 40px;
  }

  .contact__cards .cards__item .item__icon {
    font-size: 25px;
    top: -5px;
  }

  .contact__cards .cards__item .item__description {
    font-size: 13px;
  }

  .site__footer .container {
    flex-direction: column-reverse;
  }

  .site__footer .footer__left {
    padding: 50px 0;
  }

  .site__footer .footer__menu + .footer__menu {
    margin: 0;
  }

  .site__footer .footer__menu .menu__title {
    font-size: 15px;
  }

  .site__footer .footer__menu ul li a {
    font-size: 13px;
  }

  .site__footer .footer__copyright {
    margin: 40px 0 0;
  }

  .site__footer .footer__right {
    padding: 40px 0 40px 40px;
  }

  .site__footer .footer__about .about__title {
    font-size: 16px;
  }

  .site__footer .footer__about .about__document {
    font-size: 14px;
  }

  .site__footer .footer__about ul.about__contacts li {
    margin: 25px 0 0;
  }

  .site__footer .footer__about ul.about__contacts li i {
    font-size: 32px;
  }
}

/* Smartphones - Portrait */

@media (max-width: 567px) {
  .site__header {
    height: 90px;
  }

  .site__header.fixed {
    height: 70px;
  }

  .site__header .container-fluid {
    padding: 0 20px;
  }

  .site__header .header__logo img,
  .site__header .header__logo svg {
    height: 40px;
  }

  .mb__block {
    margin-bottom: 75px;
  }

  .home__slide .slide__item .container-fluid {
    min-height: auto;
    padding: 200px 15px 100px;
  }

  .home__slide .slide__item .column__left {
    align-items: center;
    flex-direction: column;
    padding: 0;
    text-align: center;
  }

  .home__slide .slide__item .item__logo {
    margin: 0 0 20px;
  }

  .home__slide .slide__item .item__content .content__title {
    font-size: 26px;
  }

  .home__contests .contests__header .header__filter {
    align-items: stretch;
    flex-direction: column;
  }

  .home__features .features__list .list__item:before {
    padding-bottom: 100%;
  }

  .home__features .features__list .list__item .item__content .content__title {
    font-size: 22px;
  }

  .home__features .features__list .list__item .item__content .content__btns {
    flex-wrap: nowrap;
  }

  .home__news .container {
    padding: 75px 15px;
  }

  .home__news .news__header .header__title span {
    font-size: 25px;
  }

  .page__heading .heading__title {
    font-size: 20px;
  }

  .page__heading .heading__title b,
  .page__heading .heading__title strong {
    font-size: 30px;
  }

  .about__cards .cards__item {
    padding: 35px;
  }

  .page__footer {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 30px 0 0;
  }

  .contest__links {
    display: none;
  }

  .contest__information .information__title {
    font-size: 22px;
  }

  .site__footer .footer__left {
    flex-direction: column;
  }

  .site__footer .footer__menu + .footer__menu {
    margin: 30px 0 0;
  }

  .site__footer .footer__about .about__btn {
    margin: 30px 0 0;
  }
}
.contest__table .table__content table td {
  font-size: 16px;
  padding: 11px 18px;
}

.opcoes {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  margin: 60px 0 0;
  text-align: center;
}

.home__contests .contests__header .header__contests span:after {
  display: none;
}

@media print {
  .naoimprimir {
    visibility: hidden;
  }
}
