:root {
  --colorBlack:#454545;
  --colorDark:#262626;
  --colorRed: #E3294A;
  --colorGray:#696969;
  --colorLight:#919191;
  --colorExtraLight:#F6F6F6;
  --backgroundColor:white;
  --fontFamily: "Bliss 2", sans-serif;
  --fontInter: "Inter", sans-serif;
  --logoWidth:192px;
  --bannerHeight:790px;
  --bannerHeaderFontSize:67px;
  --bannerBackgroundImage: url(../img/bannergray.png);
  --mainNavHeight:88px;
  --managerWidth: 332px;
  --managerImgWidth: 232px;
  --newsBannerContentPosition:absolute;
  --newsBannerContentPositionWidth:calc(100% - 218px);
  --newsBannerFontColor:white;
  --gptwFontSize:38px;
  --navLinkPadding:16px;
  --aboutUsFontSize:1.74vw;
  --backToTopPosition:80px;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1120px;
  }
}
@media (min-width: 1440px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1280px;
  }
}
@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1440px;
  }
}
@media (min-width: 1760px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px;
  }
}
@media (min-width: 1900px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1760px;
  }
}
.main-nav {
  background-color: var(--backgroundColor);
  height: var(--mainNavHeight);
}
.main-nav .container {
  z-index: 2;
}
.main-nav .navbar-brand img {
  width: var(--logoWidth);
}
.main-nav .nav-link {
  font-weight: 500;
  font-size: 21px;
  line-height: 110%;
  color: var(--colorLight);
  padding-left: var(--navLinkPadding);
  padding-right: var(--navLinkPadding);
  cursor: pointer;
}
.main-nav .nav-link.active {
  color: var(--colorDark);
}
.main-nav .navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.white-bg {
  background-color: white;
}

.black-bg {
  background-color: var(--colorBlack);
}

.dark-bg {
  background-color: var(--colorDark);
}

.red-bg {
  background-color: var(--colorRed);
}

.light-bg {
  background-color: var(--colorLight);
}

.extra-light-bg {
  background-color: var(--colorExtraLight);
}

.white-color {
  color: white;
}

.black-color {
  color: var(--colorBlack);
}

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

.red-color {
  color: var(--colorRed);
}

.light-color {
  color: var(--colorLight);
}

.extra-light-color {
  color: var(--colorExtraLight);
}

.p-40 {
  padding: 40px;
}

h2 {
  font-family: var(--fontInter);
  font-weight: 400;
  font-size: 26px;
  line-height: 110%;
  text-align: center;
}

.banner {
  height: var(--bannerHeight);
  background: var(--bannerBackgroundImage);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.banner h1 {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: var(--bannerHeaderFontSize);
  line-height: 120%;
  text-align: center;
  color: var(--colorDark);
}
.banner h1 span {
  font-weight: 900;
}
.banner a {
  margin-top: 40px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--colorRed);
  text-decoration: none;
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 21px;
  line-height: 110%;
  text-align: center;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  color: white;
}

body {
  background-color: var(--backgroundColor);
  font-family: var(--fontFamily);
  font-size: 18px;
  line-height: 24.5px;
  font-weight: 300;
}

section {
  margin-bottom: 80px;
}

.products h2 {
  padding-top: 40px;
}
.products p {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 40px;
}
.products .container {
  padding-left: 20px;
  padding-right: 20px;
}
.products .col-lg-4 {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}
.products .product {
  height: 372px;
  position: relative;
  display: block;
}
.products .product .product-img {
  height: 104px;
  width: 100%;
  position: absolute;
  top: 48px;
  left: 24px;
}
.products .product .product-img img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  width: auto;
}
.products .product h3 {
  position: absolute;
  top: 176px;
  left: 24px;
}
.products .product span {
  position: absolute;
  bottom: 49px;
  left: 24px;
  text-decoration: underline;
}
.products .product:hover .product-img img {
  filter: none;
}

.services h2 {
  padding-top: 40px;
}
.services p {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 80px;
}
.services .container {
  padding-left: 24px;
  padding-right: 24px;
}
.services .service {
  height: 100%;
  min-height: 405px;
}
.services .service .service-img {
  padding-top: 104px;
  padding-left: 40px;
}
.services .service h3 {
  margin-top: 24px;
  padding-left: 40px;
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
}
.services .service p {
  margin-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 18px;
  line-height: 24.5px;
  margin-bottom: 0;
}

.references h2 {
  padding-top: 40px;
}
.references p {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 80px;
}
.references .container.reference {
  padding-left: 101px;
  padding-right: 101px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.references [class*=col-lg-] {
  margin-bottom: 88px;
}
.references .row:last-child [class*=col-lg-] {
  margin-bottom: 0;
}
.references img {
  width: 100%;
}

.gptw h2 {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: var(--gptwFontSize);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.gptw img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 182px;
}

.contact p {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 80px;
}
.contact .social-media-icons {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-us .container {
  padding: 40px;
}
.about-us .col-lg {
  padding-left: 32px;
  padding-right: 32px;
}
.about-us p {
  font-weight: 700;
  font-size: var(--aboutUsFontSize);
  line-height: 110%;
}

.policies h2 {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 24px;
}
.policies .vision {
  margin-bottom: 86px;
}

.management .container {
  padding: 40px 0;
}
.management img {
  max-width: var(--managerImgWidth);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.management .manager {
  width: 100%;
  max-width: var(--managerWidth);
}
.management .col-xl:hover img {
  filter: none;
}
.management h2 {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 40px;
}
.management h3 {
  font-weight: 700;
  font-size: 21px;
  line-height: 110%;
  margin-top: 16px;
}
.management h4 {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 18px;
  line-height: 24.5px;
  margin-bottom: 4px;
}
.management p {
  word-break: break-word;
}

.news .news-banner {
  position: relative;
}
.news .news-banner .swiper-slide img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.news .news-banner .swiper-slide:hover img {
  filter: none;
}
.news .news-banner .swiper-slide .overlay {
  background: linear-gradient(0deg, #1F1F1F 0%, rgba(133, 133, 133, 0.4) 79.5%, rgba(133, 133, 133, 0) 100%);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news .news-banner .news-banner-slide-content {
  position: var(--newsBannerContentPosition);
  bottom: 40px;
  left: 40px;
  width: var(--newsBannerContentPositionWidth);
}
.news .news-banner .news-banner-slide-content h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  color: var(--newsBannerFontColor);
  margin-top: 8px;
  margin-bottom: 24px;
}
.news .news-banner .news-banner-slide-content .news-banner-slide-date {
  font-weight: 400;
  font-size: 13px;
  line-height: 110%;
  color: var(--newsBannerFontColor);
  margin-bottom: 8px;
}
.news .news-banner .news-banner-slide-content p {
  color: var(--newsBannerFontColor);
  margin-bottom: 0;
}
.news .news-banner .swiper-button-next:after, .news .news-banner .swiper-button-prev:after {
  content: "";
  width: 19px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 19px 32px;
  background-position: center;
}
.news .news-banner .swiper-button-next, .news .news-banner .swiper-button-prev {
  width: 19px;
  height: 32px;
  bottom: 40px;
  top: auto;
}
.news .news-banner .swiper-pagination-fraction {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 18px;
  line-height: 24.5px;
  text-align: center;
  width: 60px;
  height: 32px;
  right: 59px;
  left: auto;
  bottom: 40px;
  color: white;
}
.news .news-banner .swiper-button-next:after {
  background-image: url(../img/icon-right.png);
}
.news .news-banner .swiper-button-prev:after {
  background-image: url(../img/icon-left.png);
}
.news .news-banner .swiper-button-next {
  right: 40px;
}
.news .news-banner .swiper-button-prev {
  right: 119px;
  left: auto;
}
.news .news-banner .swiper-pagination {
  height: 30px;
}
.news .news-banner .swiper-pagination-bullet {
  background: white;
  width: 4px;
  height: 4px;
  opacity: 0.48;
  margin: 0 2px;
}
.news .news-banner .swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
}
.news .news-detail-banner {
  position: relative;
}
.news .news-detail-banner .swiper-slide .overlay {
  background: linear-gradient(0deg, #1F1F1F 0%, rgba(133, 133, 133, 0.4) 79.5%, rgba(133, 133, 133, 0) 100%);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news .news-detail-banner .swiper-button-next:after, .news .news-detail-banner .swiper-button-prev:after {
  content: "";
  width: 19px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 19px 32px;
  background-position: center;
}
.news .news-detail-banner .swiper-button-next, .news .news-detail-banner .swiper-button-prev {
  width: 19px;
  height: 32px;
  bottom: 40px;
  top: auto;
}
.news .news-detail-banner .swiper-pagination-fraction {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 18px;
  line-height: 24.5px;
  text-align: center;
  width: 60px;
  height: 32px;
  right: 59px;
  left: auto;
  bottom: 40px;
  color: white;
}
.news .news-detail-banner .swiper-button-next:after {
  background-image: url(../img/icon-right.png);
}
.news .news-detail-banner .swiper-button-prev:after {
  background-image: url(../img/icon-left.png);
}
.news .news-detail-banner .swiper-button-next {
  right: 40px;
}
.news .news-detail-banner .swiper-button-prev {
  right: 119px;
  left: auto;
}
.news .news-detail-banner .swiper-pagination {
  height: 30px;
}
.news .news-detail-banner .swiper-pagination-bullet {
  background: white;
  width: 4px;
  height: 4px;
  opacity: 0.48;
  margin: 0 2px;
}
.news .news-detail-banner .swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
}

.news-cards p {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 80px;
}
.news-cards .card {
  border: none;
  border-radius: 0;
  margin-bottom: 24px;
}
.news-cards .card-img, .news-cards .card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.news-cards .card-img, .news-cards .card-img-top:hover {
    filter: none;
    cursor:pointer;
}
.news-cards .card-body {
  padding: 16px 24px;
}
.news-cards .card-date {
  font-weight: 400;
  font-size: 13px;
  line-height: 110%;
  font-style: italic;
}
.news-cards .card-link {
  font-weight: 700;
  font-size: 21px;
  line-height: 110%;
  text-decoration: none;
}
.news-cards .all-news {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  text-align: center;
  text-decoration: none;
}
.news-cards .news-link:hover img {
  filter: none;
}

.news-detail h3 {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-top: 40px;
  margin-bottom: 16px;
}
.news-detail h4 {
  font-weight: 400;
  font-style: Italic;
  font-size: 15px;
  line-height: 110%;
  margin-bottom: 16px;
}
.news-detail p {
  word-break: break-word;
  margin-bottom: 0;
}

.discover .culture p {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 40px;
}
.discover .culture .p-40 {
  padding: 40px;
  font-size: 18px;
  line-height: 24.5px;
  font-weight: 400;
  margin-bottom: 0;
}

.social-life h2 {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 40px;
}
.social-life p {
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 40px;
}

.collage img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.collage:hover img {
  filter: none;
}

.working-life h2 {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 40px;
}
.working-life .work {
  padding: 40px;
  height: 100%;
}
.working-life .work img {
  margin-bottom: 16px;
}
.working-life .work h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  margin-bottom: 16px;
}
.working-life .work P {
  margin-bottom: 0;
}

.career h2 {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 40px;
}
.career img {
  width: 100%;
  max-width: 662px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.openPositions .container {
  padding: 40px;
}
.openPositions h2 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 38px;
  line-height: 110%;
  margin-bottom: 40px;
}
.openPositions .nav-pills .nav-link {
  color: var(--colorLight);
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  padding-top: 32px;
  padding-bottom: 30px;
}
.openPositions .nav-pills .nav-link.active, .openPositions .nav-pills .show > .nav-link {
  background: none;
  color: var(--colorRed);
}
.openPositions .tab-pane {
  font-weight: 400;
  font-style: Italic;
  font-size: 21px;
  line-height: 25px;
  color: var(--colorLight);
}
.openPositions .apply-btn {
  display: block;
  margin-top: 24px;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 110%;
  text-decoration: none;
  padding: 16px 55px;
  background-color: var(--colorRed);
  color: white;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.backToTop {
  display: block;
  position: fixed;
  right: var(--backToTopPosition);
  bottom: var(--backToTopPosition);
}

@media screen and (max-width: 991px) {
    :root {
        --logoWidth: 192px;
        --bannerHeight: 610px;
        --bannerHeaderFontSize: 32px;
        --bannerBackgroundImage: url(../img/bannergray.png);
        --mainNavHeight: 88px;
        --newsBannerContentPosition: static;
        --newsBannerFontColor: var(--colorBlack);
        --newsBannerContentPositionWidth: 100%;
        --gptwFontSize: 20;
        --navLinkPadding: 0px;
        --aboutUsFontSize: 21px;
        --backToTopPosition: 40px;
    }
}
@media screen and (max-width: 1199px) {
  :root {
    --managerWidth: fit-content;
  }
}/*# sourceMappingURL=style.css.map */