@font-face {
  font-family: "TCCCUnity-head-light";
  src: url("../ttf/tccc-unity-head-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TCCCUnity-head-regular";
  src: url("../ttf/tccc-unity-head-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TCCCUnity-head-medium";
  src: url("../ttf/tccc-unity-head-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TCCCUnity-head-bold";
  src: url("../ttf/tccc-unity-head-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TCCCUnity-head-black";
  src: url("../ttf/tccc-unity-head-black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --container-width: 1440px;
  --black: #000000;
  --white: #ffffff;
  --fuscousGray-800: #030303;
  --red-300: #f40009;
  --trinidad-300: #e74402;
  --fruitSalad-300: #379047;
}

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

body {
  font-family: "TCCCUnity-head-regular", sans-serif;
  font-size: 18px;
  color: var(--black);
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-orange {
  color: var(--trinidad-300);
}
.text-green {
  color: var(--fruitSalad-300);
}
.primary-btn,
.secondary-btn {
  background: var(--black);
  font-family: "TCCCUnity-head-medium";
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
  text-decoration: none;
  padding: 24px 48px;
  display: inline-flex;
  text-align: center;
  border-radius: 50px;
  max-width: 360px;
}
.secondary-btn {
  background: none;
  border: solid 1px var(--black);
  color: var(--black);
}
.primary-btn-white {
  background: var(--white);
  color: var(--black);
}
.container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.section__heading {
  font-family: "TCCCUnity-head-bold";
  font-size: 32px;
  line-height: 120%;
  color: var(--black);
}
.section__big-heading {
  max-width: 400px;
  margin: 0 auto;
}
.section__big-heading__text {
  font-family: "TCCCUnity-head-bold";
  font-size: 64px;
  line-height: 100%;
  color: var(--black);
}
.section__big-heading__text span {
  display: block;
}

/* Herobanner start */
.heroBanner {
  padding: 90px 0 46px;
  overflow: hidden;
}
.heroBanner__slider {
  max-width: 632px;
  margin: 0 auto;
  padding: 0 4px;
}
.heroBanner__slide {
  position: relative;
  margin: 0 12px;
}
.heroBanner__slide img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.heroBanner__content {
  position: absolute;
  bottom: 22px;
  left: 16px;
  right: 16px;
  z-index: 1;
}
.heroBanner__slide.whiteText {
  color: var(--white);
}
.heroBanner__heading {
  font-family: "TCCCUnity-head-bold";
  font-size: 32px;
  line-height: 120%;
}
.heroBanner__heading:not(:last-child) {
  margin-bottom: 8px;
}
.heroBanner__desc {
  font-family: "TCCCUnity-head-regular";
  font-size: 14px;
  line-height: 120%;
}
.heroBanner__desc:not(:last-child) {
  margin-bottom: 10px;
}
.heroBanner__slider .slick-list {
  border-radius: 24px;
}
.heroBanner__slider .slick-prev,
.heroBanner__slider .slick-next {
  display: none;
}
.heroBanner__slider .slick-dots li button:before {
  font-size: 12px;
}
/* Herobanner starts here */

/* Two Col Cards starts here */
.two-col-cards__container {
  padding: 60px 16px;
  max-width: 632px;
  margin: 0 auto;
}
.two-col-cards__heading:not(:last-child) {
  margin-bottom: 32px;
}
.two-col-cards__row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.two-col-cards__image img {
  border-radius: 16px;
  width: 100%;
  min-height: 267px;
  display: block;
}
.two-col-cards__image video {
  display: none;
}
.two-col-cards__content {
  padding: 16px 8px;
}
.two-col-cards__content--title {
  font-family: "TCCCUnity-head-bold";
  font-size: 24px;
  line-height: 120%;
  color: var(--black);
}
.two-col-cards__content--title:not(:last-child) {
  margin-bottom: 12px;
}
.two-col-cards__content--desc {
  font-family: "TCCCUnity-head-regular";
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.two-col-cards__content--arrow {
  display: none;
}
/* Two Col Cards ends here */

/* News Cards starts here */
.news-cards {
  padding: 40px 0;
}
.news-cards__heading {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}
.news-cards__heading:not(:last-child) {
  margin-bottom: 22px;
}
.news-cards__slider {
  padding-left: 16px;
}
.news-cards__card {
  width: 100%;
  max-width: 269px;
  margin-right: 16px;
}
.news-cards__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.news-cards__image video {
  display: none;
}
.news-cards__content {
  padding: 24px 8px;
}
.news-cards__content--header:not(:last-child) {
  margin-bottom: 8px;
}
.news-cards__content--header .news-cards__time {
  display: none;
}
.news-cards__category {
  font-family: "TCCCUnity-head-bold";
  font-size: 16px;
  line-height: 100%;
}
.news-cards__time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "TCCCUnity-head-light";
  font-size: 14px;
  line-height: 100%;
  color: var(--black);
}
.news-cards__time img {
  width: 100%;
  max-width: 20px;
  padding: 3px;
}
.news-cards__content--heading {
  font-family: "TCCCUnity-head-bold";
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
}
.news-cards__content--heading:not(:last-child) {
  margin-bottom: 12px;
}
.news-cards__content--desc {
  font-family: "TCCCUnity-head-regular";
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-cards__content--desc + .news-cards__time {
  margin-top: 12px;
}
.news-cards__link {
  padding: 0 16px;
  display: flex;
  justify-content: center;
}
.news-cards__link .secondary-btn {
  display: block;
  width: 100%;
}
/* News Cards ends here */

/* Careers collection starts here */
.careers .container {
  padding: 0 16px;
}
.careers__heading {
  padding: 270px 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.careers__cards {
  position: relative;
  z-index: 2;
}
.one-col-cards {
  max-width: 600px;
  padding: 70px 0;
  margin: 0 auto;
}
.one-col-cards__card:not(:last-child) {
  margin-bottom: 64px;
}
.one-col-cards__card--image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.one-col-cards__card--image img {
  width: 100%;
  display: block;
}
.one-col-cards__card--content {
  padding: 28px 0;
}
.one-col-cards__card--heading {
  font-family: "TCCCUnity-head-bold";
  font-size: 32px;
  line-height: 120%;
  color: var(--black);
}
.one-col-cards__card--heading:not(:last-child) {
  margin-bottom: 8px;
}
.one-col-cards__card--desc {
  font-family: "TCCCUnity-head-regular";
  font-size: 14px;
  line-height: 150%;
  color: var(--black);
}
.one-col-cards__card--desc:not(:last-child) {
  margin-bottom: 32px;
}
.one-col-cards__card--footer {
  display: flex;
  justify-content: center;
}
.one-col-cards__card--link {
  display: block;
  width: 100%;
}
/* Careers collection ends here */

/* The Teamt starts here */
.theTeam {
  padding: 60px 0;
}
.theTeam__heading:not(:last-child) {
  margin-bottom: 24px;
}
.theTeam__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: flex-start;
}

.theTeam__logos--image {
  flex: 0 0 calc((100% - 32px) / 3);
  display: flex;
  justify-content: center;
}

/* Center the last image if it's alone in the last row (10th image) */
.theTeam__logos--image:nth-child(10) {
  margin-left: auto;
  margin-right: auto;
}

.theTeam__logos--image a {
  padding: 16px;
  display: block;
  width: 100%;
  align-content: center;
}

.theTeam__logos--image img {
  display: block;
  width: 100%;
}
.theTeam__logos--link {
  display: flex;
  justify-content: center;
}
/* The Teamt ends here */

/* Top Gradient starts here */
.gredientBG {
  position: relative;
}
.gredientBG-video-player {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: -1;
}
/* Top Gradient ends here */
@media (width >= 767px){
  .theTeam__logos--image a {
    width: 195px;
  }
}
/* Responsive starts here */
@media (width >= 1200px) {
  /* Buttons starts here */
  .primary-btn,
  .secondary-btn {
    position: relative;
    background: none;
    border: none;
  }
  .primary-btn::before,
  .secondary-btn::before {
    content: "";
    background: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    display: block;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }
  .primary-btn-white::before {
    background: var(--white);
  }
  .secondary-btn::before {
    background: none;
    border: solid 1px var(--black);
  }
  .primary-btn:hover::before,
  .secondary-btn:hover::before {
    transform: scale(1.1);
  }
  /* Buttons ends here */
  .section__heading {
    font-size: 48px;
  }
  .section__big-heading {
    max-width: 980px;
  }
  .section__big-heading__text {
    font-size: 160px;
  }

  /* Herobanner starts here */
  .heroBanner {
    padding: 130px 0 100px;
  }
  .heroBanner__slider {
    max-width: inherit;
    padding: 0 28px;
  }
  .heroBanner__content {
    top: 50%;
    right: 48px;
    left: inherit;
    bottom: inherit;
    transform: translateY(-50%);
    max-width: 576px;
  }
  .heroBanner__heading {
    font-size: 60px;
    line-height: 110%;
    letter-spacing: -2px;
  }
  .shareacoke {
    left: 50%;
    margin: 0 30px;
  }
  .heroBanner__heading:not(:last-child) {
    margin-bottom: 24px;
  }
  .heroBanner__desc {
    font-size: 24px;
    line-height: 120%;
  }
  .heroBanner__slide.top-right-text .heroBanner__content {
    top: 93px;
    right: 58px;
    transform: none;
    max-width: 560px;
  }
  .heroBanner__slide.left-text .heroBanner__content {
    right: inherit;
    left: 40px;
  }
  .heroBanner__slide.top-right-text .heroBanner__desc {
    font-size: 18px;
  }
  .heroBanner__slide.top-right-text .heroBanner__desc:not(:last-child) {
    margin-bottom: 24px;
  }
  .heroBanner__desc:not(:last-child) {
    margin-bottom: 40px;
  }
  .heroBanner__slide.local-text .heroBanner__content{
    max-width: 565px;
  }
  .heroBanner__slide.local-text .heroBanner__desc{
    font-size: 18px;
  }
  .heroBanner__slider .slick-prev,
  .heroBanner__slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    border: solid 1px #6f6f6f;
    outline: none;
    background: #000;
    border-radius: 50%;
    z-index: 1;
    right: 56px;
    left: inherit;
    top: inherit;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .heroBanner__slider .slick-prev {
    bottom: 16px;
  }
  .heroBanner__slider .slick-next {
    bottom: 72px;
  }
  .heroBanner__slider .slick-prev:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../svg/lefticon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    margin: 19px;
    transition: all 0.3s ease-in-out;
  }
  .heroBanner__slider .slick-next:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../svg/icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    margin: 19px;
    transition: all 0.3s ease-in-out;
  }
  .heroBanner__slider .slick-prev:hover:before,
  .heroBanner__slider .slick-next:hover::before {
    transform: scale(1.7);
  }
  /* Herobanner starts here */

  /* Two Col Cards starts here */
  .two-col-cards__container {
    padding: 40px 40px 110px;
    max-width: inherit;
  }
  .two-col-cards__heading:not(:last-child) {
    margin-bottom: 64px;
  }
  .two-col-cards__row {
    flex-direction: row;
    justify-content: space-between;
  }
  .two-col-cards__row--card {
    max-width: 50%;
  }
  .two-col-cards__image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 503px;
    transition: all 0.3s ease-in-out;
  }
  .two-col-cards__image img {
    display: block;
    width: 100%;
    min-height: 503px;
    height: auto;
    transition: all 0.3s ease-in-out;
  }
  .two-col-cards__image video {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .two-col-cards__content {
    padding: 16px 8px 24px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  .two-col-cards__content--col {
    flex: 1;
  }
  .two-col-cards__content--arrow {
    display: block;
    background: var(--black);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .two-col-cards__content--arrow::before {
    content: "";
    background-image: url("../svg/icon.svg");
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
  }
  .two-col-cards__row--card:hover .two-col-cards__image {
    border-radius: 48px;
  }
  .two-col-cards__row--card:hover .two-col-cards__image img {
    transform: scale(1.1);
  }
  .two-col-cards__row--card:hover .two-col-cards__content--arrow::before {
    transform: scale(1.7);
  }
  .two-col-cards__row--card:hover .two-col-cards__image video {
    opacity: 0.5;
  }
  /* Two Col Cards ends here */

  /* News Cards starts here */
  .news-cards {
    padding: 80px 0 56px;
  }
  .news-cards__heading {
    padding: 0 40px;
  }
  .news-cards__heading:not(:last-child) {
    margin-bottom: 40px;
  }
  .news-cards__slider {
    padding-left: 40px;
  }
  .news-cards__card {
    max-width: 443px;
  }
  .news-cards__image {
    position: relative;
    border-radius: 24px;
  }
  .news-cards__image,
  .news-cards__image img {
    transition: all 0.3s ease-in-out;
  }
  .news-cards__image video {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .news-cards__card:hover .news-cards__image {
    border-radius: 48px;
  }
  .news-cards__card:hover .news-cards__image img {
    transform: scale(1.1);
  }
  .news-cards__card:hover .news-cards__image video {
    opacity: 0.5;
  }
  .news-cards__content {
    padding: 24px;
  }
  .news-cards__content--header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .news-cards__content--header .news-cards__time {
    display: flex;
  }
  .news-cards__content--heading {
    font-size: 20px;
  }
  .news-cards__content--desc + .news-cards__time {
    display: none;
  }
  .news-cards__slider .slick-prev,
  .news-cards__slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: -94px;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    color: white;
    border: none;
    outline: none;
    background: var(--black);
    border-radius: 30px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .news-cards__slider .slick-prev:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../svg/lefticon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .news-cards__slider .slick-next:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../svg/icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .news-cards__slider .slick-prev {
    right: 100px;
    left: inherit;
  }
  .news-cards__slider .slick-next {
    right: 40px;
  }
  .news-cards__slider .slick-prev:hover::before,
  .news-cards__slider .slick-next:hover::before {
    transform: scale(1.7);
  }
  .news-cards__link {
    display: flex;
    justify-content: center;
    padding: 0 40px;
  }
  /* News Cards ends here */

  /* Careers collection starts here */
  .careers .container {
    padding: 0 40px;
  }
  .careers__heading {
    padding: 176px 0 46px;
  }
  .one-col-cards {
    max-width: 1130px;
    padding: 134px 0;
  }
  .one-col-cards__card {
    display: flex;
    align-items: center;
    margin-left: -8px;
    margin-right: -8px;
  }
  .one-col-cards__card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .one-col-cards__card:not(:last-child) {
    margin-bottom: 56px;
  }
  .one-col-cards__card--imageCol {
    flex: 0 0 50%;
    padding: 0 8px;
  }
  .one-col-cards__card--image {
    border-radius: 24px;
    transition: all 0.3s ease-in-out;
  }
  .one-col-cards__card--image img {
    transition: all 0.3s ease-in-out;
  }
  .one-col-cards__card--image:hover {
    border-radius: 48px;
  }
  .one-col-cards__card--image:hover img {
    transform: scale(1.1);
  }
  .one-col-cards__card--contentCol {
    padding-left: 8px;
    padding-right: 8px;
  }
  .one-col-cards__card--content {
    padding: 32px 32px;
  }
  .one-col-cards__card--heading {
    font-size: 48px;
  }
  .one-col-cards__card--heading:not(:last-child) {
    margin-bottom: 16px;
  }
  .one-col-cards__card--desc {
    font-size: 16px;
  }
  .one-col-cards__card--footer {
    justify-content: flex-start;
  }
  .one-col-cards__card--link {
    width: auto;
  }
  /* Careers collection ends here */

  /* The Teamt starts here */
  .theTeam {
    padding: 80px 0;
  }
  .theTeam .container {
    padding: 0 110px;
  }
  .theTeam__heading:not(:last-child) {
    margin-bottom: 32px;
  }
  .theTeam__logos {
    justify-content: center;
    column-gap: 60px;
    row-gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    overflow-x: inherit;
  }
  .theTeam__logos--image {
    flex: inherit;
  }
  .theTeam__logos--image:nth-child(10) {
    margin-left: 0;
    margin-right: 0;
  }
  .theTeam__logos--image a {
    padding: 24px;
    transition: all 0.3s ease-in-out;
    align-content: center;
  }
  .theTeam__logos--image a:hover {
    transform: scale(1.2);
  }
  /* The Teamt ends here */
}

@media (width >= 1440px) {
  /* News Cards starts here */
  .news-cards__slider {
    padding-left: calc(50% - 680px);
  }
  .news-cards__slider .slick-prev {
    right: calc(50% - 620px);
    left: inherit;
  }
  .news-cards__slider .slick-next {
    right: calc(50% - 680px);
  }

  .two-col-cards__row--card {
    max-width: 620px;
  }
  /* News Cards ends here */
}

@media only screen and (max-width: 1200px) and (orientation: landscape) {
  .careers__heading {
    padding: 8% 0;
  }
}
/* Responsive ends here */