/*!
   Theme Name: base-theme
   Author: dinkuminteractive
   Author URI: https://dinkuminteractive.com/

   Description: Base theme to start all projects

   Version: 1.0.0
   Last update: 06-02-2020
   Tested up to:
   minimum PHP version required: 7.1
   Text Domain: base-theme

   Normalizing styles, version: 8.0.1 https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Layouts
   - Header
   - footer
   - Sidebar
# Components
   - Fonts
   - Global
   - Typography
   - Accordion
   - Navigation
   - Buttons
   - Backgrounds
   - Icons
   - Forms
   - Sliders
   - Contents
   - Lists
   - Modals
# Utilities
   - Accessibility
   - Helpers
   - Alignments

--------------------------------------------------------------*/
/* Box Sizing
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 104px;
  z-index: 100;
  background-color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 991.98px) {
  header {
    height: 56px;
    background-color: #092743;
  }
  header .auth-btn a {
    border: 1px solid #fff;
    color: #fff;
  }
  header .auth-btn a:hover {
    background-color: #fff;
    color: #57BADE;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
  }
  header .navbar .navbar-nav .nav-item .nav-link:hover, header .navbar .navbar-nav .nav-item .nav-link.active {
    color: #fff !important;
  }
  header .dropdown:hover > a {
    color: #fff;
  }
  header .dropdown:hover > a > i {
    color: #fff;
  }
  header .dropdown:hover .nav-link {
    color: #fff !important;
  }
  header .dropdown:hover .nav-link:hover {
    color: #fff !important;
  }
  header .dropdown > a {
    color: #fff;
  }
  header .dropdown > a:hover {
    color: #fff;
  }
  header .dropdown > a > i {
    color: #fff;
  }
  header .dropdown .dropdown-custom li .dropdown-item:hover {
    background-color: transparent;
    color: #fff;
  }
}

header.shrinked, header.vfixed {
  height: 65px;
  background-color: #092743;
}

@media (max-width: 991.98px) {
  header.shrinked, header.vfixed {
    height: 56px;
  }
}

header.shrinked .auth-btn a, header.vfixed .auth-btn a {
  border: 1px solid #fff;
  color: #fff;
}

header.shrinked .auth-btn a:hover, header.vfixed .auth-btn a:hover {
  background-color: #fff;
  color: #57BADE;
}

header.shrinked .navbar .navbar-brand, header.vfixed .navbar .navbar-brand {
  max-width: 325px;
  height: 84px;
  padding: 0 0 0 .9375rem;
}

@media (max-width: 991.98px) {
  header.shrinked .navbar .navbar-brand, header.vfixed .navbar .navbar-brand {
    height: 64px;
    max-width: 230px;
    padding: 0 3.5rem 0 .9375rem;
  }
}

header.shrinked .navbar .navbar-brand img, header.vfixed .navbar .navbar-brand img {
  height: 64px;
}

@media (max-width: 991.98px) {
  header.shrinked .navbar .navbar-brand img, header.vfixed .navbar .navbar-brand img {
    height: 45px;
  }
}

header.shrinked .navbar .navbar-nav, header.vfixed .navbar .navbar-nav {
  padding-left: 325px;
}

@media (max-width: 991.98px) {
  header.shrinked .navbar .navbar-nav, header.vfixed .navbar .navbar-nav {
    padding-left: 0;
  }
}

header.shrinked .navbar .navbar-nav .nav-item .nav-link, header.vfixed .navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
}

header.shrinked .navbar .navbar-nav .nav-item .nav-link:hover, header.shrinked .navbar .navbar-nav .nav-item .nav-link.active, header.vfixed .navbar .navbar-nav .nav-item .nav-link:hover, header.vfixed .navbar .navbar-nav .nav-item .nav-link.active {
  color: #57BADE !important;
}

@media (max-width: 991.98px) {
  header.shrinked .navbar .navbar-nav .nav-item .nav-link:hover, header.shrinked .navbar .navbar-nav .nav-item .nav-link.active, header.vfixed .navbar .navbar-nav .nav-item .nav-link:hover, header.vfixed .navbar .navbar-nav .nav-item .nav-link.active {
    color: #fff !important;
  }
}

header.shrinked .navbar .navbar-nav .nav-item .nav-link::before, header.vfixed .navbar .navbar-nav .nav-item .nav-link::before {
  bottom: -4px;
  background-color: #57BADE;
}

header.shrinked .dropdown:hover > a, header.vfixed .dropdown:hover > a {
  color: #57BADE;
}

header.shrinked .dropdown:hover > a > i, header.vfixed .dropdown:hover > a > i {
  color: #57BADE;
}

@media (max-width: 991.98px) {
  header.shrinked .dropdown:hover > a > i, header.vfixed .dropdown:hover > a > i {
    color: #fff;
  }
}

header.shrinked .dropdown:hover .nav-link, header.vfixed .dropdown:hover .nav-link {
  color: #57BADE !important;
}

header.shrinked .dropdown > a, header.vfixed .dropdown > a {
  color: #fff;
}

header.shrinked .dropdown > a:hover, header.vfixed .dropdown > a:hover {
  color: #57BADE;
}

header.shrinked .dropdown > a > i, header.vfixed .dropdown > a > i {
  color: #fff;
}

header.shrinked .dropdown .dropdown-custom li .dropdown-item:hover, header.vfixed .dropdown .dropdown-custom li .dropdown-item:hover {
  background-color: transparent;
  color: #57BADE;
}

footer {
  position: relative;
  width: 100%;
  padding: 80px 0 50px;
  background-color: #f7f7f7;
  border-top: 1px solid #cfcfcf;
}

@media (max-width: 767.98px) {
  footer {
    padding: 60px 0 32px;
  }
}

@media (max-width: 767.98px) {
  footer {
    padding: 48px 0 32px;
  }
}

footer .footer__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991.98px) {
  footer .footer__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .footer__about img {
  margin-right: 2rem;
}

@media (max-width: 991.98px) {
  footer .footer__about img {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

footer .footer__about ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 991.98px) {
  footer .footer__about ul {
    max-width: 290px;
  }
}

footer .footer__about ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  font-size: .9375rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #333333;
}

footer .footer__about ul li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

footer .footer__about ul li i {
  min-width: 24px;
  display: block;
  margin-top: 2px;
  color: #FF0112;
}

footer .footer__about ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .9375rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #333333;
}

footer .footer__about ul li a:hover {
  color: #5786DE;
}

footer .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767.98px) {
  footer .footer__social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 2rem;
  }
}

footer .footer__social a {
  display: block;
  font-size: 1.375rem;
  margin-left: 1.25rem;
  color: #0000004d;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

@media (max-width: 767.98px) {
  footer .footer__social a:first-child {
    margin-left: 0;
  }
}

footer .footer__social a.facebook:hover {
  color: #4267B2;
}

footer .footer__social a.twitter:hover {
  color: #1DA1F2;
}

footer .footer__social a.instagram:hover {
  color: #C13584;
}

footer .footer__social a.linkedin:hover {
  color: #0E76A8;
}

footer .copyrights {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media (max-width: 991.98px) {
  footer .copyrights {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  footer .copyrights {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

footer .copyrights p {
  font-size: .875rem;
  display: block;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  footer .copyrights p:last-child {
    margin-bottom: 1rem;
    margin-top: 0;
  }
}

.sidebar {
  will-change: min-height;
}

.sidebar .sidebar__inner {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.sidebar-menu {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-menu h4 {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

.sidebar-menu .sidemenu {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}

.sidebar-menu .sidemenu li {
  display: block;
}

.sidebar-menu .sidemenu li.current .side__link {
  border-color: #5786DE;
  color: #5786DE;
  font-weight: 700;
}

.sidebar-menu .sidemenu li .side__link {
  display: block;
  font-size: 1rem;
  padding: .5rem 2rem;
  color: #333;
  border-left: 6px solid transparent;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.sidebar-menu .sidemenu li .side__link:hover {
  color: #5786DE;
}

.sidebar-menu .sidemenu li .list-group {
  padding: 0 2rem;
  border: none;
}

.sidebar-menu .sidemenu li .list-group .list-group-item {
  display: block;
  background: none;
  font-size: .875rem;
  border: none;
  color: #333;
  padding: .125rem 1rem;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.sidebar-menu .sidemenu li .list-group .list-group-item:hover {
  color: #5786DE;
}

.sidebar-menu .sidemenu li .list-group .list-group-item.active {
  color: #5786DE;
  font-weight: 700;
}

.sidebar-menu .menu-accordion {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  border-radius: 0;
}

.sidebar-menu .menu-accordion li {
  display: block;
}

.sidebar-menu .menu-accordion li.current .acc__link {
  border-color: #5786DE;
  color: #5786DE;
  font-weight: 700;
}

.sidebar-menu .menu-accordion li.current .current a {
  color: #5786DE;
  font-weight: 700;
}

.sidebar-menu .menu-accordion li .acc__link {
  display: block;
  font-size: 1rem;
  padding: .5rem 2rem;
  color: #333;
  border-left: 6px solid transparent;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.sidebar-menu .menu-accordion li .acc__link:hover {
  color: #5786DE;
}

.sidebar-menu .menu-accordion ul {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 2rem;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

.sidebar-menu .menu-accordion ul li a {
  display: block;
  background: none;
  font-size: .875rem;
  border: none;
  color: #333;
  padding: .125rem 1rem;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.sidebar-menu .menu-accordion ul li a:hover {
  color: #5786DE;
}

.sidebar-menu .menu-accordion ul li a.active {
  color: #5786DE;
  font-weight: 700;
}

.sidebar-mobile {
  position: absolute;
  top: -170px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
  .sidebar-mobile {
    width: calc(100% - 4rem);
    top: -150px;
  }
}

.sidebar-mobile h4 {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

@media (max-width: 767.98px) {
  .sidebar-mobile h4 {
    font-size: .875rem;
    padding: 1rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
body {
  position: relative;
}

a {
  text-decoration: none !important;
  outline: none;
}

a:hover {
  color: #57BADE;
}

@media (max-width: 767.98px) {
  .row {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

@media (max-width: 767.98px) {
  .row > * {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

#wrapper {
  position: relative;
  min-height: 100%;
}

.content {
  position: relative;
  width: 100%;
  padding-top: 104px;
}

@media (max-width: 991.98px) {
  .content {
    padding-top: 56px;
  }
}

.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 48px 0;
  }
}

.section.section--visible {
  overflow: visible;
}

.section.mb-4 {
  margin-bottom: 2rem !important;
}

@media (max-width: 767.98px) {
  .container,
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.page-load-status {
  display: none;
  margin-top: 3rem;
  text-align: center;
  color: #777;
}

@media (max-width: 767.98px) {
  .page-load-status {
    margin-top: 2rem;
  }
}

.loader-ellips {
  font-size: 20px;
  position: relative;
  width: calc(1rem * 4);
  height: 1rem;
  margin: 1rem auto;
}

.loader-ellips .loader-ellips__dot {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background: #5786DE;
  position: absolute;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.loader-ellips .loader-ellips__dot:nth-child(1) {
  left: 0;
  -webkit-animation-name: reveal;
          animation-name: reveal;
}

.loader-ellips .loader-ellips__dot:nth-child(2) {
  left: 0;
  -webkit-animation-name: slide;
          animation-name: slide;
}

.loader-ellips .loader-ellips__dot:nth-child(3) {
  left: 1.5rem;
  -webkit-animation-name: slide;
          animation-name: slide;
}

.loader-ellips .loader-ellips__dot:nth-child(4) {
  left: 3rem;
  -webkit-animation-name: reveal;
          animation-name: reveal;
  animation-direction: reverse;
}

@-webkit-keyframes reveal {
  from {
    -webkit-transform: scale(0.001);
            transform: scale(0.001);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes reveal {
  from {
    -webkit-transform: scale(0.001);
            transform: scale(0.001);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes slide {
  to {
    -webkit-transform: translateX(1.5rem);
            transform: translateX(1.5rem);
  }
}

@keyframes slide {
  to {
    -webkit-transform: translateX(1.5rem);
            transform: translateX(1.5rem);
  }
}

.ellip {
  display: block;
  height: 100%;
}

.ellip-line {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.ellip,
.ellip-line {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.thank-you-animated {
  display: block;
  position: relative;
  z-index: 5;
}

.thank-you-animated .people {
  display: block;
  position: relative;
  z-index: 5;
  max-width: 55%;
  -webkit-animation: bounceThankYou 3s infinite ease-in-out;
          animation: bounceThankYou 3s infinite ease-in-out;
}

.thank-you-animated .ellipse {
  position: absolute;
  z-index: 1;
  max-width: 76%;
  width: 100%;
  top: auto;
  bottom: 5%;
  left: 0;
  right: 0;
  display: block;
}

.thank-you-animated .mask {
  position: absolute;
  z-index: 10;
  max-width: 76%;
  width: 100%;
  top: auto;
  bottom: -12.5%;
  left: 0;
  right: 0;
  display: block;
}

@-webkit-keyframes bounceThankYou {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

@keyframes bounceThankYou {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

body {
  font-family: 'Istok Web', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Istok Web', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #333333;
  font-weight: 400;
}

h1 {
  font-size: 2.2rem;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.625rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.9rem;
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 2.375rem;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 575.98px) {
  h2 {
    font-size: 1.5625rem;
  }
}

h3 {
  font-size: 1.875rem;
}

@media (max-width: 991.98px) {
  h3 {
    font-size: 1.875rem;
  }
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 1.5625rem;
  }
}

@media (max-width: 575.98px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  h4 {
    font-size: 1.375rem;
  }
}

@media (max-width: 575.98px) {
  h4 {
    font-size: 1.125rem;
  }
}

h5 {
  font-size: 1.375rem;
}

@media (max-width: 991.98px) {
  h5 {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  h5 {
    font-size: 1.125rem;
  }
}

@media (max-width: 575.98px) {
  h5 {
    font-size: 1rem;
  }
}

h6 {
  font-size: 1.125rem;
}

@media (max-width: 991.98px) {
  h6 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  h6 {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  h6 {
    font-size: .875rem;
  }
}

p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  p {
    font-size: 1rem;
  }
}

b {
  font-weight: 700;
}

strong {
  font-weight: 900;
}

ul,
ol {
  padding-left: 22px;
}

ul li,
ol li {
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  ul li,
  ol li {
    font-size: 1rem;
  }
}

.heading {
  margin-bottom: 2rem;
}

.heading.heading--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading.heading--2 .divider {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 1px;
  border-top: 1px solid #707070;
  margin: 0 1.5rem;
  opacity: .2;
}

.heading.heading--2 .subheading {
  font-size: 1.125rem;
  color: #3339;
  display: block;
}

.heading.heading--2 .subheading a {
  color: #3339;
}

.heading.heading--2 .subheading a:hover {
  color: #5786DE;
}

.heading h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  margin-bottom: 0;
}

.heading em {
  font-size: .8125rem;
  display: block;
  color: rgba(51, 51, 51, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
  margin-bottom: .75rem;
}

.heading .fs-6 {
  font-style: italic;
  text-transform: capitalize;
}

.vacancy-heading {
  position: relative;
  width: 100%;
  margin-bottom: 2.5625rem;
}

.vacancy-heading h3 {
  color: rgba(51, 51, 51, 0.7);
  display: block;
  margin-bottom: 0;
}

.accordion {
  position: relative;
  width: 100%;
}

.accordion .accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: .625rem;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion .accordion-item .accordion-header .accordion-button {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  }
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #5786DE;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: '\f068';
}

.accordion .accordion-item .accordion-header .accordion-button::after {
  background: none;
  content: '\f067';
  display: inline-block;
  margin-left: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.125rem;
  width: 20px;
  height: 20px;
  margin: auto;
  border: none;
  vertical-align: middle;
  position: absolute;
  left: 1.5rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-header .accordion-button::after {
    font-size: 1rem;
    left: 1rem;
  }
}

.accordion .accordion-item .accordion-body {
  position: relative;
  padding: 1.5rem 8.75rem 1.5rem 4.5rem;
  font-size: 1rem;
  line-height: 1.6;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-body {
    font-size: 1rem;
    padding: 1.5rem 1.5rem 8.5rem 3.5rem;
  }
}

.accordion .accordion-item .accordion-body::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 1.5rem;
  width: 93px;
  height: 138px;
  background-image: url("../img/illustrations/faq.svg");
  background-size: cover;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-body::before {
    top: auto;
    right: 0;
    left: 1.5rem;
    margin: 0 auto;
  }
}

.navbar {
  position: relative;
  height: 100%;
}

@media (max-width: 991.98px) {
  .navbar .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.navbar .navbar-brand {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 350px;
  width: 100%;
  height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0 0 0 .9375rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    height: 64px;
    max-width: 230px;
    padding: 0 3.5rem 0 .9375rem;
  }
}

.navbar .navbar-brand::before {
  content: '';
  position: absolute;
  left: -30px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  border-bottom-right-radius: 1rem;
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  position: relative;
  z-index: 2;
  height: 74px;
  -webkit-transition: height .3s ease-in-out;
  transition: height .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    height: 45px;
  }
}

.navbar .navbar-brand span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 1.125rem;
  color: #20718F;
  font-weight: 700;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand span {
    font-size: .6875rem;
  }
}

.navbar .navbar-toggler {
  position: absolute;
  right: .9376rem;
  top: 13px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-nav {
  padding-left: 345px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    padding-left: 0 !important;
    background-color: #092743;
    height: 100vh;
    margin-top: -.5rem;
    padding-top: 114px;
    text-align: center;
  }
}

.navbar .navbar-nav .nav-item {
  margin-right: 1.5rem;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 0;
  }
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: 1.050rem;
  color: #333333;
  padding: 0;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    padding: 1rem 0;
    color: #fff;
  }
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #5786DE;
}

.navbar .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  font-weight: 700;
  color: #5786DE;
}

.navbar .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1.7px;
  background-color: #5786DE;
  -webkit-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item .nav-link::before {
    display: none;
  }
}

.dropdown-toggle::after {
  content: '\f078';
  display: inline-block;
  margin-left: .255em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 75%;
  border: none;
  vertical-align: middle;
}

.dropdown:hover > a {
  color: #5786DE;
}

.dropdown:hover .nav-link {
  color: #5786DE !important;
}

.dropdown:hover .nav-link::before {
  width: 100% !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.dropdown:hover .dropdown-menu .dropdown-item {
  font-size: 1.125rem;
  padding: .5rem 1rem;
  text-align: center;
  color: #333333;
  background-color: transparent !important;
}

@media (max-width: 991.98px) {
  .dropdown:hover .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
  }
}

.dropdown > a {
  display: block;
  font-size: 1.050rem;
  padding: .167rem 0;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.dropdown > a:hover {
  color: #5786DE;
  background-color: transparent;
}

.dropdown > a > i {
  font-size: .875rem;
  color: #5786DE;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.dropdown .dropdown-menu {
  top: calc(100% + 24px);
  right: auto;
  left: 50%;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: none;
  border-radius: 0;
  padding: 0;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .dropdown .dropdown-menu {
    display: none;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

@media (max-width: 991.98px) {
  .dropdown .dropdown-menu::before {
    display: none;
  }
}

.dropdown .dropdown-menu::after {
  content: '';
  position: absolute;
  top: -24px;
  width: 100%;
  height: 32px;
  background-color: transparent;
}

@media (max-width: 991.98px) {
  .dropdown .dropdown-menu::after {
    display: none;
  }
}

.dropdown .dropdown-menu.show {
  display: block !important;
}

.dropdown .dropdown-menu.dropdown-vacancy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 40rem;
  padding: .5rem .25rem;
}

.dropdown .dropdown-menu.dropdown-vacancy li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.dropdown .dropdown-menu.dropdown-vacancy li .dropdown-item {
  position: relative;
  width: 100%;
  padding: 0 .25rem;
  background-color: transparent;
}

.dropdown .dropdown-menu.dropdown-vacancy li .dropdown-item:hover .image::before {
  background-color: rgba(30, 74, 157, 0.7);
}

.dropdown .dropdown-menu.dropdown-vacancy li .dropdown-item .image {
  min-height: 213px;
  display: block;
  width: 100%;
  position: relative;
}

.dropdown .dropdown-menu.dropdown-vacancy li .dropdown-item .image::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(69, 69, 69, 0.7);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.dropdown .dropdown-menu.dropdown-vacancy li .dropdown-item span {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 1.25rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.dropdown .dropdown-menu.dropdown-custom li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

.dropdown .dropdown-menu.dropdown-custom li:last-child {
  border-bottom: none;
}

.dropdown .dropdown-menu.dropdown-custom li .dropdown-item {
  text-align: center;
  font-size: .9375rem;
  padding: .5rem 1rem;
}

.dropdown .dropdown-menu.dropdown-custom li .dropdown-item:hover {
  background-color: transparent;
  color: #5786DE;
}

@media (max-width: 991.98px) {
  .dropdown.dropdown-user-mobile {
    margin-bottom: 1rem;
  }
  .dropdown.dropdown-user-mobile .dropdown-toggle {
    max-width: 480px;
    width: auto;
    padding: .375rem !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    border: 1px solid #fff;
    font-size: 1rem !important;
    margin: 0 auto;
  }
  .dropdown.dropdown-user-mobile .dropdown-toggle::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }
  .dropdown.dropdown-user-mobile .dropdown-toggle.show::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .dropdown.dropdown-user-mobile .dropdown-menu {
    max-width: 480px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .dropdown.dropdown-user-mobile .dropdown-menu .dropdown-item {
    font-size: .875rem;
    padding: .5rem 1rem;
    color: #333333;
    text-align: center;
    background-color: white !important;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 575.98px) {
  .dropdown.dropdown-user-mobile .dropdown-toggle {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .dropdown.dropdown-user-mobile .dropdown-menu {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2.375rem;
  border-radius: 0;
  margin: 0;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 1199.98px) {
  .btn {
    padding: .75rem 2rem;
    font-size: 1rem;
  }
}

.btn.btn-primary {
  color: #fff;
  background-color: #5786DE;
  border-color: #5786DE;
}

.btn.btn-primary:hover {
  background-color: #1F96C3;
}

.btn.btn-outline-primary:hover {
  color: #fff;
  background-color: #5786DE;
  border-color: #5786DE;
}

.btn.btn-secondary {
  color: #333333;
  background-color: #E2E2E2;
  border-color: #E2E2E2;
}

.btn.btn-secondary:hover {
  color: #fff;
  background-color: #7C7C7C;
  border-color: #7C7C7C;
}

.btn.btn-outline-secondary:hover {
  color: #fff;
  background-color: #1F96C3;
  border-color: #1F96C3;
}

.btn-back {
  font-size: .875rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.7);
  display: inline-block;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.btn-back:hover {
  color: #5786DE;
}

.btn-back.mb-5 {
  margin-bottom: 2rem !important;
}

.add-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-btn i {
  margin-top: -3px;
  display: inline-block;
}

.auth-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991.98px) {
  .auth-btn {
    max-width: 480px;
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
}

.auth-btn a {
  height: 41px;
  line-height: 41px;
  padding: 0 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  border: 1px solid #5786DE;
  color: #5786DE;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .auth-btn a {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.auth-btn a:first-child {
  margin-right: -1px;
}

.auth-btn a:hover {
  background-color: #5786DE;
  color: #fff;
}

.view-google-btn {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 2;
}

.background-top {
  position: relative;
  width: 100%;
  height: 314px;
  margin-top: -104px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #F5F5F5;
}

@media (max-width: 991.98px) {
  .background-top {
    margin-top: 0;
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .background-top {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 767.98px) {
  .background-top.bg--small {
    height: 100px;
  }
}

.login--bg {
  background-image: url("../img/backgrounds/login.jpg");
}

@media (max-width: 767.98px) {
  .login--bg {
    background-image: url("../img/backgrounds/login_mobile.jpg");
  }
}

.register--bg {
  background-image: url("../img/backgrounds/register.jpg");
}

@media (max-width: 767.98px) {
  .register--bg {
    background-image: url("../img/backgrounds/register_mobile.jpg");
  }
}

.forgot--bg {
  background-image: url("../img/backgrounds/forgot.jpg");
}

@media (max-width: 767.98px) {
  .forgot--bg {
    background-image: url("../img/backgrounds/forgot_mobile.jpg");
  }
}

.ficon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.ficon.feather--calender {
  background-image: url("../img/icons/fcalendar.svg");
}

.ficon.feather--marker {
  background-image: url("../img/icons/fmarker.svg");
}

.glyphicon {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.glyphicon.glyphicon-arrow-right::before {
  content: '\f054';
}

.glyphicon.glyphicon-arrow-left::before {
  content: '\f053';
}

label {
  font-size: .875rem;
}

.vacancy-search {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 767.98px) {
  .vacancy-search {
    margin-bottom: 3rem;
  }
}

.vacancy-search .select2-container .select2-selection--single {
  height: 69px;
}

.vacancy-search .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 1.5rem;
  padding-right: 2.9375rem;
}

.vacancy-search .select2-container.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaaaaa;
}

.vacancy-search .select2-container.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(112, 112, 112, 0.1);
}

@media (max-width: 767.98px) {
  .vacancy-search .select2-container.select2-container--default .select2-selection--single {
    border-left: none;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
}

.vacancy-search .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333;
  line-height: 69px;
}

.vacancy-search .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
}

.vacancy-search .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  border-width: 7px 6px 0 6px;
  margin-left: -6px;
  margin-top: -1px;
}

.vacancy-search .select2-container.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #333;
}

.vacancy-search .select2-container.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5786DE;
  color: #fff;
}

.vacancy-search .btn {
  display: block;
  width: 100%;
  padding: 1.4rem 2.375rem;
  font-size: 16px;
  height: auto;
}

.select2-container {
  z-index: 1;
}

.select2-container--open .select2-dropdown {
  border: none;
  border-radius: 0;
}

.select2-container--open .select2-dropdown.select2-dropdown--below {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 223px;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1.5rem !important;
}

.select2-results__option--group {
  padding: 0 !important;
}

.select2-results__option--group > strong {
  padding: .5rem 1.5rem !important;
}

.select2-results__option {
  padding: .5rem 1.5rem;
}

.select2-selection,
.select2-selection--single,
.form-control,
*:focus {
  outline-color: transparent !important;
  outline-style: none !important;
}

.sortby-wrap {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .sortby-wrap {
    max-width: 224px;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .select-custom {
    padding-left: 1.5rem;
    padding-right: 3.5rem;
    height: 60px;
    border: 1px solid rgba(51, 51, 51, 0.2) !important;
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .select-custom:focus {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1) !important;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1) !important;
  }
}

.select-custom.no--border ~ .select2-container.select2-container--default .select2-selection--single {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.select-custom.select--strong ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 700;
}

.select-custom ~ .select2-container .select2-selection--single {
  height: 60px;
}

.select-custom ~ .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 1.5rem;
  padding-right: 2.9375rem;
}

.select-custom ~ .select2-container.select2-container--focus .select2-selection--single {
  border-color: #5786DE !important;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.select-custom ~ .select2-container.select2-container--default .select2-selection--single {
  background-color: #fff;
  border-radius: 0;
  border: 1px solid rgba(51, 51, 51, 0.2) !important;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.select-custom ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: rgba(51, 51, 51, 0.6);
  line-height: 60px;
}

.select-custom ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
}

.select-custom ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(51, 51, 51, 0.6) transparent transparent transparent;
  border-width: 7px 6px 0 6px;
  margin-left: -6px;
  margin-top: -1px;
}

.select-custom ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.select-custom ~ .select2-container.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5786DE;
  color: #fff;
}

@media (max-width: 767.98px) {
  .select-arrow {
    position: absolute;
    height: 26px;
    top: 35.67px;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 60px;
  }
}

@media (max-width: 767.98px) {
  .select-arrow b {
    border-color: #333 transparent transparent transparent;
    border-style: solid;
    border-width: 7px 6px 0 6px;
    height: 0;
    left: 50%;
    margin-left: -6px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    width: 0;
  }
}

form {
  position: relative;
  width: 100%;
}

form.needs-validation {
  margin-bottom: 0;
}

form.needs-validation .select-custom ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333;
}

form.needs-validation .select-custom ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
}

form.needs-validation .date-custom {
  position: relative;
}

form.needs-validation .date-custom input {
  color: #333;
}

form.needs-validation .date-custom input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

form.needs-validation .date-custom input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

form.needs-validation .date-custom input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

form.needs-validation .date-custom input::placeholder {
  color: rgba(51, 51, 51, 0.6);
}

form.needs-validation .date-custom b {
  border-color: #333 transparent transparent transparent;
}

form.needs-validation .radio-custom {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form.was-validated .input-custom:valid, form.was-validated .input-custom.is-valid {
  border-color: rgba(112, 112, 112, 0.2);
}

form.was-validated .input-custom:invalid, form.was-validated .input-custom.is-invalid {
  border-color: #FF0112;
}

form.was-validated .input-custom:invalid ~ .feather--calender,
form.was-validated .input-custom.is-invalid ~ .feather--calender {
  background-image: url("../img/icons/fcalendar_invalid.svg");
}

form.was-validated .messega-validation {
  display: block !important;
}

form .form-wrapper .form-group {
  padding-bottom: 0;
  margin-bottom: 3rem;
  border-bottom: 1px dashed rgba(112, 112, 112, 0.2);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

form .form-wrapper .form-group:last-child {
  margin-bottom: 0;
  border-bottom: 1px dashed transparent;
}

form .form-group {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(112, 112, 112, 0.2);
  margin-bottom: 3rem;
}

form .messega-validation {
  position: relative;
  background-color: #FFFCE6;
  color: #333;
  font-style: italic;
  padding: .875rem 1.125rem;
  font-size: .875rem;
  margin-bottom: 2rem;
}

.label-custom {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: 1;
  margin-bottom: .9375rem;
}

@media (max-width: 767.98px) {
  .label-custom {
    font-size: .8125rem;
  }
}

.input-custom {
  font-size: 1rem;
  color: #333;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding: 1.125rem 1.5rem;
  border-radius: 0;
  outline: none;
  background-image: none !important;
  -webkit-box-shadow: 0 0 0 transparent;
          box-shadow: 0 0 0 transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.input-custom:focus {
  border-color: #5786DE !important;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
}

.input-custom:focus ~ .feather--calender {
  background-image: url("../img/icons/fcalendar.svg") !important;
}

.input-custom::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.input-custom:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.input-custom::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.input-custom::placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.input-custom::-webkit-outer-spin-button, .input-custom::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-custom[type=number] {
  -moz-appearance: textfield;
}

.input-custom ~ .feather--calender {
  position: absolute;
  z-index: 5;
  bottom: 1.375rem;
  right: 1.5rem;
  pointer-events: none;
  width: 30px;
  height: 18px;
  background-color: #fff;
  background-size: contain;
  background-position: right;
}

.textarea-custom {
  font-size: 1rem;
  color: #333;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding: 1.125rem 1.5rem;
  border-radius: 0;
  outline: none;
  background-image: none !important;
  -webkit-box-shadow: 0 0 0 transparent;
          box-shadow: 0 0 0 transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.textarea-custom:focus {
  border-color: #5786DE !important;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
}

.checkbox-custom {
  display: block;
}

.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox-custom input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 10px;
  width: 6px;
  height: 18px;
  border: solid #eb3329;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox-custom label {
  position: relative;
  cursor: pointer;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767.98px) {
  .checkbox-custom label {
    font-size: 1rem;
  }
}

.checkbox-custom label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding: .75rem;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: .875rem;
}

.radio-custom [type='radio']:checked,
.radio-custom [type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-custom [type='radio']:checked + label,
.radio-custom [type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  line-height: 26px;
  display: inline-block;
  color: #666;
}

.radio-custom [type='radio']:checked + label:before,
.radio-custom [type='radio']:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 100%;
  background: #fff;
}

.radio-custom [type='radio']:checked + label:after,
.radio-custom [type='radio']:not(:checked) + label:after {
  content: '';
  width: 18px;
  height: 18px;
  background: #5786DE;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.radio-custom [type='radio']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.radio-custom [type='radio']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.date-custom {
  position: relative;
}

.date-custom input {
  font-size: 1rem;
  display: block;
  border-radius: 0;
  background-color: #fff !important;
  border: 1px solid rgba(51, 51, 51, 0.2) !important;
  height: 60px;
  padding-left: 1.5rem;
  padding-right: 2.9375rem;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: pointer;
  color: rgba(51, 51, 51, 0.6);
}

.date-custom input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.date-custom input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.date-custom input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.date-custom input::placeholder {
  color: rgba(51, 51, 51, 0.6);
}

.date-custom b {
  border-color: rgba(51, 51, 51, 0.6) transparent transparent transparent;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  height: 0;
  left: auto;
  right: 20px;
  margin-left: -6px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 0;
}

.datetimepicker {
  min-width: 14rem;
  padding: 1.5rem;
  border: none;
  border-radius: 0;
  color: #333;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.datetimepicker.datetimepicker-dropdown-bottom-right:before, .datetimepicker.datetimepicker-dropdown-bottom-right:after {
  display: none;
}

.datetimepicker table tr th,
.datetimepicker table tr td {
  width: 32px;
  height: 32px;
  border-radius: 0;
}

.datetimepicker table tr td.active.active {
  background-color: #5786DE;
  background-image: none;
}

.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active {
  background-color: #5786DE;
  background-image: none;
}

.datetimepicker .datetimepicker-hours span,
.datetimepicker .datetimepicker-minutes span {
  height: 32px;
  line-height: 32px;
  border: none;
  border-radius: 0;
}

.upload-image-custom {
  position: relative;
  width: 121px;
  height: 121px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .upload-image-custom {
    display: block;
    margin: 0 auto;
  }
}

.upload-image-custom:hover i {
  background-color: #1F96C3;
}

.upload-image-custom img {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.upload-image-custom i {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  font-size: .875rem;
  color: #fff;
  background-color: #5786DE;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.upload-image-custom input {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  opacity: 0 !important;
}

.form-text {
  font-size: .75rem;
  margin-top: .625rem;
  display: block;
  margin-bottom: 0;
}

.invalid-feedback {
  margin-top: .5rem;
  font-size: .75em;
  color: #FF0112;
  font-style: italic;
}

.file-upload-custom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 60px;
}

.file-upload-custom.disabled .input-group-btn .file-input-label {
  border: 1px solid rgba(112, 112, 112, 0.02);
  background-color: rgba(0, 0, 0, 0.05);
}

.file-upload-custom.disabled .input-group-btn .btn-file {
  color: rgba(51, 51, 51, 0.5) !important;
  background-color: #E2E2E2 !important;
  border-color: #E2E2E2 !important;
  pointer-events: none;
}

.file-upload-custom .input-group-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.file-upload-custom .input-group-btn .file-input-label {
  font-size: 1rem;
  color: #333;
  padding: 1rem 1.5rem;
  display: block;
  background-color: #fff;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.file-upload-custom .input-group-btn .btn-file {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
}

@media (max-width: 767.98px) {
  .file-upload-custom .input-group-btn .btn-file {
    padding: .75rem 1rem;
  }
}

.file-upload-custom .input-group-btn .btn-file input[type=file] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=0);
  opacity: 0;
  cursor: pointer;
  display: block;
  pointer-events: none;
}

.file-upload-custom .input-group-btn input[readonly] {
  background-color: white !important;
  cursor: text !important;
}

.datetimepicker-hours table,
.datetimepicker-minutes table,
.datetimepicker-seconds table {
  min-width: 209;
}

.datetimepicker-hours table thead,
.datetimepicker-minutes table thead,
.datetimepicker-seconds table thead {
  display: none;
}

.toggle-password {
  position: absolute;
  top: 58px;
  right: 24px;
  display: block;
  font-size: .875rem;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  color: #b5b5b5;
}

.welcome-swiper.swiper-container {
  position: absolute;
  top: 3rem;
  right: 0;
  max-width: calc((100% - 41.66667%) + -24px);
  width: 100%;
  height: 480px;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .welcome-swiper.swiper-container {
    height: 480px;
  }
}

@media (max-width: 991.98px) {
  .welcome-swiper.swiper-container {
    max-width: 100%;
    top: 0;
    right: 0;
    left: 0;
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .welcome-swiper.swiper-container {
    height: 225px;
  }
}

.welcome-swiper .swiper-slide .image {
  min-height: 100%;
  width: 100%;
  display: block;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.welcome-swiper .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.welcome-swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0 .25rem;
  display: block;
  background-color: transparent;
  border: 1px solid #FF0112;
  border-radius: 100%;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

@media (max-width: 575.98px) {
  .welcome-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.welcome-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #ff6670;
}

.welcome-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF0112;
}

.welcome-swiper .swiper-button-prev,
.welcome-swiper .swiper-button-next {
  position: absolute;
  z-index: 10;
  left: 1.5rem;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  height: 28px;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.welcome-swiper .swiper-button-prev:hover,
.welcome-swiper .swiper-button-next:hover {
  color: #5786DE;
}

.welcome-swiper .swiper-button-prev i,
.welcome-swiper .swiper-button-next i {
  font-size: 1.75rem;
}

@media (max-width: 575.98px) {
  .welcome-swiper .swiper-button-prev i,
  .welcome-swiper .swiper-button-next i {
    font-size: 1.375rem;
  }
}

.welcome-swiper .swiper-button-next {
  left: auto;
  right: 1.5rem;
}

.multi-swiper-wrapper {
  position: relative;
  width: 100%;
  max-width: 1340px;
  padding-left: .75rem;
  padding-right: .75rem;
  margin: 0 auto;
}

.multi-swiper-wrapper .swiper-button-prev,
.multi-swiper-wrapper .swiper-button-next {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  left: auto;
  right: 65px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #333;
  width: 51px;
  height: 51px;
  font-size: 1.375rem;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .multi-swiper-wrapper .swiper-button-prev,
  .multi-swiper-wrapper .swiper-button-next {
    width: 27px;
    height: 27px;
    font-size: .875rem;
    top: 300px;
    right: 32px;
  }
}

@media (max-width: 767.98px) {
  .multi-swiper-wrapper .swiper-button-prev,
  .multi-swiper-wrapper .swiper-button-next {
    top: 100px;
  }
}

.multi-swiper-wrapper .swiper-button-prev:hover,
.multi-swiper-wrapper .swiper-button-next:hover {
  background-color: #5786DE;
  color: #fff;
}

.multi-swiper-wrapper .swiper-button-next {
  left: 65px;
  right: auto;
}

@media (max-width: 991.98px) {
  .multi-swiper-wrapper .swiper-button-next {
    left: 32px;
  }
}

.multi-side-swiper.swiper-container {
  position: absolute;
  z-index: 10;
  top: 0;
  left: -470px;
  right: 0;
  width: 560px;
  height: 439px !important;
  margin-left: 0;
}

@media (max-width: 991.98px) {
  .multi-side-swiper.swiper-container {
    width: 30px;
    height: 380px !important;
  }
}

@media (max-width: 767.98px) {
  .multi-side-swiper.swiper-container {
    width: 15px;
    height: 200px !important;
  }
}

.multi-side-swiper .swiper-slide .image {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.multi-small-swiper.swiper-container {
  position: absolute;
  z-index: 15;
  bottom: 0;
  right: 3.5rem;
  width: 281px;
  height: 170px !important;
  display: block;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991.98px) {
  .multi-small-swiper.swiper-container {
    width: 200px;
    height: 130px !important;
  }
}

@media (max-width: 767.98px) {
  .multi-small-swiper.swiper-container {
    width: 127px;
    height: 78px !important;
  }
}

.multi-small-swiper .swiper-slide .image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: block;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.multi-gallery-swiper.swiper-container {
  width: 100%;
  height: 438px !important;
  display: block;
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

@media (max-width: 991.98px) {
  .multi-gallery-swiper.swiper-container {
    height: 380px !important;
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}

@media (max-width: 767.98px) {
  .multi-gallery-swiper.swiper-container {
    height: 200px !important;
  }
}

.multi-gallery-swiper .swiper-slide .image {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.multi-caption-swiper {
  width: 100%;
  overflow: hidden !important;
}

.multi-caption-swiper::before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 0;
  right: -2px;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
}

.multi-caption-swiper .swiper-slide .desc {
  max-width: calc(100% - 32px);
  display: block;
}

@media (max-width: 991.98px) {
  .multi-caption-swiper .swiper-slide .desc {
    max-width: calc(100% + -86px);
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 991.98px) {
  .multi-caption-swiper .swiper-slide .desc p {
    margin-bottom: 0;
  }
}

.main-swiper-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden !important;
}

.main-swiper-wrapper .container {
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 991.98px) {
  .main-swiper-wrapper .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.instagram-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.instagram-swiper.swiper-container,
.instagram-swiper .swiper-wrapper {
  height: auto !important;
}

.instagram-swiper .swiper-slide .instagram-image,
.instagram-swiper .swiper-slide .instagram-sidecar {
  display: block;
}

.instagram-swiper .swiper-slide .instagram-image:hover img,
.instagram-swiper .swiper-slide .instagram-sidecar:hover img {
  opacity: .75;
}

.instagram-swiper .swiper-slide .instagram-image img,
.instagram-swiper .swiper-slide .instagram-sidecar img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.title-page {
  position: relative;
  width: 100%;
  height: 296px;
  margin-top: -104px;
  padding-top: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title-page::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: .56;
}

.title-page h1 {
  position: relative;
  z-index: 10;
  font-size: 2.8rem;
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

@media (max-width: 767.98px) {
  .title-page h1 {
    font-size: 2.1875rem;
  }
}

.title-page h1 span {
  font-size: 1.1rem;
  display: block;
  text-transform: uppercase;
  color: #fff;
  opacity: .5;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: .75rem;
}

@media (max-width: 767.98px) {
  .title-page h1 span {
    font-size: 1rem;
    margin-bottom: .5rem;
  }
}

.hero-wrapper {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .hero-wrapper {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .hero-wrapper {
    padding: 0 0 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-wrapper .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.hero-wrapper .hero__desc {
  max-width: 420px;
  margin-top: 1.25rem;
}

@media (max-width: 991.98px) {
  .hero-wrapper .hero__desc {
    max-width: 100%;
    margin-top: calc(320px + 48px);
  }
}

@media (max-width: 767.98px) {
  .hero-wrapper .hero__desc {
    margin-top: calc(225px + 48px);
  }
}

@media (max-width: 991.98px) {
  .hero-wrapper .hero__desc .heading {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 991.98px) {
  .hero-wrapper .hero__desc .heading h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero-wrapper .hero__desc .heading h1 br {
    display: none;
  }
}

.hero-wrapper .hero__desc .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .hero-wrapper .hero__desc .actions {
    display: block;
  }
}

.hero-wrapper .hero__desc .actions a {
  margin-left: 1.25rem;
}

@media (max-width: 767.98px) {
  .hero-wrapper .hero__desc .actions a {
    margin-left: 0;
  }
}

.hero-wrapper .hero__desc .actions a:first-child {
  margin-left: 0;
}

@media (max-width: 767.98px) {
  .hero-wrapper .hero__desc .actions a:first-child {
    margin-bottom: 1rem;
  }
}

.hero-wrapper .hero__desc .signup__info {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .hero-wrapper .hero__desc .signup__info {
    font-size: .875rem;
    margin-top: 1.5rem;
  }
}

.job-vacancy-type {
  position: relative;
  width: 100%;
}

.job-vacancy-type .item__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-height: 254px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 15px #00000026;
          box-shadow: 0 3px 15px #00000026;
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .job-vacancy-type .item__link {
    min-height: 215px;
  }
}

@media (max-width: 767.98px) {
  .job-vacancy-type .item__link {
    min-height: 180px;
  }
}

.job-vacancy-type .item__link:hover .image {
  opacity: .75;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.job-vacancy-type .item__link:hover .caption {
  background-color: rgba(30, 74, 157, 0.7);
}

.job-vacancy-type .item__link .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.job-vacancy-type .item__link .caption {
  position: relative;
  z-index: 10;
  background-color: rgba(51, 51, 51, 0.7);
  width: 100%;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767.98px) {
  .job-vacancy-type .item__link .caption {
    min-height: 70px;
  }
}

@media (max-width: 767.98px) {
  .job-vacancy-type .item__link .caption {
    min-height: 60px;
  }
}

.vacancy-banner {
  position: relative;
  width: 100%;
  margin-top: 6.25rem;
  min-height: 227px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3.25rem;
}

@media (max-width: 767.98px) {
  .vacancy-banner {
    margin-top: 3.125rem;
    min-height: 454px;
    padding: 3rem 2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.vacancy-banner::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #5786DE;
  background: -webkit-gradient(linear, left top, right top, color-stop(55%, #5786de), to(rgba(87, 134, 222, 0)));
  background: linear-gradient(90deg, #5786de 55%, rgba(87, 134, 222, 0) 100%);
}

@media (max-width: 767.98px) {
  .vacancy-banner::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, #5786de), to(rgba(87, 134, 222, 0)));
    background: linear-gradient(180deg, #5786de 55%, rgba(87, 134, 222, 0) 100%);
  }
}

.vacancy-banner h3 {
  display: block;
  position: relative;
  z-index: 15;
  color: #fff;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .vacancy-banner h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5625rem;
    padding-right: 1rem;
  }
}

.vacancy-banner .actions {
  position: relative;
  z-index: 15;
}

@media (max-width: 767.98px) {
  .vacancy-banner .actions {
    max-width: 250px;
  }
}

.vacancy-banner .actions .btn {
  font-size: 1rem;
  padding: .875rem 1.5rem;
}

@media (max-width: 767.98px) {
  .vacancy-banner .actions .btn {
    width: 100%;
    margin-bottom: 1rem;
    padding: .875rem;
  }
}

.vacancy-banner .actions .btn:hover {
  color: #5786DE;
}

.vacancy-banner .image {
  width: 45%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  left: auto;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767.98px) {
  .vacancy-banner .image {
    width: 100%;
    top: auto;
    left: 0;
    height: 45%;
  }
}

.vacancy-no-availble {
  position: relative;
  width: 100%;
  text-align: center;
}

.vacancy-no-availble img {
  max-width: 100%;
  display: block;
  margin: 0 auto 3rem;
}

.vacancy-no-availble h4 {
  margin-bottom: .5rem;
}

.vacancy-detail {
  position: relative;
  width: 100%;
  padding-bottom: 5rem;
}

@media (max-width: 767.98px) {
  .vacancy-detail {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .vacancy-detail .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.vacancy-detail .inner-card {
  position: relative;
  margin-top: -110px;
  background-color: #fff;
  padding: 2rem 2rem 4rem;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
  .vacancy-detail .inner-card {
    padding: 3rem 2rem 3rem;
  }
}

.vacancy-detail .inner-card::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -10px;
  right: 0;
  bottom: -15px;
  width: calc(100% + 20px);
  height: 80px;
  margin: auto;
  pointer-events: none;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 20%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 767.98px) {
  .vacancy-detail .inner-card::before {
    display: none;
  }
}

.vacancy-detail .vacancy__title {
  display: block;
  margin-bottom: 3rem;
}

.vacancy-detail .vacancy__title h2 {
  display: block;
  margin-bottom: .75rem;
}

.vacancy-detail .vacancy__title h2 span {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: .75rem;
}

.vacancy-detail .vacancy__title small {
  font-size: .875rem;
  display: block;
  margin-bottom: .75rem;
  color: rgba(51, 51, 51, 0.4);
}

.vacancy-detail .vacancy__title p {
  font-size: 1rem;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 0;
}

.vacancy-detail .vacancy__desc {
  position: relative;
}

@media (max-width: 767.98px) {
  .vacancy-detail .vacancy__desc {
    padding-bottom: 3.125rem;
  }
}

.vacancy-detail .vacancy__desc h6 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.vacancy-detail .vacancy__desc h6:first-of-type(1) {
  margin-top: 0;
}

.vacancy-detail .vacancy__desc ul li {
  font-size: 1.125rem;
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .vacancy-detail .vacancy__desc ul li {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.vacancy-detail .vacancy__desc p {
  font-size: 1.125rem;
}

@media (max-width: 767.98px) {
  .vacancy-detail .vacancy__desc p {
    font-size: 1rem;
  }
}

.vacancy-detail .vacancy-apply-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

@media (max-width: 767.98px) {
  .vacancy-detail .vacancy-apply-btn {
    position: fixed;
    top: auto;
    right: 0;
    left: 0;
    width: auto;
    bottom: -3.125rem;
  }
  .vacancy-detail .vacancy-apply-btn.promo--end {
    position: absolute;
  }
  .vacancy-detail .vacancy-apply-btn.promo--show {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
}

.dashboard {
  position: relative;
  width: 100%;
  padding-bottom: 5rem;
}

@media (max-width: 767.98px) {
  .dashboard {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .dashboard .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.dashboard h2 {
  font-size: 1.9rem;
}

@media (max-width: 767.98px) {
  .dashboard h2 {
    font-size: 1.5625rem;
  }
}

.dashboard .inner__content {
  width: 100%;
  position: relative;
  margin-top: -154px;
}

.dashboard .user__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.125rem;
}

@media (max-width: 767.98px) {
  .dashboard .user__title {
    padding: 0 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 3rem;
  }
}

.dashboard .user__title h2 {
  margin-bottom: 0;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .dashboard .user__title h2 {
    margin-bottom: 1rem;
    font-size: 1.5625rem;
  }
}

.dashboard .inner-card {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  padding: 2rem 2rem 4rem;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
  .dashboard .inner-card {
    padding: 3rem 2rem 3rem;
  }
}

.dashboard .inner-card::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -10px;
  right: 0;
  bottom: -15px;
  width: calc(100% + 20px);
  height: 80px;
  margin: auto;
  pointer-events: none;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 20%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 767.98px) {
  .dashboard .inner-card::before {
    display: none;
  }
}

.dashboard .vacancy__title {
  display: block;
  margin-bottom: 3rem;
}

.dashboard .vacancy__title h2 {
  display: block;
  margin-bottom: .75rem;
}

.dashboard .vacancy__title h2 span {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: .75rem;
}

.dashboard .vacancy__title small {
  font-size: .875rem;
  display: block;
  margin-bottom: .75rem;
  color: rgba(51, 51, 51, 0.4);
}

.dashboard .vacancy__title p {
  font-size: 1rem;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 0;
}

.dashboard .vacancy__desc {
  position: relative;
}

.dashboard .vacancy__desc h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.dashboard .vacancy__desc h6:first-of-type(1) {
  margin-top: 0;
}

.dashboard .vacancy__desc ul li {
  font-size: 1.125rem;
  line-height: 1.6;
}

.dashboard .vacancy-apply-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.dashboard-content {
  position: relative;
  width: 100%;
}

.dashboard-content .desc__block {
  display: block;
  margin-bottom: 1rem;
}

.dashboard-content h6 {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 767.98px) {
  .dashboard-content h6 {
    font-size: .875rem;
  }
}

.dashboard-content p,
.dashboard-content li {
  font-size: 1rem;
}

.dashboard-content p:last-child {
  font-size: 0.9rem;
}

.dashboard-content p.mb-0 em {
  letter-spacing: 1px;
}

.dashboard-content img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.my-profile {
  position: relative;
  width: 100%;
  padding-bottom: 6.25rem;
}

@media (max-width: 991.98px) {
  .my-profile {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .my-profile .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.my-profile .divider {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background-color: rgba(112, 112, 112, 0.5);
}

@media (max-width: 575.98px) {
  .my-profile .divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.my-profile .inner__content {
  width: 100%;
  position: relative;
  margin-top: -154px;
}

@media (max-width: 991.98px) {
  .my-profile .inner__content {
    margin-top: 100px;
  }
}

@media (max-width: 767.98px) {
  .my-profile .inner__content {
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .my-profile .inner__content.inner--account-setting {
    margin-top: -154px;
    margin-bottom: 3.125rem;
  }
}

@media (max-width: 767.98px) {
  .my-profile .inner__content.inner--account-setting {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .my-profile .inner__content > .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 991.98px) {
  .my-profile .inner__content > .row > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.my-profile .inner-card {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  padding: 2rem 2rem 4rem;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .my-profile .inner-card {
    padding: 3rem 2rem 3rem;
  }
}

.my-profile .inner-card::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -10px;
  right: 0;
  bottom: -15px;
  width: calc(100% + 20px);
  height: 80px;
  margin: auto;
  pointer-events: none;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 20%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 991.98px) {
  .my-profile .inner-card::before {
    display: none;
  }
}

.my-profile .profile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .my-profile .profile__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.my-profile .profile__header > .heading > h4 {
  font-size: 1.5625rem;
  text-transform: uppercase;
  letter-spacing: 1;
}

@media (max-width: 767.98px) {
  .my-profile .profile__header > .heading > h4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

@media (max-width: 767.98px) {
  .my-profile .profile__header > .heading > h4 > span {
    margin-top: 1rem;
    display: block;
  }
}

.my-profile .profile__header .profile__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .my-profile .profile__header .profile__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.my-profile .profile__header .profile__info .image {
  width: 121px;
  min-width: 121px;
  height: 121px;
  display: block;
  margin-right: 1.25rem;
}

@media (max-width: 767.98px) {
  .my-profile .profile__header .profile__info .image {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

.my-profile .profile__header .profile__info .desc {
  display: block;
  width: 100%;
}

.my-profile .profile__header .profile__info .desc h3 {
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .my-profile .profile__header .profile__info .desc h3 {
    font-size: 1.5625rem;
  }
}

.my-profile .profile__header .profile__info .desc p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .my-profile .profile__header .profile__info .desc p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}

.my-profile .profile__body {
  position: relative;
  width: 100%;
}

.my-profile .profile__body > h5 {
  margin-bottom: 3rem !important;
}

@media (max-width: 575.98px) {
  .my-profile .profile__body > h5 {
    margin-bottom: 1.5rem !important;
  }
}

.my-profile .profile__body h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .my-profile .profile__body h5 {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }
}

.my-profile .profile__body h5 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: .875rem;
  color: rgba(112, 112, 112, 0.7);
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

@media (max-width: 767.98px) {
  .my-profile .profile__body h5 a {
    display: none;
  }
}

.my-profile .profile__body h5 a:hover {
  color: #1F96C3;
}

.my-profile .profile__body h6 {
  font-size: .625rem;
  color: rgba(112, 112, 112, 0.7);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.my-profile .profile__body p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (max-width: 575.98px) {
  .my-profile .profile__body p.linkaccount {
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}

.my-profile .profile__body .divider {
  margin-bottom: 3rem;
  margin-top: 0;
}

.my-profile .profile__body .edit__mobile {
  display: none;
  font-size: .875rem;
  color: rgba(112, 112, 112, 0.7);
  margin-top: .5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .my-profile .profile__body .edit__mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.my-profile .profile__body .edit__mobile:hover {
  color: #5786DE;
}

.my-profile .profile__block {
  border-bottom: 2px dashed rgba(112, 112, 112, 0.1);
  margin-bottom: 2.5rem;
}

.my-profile .profile__block:last-child, .my-profile .profile__block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.my-profile .edit__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .my-profile .edit__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .my-profile .edit__actions .btn {
    margin-bottom: 1rem;
  }
}

.user-document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.user-document i {
  font-size: 1.5rem;
  margin-right: .75rem;
  margin-top: .25rem;
}

.user-document.accepted a {
  color: #5786DE;
}

.user-document.accepted a:hover {
  color: #1F96C3;
}

.user-document.failed a {
  color: rgba(51, 51, 51, 0.5);
  cursor: not-allowed;
  pointer-events: none;
}

.user-document a {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.register-forms {
  position: relative;
  width: 100%;
  padding-bottom: 6.25rem;
}

@media (max-width: 767.98px) {
  .register-forms {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .register-forms .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .register-forms .container {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.register-forms .register-wrap {
  max-width: 992px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .register-forms .heading h3 {
    font-size: 1.5625rem;
  }
}

.register-forms .hero__title {
  position: relative;
  min-height: 215px;
  background-color: #eee;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767.98px) {
  .register-forms .hero__title {
    margin-bottom: 2rem;
    background-position: bottom !important;
  }
}

@media (max-width: 767.98px) {
  .register-forms .hero__title .heading {
    margin-bottom: .5rem !important;
  }
}

.register-forms .navs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.register-forms .navs a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100%;
  margin-right: 1.25rem;
}

.register-forms .navs a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  right: -22px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, white), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, white 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 6px 1px;
  background-repeat: repeat-x;
}

.register-forms .navs a:last-child::before {
  display: none;
}

.register-forms .navs a.active {
  color: #5786DE;
  background-color: #fff;
}

.register-forms .navs a.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .75;
}

.register-forms .navs a.succeed {
  background-color: rgba(255, 255, 255, 0.1);
}

.register-forms .navs__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.register-forms .divider {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background-color: rgba(112, 112, 112, 0.5);
}

@media (max-width: 575.98px) {
  .register-forms .divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.register-forms .inner__content {
  width: 100%;
  position: relative;
  margin-top: -154px;
}

@media (max-width: 767.98px) {
  .register-forms .inner__content {
    margin-top: 0;
  }
}

.register-forms .inner-card {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  padding: 2rem 2rem 4rem;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.register-forms .inner-card::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -10px;
  right: 0;
  bottom: -15px;
  width: calc(100% + 20px);
  height: 80px;
  margin: auto;
  pointer-events: none;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 20%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 767.98px) {
  .register-forms .inner-card::before {
    display: none;
  }
}

.register-forms .register__body {
  position: relative;
  width: 100%;
}

.register-forms .register__body h4 {
  font-size: 1.5625rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 575.98px) {
  .register-forms .register__body h4 {
    margin-bottom: 2rem;
  }
}

.register-forms .register__body h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.register-forms .register__body h5 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: .875rem;
  color: rgba(112, 112, 112, 0.7);
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.register-forms .register__body h5 a:hover {
  color: #1F96C3;
}

.register-forms .register__body h6 {
  font-size: .625rem;
  color: rgba(112, 112, 112, 0.7);
  margin-bottom: .375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.register-forms .register__body p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.register-forms .register__body .divider {
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.register-forms .register__block {
  border-bottom: 2px dashed rgba(112, 112, 112, 0.1);
  margin-bottom: 2.5rem;
}

.register-forms .register__block:last-child, .register-forms .register__block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.register-forms .register__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3rem;
}

@media (max-width: 575.98px) {
  .register-forms .register__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .register-forms .register__actions .btn {
    margin-bottom: 1rem;
  }
}

.auth {
  position: relative;
  width: 100%;
  margin-top: -104px;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #f0f0f0;
  background-image: url("../img/backgrounds/auth.png");
}

@media (max-width: 767.98px) {
  .auth {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.auth .auth__wrap {
  max-width: 920px;
  margin: 6.25rem auto 0;
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 767.98px) {
  .auth .auth__wrap {
    margin: 0 auto 0;
  }
}

@media (max-width: 767.98px) {
  .auth .auth__wrap .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .auth .auth__wrap .row > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.auth .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .auth .image {
    position: relative;
    height: 215px;
    background-position: bottom !important;
  }
}

.auth .desc {
  padding: 4rem 3rem;
}

@media (max-width: 767.98px) {
  .auth .desc {
    padding: 3rem 2rem;
    min-height: auto !important;
  }
}

.auth .desc.forgot-m-height {
  min-height: 457px;
}

.auth .desc.login-m-height {
  min-height: 596px;
}

.auth .desc.password-m-height {
  min-height: 566px;
}

.contact-us {
  position: relative;
  width: 100%;
  margin-top: -104px;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #f0f0f0;
  background-image: url("../img/backgrounds/contact_us.png");
}

@media (max-width: 767.98px) {
  .contact-us {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.contact-us .box__wrap {
  margin-top: 6.25rem;
  display: block;
}

@media (max-width: 767.98px) {
  .contact-us .box__wrap {
    margin-top: 0;
  }
}

.contact-us .image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .contact-us .image {
    position: absolute;
    width: 100%;
    max-width: 62px;
    margin: 0 auto;
  }
}

.contact-us .desc {
  position: relative;
  display: block;
}

@media (max-width: 767.98px) {
  .contact-us .desc {
    padding-left: 6.25rem;
  }
}

.contact-us .needs-validation {
  min-height: 685px;
}

@media (max-width: 767.98px) {
  .contact-us .needs-validation {
    min-height: auto;
  }
}

.faq {
  position: relative;
  width: 100%;
  margin-top: -104px;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .faq {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.faq .box__wrap {
  margin-top: 6.25rem;
  display: block;
}

@media (max-width: 767.98px) {
  .faq .box__wrap {
    margin-top: 0;
  }
}

.faq .image {
  width: 100%;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.post-image {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
}

.post-image img {
  max-width: 100%;
  display: block;
  height: auto;
}

.post-image small {
  font-size: 1.125rem;
  font-style: italic;
  text-align: center;
  display: block;
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  .post-image small {
    font-size: .875rem;
  }
}

.thank-you,
.error-page {
  position: relative;
  width: 100%;
  margin-top: -104px;
  padding-top: 254px;
  padding-bottom: 150px;
  background-color: #f0f0f0;
  background-image: url("../img/backgrounds/auth.png");
}

@media (max-width: 767.98px) {
  .thank-you,
  .error-page {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}

.thank-you img,
.error-page img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

.follow-text {
  font-size: 1.125rem;
  color: #3339;
  display: block;
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  .follow-text {
    font-size: .9375rem;
  }
}

.topic-type-select {
  margin-bottom: 4rem;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .topic-type-select {
    margin-bottom: 3rem;
  }
}

.side-sticky-wrap {
  padding-bottom: 6.25rem !important;
}

@media (max-width: 991.98px) {
  .side-sticky-wrap {
    padding-bottom: 3.125rem !important;
  }
}

@media (max-width: 767.98px) {
  .side-sticky-wrap {
    padding-bottom: 0 !important;
  }
}

.alert-success {
  color: #1d6a4c;
  background-color: #d6efe5;
  font-size: 12px;
  border-color: #c1e8d9;
}

.alert {
  display: none;
  padding: .7rem .7rem;
}

#change-success {
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
}

#change-success a.btn.btn-primary {
  width: 336px;
}

#change-success.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.invalid-feedback.active {
  display: block;
}

.info-list-with-icon {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.info-list-with-icon li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}

.info-list-with-icon li:last-child {
  margin-bottom: 0;
}

.info-list-with-icon li .icon {
  min-width: 51px;
  width: 51px;
  height: 51px;
  margin-right: 1.5rem;
  border: 1px solid #FF0112;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .info-list-with-icon li .icon {
    margin-right: 1.25rem;
  }
}

.info-list-with-icon li .icon img {
  display: block;
}

.info-list-with-icon li p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .info-list-with-icon li p {
    font-size: 1.125rem;
  }
}

.vacancy-lists {
  position: relative;
  width: 100%;
}

.vacancy-lists .card {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 767.98px) {
  .vacancy-lists .card {
    margin-bottom: 1rem;
  }
}

.vacancy-lists .card .card-body {
  padding: 1.5rem;
}

@media (max-width: 767.98px) {
  .vacancy-lists .card .card-body {
    padding: 2rem 1.5rem;
  }
}

.vacancy-lists .card .card-body h6 {
  font-size: .875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .vacancy-lists .card .card-body h6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vacancy-lists .card .card-body h6 span {
  font-weight: 400;
  color: rgba(51, 51, 51, 0.4);
  display: block;
}

@media (max-width: 767.98px) {
  .vacancy-lists .card .card-body h6 span {
    margin-top: .375rem;
  }
}

.vacancy-lists .card .card-body h4 {
  font-weight: 700;
}

.vacancy-lists .card .card-body h4 a {
  color: #333333;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.vacancy-lists .card .card-body h4 a:hover {
  color: #5786DE;
}

.vacancy-lists .card .card-body .location-office {
  display: block;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: rgba(51, 51, 51, 0.6);
}

.vacancy-lists .card .card-body .text-box {
  font-size: 0.9rem;
  height: 80px;
  overflow: hidden;
}

.vacancy-lists .card .card-body p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.vacancy-lists .card .card-footer {
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vacancy-lists .card .card-footer a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  font-weight: 700;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  border-left: 1px solid rgba(112, 112, 112, 0.2);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.vacancy-lists .card .card-footer a:hover {
  color: #fff;
  background-color: #5786DE;
}

.vacancy-lists .card .card-footer a:first-child {
  border-left: none;
}

.status-lists {
  position: relative;
  width: 100%;
}

.status-lists .item {
  position: relative;
  display: block;
  padding: 1.5rem;
  border: 1px solid rgba(112, 112, 112, 0.2);
  margin-bottom: 1.5rem;
  border-left: 10px solid #31B17F !important;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 0 transparent;
          box-shadow: 0 3px 0 transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.status-lists .item:hover {
  border-color: transparent;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.status-lists .item.s--declined {
  border-left-color: #FF0112 !important;
  background-color: #F0F0F0;
}

.status-lists .item.s--declined h6,
.status-lists .item.s--declined p,
.status-lists .item.s--declined small {
  color: rgba(51, 51, 51, 0.5);
}

.status-lists .item .col-lg-5 > p {
  margin-bottom: 0 !important;
}

.status-lists .item h6 {
  font-size: .75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: .25rem;
}

@media (max-width: 767.98px) {
  .status-lists .item h6 {
    font-size: .8125rem;
  }
}

.status-lists .item p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .status-lists .item p {
    font-size: 1.125rem;
    margin-bottom: .75rem;
  }
}

.status-lists .item small {
  display: block;
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.6);
}

@media (max-width: 767.98px) {
  .status-lists .item small {
    font-size: .875rem;
    margin-bottom: 1.5rem;
  }
}

.status-lists .item .dstatus__link {
  position: absolute;
  right: 3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  height: 27px;
  font-size: 1rem;
  font-weight: 700;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .status-lists .item .dstatus__link {
    position: relative;
    right: 0;
    font-size: .875rem;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .status-lists .item .dstatus__link {
    margin-top: 0;
  }
}

.status-lists .item .dstatus__link:hover {
  color: #1F96C3;
}

@media (max-width: 767.98px) {
  .modal .modal-dialog {
    padding: 2rem;
  }
}

.modal .modal-content {
  border: none;
  border-radius: 0;
}

.modal .modal-body {
  position: relative;
  padding: 4rem 3rem 4rem;
}

@media (max-width: 767.98px) {
  .modal .modal-body {
    padding: 3rem 1.5rem 2rem;
  }
}

.modal .modal-body .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  border-radius: 100%;
  color: #000;
  border: 2px solid #000;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  opacity: .4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.modal .modal-body .btn-close:hover, .modal .modal-body .btn-close:focus {
  color: #FF0112;
  border-color: #FF0112;
}

.modal .modal-body .modal-text {
  padding: 0;
  text-align: center;
}

.modal .modal-body .modal-text .icon {
  margin: 0 auto 1rem;
  display: block;
}

@media (max-width: 767.98px) {
  .modal .modal-body .modal-text .icon {
    margin: 0 auto 2rem;
  }
}

.modal .modal-body .modal-text h2 {
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .modal .modal-body .modal-text h2 {
    font-size: 1.5625rem;
    text-align: left;
    margin-bottom: 1rem;
  }
}

.modal .modal-body .modal-text h2 span {
  display: block;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: .5rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.6);
}

@media (max-width: 767.98px) {
  .modal .modal-body .modal-text h2 span {
    font-size: .75rem;
  }
}

.modal .modal-body .modal-text p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.dropdown .dropdown-menu.dropdown-vacancy li .dropdown-item .image, .multi-small-swiper.swiper-container, .multi-small-swiper .swiper-slide .image, .multi-gallery-swiper .swiper-slide .image, .title-page, .job-vacancy-type .item__link .image, .my-profile .profile__header .profile__info .image, .register-forms .hero__title, .auth, .auth .image, .contact-us, .faq, .thank-you,
.error-page {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.dashboard-divider {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  background-color: rgba(112, 112, 112, 0.3);
}

.dashed-line {
  background-color: transparent;
  border-top: 2px dashed rgba(112, 112, 112, 0.3);
}
/*# sourceMappingURL=style.min.css.map */