@font-face {
  font-family: "Europa";
  src: url("../font/Europa-Bold.ttf");
}

:root {
  --white: #ffffff;
  --black: #000000;
  --text-color: #1a2578;
  --text-color-second: #484c63;
  --btn-color: #bf0830;
}

/* GENERAL */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

*:focus {
  outline: 2px dotted var(--btn-color);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-thumb {
  background-color: var(--btn-color);
  outline: 1px solid slategrey;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}

::selection {
  background-color: var(--btn-color);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--btn-color);
  color: var(--white);
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Europa", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* CONTAINER */
.container {
  max-width: 1180px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  padding: 24px 0px;
  background: linear-gradient(
    252.91deg,
    #e3e7f6 3.68%,
    rgba(227, 231, 246, 0) 97.82%
  );
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.header .navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar .navbar-logo {
  transition: all 0.3s ease;
}

.navbar .navbar-logo:hover {
  opacity: 0.9;
}

.navbar .navbar-logo:active {
  opacity: 0.7;
}

.navbar .sitemenu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar .sitemenu .sitemenu-item {
  margin-right: 60px;
}

.navbar .sitemenu .sitemenu-item:nth-child(3) {
  margin-right: 30px;
}

.navbar .sitemenu .sitemenu-item:last-child {
  margin-right: 0;
}

.navbar .sitemenu .sitemenu-item .sitemenu-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #646a89;
  transition: all 0.3s ease;
}

.navbar .sitemenu .sitemenu-item .sitemenu-link:hover {
  color: #bf0830;
}

.navbar .sitemenu .sitemenu-item .sitemenu-link:active,
.sitemenu-link:focus {
  opacity: 0.7;
}

.navbar .sitemenu .sitemenu-btn {
  background-color: #bf0830;
  border: 1px solid #bf0830;
  border-radius: 6px;
  color: var(--white);
  padding: 13px 31px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navbar .sitemenu .sitemenu-btn:hover {
  background-color: transparent;
  color: #bf0830;
}

.navbar .sitemenu .sitemenu-btn:active,
.sitemenu-btn:focus {
  opacity: 0.7;
}

.navbar .mobile-menu-box {
  display: none;
}

.navbar .mobile-menu-box .mobile-menu-icon {
  outline: none;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar .mobile-menu-box .mobile-menu-icon i.fa {
  font-size: 30px;
}

.navbar .mobile-menu-box .mobile-menu-icon:hover i.fa {
  color: #bf0830;
}

.navbar .mobile-menu-box .mobile-menu-icon:active i.fa {
  color: #bf0830;
  opacity: 0.7;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay-content a:not(:last-child) {
  margin-bottom: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #bf0830;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
}

.hero {
  padding-top: 200px;
  background: linear-gradient(
    275deg,
    #e3e7f6 3.68%,
    rgba(227, 231, 246, 0) 97.82%
  );
}

.site-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.site-hero-content-heading {
  width: 470px;
  font-weight: 700;
  font-size: 48px;
  line-height: 62px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 32px;
}

.site-hero-content-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 40px;
}

.site-hero-content-btn-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.site-hero-content-btn {
  padding: 14px 32px;
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.0025em;
  white-space: nowrap;
}

.first-btn {
  background: var(--btn-color);
  color: var(--white);
  margin-right: 16px;
  transition: all 0.3s ease;
}

.first-btn:hover {
  background: transparent;
  color: var(--btn-color);
}

.first-btn:active,
.first-btn:focus {
  opacity: 0.7;
}

.second-btn {
  color: var(--btn-color);
  transition: all 0.3s ease;
}

.second-btn:hover {
  background: var(--btn-color);
  color: var(--white);
}

.second-btn:active,
.second-btn:focus {
  opacity: 0.7;
}

.site-hero-image .site-hero-image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-content {
  background-color: var(--white);
}

.brands {
  margin: 100px 0px;
}

.brands-box-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 57px;
  text-align: center;
  color: var(--text-color);
}

.brands-box-heading b {
  color: var(--btn-color);
}

.brands-logo-box {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  cursor: pointer;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.2, 1.2);
}

.brand-logo:active {
  opacity: 0.8;
}

.divisor-line {
  width: 100%;
  border: 1px solid rgba(197, 203, 226, 0.5);
}

.products {
  margin: 106px 0px;
}

.products-box-top {
  text-align: center;
}

.products-box-top-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.products-box-top-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.products-box-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 97px;
}

.products-box-bottom-child {
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(22, 23, 72, 0.07),
    0px 25px 35px rgba(22, 23, 72, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.products-box-bottom-child:hover,
.products-box-bottom-child:focus {
  cursor: pointer;
  transform: translate(0px, -20px);
}

.products-box-bottom-child:active {
  transform: scale(1.1, 1.1);
}

.products-box-bottom-child:last-child {
  margin-left: 32px;
}

.products-box-bottom-child-content {
  padding: 64px 180px 0px 62px;
}

.products-box-bottom-child-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  margin-top: 46px;
  margin-bottom: 40px;
  color: var(--text-color-second);
}

.products-box-bottom-child-btn {
  padding: 15px 24px;
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  color: var(--btn-color);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.products-box-bottom-child-btn i {
  margin-right: 8px;
}

.products-box-bottom-child-btn:hover {
  background-color: var(--btn-color);
  color: var(--white);
}

.products-box-bottom-child-btn:active {
  opacity: 0.7;
}

.products-box-bottom-child .products-box-bottom-child-image {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.products-box-bottom-child .products-box-bottom-child-image img {
  width: 100%;
  height: 100%;
}

.award-win {
  background: linear-gradient(
    268.52deg,
    #e3e7f6 -52.27%,
    rgba(227, 231, 246, 0) 138.23%
  );
  padding: 100px 0px;
}

.award {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.award-content-heading {
  width: 416px;
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.award-content-text {
  width: 400px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.leaders {
  padding: 120px 0px;
}

.leaders-box-top {
  text-align: center;
}

.leaders-box-top-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.leaders-box-top-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.leaders-box-bottom {
  margin-top: 100px;
}

.myslider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#prevBtn,
#nextBtn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: #424b5a;
}

#prevBtn:hover,
#nextBtn:hover {
  opacity: 0.7;
}
#prevBtn:active,
#nextBtn:active {
  opacity: 0.5;
}

.join {
  background: linear-gradient(
    335.73deg,
    #e3e7f6 12.46%,
    rgba(227, 231, 246, 0) 84.19%
  );
  padding: 110px 0px;
}

.join-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.join-box-content-heading {
  width: 363px;
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.join-box-content-text {
  width: 360px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 40px;
}

.join-box-content-btn {
  color: var(--btn-color);
  border: 1px solid #bf0830;
  border-radius: 6px;
  padding: 14px 32px;
  transition: all 0.3s ease;
}

.join-box-content-btn:hover,
.join-box-content-btn:focus {
  background-color: var(--btn-color);
  color: var(--white);
}

.join-box-content-btn:active {
  opacity: 0.7;
}

.footer {
  background-color: #0d123c;
  color: var(--white);
  padding: 60px 0px;
}

.footer-box-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-box-top-left p {
  width: 287px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  margin-top: 30px;
  margin-bottom: 0;
}

.footer-box-top-right {
  display: flex;
  flex-direction: row;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  margin-right: 97px;
  padding: 0;
}

.footer-menu li.title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
}

.footer-menu .fritem {
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-menu .fritem a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  transition: all 0.2s ease;
}

.footer-menu .fritem a:hover,
.footer-menu .fritem a:focus {
  opacity: 0.7;
  text-decoration: underline;
}
.footer-menu .fritem a:active {
  opacity: 0.5;
}

.social-icons {
  margin: 0;
  padding: 0;
}

.social-icons .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.social-icons .item {
  margin-top: 30px;
}

.social-icons .item a {
  color: var(--white);
  margin-right: 15px;
  transition: all 0.2s ease;
}

.social-icons .item a:hover,
.social-icons .item a:focus {
  color: var(--btn-color);
}

.social-icons .item a:active {
  opacity: 0.7;
}

.footer-line {
  width: 100%;
  border-bottom: 1px solid rgba(197, 203, 226, 0.5);
  margin-top: 50px;
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 50px;
}

.bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bottom span {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.bottom a {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-decoration-line: underline;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.2s ease;
}

.bottom a:hover,
.bottom a:focus {
  opacity: 0.7;
}

.bottom a:active {
  opacity: 0.5;
}

.product-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.product-hero-text {
  width: 444px;
}

.product-box {
  margin: 100px 0px;
}

.product-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.product-item-content-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  width: 400px;
  margin-top: 40px;
  margin-bottom: 0;
}

.second-text-box {
  margin-bottom: 42px;
}

.product-item-content-btn {
  padding: 14px 32px;
  border: 1px solid #bf0830;
  border-radius: 6px;
  color: var(--btn-color);
  transition: all 0.3s ease;
}

.product-item-content-btn:hover,
.product-item-content-btn:focus {
  background-color: var(--btn-color);
  color: var(--white);
}

.product-item-content-btn:active {
  opacity: 0.7;
}

.product-item-second {
  margin-top: 100px;
}

.product-item-content-text2 {
  width: 470px;
}

.join-team {
  background: linear-gradient(
    342.12deg,
    #e3e7f6 -6.53%,
    rgba(227, 231, 246, 0) 87.81%
  );
  padding: 130px 0px;
}

.join-team-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.join-team-box-heading {
  width: 700px;
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 20px;
}

.join-team-box-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 40px;
}

.join-team-box-btn1 {
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  color: var(--white);
  padding: 14px 32px;
  transition: all 0.3s ease;
}

.join-team-box-btn1:hover,
.join-team-box-btn1:focus {
  background: transparent;
  color: var(--btn-color);
}

.join-team-box-btn1:active {
  opacity: 0.7;
}

.join-team-box-btn2 {
  background: transparent;
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  color: var(--btn-color);
  padding: 14px 32px;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.join-team-box-btn2:hover,
.join-team-box-btn2:focus {
  background: var(--btn-color);
  color: var(--white);
}

.join-team-box-btn2:active {
  opacity: 0.7;
}

.about-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.about-hero-text {
  width: 390px;
}

.about-stats {
  margin-top: 100px;
  margin-bottom: 85px;
}

.about-stats-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.about-stats-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(22, 23, 72, 0.07),
    0px 25px 35px rgba(22, 23, 72, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-stats-item:hover,
.about-stats-item:focus {
  cursor: pointer;
  transform: translate(0px, -20px);
}

.about-stats-item:active {
  opacity: 0.8;
}

.about-stats-item-heading {
  font-weight: 700;
  font-size: 56px;
  line-height: 62px;
  color: var(--text-color);
  padding: 53px 98px 0px 98px;
  margin-top: 0;
  margin-bottom: 18px;
}

.about-stats-item-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 12px;
}

.culture {
  background: linear-gradient(
    268.52deg,
    #e3e7f6 -52.27%,
    rgba(227, 231, 246, 0) 138.23%
  );
  padding: 65px 0px;
}

.culture-box-info {
  text-align: center;
}

.culture-box-info-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.culture-box-info-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.culture-box-cards {
  margin: 97px 0px;
}

.culture-box-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.culture-box-parent-second {
  margin-top: 60px;
}

.culture-card {
  width: 345px;
  height: 278px;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(22, 23, 72, 0.07),
    0px 25px 35px rgba(22, 23, 72, 0.05);
  border-radius: 8px;
  padding: 40px;
  transition: all 0.4s ease;
}

.culture-card:hover,
.culture-card:focus {
  cursor: pointer;
  transform: scale(1.1, 1.1);
}

.culture-card:active {
  opacity: 0.8;
}

.culture-card-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 31px;
  color: #3a3a3c;
  margin-top: 0;
  margin-bottom: 32px;
}

.culture-card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.culture-box-weare {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.culture-box-weare-content-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.culture-box-weare-content-text {
  width: 420px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.culture-box-weare-content-text:last-child {
  margin-top: 25px;
}

.we-hiring {
  background: linear-gradient(
    268.52deg,
    #e3e7f6 -52.27%,
    rgba(227, 231, 246, 0) 138.23%
  );
  padding: 155px 0px;
}

.we-hiring-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.we-hiring-content-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.we-hiring-content-text {
  width: 334px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 40px;
}

.we-hiring-content-btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  padding: 14px 32px;
  border: 1px solid #bf0830;
  border-radius: 6px;
  color: var(--btn-color);
  transition: all 0.3s ease;
}

.we-hiring-content-btn:hover,
.we-hiring-content-btn:focus {
  background-color: var(--btn-color);
  color: var(--white);
}

.we-hiring-content-btn:active {
  opacity: 0.7;
}

.be-next {
  margin-top: 50px;
  margin-left: 60px;
}

.wedo {
  margin: 100px 0px;
}

.wedo-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.wedo-content-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.wedo-content-text {
  width: 400px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.wedo-content-text:last-child {
  margin-top: 25px;
}

.culture-career {
  background: var(--white) !important;
}

.career-hero-heading {
  width: auto;
}

.career-hero-heading b {
  color: var(--btn-color);
}

.offer-title {
  display: flex;
  align-items: center;
}

.offer-title img {
  margin-right: 15px;
}

.gallery {
  background: linear-gradient(
    270.76deg,
    #e3e7f6 -55.5%,
    rgba(227, 231, 246, 0) 145.36%
  );
  padding: 50px 0px;
}

.gallery-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.gallery-top-content-heading {
  width: 149px;
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.gallery-top-content-text {
  width: 323px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
}

.gallery-top-image img {
  border-radius: 11px;
}

.gallery-bottom {
  margin-top: 30px;
}

.gallery-bottom-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.gallery-bottom-box img {
  border-radius: 11px;
}

.pack {
  margin: 60px 0px;
}

.join-pack-top {
  background: #f7f8ff;
  box-shadow: 0px 0px 8px rgba(22, 23, 72, 0.07),
    0px 25px 35px rgba(22, 23, 72, 0.05);
  border-radius: 8px;
  padding: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.join-pack-top-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.join-pack-top-left-heading {
  width: 443px;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 30px;
}

.join-pack-top-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rating {
  display: flex;
  align-items: center;
  margin-top: 13px;
  margin-bottom: 23px;
}

.rating span {
  font-weight: 700;
  font-size: 36px;
  line-height: 62px;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
}

.join-pack-top-right-link {
  color: var(--text-color-second);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.join-pack-top-right-link i {
  margin-left: 5px;
}

.join-pack-top-right-link:hover,
.join-pack-top-right-link:focus {
  text-decoration: none;
}

.join-pack-top-right-link:active {
  opacity: 0.7;
}

.join-pack-bottom {
  margin-top: 120px;
  margin-bottom: 50px;
}

.join-pack-bottom-title {
  text-align: center;
}

.join-pack-bottom-title h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.join-pack-bottom-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 0;
}

.join-pack-bottom-box {
  margin-top: 100px;
}

.job-box-item {
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(22, 23, 72, 0.07),
    0px 17px 35px rgba(22, 23, 72, 0.05);
  border-radius: 8px;
  padding: 35px 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.job-box-item-left h3 {
  font-weight: 400;
  font-size: 28px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 24px;
}

.job-box-item-left-info span {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #8f90a6;
  margin-top: 0;
  margin-bottom: 0;
}

.job-box-item-left-info span i {
  margin-right: 5px;
}

.job-box-item-left-info span:first-child {
  margin-right: 20px;
}

.job-box-item-right a {
  border: 1px solid #bf0830;
  border-radius: 6px;
  color: var(--btn-color);
  padding: 14px 32px;
  transition: all 0.3s ease;
}

.job-box-item-right a:hover,
.job-box-item-right a:focus {
  background-color: var(--btn-color);
  color: var(--white);
}

.job-box-item-right a:active {
  opacity: 0.7;
}

.join-pack-bottom-box-btn {
  text-align: center;
  margin-top: 60px;
}

.join-pack-bottom-box-btn a {
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  padding: 14px 32px;
  color: var(--white);
  transition: all 0.3s ease;
}

.join-pack-bottom-box-btn a:hover,
.join-pack-bottom-box-btn a:focus {
  background-color: transparent;
  color: var(--btn-color);
}

.join-pack-bottom-box-btn a:active {
  opacity: 0.7;
}

.write {
  background: linear-gradient(
    342.12deg,
    #e3e7f6 -6.53%,
    rgba(227, 231, 246, 0) 87.81%
  );
  padding: 120px 0px;
}

.write-box {
  text-align: center;
}

.write-box-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 16px;
}

.write-box-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 40px;
}

.write-box-btn {
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  padding: 14px 32px;
  color: var(--white);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.write-box-btn:hover,
.write-box-btn:focus {
  background-color: transparent;
  color: var(--btn-color);
}

.write-box-btn:active {
  opacity: 0.7;
}

.contact-hero-text {
  width: 502px;
}

.contact {
  padding: 150px 0px;
}

.contact-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.contact-form {
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(22, 23, 72, 0.07),
    0px 25px 35px rgba(22, 23, 72, 0.05);
  border-radius: 8px;
  padding: 52px 48px;
}

.form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.form-item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: var(--text-color-second);
  margin-top: 0;
  margin-bottom: 6px;
}

.form-item input,
.form-item textarea {
  background: #ffffff;
  border: 1px solid #e3e7f6;
  border-radius: 6px;
  width: 443px;
  height: 60px;
  outline: none;
  text-indent: 20px;
}

.form-item input:focus,
.form-item textarea:focus {
  border: 1px solid var(--btn-color);
}

.form-item textarea {
  width: 443px;
  height: 148px;
  padding: 20px;
  text-indent: 0px;
}

.form-btn {
  background-color: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  padding: 14px 32px;
  color: var(--white);
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover,
.form-btn:focus {
  background-color: transparent;
  color: var(--btn-color);
}

.form-btn:active {
  opacity: 0.7;
}

.city-item {
  margin-bottom: 70px;
}

.city-item-top {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.city-item-top img {
  margin-right: 20px;
}

.city-item-top span {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.005em;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
}

.city-item p {
  width: 273px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
}

/* asd */

/* RESPONSIVE */

@media only screen and (max-width: 1000px) {
  .site-hero {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .site-hero-content {
    margin-top: 60px;
    padding-bottom: 50px;
  }

  .site-hero-content-heading {
    width: auto;
  }

  .site-hero-content-btn-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .products-box-bottom {
    display: flex;
    flex-direction: column;
  }

  .products-box-bottom-child-content {
    padding: 64px 62px 0px 62px;
  }

  .products-box-bottom-child:last-child {
    margin-left: 0;
    margin-top: 50px;
  }

  .product-hero-text {
    width: auto;
  }

  .about-stats-box {
    display: flex;
    flex-direction: column;
  }

  .about-stats-item {
    margin-bottom: 50px;
  }

  .culture-box-parent {
    display: flex;
    flex-direction: column;
  }

  .culture-card {
    margin-bottom: 30px;
  }

  .gallery-bottom-box {
    display: flex;
    flex-direction: column;
  }

  .gallery-bottom-box img {
    margin-bottom: 20px;
  }

  .join-pack-top {
    display: flex;
    flex-direction: column;
  }

  .join-pack-top-left-heading {
    width: auto;
  }

  .contact-hero-text {
    width: auto;
  }

  .contact-right {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .brands-logo-box {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
  }

  .brand-logo {
    margin-bottom: 30px;
  }

  .award {
    display: flex;
    flex-direction: column;
  }

  .award-image {
    padding: 0px 50px;
    margin-top: 50px;
  }

  .footer-box-top {
    display: flex;
    flex-direction: column;
  }

  .footer-box-top-right {
    margin-top: 50px;
  }

  .product-item {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-item-second {
    display: flex;
    flex-direction: column;
  }

  .product-item-content-text {
    width: auto;
  }

  .product-item-image {
    padding: 0px 50px;
    margin-bottom: 50px;
  }

  .culture-box-weare {
    display: flex;
    flex-direction: column-reverse;
  }

  .wedo-parent {
    display: flex;
    flex-direction: column;
  }

  .contact-parent {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 800px) {
  .navbar .sitemenu {
    display: none;
  }

  .navbar .mobile-menu-box {
    display: block;
  }

  .we-hiring-parent {
    display: flex;
    flex-direction: column-reverse;
  }

  .we-hiring-img {
    padding: 0px 50px;
    margin-bottom: 40px;
  }

  .gallery-top {
    display: flex;
    flex-direction: column-reverse;
  }

  .gallery-top-content {
    text-align: center;
    margin-top: 50px;
  }

  .gallery-top-content-heading,
  .gallery-top-content-text {
    width: auto;
  }
}

@media only screen and (max-width: 700px) {
  .join-box {
    display: flex;
    flex-direction: column-reverse;
  }
  .join-box-image {
    margin-bottom: 50px;
    padding: 0px 30px;
  }
  .join-pack-top-left {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .join-pack-top-left-heading {
    margin-left: 0;
    text-align: center;
  }

  .job-box-item {
    display: flex;
    flex-direction: column;
  }

  .job-box-item-right {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 600px) {
  .footer-box-top-right .footer-menu {
    margin-right: 50px;
  }

  .join-team-box-heading {
    width: auto;
  }

  .form-item input,
  .form-item textarea {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .award-content-heading {
    width: auto;
  }

  .award-content-text {
    width: auto;
  }

  .bottom {
    display: flex;
    flex-direction: column;
  }

  .join-box-content-heading {
    width: auto;
  }

  .join-box-content-text {
    width: auto;
  }

  .culture-box-weare-content-text {
    width: auto;
  }

  .wedo-content-text {
    width: auto;
  }
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }

  .footer-box-top-right .footer-menu {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 400px) {
  .footer-box-top-right .footer-menu {
    margin-right: 20px;
  }

  .we-hiring-content-text {
    width: auto;
  }
}
