/* ===== Landing Public Results (Home) ===== */
.public-results-container {
  background: transparent;
  padding: 24px 0;
  margin-top: 30px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.public-results-container.hidden { display: none; }

/* ===== Yeni Arama Butonu ===== */
.new-search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.public-results-container:not(.hidden) .new-search-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.new-search-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  will-change: transform, box-shadow;
}

.new-search-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5b6fd8 0%, #6a4190 100%);
}

.new-search-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.new-search-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.new-search-btn:hover i {
  transform: rotate(15deg) scale(1.1);
}

.new-search-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: letter-spacing 0.3s ease;
}

.new-search-btn:hover .new-search-text {
  letter-spacing: 1px;
}

/* Ripple Effect */
.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.new-search-btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}



.public-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 20px;
  margin-bottom: 40px;
}

.public-results-grid .candidate-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 280px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  will-change: transform, opacity;
}

.public-results-grid .candidate-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.public-results-grid .candidate-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.public-results-grid .candidate-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  position: relative;
}

.public-results-grid .candidate-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -25px;
}

.public-results-grid .avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.public-results-grid .avatar-text {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.public-results-grid .candidate-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.public-results-grid .candidate-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-results-grid .candidate-title {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-results-grid .candidate-company-link {
  font-size: 0.9rem;
  color: #3b82f6;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.public-results-grid .candidate-company-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
  transform: translateY(-1px);
}

.public-results-grid .candidate-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex: 1;
}

.public-results-grid .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  overflow: hidden;
}

.public-results-grid .detail-item i {
  width: 16px;
  color: #5b21b6;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.public-results-grid .detail-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-results-grid .candidate-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-top: auto;
}

.public-results-grid .linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #0077b5;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 36px;
  height: 36px;
  min-width: 36px;
}

.public-results-grid .linkedin-btn:hover {
  background: #005885;
  transform: translateY(-1px);
}

.public-results-grid .linkedin-btn i {
  font-size: 0.9rem;
}

@media screen and (max-width: 991px) {
  .public-results-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 16px;
  }
  
  .new-search-wrapper {
    margin-bottom: 30px;
    padding: 16px 0;
  }
  
  .new-search-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .new-search-btn i {
    font-size: 16px;
  }
  

}

@media screen and (max-width: 767px) {
  .public-results-container { 
    padding: 16px 0; 
    margin-top: 20px;
  }
  
  .public-results-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
    padding: 0 12px;
  }
  
  .public-results-grid .candidate-card {
    padding: 1rem;
    height: auto;
  }
  
  .public-results-grid .candidate-avatar {
    width: 40px;
    height: 40px;
  }
  
  .public-results-grid .avatar-text {
    font-size: 1rem;
  }
  
  .public-results-grid .candidate-name {
    font-size: 1rem;
  }
  
  .public-results-grid .candidate-title,
  .public-results-grid .candidate-company-link {
    font-size: 0.85rem;
  }
  
  .public-results-grid .detail-item {
    font-size: 0.8rem;
  }
  
  .new-search-wrapper {
    margin-bottom: 24px;
    padding: 12px 0;
  }
  
  .new-search-btn {
    padding: 12px 24px;
    font-size: 14px;
    gap: 10px;
  }
  
  .new-search-btn i {
    font-size: 15px;
  }
  
  .new-search-text {
    font-size: 14px;
  }
  

}
@font-face {
  font-family: "Fa brands 400 (old)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --text-dark: #0e0e0e;
  --paragraph-gray: #696b6e;
  --primary: #0f5cfa;
  --gray: #e9e9e9;
  --black: black;
  --light-gray: #f9f9fa;
  --primary-light: #f5f9fc;
  --white: white;
  --dark-gray: #afafaf;
  --dark-gray-50: #afafaf80;
  --white-50: #ffffff80;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--text-dark);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
}

h1 {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2em;
}

h2 {
  color: var(--text-dark);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2em;
}

h3 {
  color: var(--text-dark);
  margin-top: 10px;
  font-family: Manrope, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2em;
}

h4 {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2em;
}

h5 {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2em;
}

h6 {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2em;
}

p {
  color: var(--paragraph-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .35s;
}

a:hover {
  color: var(--text-dark);
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

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

}
label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  text-align: center;
  background-image: url('../images/bxs_quote-left_1bxs_quote-left.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 20px 0;
  font-family: Manrope, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

figure {
  margin-bottom: 10px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.no-spacing {
  padding-top: 0;
  padding-bottom: 0;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-description {
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.gray-style-guide {
  background-color: var(--gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.color-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.colors-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-dark-style-guide {
  background-color: var(--text-dark);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.black-style-guide {
  background-color: var(--black);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.colors-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  display: flex;
}

.light-gray-style-guide {
  background-color: var(--light-gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.color-container {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-size: 50px;
}

.h2-tablet {
  font-size: 42px;
}

.h1-mobile {
  font-size: 46px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--light-gray);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 50px;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
  transition: all .35s;
  display: flex;
}

.primary-button:hover {
  border-color: var(--black);
  background-color: var(--black);
  opacity: 1;
  color: var(--white);
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.serch-button {
  margin-left: auto;
  margin-right: auto;
}

.primary-button.dark {
  border-color: var(--black);
  background-color: var(--black);
}

.primary-button.dark:hover {
  color: var(--black);
  background-color: #0000;
}

.primary-button.dark-hover-white {
  border-color: var(--black);
  background-color: var(--black);
}

.primary-button.dark-hover-white:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.primary-button.hover-white:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--text-dark);
}

.style-guide-div {
  width: 100%;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
  margin-bottom: 0;
}

.nav-container {
  color: var(--white);
  background-color: #000;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--text-dark);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.banner-title.text-dark {
  color: var(--text-dark);
}

.banner-title.search-page-style {
  color: var(--text-dark);
  text-align: left;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-font-title {
  color: #5e5e5e80;
  text-transform: uppercase;
  font-weight: 400;
}

.licensing-icons-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

._404-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 100px;
  line-height: 1em;
}

._404-content-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 690px;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.changelog-heading {
  text-align: center;
  margin-bottom: 20px;
}

.coming-soon-paragraph {
  margin-top: 0;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-sidebar-post-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 12px;
  transition: all .3s;
  display: inline-block;
}

.blog-sidebar-post-category:hover {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}

.blog-template-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-height: 680px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.blog-template-date {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.prev-post-arrow {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
}

.next-post-arrow {
  color: var(--dark-gray);
  margin-bottom: 0;
  margin-left: 25px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  background-color: var(--black);
  background-image: linear-gradient(to bottom, #00000080, #00000080), radial-gradient(circle farthest-corner at 100% -10%, var(--black) 1%, var(--primary) 17%, #0000 17%), linear-gradient(203deg, black 63%, var(--primary) 90%, var(--black) 90%);
  text-align: center;
  align-items: flex-start;
  padding-top: 220px;
  padding-bottom: 120px;
  position: relative;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #ffffffb3;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #ffffffb3;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: .2px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.footer-copyright-link:hover {
  color: var(--primary);
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrapper.cta-style {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  max-width: 580px;
  margin-bottom: 0;
  display: flex;
}

.team-card-image {
  color: var(--primary);
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
  min-width: 100%;
  height: 310px;
}

.team-card-content-wrapper {
  background-color: var(--light-gray);
  text-align: center;
  flex-flow: column;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.team-member-position {
  color: #525252;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.team-social-links-wrapper {
  grid-column-gap: 20px;
  background-color: var(--white);
  border-radius: 50px;
  justify-content: center;
  padding: 6px 14px;
  display: flex;
}

.team-social-icon {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 20px;
}

.team-grid-large {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary-light);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 30px;
}

.style-guide-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.text-button-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.paragraph-large {
  font-size: 18px;
}

.banner-title-wrapper {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  display: flex;
  position: relative;
}

.banner-title-wrapper.faq-style {
  max-width: 1000px;
}

.text-white {
  color: var(--white);
}

.banner-description {
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.pricing-plans-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-plan-item {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
}

.pricing-plan-item.last-item {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.pricing-plan-list {
  margin-top: 20px;
  margin-bottom: 0;
}

.pricing-plan-item-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.pricing-plan-price-wrapper {
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.pricing-plan-price {
  font-size: 56px;
}

.pricing-plan-currency-icon {
  margin-right: 2px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.play-button {
  z-index: 5;
  background-color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  display: flex;
}

.accordion-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.coming-soon-image {
  object-fit: cover;
  border-radius: 20px;
  max-width: 480px;
  height: 420px;
}

.link-with-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.link-with-icon:hover {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.contacts-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
}

.contacts-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 50%;
  padding-right: 40px;
  display: flex;
}

.contacts-form-wrapper {
  background-color: var(--black);
  border-radius: 20px;
  width: 50%;
  margin-left: 40px;
  padding: 40px;
}

.contacts-detail {
  text-align: left;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.search-link-name {
  margin-top: 0;
  margin-bottom: 0;
  text-decoration: underline;
}

.hidden {
  display: none;
}

.contacts-textarea {
  border: 1px dashed var(--dark-gray-50);
  color: var(--white);
  background-color: #fff0;
  border-radius: 20px;
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  margin-bottom: 40px;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1em;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
  color: var(--white);
}

.contacts-textarea::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.contacts-textarea.dark, .contacts-textarea.dark:focus {
  color: var(--text-dark);
}

.contacts-input {
  border: 1px dashed var(--dark-gray-50);
  color: var(--white);
  background-color: #fff0;
  border-radius: 50px;
  height: auto;
  margin-bottom: 15px;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1em;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px solid var(--primary);
  color: var(--white);
}

.contacts-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.contacts-input.dark, .contacts-input.dark:focus {
  color: var(--text-dark);
}

.contacts-input.dark::placeholder, .contacts-input.select-input {
  color: var(--dark-gray);
}

.contacts-form-title {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.contacts-2-location-wrapper {
  margin-top: 30px;
}

.contacts-3-banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.contacts-3-banner-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.adress-cards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 80px;
  display: grid;
}

.adress-card {
  border: 1px dashed var(--white-50);
  border-radius: 20px;
  padding: 30px 40px;
}

.contacts-3-banner-description {
  color: var(--white);
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.contacts-3-form-wrapper {
  background-color: var(--black);
  border-radius: 20px;
  width: 100%;
  margin-bottom: 0;
  padding: 40px;
}

.contact-3-inputs-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.contacts-3-input {
  border: 1px dashed var(--dark-gray-50);
  color: var(--white);
  background-color: #fff0;
  border-radius: 50px;
  height: auto;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 16px 22px;
  font-size: 16px;
  transition: all .2s;
}

.contacts-3-input:focus {
  border: 1px solid var(--primary);
}

.contacts-3-input::placeholder {
  color: var(--dark-gray);
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.contacts-3-input.select-input {
  color: var(--dark-gray);
  margin-right: 0;
}

.contacts-3-form {
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.white-text {
  color: #fff;
}

.search-wrap-input {
  color: var(--text-dark);
  background-color: #0000;
  border: 1px solid #0000;
  height: 60px;
  margin-bottom: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.search-wrap-input:focus {
  border-style: none;
}

.search-wrap-input::placeholder {
  color: var(--dark-gray);
}

.search-desktop {
  z-index: 1000;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.search-close-button {
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  inset: 50px 50px auto auto;
}

.search-bottom-line {
  background-color: var(--primary);
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
  display: flex;
}

.search-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

.search-link:hover {
  opacity: .7;
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
  margin-bottom: -30px;
}

.testimonials-card-wrapper {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  margin-top: -100px;
  display: grid;
  position: relative;
}

.dark-gray-style-guide {
  background-color: var(--dark-gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper {
  align-items: center;
  display: flex;
}

.service-list-item {
  position: relative;
}

.style-guide-content-wrapper {
  display: flex;
}

.about-1-video {
  z-index: 1;
  background-image: url('../images/pexels-mart-production-7256300_1pexels-mart-production-7256300.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 440px;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.about-1-video-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.customer-grey-image {
  opacity: 1;
  transition: all .3s;
}

.customer-grey-image:hover {
  opacity: .7;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-inner-page-image-wrapper {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: #fff3;
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.play-button-icon {
  z-index: 7;
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  position: relative;
}

.play-button-hover {
  z-index: 10;
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .3s;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.contacts-3-location-wrapper {
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.navbar-absolute {
  background-color: #fff0;
  align-items: center;
  width: 100%;
  height: 70px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-dark {
  color: var(--text-dark);
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-5-partners-grid {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  display: flex;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rich-text-style h2, .rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style h4 {
  margin-top: 25px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  border-radius: 20px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.form {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.style-guide-tab-content-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.tabs-style-guide {
  width: 100%;
}

.spacing-system-image-2 {
  filter: grayscale();
  max-width: 80%;
}

.main-style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-tab-link {
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background-color: var(--white);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  display: flex;
}

.style-guide-tab-link.w--current {
  background-color: var(--black);
  color: #fff;
}

.style-guide-tabs-menu {
  border-left: 1px solid var(--black);
  margin-bottom: 80px;
  display: flex;
}

.spacing-title {
  margin-top: 0;
  margin-bottom: 0;
}

.grid-title {
  background-color: var(--black);
  color: #fff;
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.spasing-system-image-mobile-2 {
  filter: grayscale();
  max-width: 70%;
}

.banner-title-wrapper-2 {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.album-2-title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1em;
}

.landing-text-span {
  color: var(--primary);
}

.landing-inner-page-image {
  object-fit: cover;
  object-position: 50% 0%;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  width: 100%;
}

.landing-inner-page-image.banner {
  border-radius: 20px;
  box-shadow: 0 6px 20px #00000014;
}

.landing-banner-content {
  z-index: 999;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
  inset: auto;
}

.banner-description-landing {
  color: var(--white);
  text-align: center;
  letter-spacing: 2.4px;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8em;
}

.landing-banner-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.landing-home-pages-wrapper-banner {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.landing-banner-screens {
  z-index: 999;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.landing-inner-page-item {
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  width: 100%;
  padding: 6px;
}

.landing-inner-page-item.home-screen-banner {
  border-radius: 20px;
}

.landing-paragraph-style {
  color: var(--white);
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}

.section-landing-customers {
  background-color: var(--primary);
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}

.landing-customers-content-left {
  grid-row-gap: 30px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 46%;
  padding-right: 60px;
  display: flex;
}

.landing-customers-content-right {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 54%;
  display: grid;
}

.landing-section-heading-white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.landing-customers-icon-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.landing-icon-style {
  opacity: 1;
  width: 40px;
  height: 40px;
}

.paragraph-benefits-lp {
  color: var(--white);
  width: 90%;
}

.landing-customers-layout {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.landing-section-title {
  width: 70%;
  margin: 0 auto;
}

.landing-inner-page-icon {
  z-index: 10;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 28px;
  display: flex;
  position: absolute;
  transform: rotate(-30deg);
}

.section-ttile-description {
  text-align: center;
  margin-top: 20px;
}

.landing-home-pages-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.landing-inner-page-title {
  text-transform: none;
}

.landing-inner-pages-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.job-tabs {
  width: 100%;
}

.job-tabs.vertical {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.shop-links-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-top: 1px dashed var(--dark-gray-50);
  align-items: center;
  padding-top: 20px;
  display: flex;
  position: relative;
}

.job-category-tabs-content {
  overflow: visible;
}

.job-category-tabs-content.vertical {
  width: 75%;
}

.job-category-tabs {
  width: 100%;
}

.job-tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  display: flex;
}

.job-tabs-menu.vertical {
  flex-flow: column;
  width: 25%;
  padding-bottom: 0;
  padding-right: 40px;
  position: sticky;
  top: 140px;
}

.paragraph-gray-style-guide {
  background-color: var(--paragraph-gray);
  width: 75px;
  height: 75px;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  display: flex;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  width: 100%;
  max-width: 400px;
  margin-bottom: 0;
  display: flex;
}

.success-message {
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
}

.success-message.dark {
  border: 1px dashed var(--dark-gray-50);
  background-color: var(--black);
  color: var(--white);
}

.error-message {
  color: var(--primary);
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.error-message.with-top-spacing {
  margin-top: 30px;
}

.form-contacts {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.h2-style-guide-title {
  margin-top: 0;
  margin-bottom: 0;
}

.spacing-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.sg-title {
  margin-top: 0;
  margin-bottom: 0;
}

.sg-title.mb-15 {
  margin-bottom: 15px;
}

.sg-title.mb-30 {
  margin-bottom: 30px;
}

.flex-small-sg-con {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.color-sg-par {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-body-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-body-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.btn-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  display: flex;
}

.licensing-footer-link {
  color: #ffffffb3;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.licensing-footer-link:hover {
  color: var(--white);
}

.statistics-text-three {
  color: var(--paragraph-gray);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.card-gradient-first {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary);
  opacity: 1;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.numbers {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.card-gradient-top-first {
  background-color: var(--primary);
  opacity: .2;
  border-radius: 20px 20px 0 0;
  width: 80%;
  height: 16px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.statistics-card {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.card-gradient-top {
  background-color: var(--primary);
  opacity: .4;
  border-radius: 20px 20px 0 0;
  width: 90%;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.banner-column-one {
  flex-direction: column;
  align-items: flex-start;
  width: 65%;
  margin-top: 0;
  margin-bottom: 150px;
  line-height: 1.1em;
  display: flex;
}

.subtitle-wrapper {
  grid-column-gap: 15px;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.text-span-main {
  color: var(--primary);
  display: inline-block;
}

.dot {
  background-color: var(--primary);
  border-radius: 100px;
  width: 6px;
  height: 6px;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin.text-white {
  color: #fff;
}

.subtitle-main {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
}

.dot-wrapper {
  background-color: #0f5cfa33;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.banner-column-two {
  flex-direction: column;
  width: 35%;
  display: flex;
}

.home-banner-content {
  z-index: 999;
  grid-column-gap: 80px;
  grid-row-gap: 20px;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
}

.button-arrow-element {
  background-color: var(--black);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  display: flex;
}

.button-arrow-element.corner-right-absolute {
  background-color: var(--primary);
  width: 30px;
  height: 30px;
  margin-left: 0;
  transition-property: background-color;
  position: absolute;
  inset: 20px 20px auto auto;
}

.button-arrow-element.corner-right-absolute:hover {
  background-color: #0c0c0d;
}

.button-arrow-element.corner-right-absolute-dark {
  border: 1px solid var(--black);
  background-color: var(--black);
  width: 52px;
  height: 52px;
  margin-left: 0;
  transition-property: background-color;
  position: absolute;
  inset: 30px 30px auto auto;
}

.button-arrow-element.corner-right-absolute-dark:hover {
  border: 1px solid var(--white);
  background-color: #0c0c0d00;
}

.button-arrow-element.corner-right-absolute-hover-primary {
  border: 1px solid var(--black);
  background-color: var(--black);
  width: 52px;
  height: 52px;
  margin-left: 0;
  transition-property: background-color;
  position: absolute;
  inset: 30px 30px auto auto;
}

.button-arrow-element.corner-right-absolute-hover-primary:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
}

.button-arrow-element.reviews {
  width: 60px;
  height: 60px;
  margin-left: 0;
}

.button-arrow-element.reviews:hover {
  background-color: var(--primary);
}

.button-arrow-element.corner-right-absolute-primary {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  width: 52px;
  height: 52px;
  margin-left: 0;
  transition-property: background-color;
  position: absolute;
  inset: 30px 30px auto auto;
}

.button-arrow-element.corner-right-absolute-primary:hover {
  border: 1px solid var(--white);
  background-color: #0c0c0d00;
}

.button-arrow-element.corner-right-bottom-absolute-dark {
  background-color: var(--black);
  width: 32px;
  height: 32px;
  margin-left: 0;
  transition-property: background-color;
  position: absolute;
  inset: auto 20px 20px auto;
}

.button-arrow-element.corner-right-bottom-absolute-dark:hover {
  background-color: var(--primary);
}

.column-two-numbers {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-left: 1px dashed var(--dark-gray-50);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 40%;
  padding-left: 40px;
  display: grid;
}

.in-section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.in-section-title.no-margin {
  margin-bottom: 0;
}

.numbers-text {
  font-size: 16px;
  line-height: 1.2em;
}

.two-column-wrapper-numbers {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  background-color: var(--primary-light);
  border-radius: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.two-column-wrapper-numbers.no-bg-center {
  background-color: #f5f9fc00;
  align-items: center;
  padding: 0;
}

.column-one-numbers {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: space-between;
  width: 60%;
  display: flex;
}

.numbers-about {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  border-top: 1px solid #afafaf;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: auto;
  margin-top: 60px;
  padding-top: 60px;
  display: flex;
  position: relative;
}

.numbers-about.hidden {
  display: none;
}

.numeric {
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
}

.service-card-big {
  object-fit: cover;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.section-two-side-title-wrapp {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.section-two-side-title-wrapp.candidates-style {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
}

.services-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-two-side-info {
  max-width: 500px;
}

.cta-loop {
  z-index: 999;
  margin-bottom: -2px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.cta-loop.in-section {
  padding-top: 0;
  padding-bottom: 0;
}

.cta-loop-wrapper {
  grid-column-gap: 40px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.cta-loop-item-wrapper {
  grid-column-gap: 40px;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper-nav {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: none;
}

.search-shop-con-main {
  z-index: 1;
  align-items: center;
  margin-left: -10px;
  display: flex;
  position: relative;
}

.nav-collection-link-wrapper {
  width: 100%;
}

.nav-dropdown-column-main {
  width: 33%;
}

.nav-menu-main {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.empty-state-main {
  background-color: #ddd0;
  padding: 0;
}

.menu-wrap-main {
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-dropdown-icon-2 {
  margin-right: 12px;
  font-size: 10px;
}

.nav-dropdown-link-main {
  color: var(--text-dark);
  background-image: url('../images/right-up-small.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0 36px;
  width: 100%;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link-main:hover {
  color: var(--primary);
  background-image: url('../images/right-up-small.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 9px 35px;
  padding-left: 25px;
}

.nav-dropdown-link-main.w--current {
  color: var(--primary);
}

.nav-dropdown-toggle-main {
  margin-left: 0;
  margin-right: 0;
  padding: 10px 26px 10px 16px;
  transition: color .3s;
}

.nav-dropdown-toggle-main:hover {
  color: var(--primary);
}

.nav-dropdown-toggle-main.white {
  color: var(--white);
}

.nav-dropdown-toggle-main.white:hover {
  color: #ffffffa6;
}

.nav-link-main {
  color: var(--text-dark);
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1em;
}

.nav-link-main:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-link-main.w--current {
  color: #0c0c0d;
}

.nav-link-main.white {
  color: var(--white);
}

.nav-link-main.white:hover {
  color: #ffffffa6;
}

.nav-dropdown-list-main {
  background-color: #fff;
  border: 1px solid #afafaf80;
  border-radius: 20px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list-main.w--open {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-list-main.megamenu {
  width: 360px;
}

.nav-dropdown-list-main.megamenu.w--open {
  width: 600px;
  display: flex;
  inset: auto 0% auto auto;
}

.nav-button-wrapper {
  grid-column-gap: 4px;
  background-color: #000;
  border-radius: 30px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.nav-button-wrapper.light-style {
  background-color: var(--primary-light);
}

.login {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: capitalize;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 14px;
  line-height: 1em;
  transition: all .3s;
  display: inline-block;
}

.login:hover {
  border-color: var(--white-50);
  opacity: 1;
  color: var(--white);
  background-color: #ffffff4d;
}

.login.outline-style-nav {
  color: #fff;
  background-color: #0000;
  border-color: #0000;
}

.login.outline-style-nav:hover {
  z-index: 999;
  border-color: var(--white-50);
  background-color: #ffffff4d;
  padding: 10px 22px;
}

.login.sign-up {
  color: var(--text-dark);
  background-color: #0000;
  border-color: #0000;
}

.login.sign-up:hover {
  z-index: 999;
  border-color: var(--white);
  background-color: var(--black);
  color: var(--white);
  padding: 10px 22px;
}

.login.dark-hover:hover {
  border-color: var(--white);
  background-color: var(--black);
}

.features-icons {
  object-fit: cover;
  background-color: #0000;
  border: 1px solid #afafaf80;
  border-radius: 10px;
  width: 60px;
  height: 60px;
}

.features-icons.bigger {
  width: 100px;
  height: 100px;
}

.content-banner-home {
  z-index: 1;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.banner-img-cover {
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.absolute-img-banner {
  z-index: 1;
  border-radius: 12px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  max-height: 294px;
  display: flex;
  position: relative;
}

.banner-description-home {
  width: 85%;
  margin-top: 0;
  margin-bottom: 40px;
}

.job-block-wrapper {
  z-index: 2;
  flex-direction: column;
  width: 62%;
  max-width: 920px;
  margin-left: auto;
  margin-right: 0%;
  display: flex;
  position: relative;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.shop-christmas-gifts-info-wrapper {
  width: auto;
}

.template-empty-state-main {
  background-color: #0000;
  padding: 30px 0;
}

.job-collection-item {
  flex: none;
  width: 370px;
}

.job-content {
  z-index: 0;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 36%;
  max-width: 1170px;
  height: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  inset: 0 0% auto;
}

.job-selection-collection-list {
  grid-column-gap: 30px;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.job-items-wrapper {
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper-main {
  margin-top: 40px;
}

.button-wrapper-main.not-full {
  display: flex;
}

.primary-button-outline {
  color: var(--text-dark);
  text-align: center;
  background-color: #0000;
  border: 1px solid #292929;
  border-radius: 80px;
  padding: 12px 20px;
  transition: all .3s;
  display: none;
}

.primary-button-outline:hover {
  opacity: 1;
  color: #fff;
  background-color: #292929;
}

.primary-button-outline.pagination {
  margin-top: 40px;
}

.primary-button-outline.white {
  border-style: dashed;
  border-color: var(--white-50);
  color: var(--white);
}

.primary-button-outline.white:hover {
  border-style: solid;
  border-color: var(--primary);
  background-color: #29292900;
}

.job-selection-wrapper {
  flex-direction: row;
  align-items: flex-start;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.job-list-item-latest {
  z-index: 0;
  grid-row-gap: 50px;
  background-color: var(--primary-light);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 300px;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.job-link-block {
  overflow: hidden;
}

.job-list-image {
  object-fit: cover;
  width: 50px;
  height: 50px;
  transition: transform .3s;
  box-shadow: 7px 7px 50px #0000000d;
}

.job-list-image:hover {
  transform: scale(1.06);
}

.job-item-link {
  color: var(--text-dark);
  font-size: 26px;
  font-weight: 700;
}

.job-item-link:hover {
  color: var(--primary);
}

.company-link {
  margin-bottom: 5px;
  display: inline-block;
}

.job-info-tag {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 14px;
}

.job-info-tags {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  margin-top: 25px;
  display: flex;
}

.job-logo-wrapper {
  background-color: var(--white);
  border-radius: 100px;
  flex: none;
  padding: 10px;
}

.search-button-text {
  text-align: center;
  text-transform: capitalize;
}

.search-button-text.height {
  color: var(--white);
  text-align: left;
  background-color: #3898ec00;
  height: auto;
  padding: 6px 40px 6px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

.home-2-banner-search {
  z-index: 50;
  width: 100%;
  max-width: 665px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.home-2-banner-search.width {
  max-width: 500px;
}

.home-2-banner-search.search-page-style {
  max-width: none;
  margin-top: 20px;
}

.primary-search-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border-radius: 50px;
  justify-content: space-between;
  align-items: flex-end;
  height: auto;
  padding: 1px;
  font-weight: 500;
  transition: background-color .3s, color .3s;
  display: block;
  position: relative;
}

.primary-search-button:hover {
  border-color: var(--black);
  background-color: var(--black);
}

.primary-search-button.absolute-main {
  z-index: 51;
  display: flex;
  position: absolute;
  inset: auto 10px 18% auto;
}

.primary-search-button.absolute-main-footer {
  flex-flow: row;
  display: flex;
  position: absolute;
  inset: auto 10px 18% auto;
}

.primary-search-button.absolute-main-footer:hover {
  border-color: var(--primary);
}

.search-icon {
  color: var(--dark-gray-50);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 2px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  inset: 19px auto auto 30px;
}

.text-icon {
  z-index: 50;
  width: 10px;
  height: 10px;
  position: absolute;
  inset: auto 20px 34% auto;
}

.banner-search-input {
  z-index: 50;
  border: 1px dashed var(--dark-gray-50);
  -webkit-backdrop-filter: blur(17.5px);
  backdrop-filter: blur(17.5px);
  color: var(--text-dark);
  background-color: #13151a00;
  border-radius: 58px;
  margin-bottom: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 55px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}

.banner-search-input:last-child {
  margin-bottom: 0;
}

.banner-search-input:focus {
  border-color: var(--primary);
  color: var(--text-dark);
}

.banner-search-input::placeholder {
  color: var(--dark-gray);
}

.banner-search-input.footer-style, .banner-search-input.footer-style:focus {
  color: var(--white);
}

.banner-search-input.white-style {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--white);
}

.banner-search-input.white-style:focus {
  border-color: var(--primary);
}

.banner-search-input.dark-outline {
  border-color: var(--black);
  color: var(--text-dark);
}

.banner-search-input.dark-outline:focus {
  border-style: solid;
  border-color: var(--primary);
}

.banner-search-input.subscribe-style {
  padding-left: 22px;
}

.banner-search-input.password-style {
  text-align: center;
  height: auto;
  margin-bottom: 15px;
  padding: 12px 20px;
}

/* Custom Dropdown for banner-search-input */
.custom-dropdown-wrapper {
  position: relative;
  width: 100%;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.custom-dropdown-input {
  position: relative;
  cursor: pointer;
  padding-right: 45px !important;
}

.custom-dropdown-input[readonly] {
  cursor: pointer !important;
}

.dropdown-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.custom-dropdown-wrapper.active {
  z-index: 10000;
}

.custom-dropdown-wrapper.active .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #5b21b6;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 200px;
  overflow-y: auto;
  margin-top: 8px;
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  
  /* Performance optimizations */
  will-change: transform, opacity;
  contain: layout style paint;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}



.custom-dropdown-wrapper.active .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-options {
  padding: 8px 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 33, 182, 0.4) transparent;
  max-height: 200px;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: rgba(243, 244, 246, 0.3);
  border-radius: 3px;
  margin: 4px 0;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.6) 0%, rgba(139, 69, 19, 0.4) 100%);
  border-radius: 3px;
  transition: background 0.2s ease;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.8) 0%, rgba(139, 69, 19, 0.6) 100%);
}

.dropdown-option {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(243, 244, 246, 0.5);
  position: relative;
  margin: 0 6px;
  border-radius: 10px;
  background: transparent;
  
  /* Performance optimizations */
  will-change: transform, background-color;
  contain: layout style;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.08) 0%, rgba(139, 69, 19, 0.06) 100%);
  color: #5b21b6;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.15);
  border-bottom: 1px solid rgba(91, 33, 182, 0.2);
}

.dropdown-option.selected {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.15) 0%, rgba(139, 69, 19, 0.1) 100%);
  color: #5b21b6;
  font-weight: 600;
  box-shadow: 
    0 2px 8px rgba(91, 33, 182, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-left: 3px solid #5b21b6;
  border-bottom: 1px solid rgba(91, 33, 182, 0.3);
}

.dropdown-option input[type="checkbox"] {
  margin-right: 12px;
  width: 16px;
  height: 16px;
  accent-color: #5b21b6;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  appearance: none;
  border: 2px solid #d1d5db;
  background: white;
  position: relative;
}

.dropdown-option input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #5b21b6 0%, #8b4513 100%);
  border-color: #5b21b6;
}

.dropdown-option input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.dropdown-option:hover input[type="checkbox"] {
  border-color: #5b21b6;
  box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

.dropdown-option-label {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.dropdown-option.selected .dropdown-option-label {
  color: #5b21b6;
  font-weight: 600;
}

.dropdown-option:hover .dropdown-option-label {
  color: #5b21b6;
  transform: translateX(2px);
}

/* Enhanced white style for all inputs */
.banner-search-input.white-style {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-search-input.white-style:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(91, 33, 182, 0.3);
  box-shadow: 0 0 0 2px rgba(91, 33, 182, 0.05);
}

.banner-search-input.white-style:focus {
  background: white;
  border-color: #5b21b6;
  box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.1);
  transform: translateY(-1px);
}

/* Special styles for custom dropdown wrapper */
.custom-dropdown-wrapper .banner-search-input.white-style {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dropdown-wrapper .banner-search-input.white-style:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(91, 33, 182, 0.3);
  box-shadow: 0 0 0 2px rgba(91, 33, 182, 0.05);
}

.custom-dropdown-wrapper .banner-search-input.white-style:focus {
  background: white;
  border-color: #5b21b6;
  box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.1);
  transform: translateY(-1px);
}

.custom-dropdown-wrapper.active .banner-search-input.white-style {
  border-color: #5b21b6;
  background: white;
  box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.1);
  transform: translateY(-1px);
}

/* Premium Animations */



@keyframes dropdown-slide-in {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Option stagger animation */
.dropdown-option {
  animation: dropdown-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyboard focus styles */
.dropdown-option.keyboard-focused {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.12) 0%, rgba(139, 69, 19, 0.08) 100%);
  box-shadow: 
    0 0 0 2px rgba(91, 33, 182, 0.3),
    0 4px 12px rgba(91, 33, 182, 0.15);
  transform: translateX(4px);
  border-left: 3px solid #5b21b6;
}

.dropdown-option.keyboard-focused .dropdown-option-label {
  color: #5b21b6;
  font-weight: 600;
}

/* Focus outline for input */
.custom-dropdown-input:focus {
  outline: 2px solid #5b21b6;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .dropdown-option.selected,
  .dropdown-option.keyboard-focused {
    border: 2px solid #000;
    background: #fff;
  }
  
  .dropdown-option.selected .dropdown-option-label,
  .dropdown-option.keyboard-focused .dropdown-option-label {
    color: #000;
    font-weight: bold;
  }
}

/* Mobile Optimizations */
@media screen and (max-width: 991px) {
  .custom-dropdown-menu {
    max-height: 180px;
    border-radius: 14px;
    margin-top: 6px;
  }
  
  .dropdown-options {
    max-height: 180px;
  }
  
  .dropdown-option {
    padding: 14px 16px;
    margin: 0 4px;
  }
  
  .dropdown-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 14px;
  }
  
  .dropdown-option-label {
    font-size: 15px;
    letter-spacing: 0.2px;
  }
  
  .dropdown-arrow {
    right: 12px;
    font-size: 11px;
    padding: 5px;
  }
}

@media screen and (max-width: 767px) {
  .custom-dropdown-menu {
    max-height: 220px;
    border-radius: 12px;
    box-shadow: 
      0 20px 25px -5px rgba(0, 0, 0, 0.3),
      0 10px 10px -5px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-options {
    max-height: 220px;
  }
  
  .dropdown-options::-webkit-scrollbar {
    width: 8px;
  }
  
  .dropdown-option {
    padding: 16px 18px;
    margin: 0 3px;
    border-radius: 8px;
  }
  
  .dropdown-option:hover {
    transform: none; /* Disable hover transforms on mobile */
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08) 0%, rgba(139, 69, 19, 0.06) 100%);
  }
  
  .dropdown-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 16px;
  }
  
  .dropdown-option-label {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .custom-dropdown-input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding-right: 50px !important;
    cursor: pointer !important;
  }
  
  .custom-dropdown-input[readonly] {
    cursor: pointer !important;
  }
  
  /* Disable hover effects on mobile */
  .banner-search-input.white-style:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
  }
  
  .dropdown-arrow {
    right: 15px;
    font-size: 12px;
    padding: 6px;
  }
}

@media screen and (max-width: 479px) {
  .custom-dropdown-menu {
    max-height: 240px;
    margin-top: 4px;
  }
  
  .dropdown-options {
    max-height: 240px;
  }
  
  .dropdown-option {
    padding: 18px 16px;
    margin: 0 2px;
  }
  
  .dropdown-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 14px;
  }
  
  .dropdown-option-label {
    font-size: 16px;
    font-weight: 500;
  }
  
  .custom-dropdown-input {
    font-size: 16px;
    min-height: 50px;
    cursor: pointer !important;
  }
  
  .custom-dropdown-input[readonly] {
    cursor: pointer !important;
  }
  
  /* Disable hover effects on small mobile */
  .banner-search-input.white-style:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
  }
}

.job-types {
  background-color: var(--primary-light);
  border-radius: 20px;
  padding: 40px;
}

.jobs-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.jobs-collection-list.list-three {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.collection-item-candidate {
  width: 100%;
}

.job-main-item {
  grid-row-gap: 20px;
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.job-main-item.light-style {
  border: 1px dashed var(--dark-gray-50);
}

.job-name-wrapp {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.job-company-name-wrapp {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px dashed var(--dark-gray-50);
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
  display: flex;
}

.job-name {
  font-size: 20px;
  font-weight: 700;
}

.job-name:hover {
  color: #292929b3;
}

.item-company-link {
  color: var(--paragraph-gray);
  margin-bottom: 5px;
  display: inline-block;
}

.item-company-link:hover {
  color: var(--primary);
}

.job-tags {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  display: flex;
}

.job-logo-wrapp {
  background-color: var(--primary-light);
  border-radius: 100px;
  flex: none;
  padding: 10px;
}

.job-logo-wrapp.light-style {
  background-color: var(--white);
}

.job-logo {
  object-fit: cover;
  width: 34px;
  height: 34px;
  transition: transform .3s;
  box-shadow: 7px 7px 50px #0000000d;
}

.job-logo:hover {
  transform: scale(1.06);
}

.icon-job {
  width: auto;
  height: 16px;
}

.icon-job.biggger {
  height: 22px;
}

.job-tag {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--text-dark);
  align-items: center;
  display: flex;
}

.jobs-tab-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 16px;
  display: flex;
}

.jobs-tab-link.w--current {
  filter: brightness(200%) invert();
}

.jobs-tab-link.light-style {
  background-color: var(--primary-light);
}

.heading-one {
  z-index: 1;
  background-image: linear-gradient(12deg, var(--primary) 11%, var(--text-dark) 26%, var(--text-dark) 45%, var(--primary) 52%, var(--black) 59%, var(--black) 72%, var(--primary) 98%);
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 82px;
  line-height: 1.1em;
  position: relative;
}

.image-banner-bg {
  object-fit: cover;
  object-position: 0% 100%;
  width: 70%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.image-2-banner-bg {
  width: 10%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.banner-info {
  border: 1px dashed var(--dark-gray-50);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
  display: flex;
}

.resources-main-card {
  height: 92.4%;
}

.resources-main {
  height: 100%;
}

.footer-brand-wrapper-main {
  grid-column-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 500px;
  margin-bottom: 40px;
  display: flex;
  overflow: visible;
}

.footer-social-icon-main {
  color: #fff;
  background-color: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.footer-social-icon-main i {
  font-size: 18px;
  line-height: 1;
}

.footer-social-icon-main:hover {
  color: #1946da;
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer-social-icons-wrapper-main {
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
}

.footer-wrapper-main {
  border-bottom: 1px solid #ffffff4d;
  border-radius: 0;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 90px;
  padding-bottom: 90px;
  display: flex;
  gap: 60px;
}

.right-footer-block {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-width: 500px;
  max-width: 700px;
  flex: 1;
  display: flex;
  overflow: visible;
}

.left-form-block {
  grid-row-gap: 30px;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.footer-brand-main {
  color: #fff;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-height: 60px;
  padding: 10px 0;
  overflow: visible;
}

.footer-brand-main.w--current {
  color: #fff;
  padding-left: 0;
}

.footer-link-main {
  color: #fff;
  flex-direction: column;
  transition: all .3s;
}

.footer-link-main:hover {
  color: var(--white-50);
}

.footer-logo-wrapper-main {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 500px;
  margin-bottom: 30px;
  padding: 10px 0;
  display: flex;
  overflow: visible;
}

.footer-logo-main {
  width: auto;
}

.footer-links-wrapper-main {
  grid-column-gap: 30px;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.large-footer-text {
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1em;
}

.footer-brand-description-main {
  color: #fff;
  text-align: left;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 25px;
  margin-bottom: 30px;
}

.candidate-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary);
  text-align: left;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
}

.candidate-wrap.style-two {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff9;
}

.candidate-wrap.dark-style {
  background-color: var(--black);
}

.collection-list-candidate {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.candidate-name {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}


.candidate-name.smaller {
  color: var(--text-dark);
  font-size: 18px;
}

.candidate-name.smaller:hover {
  color: var(--primary);
}

.candidate-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px dashed var(--white-50);
  align-items: center;
  padding-bottom: 20px;
  display: flex;
}

.candidate-info.no-border {
  border-bottom-style: none;
  padding-bottom: 0;
}

.candidate-info.border-dark {
  border-bottom-color: var(--dark-gray-50);
}

.candidate-tags {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  padding-right: 60px;
  display: flex;
  position: relative;
}

.candidate-tags.no-border-no-space {
  padding-right: 0;
}

.candidate-tag {
  border: 1px solid var(--white-50);
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1em;
}

.candidate-tag.primary {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.candidate-tag.outline {
  color: var(--white);
  background-color: #fff0;
  border-style: dashed;
}

.job-name-info {
  padding-right: 50px;
}

.rating-wrapper {
  grid-column-gap: 5px;
  border: 1px dashed var(--white-50);
  border-radius: 50px;
  margin-left: auto;
  padding: 8px 14px;
  display: flex;
  position: absolute;
  inset: auto 30px 30px auto;
}

.rating-wrapper.dark {
  border-color: var(--black);
}

.rating-wrapper.no-space {
  border-style: none;
  border-color: var(--black);
  background-color: var(--black);
  margin-left: 0;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
}

.star {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#ffe900, #ffae00);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 14px;
  line-height: 1em;
}

.star.darker {
  background-image: linear-gradient(#ffb514, #ff8000);
}

.rating-number {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1em;
}

.rating-number.dark {
  color: var(--text-dark);
}

.footer-bg {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100px;
  margin-top: -1px;
  position: absolute;
  inset: 0% 0% auto;
}

.job-collection-list-wrapper {
  flex: none;
}

.section-featured-jobs {
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section-featured-jobs.with-bottom-spacing {
  padding-bottom: 80px;
}

.banner-home-one {
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.second-banner {
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.home-3-banner-img {
  justify-content: flex-end;
  width: 50%;
  display: flex;
  position: relative;
}

.image-photo-banner {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 70%;
  height: 350px;
  margin-top: 30px;
  margin-right: auto;
  position: relative;
  inset: 0% auto auto 14%;
}

.home-2-banner {
  z-index: 1;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.home-2-banner-content {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  display: flex;
}

.banner-two-image {
  filter: contrast(130%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta-loop-home-two {
  z-index: 999;
  margin-top: 60px;
  margin-bottom: -30px;
  position: relative;
  overflow: hidden;
}

.cta-loop-wrapper-two {
  grid-column-gap: 50px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.cta-loop-item-wrapper-two {
  flex: none;
}

.cta-loop-text {
  line-height: 1em;
}

.cta-loop-item-list {
  grid-column-gap: 50px;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.category-job-wrapp {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 18px;
  display: flex;
}

.category-job-wrapp:hover {
  filter: brightness(200%) invert();
}

.candidate-image-wrapper {
  border-radius: 20px;
  height: 100%;
  padding: 240px 20px 20px;
  position: relative;
}

.image-person-bg {
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.features-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--primary);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  padding: 40px;
  display: grid;
}

.feature-item {
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  min-width: 100%;
  padding: 30px 20px;
  display: flex;
}

.feature-item.featured {
  background-color: var(--black);
  background-image: linear-gradient(135deg, #00000080, #0000), linear-gradient(#000000b3, #000000b3), url('../images/jean-philippe-delberghe-75xPHEQBmvA-unsplash_1jean-philippe-delberghe-75xPHEQBmvA-unsplash.avif');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.feature-item.primary {
  background-color: var(--primary);
}

.feature-item.outline {
  border: 1px dashed var(--dark-gray-50);
}

.feature-icon-wrapper {
  border: 1px solid var(--dark-gray-50);
  background-color: var(--primary-light);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  padding: 10px;
}

.feature-item-banner {
  z-index: 2;
  background-color: var(--black);
  border-radius: 20px;
  flex-flow: column;
  width: 240px;
  margin-left: auto;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.feature-item-banner-link {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.feature-item-banner-link:hover {
  border-color: var(--white-50);
  background-color: #ffffff4d;
}

.search-wrapper-main {
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.search-wrapper-main.center {
  justify-content: center;
  align-items: center;
}

.heading-home-two {
  margin-top: 0;
  margin-bottom: 20px;
}

.feature-item-banner-name {
  color: var(--white);
  width: 80%;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2em;
}

.feature-item-banner-name:hover {
  color: var(--primary);
}

.two-column-wrapper-testimonials {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.column-one-testimonials {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 45%;
  display: flex;
}

.column-two-testimonials {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 55%;
  display: flex;
}

.review-top-wrapp {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px dashed var(--dark-gray-50);
  flex-flow: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.review-bottom-wrapp {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: 1px dashed var(--dark-gray-50);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
  display: flex;
}

.review-stars {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.item-review-link {
  background-color: var(--white);
  color: var(--paragraph-gray);
  border-radius: 50px;
  margin-bottom: 5px;
  padding: 8px 14px;
  display: inline-block;
}

.item-review-link:hover {
  color: var(--primary);
}

.candidate-info-review {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.review-main-item {
  grid-row-gap: 20px;
  background-color: var(--primary-light);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.review-main-item.left {
  width: auto;
  margin-right: 40px;
}

.review-main-item.right {
  width: auto;
  margin-left: 40px;
}

.column-two-company {
  border-left: 1px dashed var(--dark-gray-50);
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  width: 40%;
  height: 220px;
  display: flex;
  position: relative;
}

.company-icon-wrapp {
  background-color: #fae700;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-left: 40px;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.company-icon-wrapp.two {
  background-color: #ef94bf;
  width: 70px;
  height: 70px;
  inset: 30% 37% auto auto;
}

.company-icon-wrapp.three {
  background-color: #ff7900;
  width: 80px;
  height: 80px;
  inset: 0% 10% auto auto;
}

.company-icon-wrapp.four {
  background-color: #003111;
  width: 70px;
  height: 70px;
  inset: auto 0% 0% auto;
}

.badge-career {
  background-color: var(--black);
  color: var(--white);
  border-radius: 50px;
  width: auto;
  padding: 6px 14px;
  position: absolute;
  inset: -20px auto auto -30px;
  transform: rotate(-10deg);
}

.badge-career-two {
  background-color: var(--black);
  color: var(--white);
  border-radius: 50px;
  width: auto;
  padding: 6px 14px;
  position: absolute;
  inset: auto auto 18% 17%;
  transform: rotate(10deg);
}

.badge-career-three {
  background-color: var(--black);
  color: var(--white);
  border-radius: 50px;
  width: auto;
  padding: 6px 14px;
  position: absolute;
  inset: auto 6% 43% auto;
  transform: rotate(-3deg);
}

.numbers-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--primary-light);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  padding: 20px;
  display: grid;
}

.numbers-two {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.home-3-banner {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.home-3-banner-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 88%;
  display: flex;
}

.banner-three-image {
  z-index: 0;
  opacity: .7;
  filter: brightness(65%);
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

.heading-home-three {
  color: var(--white);
  max-width: 990px;
  margin-top: 0;
  margin-bottom: 20px;
}

.home-3-bg {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 47px;
  margin-bottom: -1px;
  position: absolute;
  inset: auto 0% 0%;
  display: block;
}

.banner-client-span {
  color: #0e0e0e00;
  background-image: url('../images/linkedin-sales-solutions-vqWWOnA6--M-unsplash-1_1linkedin-sales-solutions-vqWWOnA6--M-unsplash (1).avif');
  background-position: 50%;
  background-size: cover;
  border-radius: 300px;
  width: 80px;
  height: 80px;
  margin-right: -10px;
  display: inline-block;
}

.banner-client-span.image-two {
  background-image: url('../images/christina-wocintechchat-com-kXfBDl0fR1E-unsplash_1christina-wocintechchat-com-kXfBDl0fR1E-unsplash.avif');
}

.banner-client-span.image-three {
  background-image: url('../images/surface-u0AWrCvfwl0-unsplash_1surface-u0AWrCvfwl0-unsplash.avif');
  margin-right: 0;
}

.two-column-wrapper-image {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  background-image: linear-gradient(149deg, #0f5cfa80, #0f5cfa1a 86%), url('../images/pexels-cottonbro-8453800_1pexels-cottonbro-8453800.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 40px;
  display: flex;
  position: relative;
}

.column-one-testimonials-copy {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 45%;
  display: flex;
}

.column-two-testimonials-copy {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 55%;
  display: flex;
}

.cta-loop-item-list-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap-reverse;
  flex: none;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.category-job-wrapp-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 16px;
  display: flex;
}

.category-job-wrapp-copy:hover {
  filter: brightness(200%) invert();
}

.collection-list-resources {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.collection-list-resources.grid-style {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-resources {
  width: 31.2%;
}

.collection-item-resources.grid-style {
  width: 100%;
}

.resources-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary-light);
  text-align: left;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.resources-collection-list-wrapper {
  flex: none;
  width: 100%;
}

.resources-name {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}

.resources-name:hover {
  color: var(--primary);
}

.resources-tag {
  border: 1px solid var(--white-50);
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1em;
}

.resources-tag.primary-link {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.resources-tag.primary-link:hover {
  border-color: var(--black);
  background-color: var(--black);
}

.resources-info-wrapp {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.resources-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 220px;
}

.third-banner {
  background-image: linear-gradient(7deg, var(--primary), black 75%);
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.third-banner.bottom-space-extra {
  padding-bottom: 150px;
}

.banner-3-description {
  color: var(--white);
  max-width: 660px;
  margin: 0 auto;
}

.resources-tags {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  padding-right: 60px;
  display: flex;
}

.features-grid-about {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  margin-top: 60px;
  display: grid;
}

.pages-banner-main {
  background-color: var(--black);
  background-image: linear-gradient(to bottom, #00000080, #00000080), radial-gradient(circle farthest-corner at 0% 0%, var(--black) 1%, var(--primary) 17%, #0000 17%), linear-gradient(160deg, black 63%, var(--primary) 90%, var(--black) 90%);
  justify-content: center;
  align-items: center;
  min-height: 280px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.pages-banner-main.extra-spacing {
  padding-bottom: 180px;
}

.pages-banner-main.no-bottom-white {
  background-color: #0000;
  background-image: linear-gradient(to bottom, #ffffff80, #ffffff80), linear-gradient(9deg, var(--white) 51%, var(--primary) 79%, var(--white) 93%);
  min-height: auto;
  padding-bottom: 0;
}

.pages-banner-main.extra-spacing-company {
  flex-flow: column;
  padding-bottom: 100px;
}

.pages-banner-main.extra-spacing-bg-light {
  background-color: var(--white);
  background-image: linear-gradient(to bottom, #0f5cfa1a, #0f5cfa1a), linear-gradient(to bottom, #f5f9fccc, #f5f9fccc), linear-gradient(212deg, var(--white) 18%, var(--primary) 36%, #fff 58%, var(--white) 80%, var(--primary) 89%, var(--white) 94%), linear-gradient(to bottom, var(--primary-light), var(--primary-light));
  flex-flow: column;
  padding-bottom: 100px;
}

.pages-banner-main.light {
  background-image: linear-gradient(to bottom, #0f5cfa1a, #0f5cfa1a), linear-gradient(to bottom, #f5f9fccc, #f5f9fccc), linear-gradient(34deg, #f5f9fc 5%, var(--primary) 12%, var(--white) 23%, var(--primary-light) 53%, var(--primary) 70%, var(--primary-light) 87%);
}

.pages-banner-main.landing-style {
  background-image: linear-gradient(to bottom, #00000080, #00000080), radial-gradient(circle farthest-corner at 0% 0%, var(--black) 1%, var(--primary) 17%, #0000 17%), linear-gradient(160deg, black 30%, var(--primary) 72%, var(--black) 73%);
  flex-flow: column;
  padding-bottom: 0;
}

.pages-banner-main.extra-spacing-bg-light-bottom-photo {
  background-color: var(--white);
  background-image: linear-gradient(to bottom, #0f5cfa1a, #0f5cfa1a), linear-gradient(to bottom, #f5f9fccc, #f5f9fccc), linear-gradient(212deg, var(--white) 18%, var(--primary) 36%, #fff 58%, var(--white) 80%, var(--primary) 89%, var(--white) 94%), linear-gradient(to bottom, var(--primary-light), var(--primary-light));
  flex-flow: column;
  padding-bottom: 180px;
}

.column-two {
  width: 50%;
}

.column-two.assymetric {
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.accordion-icon-main {
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-item-main {
  border: 1px dashed var(--dark-gray-50);
  border-radius: 20px;
  width: 100%;
  padding: 20px 30px;
  position: static;
}

.two-column-wrapper {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.accordion-title-main {
  margin-top: 0;
  margin-bottom: 0;
}

.home-paragraphs-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.values-faq {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.column-one {
  width: 50%;
}

.column-one.assymetric-values-block {
  flex-direction: column;
  justify-content: flex-start;
  width: 40%;
  display: flex;
}

.about-bg {
  z-index: 0;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 47px;
  margin-bottom: -1px;
  position: absolute;
  inset: auto 0% 0%;
}

.job-banner-image {
  z-index: 1;
  object-fit: cover;
  background-image: url('../images/pexels-mart-production-7256300_1pexels-mart-production-7256300.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 440px;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.job-banner-image.cv-post-style {
  object-position: 50% 65%;
  margin-top: 60px;
}

.banner-job-bg-image {
  filter: contrast(130%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.banner-job-bg-image.opacity {
  opacity: .6;
}

.white-button-text {
  text-align: center;
  text-transform: capitalize;
}

.job-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
}

.location-type-wrapper {
  grid-column-gap: 24px;
  display: flex;
}

.company-wrap {
  grid-column-gap: 25px;
  align-items: center;
  width: 100%;
  display: flex;
}

.overview-title {
  margin-top: 0;
  margin-bottom: 0;
}

.icon-jobs {
  color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 15px;
  line-height: 1em;
  display: flex;
}

.top-company-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.jobs-parapgraph {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2em;
}

.jobs-parapgraph.dark {
  color: var(--text-dark);
}

.tabs-content-company {
  margin-top: 30px;
}

.jobs-title-link {
  border: 1px solid var(--primary);
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 14px;
  display: block;
}

.jobs-title-link:hover {
  color: var(--primary);
}

.tabs-menu-company {
  grid-column-gap: 20px;
  display: flex;
}

.jobs-company-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.job-role-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.small-title {
  margin-top: 0;
  margin-bottom: 0;
}

.company-info-tab {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.info-text-candidates {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1em;
}

.item-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.location-item-wrap {
  grid-column-gap: 8px;
  justify-content: flex-start;
  display: flex;
}

.logo-link {
  flex: none;
  width: 70px;
  height: 70px;
}

.company-link-contact {
  color: var(--primary);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  display: block;
}

.company-link-contact:hover {
  color: var(--paragraph-gray);
}

.company-link-contact.dark {
  color: var(--white);
}

.company-link-contact.dark:hover {
  color: var(--black);
}

.bottom-sidebar {
  grid-column-gap: 25px;
  border: 1px dashed var(--dark-gray-50);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  padding: 20px;
  display: flex;
}

.collection-list-job-details {
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tabs-company {
  width: 100%;
  margin-top: 30px;
}

.details-title-white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 48px;
}

.role-content-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  background-color: var(--primary-light);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 20px;
  display: grid;
}

.heading-2 {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.right-siderbar-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  background-color: var(--primary);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: relative;
}

.location-type-wrap {
  grid-column-gap: 24px;
  align-items: center;
  display: flex;
}

.company-logo {
  background-color: var(--primary-light);
  object-fit: fill;
  border-radius: 10px;
  width: 70px;
  height: 70px;
  padding: 10px;
  display: block;
}

.company-job-wrapper {
  flex-direction: column;
  display: flex;
}

.section-featured-jobs-woth-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.company-info {
  grid-column-gap: 75px;
  grid-row-gap: 20px;
  border-top: 1px dashed var(--dark-gray-50);
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
}

.job-details-wrapp {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px dashed var(--dark-gray-50);
  border-radius: 20px;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.job-details-wrapp.top-space {
  margin-top: 40px;
}

.job-overview {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.jobs-title-link-company {
  color: var(--text-dark);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 20px;
  font-weight: 800;
  display: inline-block;
}

.jobs-title-link-company:hover {
  color: var(--primary);
}

.tab-pane-company {
  width: 100%;
}

.company-title-link-medium {
  color: var(--text-dark);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 800;
  display: inline-block;
}

.company-title-link-medium:hover {
  color: var(--primary);
}

.collection-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.jobs-title-link-category {
  color: var(--text-dark);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 16px;
  display: inline-block;
}

.jobs-title-link-category:hover {
  color: var(--primary);
}

.icon-jobs-image {
  width: 20px;
  height: 20px;
}

.job-category-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.job-banner-description {
  color: var(--white);
  max-width: 80%;
  margin-top: 0;
  margin-bottom: 0;
}

.job-banner-description.dark {
  color: var(--text-dark);
}

.top-company-wrapp {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.company-banner-info {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.role-content-wrapp-company {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  background-color: var(--white);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 60px;
  padding: 20px;
  display: grid;
}

.role-content-wrapper-company {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.banner-three-image-copy {
  z-index: 0;
  opacity: .7;
  filter: brightness(65%);
  object-fit: cover;
  object-position: 50% 90%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.details-content-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  background-color: var(--primary);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  padding: 20px;
  display: grid;
}

.collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.details-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 48px;
}

.details-title.smaller-space {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.details-title.coming-soon-style {
  margin-top: 40px;
}

.details-page-section {
  background-color: #0000;
  background-image: linear-gradient(to bottom, #ffffff80, #ffffff80), linear-gradient(9deg, var(--white) 80%, var(--primary) 90%, var(--white) 98%);
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.blog-top-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.content-banner-contact {
  z-index: 1;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.banner-info-contact {
  border: 1px dashed var(--dark-gray-50);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
}

.absolute-img-banner-contact {
  z-index: 1;
  border-radius: 12px;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.banner-img-cover-contact {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.banner-contact {
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-contact {
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  line-height: 1.4em;
  display: block;
}

.link-contact:hover {
  color: var(--primary);
}

.link-contact-dark {
  color: var(--text-dark);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  display: block;
}

.link-contact-dark:hover {
  color: var(--primary);
}

.pricing-block {
  background-color: var(--primary-light);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  grid-column-gap: 15px;
  display: flex;
}

.checkbox-wrapper {
  margin-top: 0;
  margin-bottom: 30px;
}

.form-contacts-job {
  width: 100%;
  height: 100%;
}

.form-contacts-job.center {
  flex-direction: column;
  display: flex;
}

.checkbox {
  border-color: var(--primary);
  color: var(--white);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-right: 10px;
}

.checkbox.w--redirected-checked {
  border-color: var(--primary);
  background-color: #0000;
}

.checkbox.w--redirected-focus {
  border-color: var(--white);
  box-shadow: none;
}

.form-input-wrapper {
  grid-column-gap: 20px;
  width: 100%;
  display: flex;
}

.contacts-form-title-job {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 40px;
}

.checkbox-label {
  color: var(--white);
  line-height: 1.2em;
}

.heading-3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 30px;
}

.contacts-job-form-wrapper {
  background-color: var(--black);
  border-radius: 20px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 0;
  padding: 40px;
}

.rich-text-photo {
  width: 100%;
}

.form-subscribe {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.changelog-paragraph {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.bottom-bg-element {
  background-color: var(--primary);
  height: 140px;
  position: absolute;
  inset: auto 0% 0%;
}

.cta {
  background-color: var(--primary);
  border-radius: 20px;
  flex-flow: column;
  align-items: center;
  padding: 40px;
  display: flex;
}

.landing-icon-wrapp {
  background-color: var(--primary-light);
  border-radius: 20px;
  padding: 15px;
}

.text-orange {
  color: #f69c20;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.btn-icon {
  margin-right: 8px;
}

.promotion-labels-wrapper {
  z-index: 9999;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-label-left {
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-label-buttons-wrapper {
  grid-column-gap: 20px;
  display: flex;
}

.promotion-label-all-templates {
  z-index: 1000;
  color: #4353ff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  display: flex;
}

.promotion-label-all-templates:hover {
  opacity: 1;
  color: #000;
}

.promotion-label-buy-this-template {
  z-index: 1000;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  background-color: #4353ff;
  border: 1px solid #4353ff;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  opacity: 1;
  color: #fff;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  background-color: #1c276d;
  border-radius: 4px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
}

.promotion-label-button:hover {
  color: #ffffffb3;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.text-block {
  color: var(--white);
  font-family: PT Sans, sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 72px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .spacing-columns {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .footer {
    padding-top: 180px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .team-grid-large {
    padding: 30px;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pricing-plan-item.last-item {
    max-width: none;
  }

  .contacts-3-banner-title-wrapper {
    align-items: flex-start;
    width: 45%;
    padding-right: 70px;
  }

  .contacts-3-banner-wrapper {
    flex-wrap: nowrap;
    align-items: center;
  }

  .adress-cards-wrapper {
    width: 55%;
    margin-top: 0;
  }

  .contacts-3-banner-description {
    text-align: left;
  }

  .about-1-video {
    min-height: 520px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .main-style-guide-body-wrapper {
    margin-right: 60px;
  }

  .banner-title-wrapper-2 {
    margin-top: 0;
  }

  .landing-inner-page-item.home-screen-banner, .landing-inner-page-item.home-screen {
    max-width: none;
  }

  .section-landing-customers {
    padding-top: 100px;
    padding-bottom: 130px;
  }

  .landing-customers-content-left {
    padding-right: 100px;
  }

  .paragraph-benefits-lp {
    width: 80%;
  }

  .landing-inner-pages-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 30px;
  }

  .style-guide-body-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .statistics-text-three {
    font-size: 18px;
  }

  .button-arrow-element.corner-right-absolute {
    top: 40px;
    right: 40px;
  }

  .button-arrow-element.corner-right-bottom-absolute-dark {
    bottom: 30px;
    right: 30px;
  }

  .two-column-wrapper-numbers {
    grid-column-gap: 100px;
  }

  .numbers-about {
    justify-content: flex-start;
    justify-items: start;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .menu-wrap-main {
    padding-right: 25px;
  }

  .banner-img-cover {
    object-position: 50% 30%;
  }

  .job-block-wrapper {
    width: 100%;
    max-width: 1040px;
    margin-right: -26%;
  }

  .shop-christmas-gifts-info-wrapper {
    width: 380px;
  }

  .job-content {
    width: 100%;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    inset: auto 0% 0;
  }

  .job-list-item-latest {
    padding: 40px;
  }

  .jobs-collection-list.list-three {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .heading-one {
    font-size: 108px;
  }

  .footer-brand-wrapper-main {
    grid-column-gap: 80px;
  }

  .footer-social-icons-wrapper-main {
    grid-column-gap: 30px;
  }

  .footer-links-wrapper-main {
    grid-column-gap: 50px;
  }

  .collection-list-candidate {
    grid-template-columns: 1fr 1fr;
  }

  .section-featured-jobs {
    padding-top: 130px;
  }

  .section-featured-jobs.with-bottom-spacing {
    padding-bottom: 130px;
  }

  .banner-home-one {
    padding-top: 170px;
  }

  .second-banner {
    padding-top: 190px;
    padding-bottom: 130px;
  }

  .cta-loop-home-two {
    margin-top: 80px;
    margin-bottom: -60px;
  }

  .cta-loop-wrapper-two, .cta-loop-item-list {
    grid-column-gap: 60px;
  }

  .candidate-image-wrapper {
    padding-top: 260px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .two-column-wrapper-testimonials {
    grid-column-gap: 100px;
  }

  .review-main-item.left {
    margin-right: 60px;
  }

  .review-main-item.right {
    margin-left: 60px;
  }

  .home-3-banner-content {
    width: 84%;
  }

  .heading-home-three {
    max-width: 1260px;
  }

  .home-3-bg {
    height: 52px;
  }

  .banner-client-span {
    width: 90px;
    height: 90px;
  }

  .two-column-wrapper-image {
    grid-column-gap: 100px;
  }

  .collection-list-resources {
    grid-template-columns: 1fr 1fr;
  }

  .collection-item-resources {
    width: 31.62%;
  }

  .resources-wrap {
    padding: 30px;
  }

  .third-banner {
    padding-top: 190px;
    padding-bottom: 130px;
  }

  .third-banner.bottom-space-extra {
    padding-bottom: 100px;
  }

  .features-grid-about {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .pages-banner-main {
    padding-top: 180px;
    padding-bottom: 130px;
  }

  .pages-banner-main.extra-spacing {
    padding-bottom: 230px;
  }

  .pages-banner-main.extra-spacing-company, .pages-banner-main.extra-spacing-bg-light {
    padding-bottom: 150px;
  }

  .pages-banner-main.extra-spacing-bg-light-bottom-photo {
    padding-bottom: 200px;
  }

  .two-column-wrapper {
    grid-column-gap: 100px;
  }

  .about-bg {
    height: 52px;
  }

  .job-banner-image {
    height: 520px;
  }

  .bottom-sidebar {
    padding: 30px;
  }

  .details-title-white {
    font-size: 54px;
  }

  .role-content-wrapper, .right-siderbar-wrapper {
    padding: 30px;
  }

  .section-featured-jobs-woth-spacing {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .company-info {
    grid-column-gap: 100px;
  }

  .job-details-wrapp {
    padding: 30px;
  }

  .role-content-wrapp-company {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 30px;
  }

  .details-content-wrapper {
    padding: 30px;
  }

  .details-title {
    font-size: 54px;
  }

  .details-page-section {
    padding-top: 180px;
    padding-bottom: 130px;
  }

  .content-banner-contact {
    margin-top: 80px;
  }

  .banner-img-cover-contact {
    object-position: 50% 30%;
  }

  .banner-contact {
    padding-top: 170px;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .landing-banner-title {
    font-size: 80px;
  }

  .category-job-wrapp {
    padding: 14px 22px;
  }

  .home-3-bg, .about-bg {
    height: 61px;
  }
}

@media screen and (min-width: 1920px) {
  .base-container {
    max-width: 1400px;
  }

  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  ._404-title {
    font-size: 120px;
  }

  .team-card-image {
    height: 370px;
  }

  .navbar-absolute {
    height: 100px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .landing-banner-content {
    margin-bottom: 130px;
  }

  .section-landing-customers {
    padding-top: 130px;
  }

  .landing-customers-content-right {
    grid-row-gap: 50px;
  }

  .job-tabs-menu {
    max-width: none;
  }

  .column-two-numbers {
    width: 38%;
  }

  .column-one-numbers {
    width: 62%;
  }

  .job-block-wrapper {
    max-width: 1240px;
    margin-right: -32.5%;
  }

  .shop-christmas-gifts-info-wrapper {
    width: 444px;
  }

  .job-content, .job-selection-wrapper {
    max-width: 1370px;
  }

  .icon-job.biggger {
    height: 24px;
  }

  .heading-one {
    font-size: 127px;
  }

  .image-banner-bg {
    width: 64%;
  }

  .footer-bg {
    height: 134px;
  }

  .home-3-banner-img {
    width: 55%;
  }

  .image-photo-banner {
    height: 420px;
    margin-top: 40px;
  }

  .home-2-banner-content {
    width: 45%;
  }

  .cta-loop-wrapper-two, .cta-loop-item-list {
    grid-column-gap: 90px;
  }

  .category-job-wrapp {
    padding: 14px 28px;
    font-size: 20px;
  }

  .candidate-image-wrapper {
    padding-top: 300px;
  }

  .column-two-company {
    width: 38%;
  }

  .home-3-banner-content {
    width: 78%;
  }

  .home-3-bg {
    height: 82px;
  }

  .banner-client-span {
    width: 90px;
    height: 90px;
  }

  .collection-item-resources {
    width: 31.87%;
  }

  .two-column-wrapper {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .about-bg {
    height: 82px;
  }

  .top-company-wrapper, .top-company-wrapp, .role-content-wrapper-company {
    max-width: 1400px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 42px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    margin-right: 0;
  }

  .coming-soon-paragraph {
    text-align: center;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .footer {
    padding-top: 100px;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .team-grid-large {
    grid-template-columns: 1fr 1fr;
  }

  .style-guide-button-wrapper {
    width: 45%;
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .coming-soon-image {
    display: none;
  }

  .contacts-wrapper {
    flex-flow: column;
    align-items: flex-start;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 30px;
  }

  .adress-cards-wrapper {
    margin-top: 80px;
  }

  .contact-3-inputs-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .contacts-3-input.last-child {
    margin-right: 0;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .testimonials-card-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .headings-container {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .about-1-video {
    width: 100%;
    min-height: 340px;
  }

  .navbar-absolute {
    height: 60px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .about-5-partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .brand-tablet {
    display: block;
  }

  .spacing-system-image-2 {
    width: 75%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .style-guide-tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .spacing-title {
    font-size: 25px;
  }

  .spasing-system-image-mobile-2 {
    width: 70%;
  }

  .landing-banner-content {
    margin-bottom: 70px;
    position: relative;
    left: 0%;
    right: 0%;
  }

  .landing-home-pages-wrapper-banner {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .landing-inner-page-item.home-screen-banner, .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-customers-content-left {
    grid-row-gap: 10px;
    text-align: center;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .landing-customers-content-right {
    grid-row-gap: 30px;
    width: 100%;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
  }

  .landing-section-title {
    width: 80%;
  }

  .landing-home-pages-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .job-tabs.vertical {
    flex-flow: column;
  }

  .job-category-tabs-content.vertical {
    width: 100%;
  }

  .job-tabs-menu.vertical {
    flex-flow: wrap;
    width: 100%;
    padding-bottom: 40px;
    padding-right: 0;
    position: static;
  }

  .job-tabs-menu.tablet-center {
    justify-content: center;
    align-items: flex-start;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    width: 100%;
  }

  .style-guide-body-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-body-wrap.rows-30 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .banner-column-one, .banner-column-two {
    align-items: center;
    width: 100%;
    max-width: 560px;
  }

  .home-banner-content {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .column-two-numbers {
    border-top: 1px dashed var(--dark-gray-50);
    border-left-style: none;
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }

  .two-column-wrapper-numbers {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .column-one-numbers {
    width: 100%;
  }

  .numbers-about {
    grid-column-gap: 40px;
    border-bottom: 1px solid #afafaf;
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .numeric {
    font-size: 42px;
  }

  .section-two-side-title-wrapp.candidates-style {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .button-wrapper-nav {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    display: flex;
  }

  .search-shop-con-main {
    display: none;
  }

  .nav-dropdown-column-main {
    justify-content: center;
    width: 180px;
  }

  .nav-menu-main {
    background-color: #fff;
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .nav-close-icon-2 {
    z-index: 15;
    align-self: stretch;
    margin-bottom: 1px;
  }

  .menu-wrap-main {
    background-color: #fff;
    border-style: none;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .nav-dropdown-icon-2 {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .image-burger-main {
    margin-bottom: 2px;
  }

  .image-burger-main.white {
    filter: invert();
  }

  .nav-dropdown-link-main {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .close-menu-button-main, .close-menu-button-main.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-dropdown-toggle-main {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-toggle-main.white, .nav-dropdown-toggle-main.white:hover {
    color: var(--text-dark);
  }

  .nav-link-main {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link-main.white {
    color: var(--text-dark);
  }

  .nav-dropdown-list-main {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list-main.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list-main.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-button-wrapper {
    display: none;
  }

  .login {
    display: block;
  }

  .content-banner-home {
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .absolute-img-banner {
    max-height: none;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    top: 0;
    right: auto;
  }

  .banner-description-home {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .job-block-wrapper {
    width: 60%;
    margin-right: 0%;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .job-content {
    width: 36%;
  }

  .job-selection-wrapper {
    display: flex;
  }

  .jobs-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .heading-one {
    background-color: var(--text-dark);
    background-image: none;
    margin-bottom: 20px;
    font-size: 62px;
  }

  .image-banner-bg {
    height: auto;
  }

  .banner-info {
    align-items: center;
  }

  .footer-brand-wrapper-main {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-wrapper-main {
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .right-footer-block {
    align-items: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .left-form-block {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo-wrapper-main {
    align-items: center;
  }

  .footer-brand-description-main {
    text-align: center;
  }

  .collection-list-candidate {
    grid-template-columns: 1fr 1fr;
  }

  .banner-home-one {
    padding-top: 140px;
  }

  .home-3-banner-img {
    order: -1;
    justify-content: center;
    width: 100%;
  }

  .image-photo-banner {
    height: auto;
  }

  .paragraph-tablet-center {
    text-align: center;
  }

  .home-2-banner {
    flex-flow: row-reverse wrap;
  }

  .home-2-banner-content {
    text-align: center;
    align-items: center;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }

  .candidate-image-wrapper {
    padding-top: 320px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-wrapper-main {
    justify-content: center;
    align-items: center;
  }

  .heading-home-two {
    margin-top: 40px;
  }

  .two-column-wrapper-testimonials {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .column-one-testimonials, .column-two-testimonials {
    width: 100%;
  }

  .review-main-item.left {
    margin-right: 0;
  }

  .review-main-item.right {
    margin-left: 0;
  }

  .column-two-company {
    border-left-style: none;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-left: 0;
  }

  .company-icon-wrapp {
    margin-left: 0;
  }

  .company-icon-wrapp.two {
    right: 45%;
  }

  .company-icon-wrapp.three {
    right: 14%;
  }

  .trusted-by-clients {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .numbers-two {
    font-size: 36px;
  }

  .home-3-banner {
    flex-flow: row-reverse wrap;
  }

  .home-3-banner-content {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-home-three {
    max-width: 660px;
    margin-top: 40px;
  }

  .home-3-bg {
    height: 37px;
  }

  .banner-client-span {
    width: 60px;
    height: 60px;
  }

  .two-column-wrapper-image {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .column-one-testimonials-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .column-two-testimonials-copy {
    width: 100%;
  }

  .collection-list-resources, .collection-list-resources.grid-style {
    grid-template-columns: 1fr 1fr;
  }

  .collection-item-resources {
    width: 47.96%;
  }

  .features-grid-about {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .pages-banner-main {
    padding-top: 110px;
  }

  .column-two, .column-two.assymetric {
    width: 100%;
  }

  .two-column-wrapper {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .values-faq {
    margin-top: 20px;
  }

  .column-one, .column-one.assymetric-values-block {
    width: 100%;
  }

  .about-bg {
    height: 37px;
  }

  .job-banner-image {
    width: 100%;
    height: 340px;
  }

  .job-wrapper {
    width: 100%;
  }

  .top-company-wrapper {
    flex-flow: column;
  }

  .details-title-white {
    font-size: 48px;
  }

  .right-siderbar-wrapper {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .company-info {
    grid-column-gap: 75px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .top-company-wrapp {
    flex-flow: column;
    display: flex;
  }

  .role-content-wrapp-company {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
  }

  .details-title {
    font-size: 48px;
  }

  .details-title.coming-soon-style {
    text-align: center;
    max-width: 440px;
  }

  .details-page-section {
    background-image: linear-gradient(to bottom, #ffffff80, #ffffff80), linear-gradient(9deg, var(--white) 87%, var(--primary) 93%, var(--white) 98%);
    padding-top: 100px;
  }

  .content-banner-contact {
    text-align: center;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    width: 95%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-info-contact {
    align-items: center;
  }

  .absolute-img-banner-contact {
    max-height: none;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    top: 0;
    right: auto;
  }

  .banner-img-cover-contact {
    max-height: 420px;
  }

  .banner-contact {
    padding-top: 140px;
  }

  .pricing-block {
    padding: 30px;
  }

  .bottom-bg-element {
    height: 15%;
  }

  .promotion-labels-wrapper, .promotion-label-holder {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 18px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 0;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .link-wrapper {
    width: 100%;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  ._404-title {
    font-size: 70px;
  }

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-paragraph {
    margin-bottom: 30px;
  }

  .blog-template-image {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .footer {
    padding-top: 80px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .team-grid-large {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-plan-item {
    max-width: none;
  }

  .pricing-plan-item.last-item {
    max-width: 100%;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 100%;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .adress-cards-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .adress-card {
    padding: 20px 20px 30px;
  }

  .contacts-3-form-wrapper {
    padding: 30px 20px;
  }

  .contact-3-inputs-wrapper {
    grid-template-columns: 1fr;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-result-wrapper {
    margin-bottom: -20px;
  }

  .testimonials-card-wrapper {
    column-count: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about-1-video {
    min-height: 280px;
  }

  .about-1-video-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .style-guide-tab-content-wrapper {
    grid-row-gap: 40px;
  }

  .grid-header {
    width: 100%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-tab-link {
    border-bottom: 1px solid var(--black);
    border-top-style: none;
  }

  .style-guide-tabs-menu {
    border-top: 1px solid var(--black);
    flex-direction: column;
    margin-bottom: 40px;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    flex: 1;
    width: 100%;
  }

  .landing-banner-content {
    justify-content: center;
    align-items: center;
  }

  .landing-home-pages-wrapper-banner {
    grid-column-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-landing-customers {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .landing-customers-content-left {
    text-align: center;
    align-items: center;
    width: 70%;
  }

  .landing-customers-icon-wrapper {
    width: 90%;
  }

  .paragraph-benefits-lp {
    width: 100%;
  }

  .landing-customers-layout {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .landing-section-title {
    width: 70%;
  }

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr;
  }

  .job-tabs-menu {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }

  .spacing-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .sg-title.mb-15 {
    margin-bottom: 10px;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .btn-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .card-gradient-first {
    padding-left: 20px;
    padding-right: 20px;
  }

  .statistics-card {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
  }

  .statistics-card.no-space {
    padding: 0;
  }

  .home-banner-content {
    width: 100%;
  }

  .button-arrow-element.corner-right-absolute, .button-arrow-element.corner-right-absolute-dark, .button-arrow-element.corner-right-absolute-hover-primary, .button-arrow-element.corner-right-absolute-primary {
    top: 30px;
    right: 20px;
  }

  .two-column-wrapper-numbers {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .numbers-about {
    margin-top: 40px;
    padding-top: 40px;
  }

  .service-card-big.mobile-hidden {
    display: none;
  }

  .section-two-side-title-wrapp {
    grid-row-gap: 30px;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .button-wrapper-nav {
    margin-top: 20px;
  }

  .nav-link-main {
    margin-left: 0;
  }

  .content-banner-home {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    justify-content: flex-start;
  }

  .absolute-img-banner, .banner-description-home {
    width: 100%;
  }

  .job-block-wrapper {
    width: 100%;
    padding-left: 15px;
  }

  .shop-christmas-gifts-info-wrapper {
    width: 80%;
  }

  .job-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 40px;
    display: flex;
  }

  .button-wrapper-main, .primary-button-outline.pagination {
    margin-top: 30px;
  }

  .job-selection-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-list-item-latest {
    grid-row-gap: 40px;
    text-align: left;
    padding: 30px 20px;
  }

  .home-2-banner-search {
    width: 80%;
  }

  .home-2-banner-search.width {
    width: 100%;
  }

  .primary-search-button.absolute-main, .primary-search-button.absolute-main-footer {
    bottom: 12%;
    right: 6px;
  }

  .search-icon {
    top: 13px;
  }

  .banner-search-input {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .job-types {
    padding-left: 20px;
    padding-right: 20px;
  }

  .jobs-collection-list {
    grid-template-columns: 1fr;
  }

  .job-main-item {
    grid-row-gap: 40px;
    text-align: left;
    padding: 30px 20px;
  }

  .heading-one {
    font-size: 48px;
  }

  .image-banner-bg {
    width: 76%;
  }

  .banner-info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-brand-wrapper-main {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .right-footer-block {
    width: 100%;
  }

  .left-form-block {
    grid-row-gap: 30px;
  }

  .footer-brand-main {
    padding-left: 0;
  }

  .footer-links-wrapper-main {
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .large-footer-text {
    font-size: 45px;
  }

  .footer-brand-description-main {
    text-align: center;
  }

  .collection-list-candidate {
    grid-template-columns: 1fr;
  }

  .section-featured-jobs {
    padding-top: 60px;
  }

  .section-featured-jobs.with-bottom-spacing {
    padding-bottom: 60px;
  }

  .banner-home-one {
    padding-top: 140px;
  }

  .second-banner {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .image-photo-banner {
    width: 100%;
    max-width: 600px;
    margin-top: 0;
    margin-left: auto;
    left: auto;
  }

  .home-2-banner-content {
    width: 100%;
  }

  .candidate-image-wrapper {
    padding-top: 280px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-item-banner {
    display: none;
  }

  .heading-home-two {
    margin-top: 30px;
  }

  .two-column-wrapper-testimonials {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-main-item {
    grid-row-gap: 40px;
    text-align: left;
    padding: 30px 20px;
  }

  .numbers-block {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .numbers-two {
    font-size: 32px;
  }

  .home-3-banner-content {
    width: 100%;
  }

  .heading-home-three {
    max-width: 550px;
    margin-top: 30px;
  }

  .home-3-bg {
    height: 30px;
  }

  .banner-client-span {
    width: 50px;
    height: 50px;
  }

  .two-column-wrapper-image {
    flex-direction: column;
    padding: 40px 20px;
  }

  .collection-list-resources {
    grid-template-columns: 1fr;
  }

  .collection-list-resources.grid-style {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .collection-item-resources {
    width: 100%;
    max-width: 480px;
  }

  .collection-item-resources.grid-style {
    margin-left: auto;
    margin-right: auto;
  }

  .resources-wrap {
    height: auto;
  }

  .third-banner {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .third-banner.bottom-space-extra {
    padding-bottom: 130px;
  }

  .features-grid-about {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pages-banner-main {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .pages-banner-main.extra-spacing {
    padding-bottom: 160px;
  }

  .pages-banner-main.extra-spacing-company, .pages-banner-main.extra-spacing-bg-light {
    padding-bottom: 80px;
  }

  .pages-banner-main.extra-spacing-bg-light-bottom-photo {
    padding-bottom: 150px;
  }

  .two-column-wrapper {
    flex-direction: column;
  }

  .about-bg {
    height: 30px;
  }

  .job-banner-image {
    height: 280px;
  }

  .job-banner-image.cv-post-style {
    margin-top: 40px;
  }

  .job-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .job-role-wrapper {
    grid-row-gap: 10px;
  }

  .bottom-sidebar {
    margin-top: 40px;
  }

  .collection-list-job-details {
    grid-template-columns: 1fr;
  }

  .details-title-white {
    font-size: 44px;
  }

  .role-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .right-siderbar-wrapper {
    flex-flow: column;
  }

  .location-type-wrap.width {
    width: 40%;
  }

  .section-featured-jobs-woth-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .company-info {
    grid-template-columns: 1fr 1fr;
  }

  .job-details-wrapp.top-space {
    margin-top: 20px;
  }

  .job-banner-description {
    max-width: 100%;
  }

  .role-content-wrapp-company {
    grid-row-gap: 20px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .details-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
  }

  .details-title {
    font-size: 44px;
  }

  .details-title.coming-soon-style {
    margin-top: 30px;
  }

  .details-page-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .details-page-section.search-style {
    background-image: linear-gradient(to bottom, #ffffff80, #ffffff80), linear-gradient(9deg, var(--white) 94%, var(--primary) 97%, var(--white));
  }

  .blog-top-wrapper {
    margin-bottom: 20px;
  }

  .content-banner-contact {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    justify-content: flex-start;
  }

  .banner-info-contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .absolute-img-banner-contact {
    width: 100%;
  }

  .banner-contact {
    padding-top: 140px;
  }

  .pricing-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-input-wrapper {
    flex-wrap: wrap;
  }

  .contacts-form-title-job {
    margin-bottom: 30px;
  }

  .contacts-job-form-wrapper {
    margin-top: 40px;
    padding: 30px 20px;
  }

  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .promotion-label-buttons-wrapper {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }
}

@media screen and (max-width: 479px) {
  .base-container.full-width {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .primary-button.full-width-mobile, .primary-button.dark-hover-white {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    line-height: 1.6em;
  }

  .pricing-plan-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .customer-grey-image {
    max-width: 43%;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item {
    width: 100%;
  }

  .about-5-partners-grid {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    grid-auto-columns: 1fr;
  }

  .home-23-team-item {
    width: 100%;
  }

  .center-title {
    text-align: center;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .landing-banner-content {
    flex-direction: column;
    max-width: none;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    inset: auto 0% 28%;
  }

  .landing-home-pages-wrapper-banner {
    grid-column-gap: 0px;
  }

  .landing-customers-content-right {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    text-align: center;
  }

  .landing-section-title {
    width: 100%;
  }

  .landing-home-pages-wrapper, .landing-inner-pages-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .licensing-footer-link {
    text-align: center;
    line-height: 1.6em;
  }

  .button-arrow-element.corner-right-absolute {
    top: 30px;
    right: 20px;
  }

  .button-arrow-element.corner-right-absolute-dark, .button-arrow-element.corner-right-absolute-hover-primary {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 30px;
    right: 15px;
  }

  .button-arrow-element.reviews {
    display: none;
  }

  .button-arrow-element.corner-right-absolute-primary {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 30px;
    right: 15px;
  }

  .column-two-numbers {
    grid-template-columns: 1fr;
  }

  .in-section-title {
    margin-bottom: 15px;
  }

  .numbers-about {
    flex-direction: column;
    margin-top: 30px;
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-link-main {
    width: 99%;
  }

  .nav-dropdown-list-main.megamenu {
    padding-right: 0;
  }

  .content-banner-home {
    width: 100%;
  }

  .absolute-img-banner {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .job-block-wrapper {
    text-align: center;
    padding-right: 15px;
  }

  .shop-christmas-gifts-info-wrapper {
    width: 100%;
  }

  .job-collection-item {
    width: 250px;
  }

  .job-content {
    text-align: center;
  }

  .job-list-item-latest {
    grid-row-gap: 30px;
  }

  .home-2-banner-search {
    width: 100%;
    max-width: none;
  }

  .primary-search-button.absolute-main, .primary-search-button.absolute-main-footer {
    margin-top: 15px;
    position: relative;
    bottom: 0%;
    right: 0;
  }

  .job-main-item {
    grid-row-gap: 30px;
  }

  .jobs-tab-link {
    text-align: center;
  }

  .footer-brand-wrapper-main {
    flex-direction: column;
  }

  .footer-links-wrapper-main {
    justify-content: center;
  }

  .candidate-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .candidate-wrap.style-two {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .candidate-info {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .candidate-tags {
    border-bottom: 1px dashed var(--white-50);
    margin-bottom: 50px;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .candidate-tags.no-border {
    border-bottom-style: none;
    padding-bottom: 0;
  }

  .candidate-tags.no-border-no-space {
    border-bottom-style: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .rating-wrapper {
    inset: auto auto 30px 15px;
  }

  .image-photo-banner {
    margin-top: 8px;
  }

  .candidate-image-wrapper {
    padding-top: 320px;
  }

  .column-two-testimonials {
    grid-template-columns: 1fr;
  }

  .review-main-item {
    grid-row-gap: 30px;
  }

  .column-two-company {
    grid-template-columns: 1fr;
  }

  .company-icon-wrapp.two {
    right: 40%;
  }

  .company-icon-wrapp.three {
    right: 12%;
  }

  .heading-home-three {
    max-width: 290px;
  }

  .home-3-bg {
    height: 19px;
  }

  .column-two-testimonials-copy {
    grid-template-columns: 1fr;
  }

  .resources-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .resources-tags {
    border-bottom: 1px dashed var(--white-50);
  }

  .pages-banner-main {
    text-align: left;
  }

  .accordion-item-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-paragraphs-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
  }

  .about-bg {
    height: 19px;
  }

  .location-type-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .logo-link {
    width: 50px;
    height: 50px;
  }

  .role-content-wrapper {
    flex-flow: column;
    display: flex;
  }

  .right-siderbar-wrapper {
    width: 100%;
  }

  .location-type-wrap {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .location-type-wrap.width {
    width: 100%;
  }

  .company-logo {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .company-info, .role-content-wrapp-company, .details-content-wrapper {
    flex-flow: column;
    display: flex;
  }

  .details-page-section {
    text-align: left;
  }

  .content-banner-contact {
    width: 100%;
  }

  .absolute-img-banner-contact {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-img-cover-contact {
    max-height: 320px;
  }

  .form-row {
    flex-flow: column;
  }

  .form-subscribe {
    flex-flow: column;
    align-items: stretch;
  }
}

#w-node-_3cb24c6c-4e51-f8a9-875b-510f937991a4-8b3db2bd, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991a8-8b3db2bd, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991ac-8b3db2bd, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991b2-8b3db2bd, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991b8-8b3db2bd, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991be-8b3db2bd {
  justify-self: center;
}

#w-node-a2669ca5-8a66-cb39-5981-99e0098e798e-8b3db32d, #w-node-a2669ca5-8a66-cb39-5981-99e0098e7994-8b3db32d, #w-node-f276db32-925f-62bd-190a-d0caf5fb770a-8b3db32d, #w-node-f276db32-925f-62bd-190a-d0caf5fb7710-8b3db32d, #w-node-_7fcbf9da-7d8b-af65-2947-ce4b625152a2-8b3db35a, #w-node-_7fcbf9da-7d8b-af65-2947-ce4b625152a8-8b3db35a, #w-node-aba1e3b9-a116-573b-8f09-635ec9662452-8b3db35a, #w-node-aba1e3b9-a116-573b-8f09-635ec9662458-8b3db35a, #w-node-bca5d0ff-8010-8033-e8b4-5b98722cea4e-8b3db35e, #w-node-bca5d0ff-8010-8033-e8b4-5b98722cea54-8b3db35e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ad585e0-35b7-4e3e-d0c0-6627ec216325-8b3db35f {
  align-self: center;
}

#w-node-_44cd87ab-4d25-e9b1-2436-4a61d37b2a29-8b3db360, #w-node-_2aeb32d3-434e-ff5c-648c-cbb641196a65-8b3db360, #w-node-_9dccfc97-6ec4-0cba-d083-abb95fab6bd9-8b3db360, #w-node-cf0180bf-6c8f-3518-036f-a39c689775d2-8b3db360 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8e0bd87c-0ab7-9610-bc9a-ba4af0140c61-8b3db379 {
  align-self: center;
}

#w-node-_6557d685-0510-d052-b273-fe066af33171-8b3db379, #w-node-_93b5e037-de54-4dc1-8c31-0f7de78ec244-8b3db379, #w-node-e42570a5-d509-e147-e1ff-074ccebee0c1-8b3db37a, #w-node-e42570a5-d509-e147-e1ff-074ccebee0c7-8b3db37a, #w-node-_35684783-0c81-5e13-cd42-d81233fddf04-8b3db37a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b8548884-1f0c-d814-f3f7-c30340b78739-8b3db37a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_53d03839-310f-62d4-f806-f7f42fabe911-8b3db37a, #w-node-_53d03839-310f-62d4-f806-f7f42fabe917-8b3db37a, #w-node-ff432b4a-c8df-642c-a43b-f0e5b10e5489-8b3db37b, #w-node-ff432b4a-c8df-642c-a43b-f0e5b10e548f-8b3db37b, #w-node-_2c9c6a06-707e-b1ff-a965-59cb79a785bc-8b3db37d, #w-node-_2c9c6a06-707e-b1ff-a965-59cb79a785d0-8b3db37d, #w-node-_2c9c6a06-707e-b1ff-a965-59cb79a785e4-8b3db37d, #w-node-e38251a1-a4ba-d1eb-fee2-2d43c9d24f0b-8b3db37d, #w-node-_239d438a-925c-b8c0-76de-c8ea17fcec58-8b3db37d, #w-node-_2ba4be02-65ad-e5f2-d227-e514d1c34d04-8b3db37d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_459cc8cd-fa2d-50af-479d-1702cf3f61e8-8b3db37e {
  align-self: center;
}

#w-node-_79d18c5a-c0ff-3dd2-64ff-fa0e8ffcd236-8b3db37e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_22c833bc-1bfd-de91-474c-6087e16e4e0b-8b3db37e, #w-node-_22c833bc-1bfd-de91-474c-6087e16e4e11-8b3db37e, #w-node-a8950ed7-42b9-3582-bbb6-056aa72e2510-8b3db380, #w-node-a8950ed7-42b9-3582-bbb6-056aa72e2516-8b3db380 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0cac5de6-f473-93eb-285e-c836babbb661-8b3db381 {
  align-self: center;
}

#w-node-_9caf7eda-6ced-1c7b-383c-2076b8b70be4-8b3db381, #w-node-_9caf7eda-6ced-1c7b-383c-2076b8b70bea-8b3db381, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3a9-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ab-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ad-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3af-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b1-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b4-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b6-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b8-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ba-8b3db382, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3bc-8b3db382, #w-node-_9c3ef723-a66b-8450-2b2d-ab45268c7e13-8b3db39c, #w-node-_9c3ef723-a66b-8450-2b2d-ab45268c7e14-8b3db39c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_850fea2c-9d7b-87e6-82b7-481426677c20-8b3db39b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_2ad585e0-35b7-4e3e-d0c0-6627ec216325-8b3db35f, #w-node-_8e0bd87c-0ab7-9610-bc9a-ba4af0140c61-8b3db379 {
    align-self: center;
  }

  #w-node-_6557d685-0510-d052-b273-fe066af33171-8b3db379 {
    grid-column: span 2 / span 2;
  }

  #w-node-_459cc8cd-fa2d-50af-479d-1702cf3f61e8-8b3db37e {
    align-self: center;
  }

  #w-node-_79d18c5a-c0ff-3dd2-64ff-fa0e8ffcd236-8b3db37e {
    grid-column: span 1 / span 1;
  }

  #w-node-_0cac5de6-f473-93eb-285e-c836babbb661-8b3db381 {
    align-self: center;
  }

  #w-node-_9c3ef723-a66b-8450-2b2d-ab45268c7e13-8b3db39c {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6557d685-0510-d052-b273-fe066af33171-8b3db379 {
    order: 9999;
    grid-column: span 2 / span 2;
  }

  #w-node-_79d18c5a-c0ff-3dd2-64ff-fa0e8ffcd236-8b3db37e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_9c3ef723-a66b-8450-2b2d-ab45268c7e13-8b3db39c {
    order: 9999;
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6557d685-0510-d052-b273-fe066af33171-8b3db379, #w-node-b8548884-1f0c-d814-f3f7-c30340b78739-8b3db37a, #w-node-_79d18c5a-c0ff-3dd2-64ff-fa0e8ffcd236-8b3db37e, #w-node-_9c3ef723-a66b-8450-2b2d-ab45268c7e13-8b3db39c {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400 (old)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.brand-name {
  margin-left: 25px;
  margin-right: 15px;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0px;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: block;
  vertical-align: middle;
  padding: 8px 0;
  min-width: 200px;
}

@media screen and (max-width: 991px) {
  .brand-name {
    font-size: 28px;
    margin-left: 20px;
    margin-right: 12px;
    min-width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .brand-name {
    font-size: 26px;
    margin-left: 15px;
    margin-right: 10px;
    min-width: 160px;
  }
}

@media screen and (max-width: 479px) {
  .brand-name {
    font-size: 24px;
    margin-left: 12px;
    margin-right: 8px;
    min-width: 140px;
  }
}

/* AI Toolkit Section Styles */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.toolkit-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 35px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(15, 92, 250, 0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.6s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.toolkit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 92, 250, 0.15);
}



.toolkit-item:nth-child(1) { animation-delay: 2s; }
.toolkit-item:nth-child(2) { animation-delay: 2.2s; }
.toolkit-item:nth-child(3) { animation-delay: 2.4s; }
.toolkit-item:nth-child(4) { animation-delay: 2.6s; }
.toolkit-item:nth-child(5) { animation-delay: 2.8s; }
.toolkit-item:nth-child(6) { animation-delay: 3.0s; }
.toolkit-item:nth-child(7) { animation-delay: 3.2s; }
.toolkit-item:nth-child(8) { animation-delay: 3.4s; }
.toolkit-item:nth-child(9) { animation-delay: 3.6s; }

/* Geçici olarak gizlenen elementler */
.primary-button-outline[href="/about"] {
  display: none !important;
}

.review-bottom-wrapp {
  display: none !important;
}

.review-top-wrapp {
  display: none !important;
}

.primary-button-outline[href="/candidates"] {
  display: none !important;
}

.about-5-partners-grid {
  display: none !important;
}

/* Partner logos section'ı tamamen gizle */
.section:has(.about-5-partners-grid) {
  display: none !important;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toolkit-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), #0d4fd8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 38px;
  box-shadow: 0 8px 20px rgba(15, 92, 250, 0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toolkit-item:hover .toolkit-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(15, 92, 250, 0.35);
}

.toolkit-item h3 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  transition: color 0.3s ease;
}

.toolkit-item:hover h3 {
  color: var(--primary);
}

.toolkit-item p {
  color: var(--paragraph-gray);
  line-height: 1.75;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.section-header.text-center {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header.text-center::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #0d4fd8);
  border-radius: 2px;
  opacity: 0.8;
}

.mb-5 {
  margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
  .toolkit-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .toolkit-item {
    padding: 35px 30px;
  }
  
  .toolkit-icon {
    width: 85px;
    height: 85px;
    font-size: 32px;
    margin-bottom: 25px;
  }
  
  .toolkit-item h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .toolkit-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  .toolkit-item {
    padding: 30px 25px;
  }
  
  .toolkit-icon {
    width: 80px;
    height: 80px;
    font-size: 30px;
    margin-bottom: 22px;
  }
  
  .toolkit-item h3 {
    font-size: 21px;
    margin-bottom: 16px;
  }
  
  .toolkit-item p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Language Selector Styles */
.language-selector-wrapper {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.language-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-selector .current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  justify-content: center;
}

.language-selector .current-lang:hover {
  background: rgba(255, 255, 255, 0.2);
}

.language-selector .lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 8px;
}

.language-selector.open .lang-dropdown {
  display: block;
}

.language-selector .lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-radius: 12px;
  justify-content: flex-start;
  cursor: pointer;
}

.language-selector .lang-option:hover {
  background: rgba(15, 92, 250, 0.08);
}

.emoji-flag {
  font-size: 20px;
}

.lang-text {
  font-size: 14px;
  font-weight: 500;
}

.language-selector .fa-chevron-down {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.language-selector.open .fa-chevron-down {
  transform: rotate(180deg);
}

/* Candidate Video Styles */
.candidate-video {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.candidate-video video {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .candidate-video video {
    max-width: 300px;
  }
}

/* Responsive */
@media screen and (max-width: 767px) {
  .language-selector {
    margin-left: 10px;
  }
  
  .language-selector .current-lang {
    min-width: 100px;
    padding: 6px 12px;
  }
  
  .language-selector .lang-dropdown {
    min-width: 120px;
  }
}

/* Blog Cards Styles */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(15, 92, 250, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-description {
  color: var(--paragraph-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #888;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card-date {
  font-weight: 600;
  color: rgba(15, 92, 250, 0.8);
  background: linear-gradient(135deg, rgba(15, 92, 250, 0.1) 0%, rgba(15, 92, 250, 0.05) 100%);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.blog-card-read-time {
  background: rgba(15, 92, 250, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Responsive Blog Cards */
@media screen and (max-width: 991px) {
  .blog-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-card-image {
    height: 180px;
  }
  
  .blog-card-content {
    padding: 18px;
  }
  
  .blog-card-title {
    font-size: 17px;
  }
  
  .blog-card-description {
    font-size: 14px;
  }
}

.primary-search-button.full-width-button {
  position: static;
  width: 200px;
  margin: 15px auto 0;
  border-radius: 58px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}

.primary-search-button.full-width-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-search-button.full-width-button .search-button-text {
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.primary-search-button.full-width-button .text-icon {
  position: static;
  margin-left: 8px;
  width: 12px;
  height: 12px;
}

/* Footer brand-name styles */
.footer-brand-main .brand-name {
  margin-left: 15px;
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  padding: 5px 0;
  overflow: visible;
}

/* Contact Form Styles */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.banner-search-input.footer-style {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.banner-search-input.footer-style:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(25, 70, 218, 0.3);
}

.banner-search-input.footer-style::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.banner-search-input.footer-style[type="email"],
.banner-search-input.footer-style[type="tel"] {
  height: 50px;
}

.banner-search-input.footer-style[type="textarea"],
textarea.banner-search-input.footer-style {
  min-height: 120px;
  resize: vertical;
  padding-top: 15px;
}

.primary-search-button.absolute-main-footer {
  position: static;
  width: 100%;
  max-width: 200px;
  margin: 10px 0 0 0;
  border-radius: 12px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #1e40af);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(25, 70, 218, 0.3);
}

.primary-search-button.absolute-main-footer:hover {
  background: linear-gradient(135deg, #1e40af, var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 70, 218, 0.4);
}

.primary-search-button.absolute-main-footer .search-button-text {
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.primary-search-button.absolute-main-footer i {
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .footer-brand-main .brand-name {
    font-size: 42px;
  }
  
  .footer-wrapper-main {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .right-footer-block {
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .left-form-block {
    max-width: 100%;
  }
  
  .primary-search-button.absolute-main-footer {
    margin: 15px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-brand-main .brand-name {
    font-size: 36px;
  }
  
  .footer-brand-wrapper-main {
    text-align: center;
    align-items: center;
  }
  
  .footer-logo-wrapper-main {
    align-items: center;
    text-align: center;
  }
  
  .footer-brand-description-main {
    text-align: center;
  }
  
  .footer-social-icons-wrapper-main {
    justify-content: center;
  }
  
  .footer-social-icon-main {
    width: 36px;
    height: 36px;
  }
  
  .footer-social-icon-main i {
    font-size: 16px;
  }
  
  .footer-links-wrapper-main {
    justify-content: center;
  }
  
  .banner-search-input.footer-style {
    padding: 12px 16px;
    font-size: 15px;
  }
  
  .primary-search-button.absolute-main-footer {
    max-width: 180px;
    height: 45px;
  }
}

@media screen and (max-width: 479px) {
  .footer-brand-main .brand-name {
    font-size: 32px;
    margin-left: 10px;
  }
  
  .footer {
    padding-top: 160px;
    padding-bottom: 80px;
  }
  
  .footer-wrapper-main {
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  
  .banner-search-input.footer-style {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .primary-search-button.absolute-main-footer {
    max-width: 160px;
    height: 42px;
  }
  
  .primary-search-button.absolute-main-footer .search-button-text {
    font-size: 14px;
  }
  
  .footer-social-icon-main {
    width: 32px;
    height: 32px;
  }
  
  .footer-social-icon-main i {
    font-size: 14px;
  }
}

/* Header ve Footer logolarını gizle - hangi logo olursa olsun
.brand img {
  display: none !important;
}
  

/* Header yüksekliğini koru */
.brand {
  min-height: 80px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 15px;
}
/*
.footer-brand-main img,
.footer-img {
  display: none !important;
}
  */

/* 🎭 CABBAR LANDING PAGE STYLES */
.cabbar-landing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabbar-landing-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cabbar-landing-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  max-width: 380px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  animation: cabbarLandingSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: auto;
}

.cabbar-landing-character {
  width: 90px;
  height: 90px;
  border-radius: 0 !important;
  object-fit: contain !important;
  box-shadow: none !important;
  animation: cabbarBounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

.cabbar-landing-speech {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  flex: 1;
  border: 1px solid rgba(99, 102, 241, 0.1);
  animation: speechBubblePop 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.cabbar-landing-speech::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: 25px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid white;
  filter: drop-shadow(-2px 0 4px rgba(0, 0, 0, 0.1));
}

.cabbar-speech-title {
  color: #4f46e5;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cabbar-speech-message {
  color: #374151;
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.cabbar-speech-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cabbar-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.cabbar-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cabbar-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.cabbar-btn-secondary {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
  border: 1px solid rgba(107, 114, 128, 0.2);
}

.cabbar-btn-secondary:hover {
  background: rgba(107, 114, 128, 0.15);
  color: #374151;
  border-color: rgba(107, 114, 128, 0.3);
}

.cabbar-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background: rgba(107, 114, 128, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.cabbar-close-btn:hover {
  opacity: 1;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.cabbar-close-btn i {
  font-size: 10px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .cabbar-landing-container {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cabbar-landing-character {
    width: 70px;
    height: 70px;
  }
  
  .cabbar-landing-speech {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
  }
  
  .cabbar-landing-speech::before {
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-width: 12px 12px 0 12px;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  .cabbar-speech-buttons {
    flex-direction: column;
  }
  
  .cabbar-btn {
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .cabbar-landing-container {
    bottom: 15px;
    right: 15px;
    left: 15px;
  }
  
  .cabbar-landing-character {
    width: 60px;
    height: 60px;
  }
  
  .cabbar-landing-speech {
    padding: 14px;
  }
  
  .cabbar-speech-title {
    font-size: 1rem;
  }
  
  .cabbar-speech-message {
    font-size: 0.9rem;
  }
}

/* 🎨 Animations */
@keyframes cabbarLandingSlideIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cabbarBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes speechBubblePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

