.home-grid-limit {
  width: 95%;
  max-width: 1184px;
  margin: 0 auto;
}

.home-grid {
  display: grid;
  grid-gap: 56px 16px;
  justify-content: center;
}

.home-grid-3 {
  grid-template-columns: repeat(auto-fit, 284px);
}

.home-grid-4 {
  grid-template-columns: repeat(auto-fit, 384px);
}

/*--------------------
    MEDIA QUERIES
--------------------*/
@media screen and (max-width: 479px) {
  .home-grid-4 {
    grid-template-columns: 100%;
  }
}

/*-----------------------------
    ARCHITECTURE ITEM LIST
-----------------------------*/
.architecture-item-list {
  display: flex;
  background-color: #f8f8fb;
  overflow-x: hidden;
}

.architecture-item-list .architecture-item {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 240px;
  position: relative;
}

.architecture-item-list .architecture-item .architecture-image,
.architecture-item-list .architecture-item .architecture-image-hover {
  position: absolute;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}

.architecture-item-list .architecture-item .architecture-image-hover {
  opacity: 0;
  visibility: hidden;
}

.architecture-item-list .architecture-item:hover .architecture-image {
  opacity: 0;
  visibility: hidden;
}

.architecture-item-list .architecture-item:hover .architecture-image-hover {
  opacity: 1;
  visibility: visible;
}

/*--------------
    DEMO BOX
--------------*/
.home-box .home-box-cover {
  height: 180px;
  border-radius: 12px;
  box-shadow: 5px 9px 40px 0 rgba(216, 218, 254, 0.8);
  transition: transform 0.2s ease-in-out;
}

.home-box .home-box-cover:hover {
  transform: translate(0, -6px);
}

.home-box .home-box-title {
  margin-top: 24px;
  color: #3e3f5e;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.home-box .home-box-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home-box .home-box-actions .button {
  width: 80px;
  margin-right: 12px;
}

.home-box .home-box-actions .button:last-child {
  margin-right: 0;
}

/*--------------------
    FEATURE ITEM
--------------------*/
.feature-item {
  padding: 0 24px 0 70px;
  position: relative;
}

.feature-item .feature-item-image {
  position: absolute;
  top: 4px;
  left: 0;
}

.feature-item .feature-item-title {
  font-size: 1.5rem;
}

.feature-item .feature-item-text {
  margin-top: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556em;
}

/*--------------------
    MEDIA QUERIES
--------------------*/
@media screen and (max-width: 1365px) {
  .architecture-item-list {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .feature-item {
    width: 90%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  .feature-item .feature-item-image {
    position: static;
  }
  .feature-item .feature-item-title {
    margin-top: 26px;
  }
}

.banner-wrap {
  background: url("../../bg-gamestudio.png") no-repeat center center;
  background-size: cover;
}

.banner {
  min-height: 960px;
}

.banner .banner-info {
  padding: 216px 0 0 100px;
  position: relative;
}

.banner .banner-info .banner-image {
  position: absolute;
  top: 104px;
  left: -40px;
}

.banner .banner-pretitle,
.banner .banner-title,
.banner .banner-text {
  color: #fff;
}

.banner .banner-pretitle,
.banner .banner-title {
  text-transform: uppercase;
}

.banner .banner-pretitle {
  font-size: 1.5rem;
  font-weight: 500;
}

.banner .banner-title {
  font-family: "Titillium Web", sans-serif;
  font-size: 6.5rem;
  font-weight: 900;
}

.banner .banner-text {
  width: 384px;
  /* margin-top: 40px; */
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333em;
}

.banner .button {
  width: 196px;
  margin-top: 50px;
}

/*--------------------
    MEDIA QUERIES
--------------------*/
@media screen and (max-width: 1365px) {
  .banner-wrap {
    background: url("../../bg-gamestudio.png") no-repeat center center;
    background-size: cover;
  }
  .banner {
    min-height: auto;
  }
  .banner .banner-info {
    width: 480px;
    margin: 0 auto;
    padding: 180px 0 120px 0;
    text-align: center;
  }
  .banner .banner-info .banner-image {
    top: 70px;
    left: 34px;
  }
  .banner .banner-text {
    margin: 36px auto 0;
  }
}

@media screen and (max-width: 680px) {
  .banner .banner-info {
    width: 100%;
    padding-top: 220px;
  }
  .banner .banner-info .banner-image {
    left: 50%;
    margin-left: -78px;
  }
  .banner .banner-title {
    font-size: 3.75rem;
  }
  .banner .banner-text {
    width: 100%;
  }
}

.section {
  padding: 136px 0 74px;
}

.section .section-info {
  width: 584px;
  margin: 0 auto 136px;
  text-align: center;
}

.section .section-pretitle {
  color: #adafca;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.section .section-title {
  margin-top: 16px;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 0.9565217391em;
}

.section .section-text {
  margin-top: 40px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556em;
}

.section .section-image {
  width: 100%;
  height: auto;
}

.section .section-button {
  display: block;
  width: 276px;
  margin: 60px auto 0;
}

.promo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 136px 0 74px;
}

.promo-section.inverted .promo-section-info {
  padding: 0 84px 0 0;
  order: 2;
}

.promo-section.inverted .promo-section-image {
  margin: 0 0 0 -32px;
}

.promo-section .promo-section-info {
  width: 564px;
  padding-left: 84px;
}

.promo-section .promo-section-pretitle {
  color: #adafca;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.promo-section .promo-section-title {
  margin-top: 16px;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 0.9565217391em;
}

.promo-section .promo-section-text {
  margin-top: 40px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556em;
}

.promo-section .promo-section-text + .promo-section-text {
  margin-top: 30px;
}

.promo-section .promo-section-image {
  margin: 0 -32px 0 0;
}

/*--------------------
    MEDIA QUERIES
--------------------*/
@media screen and (max-width: 1365px) {
  .promo-section {
    display: block;
  }
  .promo-section.inverted .promo-section-info {
    padding: 0;
  }
  .promo-section.inverted .promo-section-image {
    margin: 0 auto;
  }
  .promo-section .promo-section-info {
    width: 80%;
    margin: 0 auto 30px;
    padding: 0;
    text-align: center;
  }
  .promo-section .promo-section-image {
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 680px) {
  .section .section-info {
    width: 90%;
  }
  .section .section-title {
    font-size: 2.5rem;
  }
  .promo-section .promo-section-info {
    width: 90%;
  }
  .promo-section .promo-section-title {
    font-size: 2.5rem;
  }
  .promo-section .promo-section-image {
    width: 100%;
    height: auto;
  }
}

.mt-20 {
  margin-top: 20px !important;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* display 3 */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(33.333%);
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33.333%);
  }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  transform: translateX(0);
}

.no-message {
  height: 50px;
  margin: 50% auto;
  font-size: 25px;
  color: #5f6474;
  font-weight: 600;
}

.fill-5f6474 {
  fill: #5f6474 !important;
}

.lh-1-5 p {
  line-height: 1.5 !important;
}

.btn-grid {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.d-none {
  display: none !important;
}

.preview-video {
  position: absolute !important;
  z-index: 1 !important;
  opacity: 0.3 !important;
}

.upload-videos-box .button-upload-videos-box {
  z-index: 999 !important;
}

.popup-video {
  top: 80px !important;
}

video {
  width: 100%;
  height: 500;
  object-fit: cover;
}

.v-hidden {
  visibility: hidden !important;
}

.mt-15px {
  margin-top: 15px !important;
}

.figure > img {
  object-fit: contain !important;
}

.popup-picture .popup-picture-image-wrap .popup-picture-image {
  object-fit: cover !important;
  height: 100% !important;
}

.box-preview-image {
  object-fit: contain !important;
}

.size-12 {
  font-size: 12px !important;
}

.pad-20 {
  padding: 20px !important;
}

.radius-0 {
  border-radius: 0;
}

.radius-10 {
  border-radius: 10px !important;
}

.onclick {
  cursor: pointer !important;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.box-content-forum p img {
  width: 30% !important;
}
/*# sourceMappingURL=styles.css.map */
