* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Verdana";
}

.content {
  flex: 1;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* MAIN-SCREEN-STYLES-START */
.main-screen {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/background.jpg);
  background-size: cover;
  margin-top: 70px;
}

.main-screen-tittle {
  font-family: "Verdana";
  font-size: 30px;
  color: white;
  text-shadow: 0px 0px 20px #000000;
  text-align: center;
}

/* OFFER-COUNTER-STYLES-START */
.offer-counter {
  width: 100%;
  height: 127px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-counter-text {
  font-size: 25px;
  font-weight: 700;
}

.counter {
  color: #008fdf;
}

.you_tube_video {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.search_job {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #488AC7;
    width: 50%;
  height: 500px;
}

@media screen and (max-width: 920px){
  .search_job {
    width: 100%;
  }
}

.post_job {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #BCC6CC;
    width: 50%;
  height: 500px;
}

@media screen and (max-width: 920px){
  .post_job {
    width: 100%;

  }
}
.video {
  display: flex;
  justify-content: center;
  margin-top: 90px;
  width: 70%;
}

.tittle_video {
  display: flex;
  justify-content: center;
  position: absolute;
  margin-top: 30px;
  margin-bottom: 10px;
}
/* CHOOSE-ROLE-BLOCK-STYLES-START */

.choose-role-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 66px;
}

.choose-role-text {
  height: 84px;
  width: 300px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 65px;
  margin-bottom: 40px;
}

.choose-role-tittle {
  margin-bottom: 14px;
}

.roles-links-block {
  width: 380px;
  height: auto;
  box-shadow: 0px 4px 59px rgba(0, 0, 0, 0.14);
}

.role-link:hover {
  box-shadow: 0px 0px 59px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

.role-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.role-link-item {
  list-style-type: none;
  border-bottom: 1px solid #c4c4c4;
}

.role-link-item:last-child {
  border-bottom: none;
}

.role-link-item-text {
  padding-left: 25px;
  color: black;
}

.arrow-icon {
  color: black;
}

.role-link {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PAGE LOADER STYLES */
.page-loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  left: 0;
  top: 0;

  background-color: white;
}

.page-loader.hide {
  display: none;
}

.page-loader svg .path {
  stroke: #008fdf;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.page-loader svg {
  width: 50px;
  height: 50px;

  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
