*,
*::before,
*::after {
  box-sizing: border-box;
}
ul[class],
ol[class] {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
ul {
  padding-left: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  background: #000;
  color: #fff;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-size: 1.15em;
}

.container {
  padding: 2% 10%;
}
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 15px;
  background: #f3d92a;
  margin-top: 30px;
  color: #000;
  border: none;
}
.btn:hover {
  background: #eed519;
}
.btn img {
  max-width: 20px;
  margin-left: 10px;
}
.heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.7em;
  color: #f3d92a;
}

/* Navbar - Mobile menu */

header {
  background: #000;
  color: #fff;
  position: fixed;
  right: 0;
  left: 0;
  padding: 5px 0;
  z-index: 10;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
}
.navbar .active a {
  color: #f3d92a;
  font-weight: bold;
}
.mobile-menu .active a {
  color: #f3d92a;
  font-weight: bold;
}
.navbar-items {
  display: flex;
  align-items: center;
}
.navbar-item:hover > a {
  color: #f3d92a;
  text-decoration: underline;
}
.navbar-logo:hover {
  cursor: pointer;
}
.navbar-logo a {
  margin-right: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
}
.navbar-logo h1 {
  color: #f3d92a;
}
.navbar-logo img {
  max-width: 150px;
  margin-right: 10px;
}
.navbar-list {
  display: flex;
}
.navbar-list li > a {
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  text-transform: uppercase;
}

.navbar-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-actions a {
  color: #000;
  text-decoration: none;
}
.navbar-actions .callback-form {
  color: #f3d92a;
}

.navbar-actions .navbar-action {
  padding: 0 10px;
  margin-right: 20px;
}
.navbar-actions .active-language {
  font-weight: bold;
  color: #f3d92a;
}
.navbar-actions .navbar-mobile {
  font-weight: bold;
  text-align: center;
}
.callback-form {
  font-weight: normal;
  text-decoration: underline !important;
  font-size: 0.8em;
}
.navbar-actions .navbar-telegram {
  display: block;
  padding: 10px 30px;
  background: #f3d92a;
}
.navbar-actions .navbar-telegram img {
  max-width: 25px;
  margin-left: 5px;
}
.navbar-actions .navbar-telegram a {
  display: flex;
  align-items: center;
}
.navbar-actions .navbar-telegram a i {
  padding-left: 5px;
  font-size: 1.3em;
  color: #f3d92a;
}
.navbar-actions .navbar-telegram:hover {
  background: #f3d92a;
  cursor: pointer;
}
.navbar-actions .navbar-telegram:hover > a {
  color: #000;
}
.navbar-actions .navbar-telegram:hover > a i {
  color: #000;
}
/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #000;
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.mobile-menu nav ul li {
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  padding: 30px;
}
.mobile-menu nav ul li a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu li {
  list-style-type: none;
}
.mobile-menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-left: 25px;
}
.mobile-menu-btn span {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f3d92a;
  transition: all 0.5s;
}
.mobile-menu-btn span:nth-of-type(2) {
  top: calc(50% - 10px);
}
.mobile-menu-btn span:nth-of-type(3) {
  top: calc(50% + 10px);
}
.mobile-menu-btn.active span:nth-of-type(1) {
  display: none;
}
.mobile-menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.mobile-menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}
.mobile-phone-number {
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 1.8em;
  text-decoration: none;
  color: #fff;
  align-items: center;
  font-weight: bold;
  margin-top: 30px;
}
.mobile-phone-number img {
  max-width: 25px;
  margin-right: 10px;
}
.language-mobile {
  font-size: 2em;
}
.language-mobile {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.language-mobile a {
  text-decoration: none;
  color: #fff;
  padding: 0 20px;
}
.language-mobile .active-language {
  color: #f3d92a;
  font-weight: bold;
}
.mobile-header {
  display: none;
}
.mobile-header .mobile-menu-phone {
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 10px;
}
.mobile-header .mobile-menu-phone a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.mobile-header .mobile-menu-phone a i {
  font-size: 1.5em;
  margin-right: 7px;
}
.mobile-header .mobile-menu-phone img {
  max-width: 25px;
  margin: 0;
  margin-left: 10px;
}
.mobile-header .mobile-menu-phone:hover {
  cursor: pointer;
}
.mobile-menu-telegram {
  text-align: center;
}
.mobile-menu-telegram a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 20px auto;
}
.mobile-menu-telegram a i {
  margin-left: 5px;
  font-size: 1.5em;
}
/* Navbar - Mobile menu */

/* About Section */

.about h2 {
  text-align: center;
  text-transform: uppercase;
}
.about-wrapper {
  display: flex;
  align-items: center;
}
.about-wrapper img {
  max-width: 60%;
}
.about-wrapper .about-description p {
}
/* About Section */

/* Homescreen */
.homescreen {
  background: #000;
  background-image: url(../img/homescreen-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.homescreen-action h1 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 3.5em;
  line-height: 1.1em;
}
.homescreen-action h1 > span {
  color: #f3d92a;
  text-decoration: underline;
}
.homescreen-description img {
  max-width: 650px;
}
.homescreen-utm p {
  color: #000;
  padding: 15px 25px;
  display: inline-block;
  border: 1px solid #f3d92a;
  color: #fff;
  font-weight: normal;
  border-radius: 5px;
  font-size: 16px;
}
.homescreen-utm p:first-child {
  position: absolute;
  left: 10%;
  top: 600px;
  background: #fff;
  color: #000;
  transform: rotate(-2deg);
}
.homescreen-utm p:last-child {
  position: absolute;
  left: 12%;
  top: 650px;
  background: #f3d92a;
  color: #000;
}
/* Homescreen */
/* Duties Section */
.duties {
  position: relative;
}
.duties > svg {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.duties > svg path {
  fill: #000;
}
.duties ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.duties ul li img {
  max-width: 25px;
  margin-right: 20px;
}
.duties-wrapper {
  display: flex;
  align-items: center;
}
.duties-img img {
  max-width: 500px;
}
/* Duties Section */

/* Our benefits */
.our-benefits {
  text-align: center;
}
.our-benefits ul {
  text-align: left;
}
.our-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.our-benefits ul li img {
  max-width: 25px;
  margin-right: 20px;
}
/* Our benefits */

/* Requirements Section */
.requirements {
  background: #eee;
  color: #000;
  padding-top: 150px;
}
.requirements .heading {
  /* text-shadow: 1px 2px 3px #000; */
  color: #000;
}

.requirements ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.requirements ul li img {
  max-width: 25px;
  margin-right: 20px;
}
.requirements-wrapper {
  display: flex;
  align-items: center;
}

/* Requirements Section */

/* Salary-Record Section */
.salary-record {
  background: #fff;
  color: #000;
}
.record-wrapper {
  display: flex;
  align-items: center;
}
.record-wrapper img {
  max-width: 250px;
  padding-right: 50px;
}
.record-wrapper h2 {
  font-weight: normal;
}
/* Salary-Record Section */

/* Bonus icon */
.bonus-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bonus-wrapper img {
  max-width: 550px;
  border-radius: 15px;
}

.bonus-description ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.bonus-description ul li img {
  max-width: 25px;
  margin-right: 20px;
}

/* Bonus icon */
/* Work example */
.work-example {
  color: #eee;
  margin-bottom: 3%;
}
.work-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-example > p {
  padding-top: 30px;
}
.work-item {
  padding: 15px;
  flex-basis: 48%;
}
.work-item h3 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.work-item img {
  max-width: 200px;
  margin: 0 auto;
}
.work-item p span {
  color: #f3d92a;
  font-weight: bold;
}
.other-var {
  display: flex;
  align-items: center;
}
.other-var img {
  max-width: 50px;
  margin-right: 30px;
}
.add-info {
  color: #f3d92a;
  font-size: 16px;
}
/* Work example */
/* Callback section */
.callback {
  background: #eee;
  color: #000;
}
.callback-wrapper {
  display: flex;
  color: #000;
  align-items: center;
  padding: 5px 25px;
  border-radius: 15px;
}
.callback-img img {
  max-width: 170px;
  padding-left: 20px;
}
.callback-description {
  text-align: center;
  font-size: 1em;
}
.callback-description p {
  font-size: 1.35em;
}
.callback-description span {
  color: #0c858f;
  font-weight: bold;
}
.callback-description a {
  text-decoration: none;
  background: #f3d92a;
  padding: 10px 30px;
  color: #000;
  text-transform: none;
  font-size: 1em;
}
/* Callback section */

/* Career section */
.career-wrapper {
  display: flex;
  justify-content: space-between;
}
.career-wrapper img {
  max-width: 550px;
  border-radius: 15px;
  margin-right: 30px;
}
.career-description span {
  color: #f3d92a;
  font-weight: bold;
}
.career-description ul {
  padding-left: 20px;
}
/* Career section */
/* Our Soft section */
.our-soft {
  background: #eee;
}
.our-soft .heading {
  color: #000;
}
.soft-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.soft-item {
  flex-basis: 10%;
}
.soft-item img {
  max-width: 80%;
}
/* Our Soft section */
/* Work review section */

/* 
 * 	Owl Carousel - Video Plugin
 */
.carousel-container {
  overflow: hidden;
}
.carousel-container .owl-carousel .owl-stage {
  padding-left: 0 !important;
}
.owl-carousel .owl-stage-outer {
  overflow: unset;
}
.owl-carousel .owl-nav {
  text-align: center;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 50px;
  border: 2px solid #f3d92a;
  border-radius: 50%;
  height: 50px;
  font-size: 25px;
  color: #f3d92a;
  margin: 0 10px;
}
.carousel-container .owl-carousel .owl-nav .owl-next:focus,
.carousel-container .owl-carousel .owl-nav .owl-prev:focus {
  outline: 0;
}
.carousel-container h2 {
  font-size: 34px;
  text-align: left;
  font-weight: 700;
}

.carousel-item {
  margin: 20px 0;
}
.carousel-item__card {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
}
/* Work review section */
/* Skill Audio Section */
.skill-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skill-img,
.skill-audio {
  flex-basis: 47%;
}
.audio_field {
  width: 100%;
  margin: 10px 0;
}
.skill-img {
  border-radius: 15px;
}

/* Skill Audio Section */
/* Youtube video section */

.youtube {
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all 200ms ease-out;
  cursor: pointer;
  width: 100% !important;
  height: 225px !important;
  background-size: cover;
}
.youtube .play {
  background: url(../img/youtube-play-btn.png) no-repeat;
  background-position: 0 -50px;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  position: absolute;
  height: 50px;
  width: 69px;
  transition: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* Youtube video section */
/* Footer Section */

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrapper .footer-logo {
  max-width: 250px;
}
.footer-wrapper .footer-menu {
  display: flex;
  flex-direction: column;
}
.footer-wrapper .footer-menu a {
  text-decoration: none;
  color: #fff;
  padding: 3px 0;
}
.footer-menu h2 {
  padding-bottom: 15px;
  color: #f3d92a;
}
.footer-contacts .btn {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.footer-contacts .btn img {
  max-width: 25px;
  margin-left: 5px;
}
/* Footer Section */
/* Media queries */
@media (max-width: 480px) {
}
@media (max-width: 980px) {
  header {
    padding: 10px 0px;
  }
  .navbar {
    display: none;
  }
  .mobile-menu-phone .btn {
    margin-top: 0;
    padding: 10px;
    color: #000;
  }
  .mobile-header .mobile-menu-phone a {
    color: #000;
  }
  .mobile-header {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
  }
  .homescreen {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 150px;
    justify-content: center;
  }
  .homescreen-description img {
    max-width: 100%;
  }
  .about-wrapper {
    flex-direction: column;
  }
  .about-wrapper img {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .duties-wrapper {
    flex-direction: column-reverse;
  }
  .requirements .heading {
    padding-top: 70px;
  }

  .bonus-wrapper {
    flex-direction: column-reverse;
  }
  .heading {
    font-size: 1.2em;
  }
  .work-wrapper {
    flex-direction: column;
  }
  .callback-wrapper {
    flex-direction: column-reverse;
  }
  .callback-img {
    padding-bottom: 30px;
  }
  .footer-wrapper .footer-logo {
    max-width: 130px;
  }
  .footer-wrapper .footer-menu {
    display: none;
  }
  .homescreen-action h1 {
    font-size: 2em;
  }
  .duties-img img {
    max-width: 100%;
  }
  .record-wrapper {
    flex-direction: column;
  }
  .record-wrapper img {
    max-width: 70%;
    padding-right: 0;
  }
  .record-wrapper h2 {
    padding-top: 20px;
    text-align: center;
  }
  .heading {
    padding: 35px 0;
  }
  .bonus-wrapper img {
    max-width: 90%;
  }
  footer .btn {
    padding: 2px 10px;
  }
  .career-wrapper {
    flex-direction: column;
  }
  .career-wrapper img {
    margin-right: 0;
  }
  .soft-wrapper {
    flex-wrap: wrap;
  }
  .soft-item {
    flex-basis: 33%;
    padding: 10px;
  }

  .homescreen-utm p {
    font-size: 14px;
  }
  .homescreen-utm p:first-child {
    top: 72%;
  }
  .homescreen-utm p:last-child {
    top: 78%;
  }
  .skill-wrapper {
    flex-direction: column;
  }
  .skill-audio {
    width: 100%;
    margin-top: 20px;
  }
  .soft-wrapper {
    justify-content: center;
  }
  .homescreen-action {
    margin-bottom: 150px;
  }
  .copy {
    font-size: 14px;
    text-align: center;
  }
  .add-info {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .navbar-list li > a {
    padding: 0 10px;
  }
  .container {
    padding: 3% !important;
  }
  .navbar-logo {
    margin-right: 10px;
  }
  .navbar-actions .navbar-telegram {
    padding: 10px 10px;
  }
}
@media (min-width: 1200px) {
  .navbar {
    display: flex;
  }
  .mobile-menu,
  .mobile-menu-btn {
    display: none;
  }
}
