@charset "utf-8";
/*
 * File       : main.css
 * Author     : FASTWEB
 * Guideline  : FWstyle.3.0.1
 *
 * Dependency : css/reset.css
 * Dependency : css/global.css
 *
 * SUMMARY:
 * 00) Hero []
 * 01) Service []
 * 02) Partner []
 * 03) outsourcing []
 */

/* *****************************************
 * 00) Hero
 * *****************************************/
.hero {
  background-color: var(--color-white-100);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 11px;
  height: 1080px;
  display: flex;
  align-items: center;
}

.hero__title {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 60px;
  margin-top: 36px;
}

.hero__description {
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

/* *****************************************
 * 01) Service
 * *****************************************/
.service {
  padding: 201px 11px 154px 11px;
  margin: 0;
  background-color: #2a2a2a;
}
.service__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 26px;
}

.service__box {
  border-radius: 20px;
  overflow: hidden;
  width: 250px;
  height: 350px;
  position: relative;
}

.service__box:hover {
  cursor: pointer;
}

.service__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.service__box:hover img {
  transform: scale(1.05);
}
.service__box:hover .animation_img {
  transform: none !important;
}

.service__title-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service__title {
  font-size: 42px;
  line-height: 1.3;
  color: #fff;
  font-weight: 900;
}

.service__btn {
  transition: 0.3s;
  padding: 11px 21px 12px 20px;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  line-height: 1;
}

.service__btn:hover {
  transition: 0.3s;
  cursor: pointer;
  background-color: #fff;
  color: #000;
}

.service .sec_row {
  margin-top: 29px;
}

.gradient_bg::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 66%, #000);
  opacity: 1;
}

.service_box .animation_img {
  height: 200%;
  transform: translateY(-18%);
}

.service__item-title {
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: 31px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  line-height: 1;
}

/* *****************************************
 * 02) Partner
 * *****************************************/
.partner {
  padding: 14px 11px 10px 11px;
  margin: 0;
}

.partner__title-inner {
  display: inline-block;
  height: inherit;
  position: relative;
  z-index: 99;
  background-color: var(--color-white);
}

.partner__title-wrap {
  border-right: 1px solid #ccc;
  padding-right: 43px;
  height: inherit;
  display: flex;
  align-items: center;
}

.partner__title {
  font-size: 26px;
  line-height: 1.3;
  color: var(--color-black);
  font-weight: var(--font-weight-700);
}

.partner__scroll-wrap {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.partner__scroll-element {
  width: inherit;
  height: inherit;
  position: absolute;
  left: 0%;
  top: 0%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  animation: primary 3s linear infinite;
}

.partner__scroll-element img {
  width: 100%;
  max-width: 120px;
}
.primary {
  animation: primary 8s linear infinite;
}
.secondary {
  animation: secondary 8s linear infinite;
}

@keyframes primary {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}

@keyframes secondary {
  from {
    left: 100%;
  }
  to {
    left: 0%;
  }
}

/* *****************************************
 * 03) outsourcing
 * *****************************************/
.outsourcing {
  padding: 122px 11px 128px 11px;
  margin: 0;
  background-color: #1f1f1f;
}

/* .outsourcing .itme {
  width: 340px;
  height: 440px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
} */

.outsourcing_box_wrap {
  padding: 15px;
}

.outsourcing_box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 40px 40px 70px 20px rgba(0, 0, 0, 0.6);
}

.mg30 {
  margin-top: 22px;
}

/* .outsourcing_box.first {
  width: 290px;
  height: 500px;
  z-index: -1;
}

.outsourcing_box.sec {
  width: 290px;
  height: 375px;
  z-index: -1;
} */

.outsourcing_box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outsourcing__title {
  width: 100%;
  height: 100%;
  font-weight: var(--font-weight-900);
  margin-bottom: 108px;
  font-size: 42px;
  line-height: 1.3;
  color: var(--color-white);
}

/* .outsourcing .content {
  padding-top: 19px;
  z-index: 3;
} */

.outsourcing .sub_title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 26px;
  line-height: 1;
}

.outsourcing .sub_description {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

/* .outsourcing .slider{transform: translate3d(3vw, 0px, 0px);} */
/* .outsourcing .swiper-slide {
  width: 600px;
  height: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.outsourcing .swiper {
  margin-top: -74px;
  padding-bottom: 100px;
  width: 100%;
  height: 100%;
}

.outsourcing .swiper-slide {
  transform: translate3d(-13.2vw, 0px, 0px);
  margin-right: 76px;
}

.swiper-pagination {
  position: relative;
} */

.download_box {
  width: 290px;
  height: 238px;
  border: 1px solid #fff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
  color: #fff;
  background: #1f1f1f;
  flex-direction: column;
  box-shadow: 40px 40px 70px 20px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  cursor: pointer;
}
.download_box:hover {
  background-color: #000;
  transition: 0.3s;
  cursor: pointer;
}
.download_box .ico {
  margin-bottom: 20px;
}
.download_box.first {
  margin-bottom: 25px;
}

/* swiper */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
