* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #03144c;
  background-color: #f3f3f3;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  width: 100%;
  height: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #03144c;
  box-shadow: none !important;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  transition: all 0.25s;
  padding: 0;
}
.btn:active {
  transform: translateY(2px);
}
.btn.btn-yellow {
  background: #f5b51b;
  color: #03144c;
}
.btn.btn-yellow:hover {
  opacity: 0.7;
}
.btn.btn-outline {
  border: 1px solid #03144c;
  text-transform: uppercase;
}
.btn.btn-outline:hover {
  background-color: #f5b51b;
  border-color: #f5b51b;
}

.wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0;
  transition: all 0.25s;
}
.wrapper:not(.swiper-slide-active) {
  opacity: 0;
}

.header-block {
  padding: 20px 0;
}
.header-block.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.header-block .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-block .header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
  flex-shrink: 0;
}
.header-block .menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex-shrink: 0;
}
.header-block .menu-item {
  flex-shrink: 0;
}
.header-block .menu-item.active .menu-link {
  color: #f5b51b;
}
.header-block .menu-link {
  font-weight: 700;
  line-height: 1.25;
  transition: all 0.25s;
  font-size: 20px;
}
.header-block .menu-link:hover {
  color: #f5b51b;
}
.header-block .contact-btn {
  max-width: 200px;
  height: 48px;
  flex-shrink: 0;
  font-size: 20px;
}
.header-block .menu-toggle {
  position: relative;
  align-items: center;
  width: 40px;
  height: 40px;
  display: none;
}
.header-block .menu-toggle span {
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #f5b51b;
  border-radius: 999px;
  pointer-events: none;
  transition: all 0.4s;
}
.header-block .menu-toggle span:first-child {
  transform: translateY(-10px);
  width: 30px;
}
.header-block .menu-toggle span:nth-child(2) {
  transform: translateY(10px);
  width: 24px;
}
.header-block .menu-toggle.active span:first-child {
  transform: translateY(0) rotate(45deg);
  width: 40px;
}
.header-block .menu-toggle.active span:nth-child(2) {
  transform: translateY(0) rotate(315deg);
  width: 40px;
}
.header-block .menu-toggle.active span:nth-child(3) {
  transform: translateX(100px);
}

.heading-box .title {
  font-weight: 700;
  font-size: 72px;
  line-height: 1.25;
  margin-bottom: 0;
}
.heading-box .title span {
  display: block;
  font-family: "Source Serif Pro", serif;
  font-style: italic;
  color: #f5b51b;
}
.heading-box .title span.small {
  font-size: 36px;
  line-height: 1.25;
  margin-top: 4px;
}
.heading-box .title span.text-right {
  text-align: right;
}
.heading-box.has-number {
  position: relative;
  padding-left: 115px;
}
.heading-box.has-number .number {
  position: absolute;
  bottom: -24px;
  left: 0;
  font-weight: 700;
  font-size: 240px;
  color: rgba(245, 181, 27, 0.15);
  pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #03144c;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s;
  box-shadow: none !important;
  color: unset;
  outline: none;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #f5b51b;
  border-color: #f5b51b;
}

.sub-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.sub-nav .nav-item.active .nav-link {
  background-color: #f5b51b;
  border-color: #f5b51b;
}
.sub-nav .nav-link {
  padding: 10px 25px;
  border: 1px solid #03144c;
  border-radius: 20px;
  color: #03144c;
}
.sub-nav .nav-link:hover {
  background-color: #f5b51b;
  border-color: #f5b51b;
}

.homepage-wrapper .container {
  max-width: 1360px;
  padding: 0 60px;
}
.homepage-wrapper .scroll-label {
  position: fixed;
  z-index: 9;
  user-select: none;
  right: 14px;
  bottom: 16px;
  line-height: 1.25;
  text-align: center;
  font-size: 16px;
}
.homepage-wrapper .scroll-label .scroll-icon {
  margin-bottom: 8px;
}
.homepage-wrapper .homepage-swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 99;
  inset: unset;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  margin: 0;
  width: 20px;
}
.homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet {
  flex-shrink: 0;
  background-color: transparent;
  margin: 0;
  padding: 10px 0;
  width: unset;
  height: unset;
  opacity: 1;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s;
  outline: none;
  box-shadow: none;
  border-radius: none;
  font-size: 22px;
}
.homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: #03144c;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: all 0.25s;
}
.homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-weight: 700;
}
.homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child) {
  margin-bottom: 25px;
}
.homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child)::after {
  height: 25px;
}
.homepage-wrapper .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: fixed;
  z-index: 9;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.homepage-wrapper .navigation .navigation-btn {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #03144c;
  transition: all 0.25s;
  position: unset;
  margin: 0;
}
.homepage-wrapper .navigation .navigation-btn:hover {
  background-color: #f5b51b;
  border-color: #f5b51b;
}
.homepage-wrapper .hero-block {
  display: flex;
  align-items: center;
  gap: 75px;
}
.homepage-wrapper .hero-block .hero-main {
  max-width: 610px;
}
.homepage-wrapper .hero-block .heading-box {
  margin-bottom: 42px;
}
.homepage-wrapper .hero-block .hero-content {
  line-height: 1.4;
  font-size: 20px;
}
.homepage-wrapper .hero-block .hero-content p {
  margin-bottom: 0;
}
.homepage-wrapper .hero-block .hero-content p:not(:last-child) {
  margin-bottom: 20px;
}
.homepage-wrapper .hero-block .discover-btn {
  margin-top: 60px;
  max-width: 215px;
  font-size: 20px;
}
.homepage-wrapper .hero-block .hero-img {
  user-select: none;
  margin-left: -160px;
  margin-right: -74px;
}
.homepage-wrapper .why-us-block .heading-box {
  max-width: 586px;
  margin: 0 auto;
}
.homepage-wrapper .why-us-block .why-us-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  position: relative;
  z-index: 0;
  margin-top: -75px;
}
.homepage-wrapper .why-us-block .why-us-item {
  text-align: center;
}
.homepage-wrapper .why-us-block .why-us-item:nth-child(2), .homepage-wrapper .why-us-block .why-us-item:nth-child(3) {
  padding-top: 140px;
}
.homepage-wrapper .why-us-block .why-us-item .icon {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 30px 30px rgba(3, 20, 76, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px;
}
.homepage-wrapper .why-us-block .why-us-item .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.5;
}
.homepage-wrapper .why-us-block .why-us-item .content {
  line-height: 1.5;
  font-size: 18px;
}
.homepage-wrapper .why-us-block .curve {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -45%);
}
.homepage-wrapper .portfolio-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.homepage-wrapper .portfolio-block .heading-box {
  width: 100%;
  max-width: 412px;
  transform: translateY(50%);
  flex-shrink: 0;
}
.homepage-wrapper .portfolio-block .portfolio-main {
  position: relative;
  max-width: calc(100% - 428px);
  flex: 1;
}
.homepage-wrapper .portfolio-block .portfolio-swiper {
  margin-right: calc((1240px - 100vw) / 2);
  padding-right: calc((100vw - 1240px) / 2);
  padding-bottom: 50px;
  margin-bottom: -50px;
  margin-left: unset;
}
.homepage-wrapper .portfolio-block .portfolio-item {
  position: relative;
  padding-top: 200px;
  padding-left: 275px;
  max-width: 610px;
  margin-left: 20px;
  z-index: 0;
}
.homepage-wrapper .portfolio-block .portfolio-item .portfolio-img {
  background-color: #fff;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 64px;
  z-index: -1;
  padding-top: 60%;
}
.homepage-wrapper .portfolio-block .portfolio-item .portfolio-img img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.homepage-wrapper .portfolio-block .portfolio-item .portfolio-detail {
  padding: 30px 20px 40px;
  background: #ffffff;
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  width: 100%;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.homepage-wrapper .portfolio-block .portfolio-item .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.homepage-wrapper .portfolio-block .portfolio-item .desc {
  font-family: "Source Serif Pro", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #f5b51b;
  margin-bottom: 34px;
}
.homepage-wrapper .portfolio-block .portfolio-item .detail-btn {
  max-width: 190px;
  margin: 0 auto;
}
.homepage-wrapper .portfolio-block .swiper-nav {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  bottom: 110px;
  left: -220px;
}
.homepage-wrapper .portfolio-block .portfolio-swiper-button-next,
.homepage-wrapper .portfolio-block .portfolio-swiper-button-prev {
  position: unset;
}
.homepage-wrapper .client-block .heading-box {
  max-width: 550px;
  margin: 0 auto 60px;
}
.homepage-wrapper .client-block .client-main {
  max-width: 610px;
  margin: 0 auto;
  position: relative;
}
.homepage-wrapper .client-block .client-item {
  text-align: center;
}
.homepage-wrapper .client-block .client-item .quote-icon {
  font-weight: 900;
  font-size: 36px;
  color: #f5b51b;
  margin-bottom: 26px;
}
.homepage-wrapper .client-block .client-item .content {
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  font-family: "Source Serif Pro", serif;
}
.homepage-wrapper .client-block .client-item .content P:last-child {
  margin-bottom: 0;
}
.homepage-wrapper .client-block .client-item .author {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 30px;
}
.homepage-wrapper .client-block .client-item .author span {
  color: #f5b51b;
}
.homepage-wrapper .client-block .client-swiper-button-next,
.homepage-wrapper .client-block .client-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.homepage-wrapper .client-block .client-swiper-button-next {
  right: -175px;
}
.homepage-wrapper .client-block .client-swiper-button-prev {
  left: -175px;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.about-wrapper .about-block {
  margin: auto 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-wrapper .about-block .heading-box {
  max-width: 480px;
  margin: 0 auto 40px;
}
.about-wrapper .about-block .about-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  max-width: 1004px;
  margin: -50px auto 0;
}
.about-wrapper .about-block .about-content {
  max-width: 610px;
  font-size: 20px;
}
.about-wrapper .about-block .about-content p {
  line-height: 1.4;
  margin-bottom: 0;
}
.about-wrapper .about-block .about-content p:not(:last-child) {
  margin-bottom: 20px;
}
.about-wrapper .about-block .contact-btn {
  font-size: 20px;
  max-width: 200px;
  margin-top: 30px;
}

.portfolio-list-wrapper .portfolio-list-block {
  padding: 27px 0 75px;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-list-container {
  max-width: 1030px;
  margin: 0 auto;
}
.portfolio-list-wrapper .portfolio-list-block .heading-box {
  text-align: center;
  margin-bottom: 36px;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-list-main {
  margin-top: 56px;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item {
  position: relative;
  padding-top: 180px;
  padding-left: 320px;
  z-index: 0;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item:not(:last-child) {
  margin-bottom: 65px;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .portfolio-img {
  background-color: #ffffff;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 210px;
  z-index: -1;
  padding-top: 47.3%;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .portfolio-img img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .portfolio-content {
  background: #ffffff;
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 34px 52px 44px;
  text-align: center;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .sub-title {
  font-family: "Source Serif Pro", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #f5b51b;
  margin-bottom: 24px;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .desc {
  line-height: 1.5;
}
.portfolio-list-wrapper .portfolio-list-block .portfolio-item .detail-btn {
  max-width: 190px;
  margin: 38px auto 0;
}

.portfolio-detail-wrapper .portfolio-detail-block {
  padding: 40px 0 60px;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-info {
  margin-bottom: 80px;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-info .logo {
  max-width: 380px;
  margin: 0 auto 70px;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-info .info-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 66px;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-info .info-detail strong {
  font-weight: 700;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .content {
  width: 100%;
  max-width: calc(50% - 8px);
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .title {
  font-weight: 700;
  margin-bottom: 27px;
  font-size: 20px;
  line-height: 1.25;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .text {
  line-height: 1.5;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .text p:last-child {
  margin-bottom: 0;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .img {
    width: 100%;
    max-width: calc(50% - 8px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    padding-top: 33%;
    overflow: hidden;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .img img {
    position: absolute;
    inset: 0;
    height: 100%;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-client {
  text-align: center;
  max-width: 610px;
  margin: 0 auto;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-client .quote-icon {
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1388888889;
  color: #f5b51b;
  margin-bottom: 26px;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-client .text {
  font-family: "Source Serif Pro";
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-client .text p:last-child {
  margin-bottom: 0;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-client .author {
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.4;
}
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-client .author span {
  color: #f5b51b;
}

.news-list-wrapper .news-list-block {
  padding: 27px 0 75px;
}
.news-list-wrapper .news-list-block .heading-box {
  text-align: center;
  margin-bottom: 37px;
}
.news-list-wrapper .news-list-block .sub-nav {
  margin-bottom: 54px;
}
.news-list-wrapper .news-list-block .news-list-main {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: stretch;
}
.news-list-wrapper .news-list-block .news-item:first-child {
  margin-top: 0 !important;
}
.news-list-wrapper .news-list-block .news-item:nth-child(2) {
  margin-top: 120px;
}
.news-list-wrapper .news-list-block .news-item:nth-child(2n-1) {
  margin-top: -120px;
}
.news-list-wrapper .news-list-block .news-item {
  background: #ffffff;
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: calc(50% - 10px);
}
.news-list-wrapper .news-list-block .news-item:not(:last-child) {
  margin-bottom: 20px;
}
.news-list-wrapper .news-list-block .news-item .news-img {
  position: relative;
  width: 100%;
  padding-top: 60.65%;
  overflow: hidden;
}
.news-list-wrapper .news-list-block .news-item .news-img:hover img {
  transform: scale(1.12);
}
.news-list-wrapper .news-list-block .news-item .news-img a {
  display: block;
}
.news-list-wrapper .news-list-block .news-item .news-img img {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: all 0.25s;
}
.news-list-wrapper .news-list-block .news-item .news-content {
  padding: 28px 32px 30px;
}
.news-list-wrapper .news-list-block .news-item .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #03144c;
  margin-bottom: 18px;
}
.news-list-wrapper .news-list-block .news-item .title a {
  transition: all 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list-wrapper .news-list-block .news-item .title:hover a {
  color: #f5b51b;
}
.news-list-wrapper .news-list-block .news-item .tag {
  font-family: "Source Serif Pro", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #f5b51b;
}

.news-detail-wrapper .news-detail-block {
  padding: 27px 0 60px;
}
.news-detail-wrapper .news-detail-block .news-detail-container {
  max-width: 820px;
  margin: 0 auto;
}
.news-detail-wrapper .news-detail-block .heading-box {
  text-align: center;
  margin-bottom: 36px;
}
.news-detail-wrapper .news-detail-block .heading-box .title {
  font-size: 36px;
  line-height: 1.25;
}
.news-detail-wrapper .news-detail-block .heading-box .title span.small {
  font-size: 20px;
  line-height: 1.25;
  margin-top: 10px;
}
.news-detail-wrapper .news-detail-block .news-detail-main {
  line-height: 1.5;
  color: #03144c;
}
.news-detail-wrapper .news-detail-block .news-overview {
  margin-bottom: 50px;
}
.news-detail-wrapper .news-detail-block .related-news-box {
  background: #f5b51b;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 46px;
}
.news-detail-wrapper .news-detail-block .related-news-box ul span {
  font-weight: 700;
}
.news-detail-wrapper .news-detail-block .related-news-box ul a {
  color: #03144c;
}
.news-detail-wrapper .news-detail-block .related-news-box ul a:hover {
  text-decoration: underline;
}
.news-detail-wrapper .news-detail-block .title {
  font-weight: 700;
  margin-bottom: 24px;
}
.news-detail-wrapper .news-detail-block .part:not(:last-child) {
  margin-bottom: 50px;
}
.news-detail-wrapper .news-detail-block p {
  margin-bottom: 24px;
}

.contact-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact-wrapper .contact-block {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.contact-wrapper .contact-block .heading-box {
  max-width: 335px;
  margin: 0 auto;
  margin-bottom: 46px;
}
.contact-wrapper .contact-block .contact-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-wrapper .contact-block .contact-col {
  width: 100%;
  max-width: calc(50% - 10px);
}
.contact-wrapper .contact-block .contact-info .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}
.contact-wrapper .contact-block .contact-info ul li:not(:last-child) {
  margin-bottom: 20px;
}
.contact-wrapper .contact-block .contact-info ul li i {
  width: 20px;
  margin-right: 6px;
  text-align: center;
  font-weight: 900;
  color: #f5b51b;
}
.contact-wrapper .contact-block .contact-info ul li span {
  line-height: 1.25;
}
.contact-wrapper .contact-block .sub-form .input-item,
.contact-wrapper .contact-block .wpcf7-form .input-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-wrapper .contact-block .sub-form .input-item label,
.contact-wrapper .contact-block .wpcf7-form .input-item label {
  width: 100%;
  max-width: 120px;
  font-weight: 600;
  flex-shrink: 0;
}
.contact-wrapper .contact-block .sub-form .input-item input::-webkit-outer-spin-button,
.contact-wrapper .contact-block .sub-form .input-item input::-webkit-inner-spin-button,
.contact-wrapper .contact-block .wpcf7-form .input-item input::-webkit-outer-spin-button,
.contact-wrapper .contact-block .wpcf7-form .input-item input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-wrapper .contact-block .sub-form .input-item input[type=number],
.contact-wrapper .contact-block .wpcf7-form .input-item input[type=number] {
  -moz-appearance: textfield;
}
.contact-wrapper .contact-block .sub-form .input-item input,
.contact-wrapper .contact-block .sub-form .input-item textarea,
.contact-wrapper .contact-block .wpcf7-form .input-item input,
.contact-wrapper .contact-block .wpcf7-form .input-item textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #03144c;
  outline: none;
  padding: 6px 0px;
  color: #03144c;
}
.contact-wrapper .contact-block .sub-form .input-item input::placeholder,
.contact-wrapper .contact-block .sub-form .input-item textarea::placeholder,
.contact-wrapper .contact-block .wpcf7-form .input-item input::placeholder,
.contact-wrapper .contact-block .wpcf7-form .input-item textarea::placeholder {
  color: #03144c;
}
.contact-wrapper .contact-block .sub-form .input-item textarea,
.contact-wrapper .contact-block .wpcf7-form .input-item textarea {
  resize: none;
  height: 120px;
}
.contact-wrapper .contact-block .sub-form .submit-btn,
.contact-wrapper .contact-block .wpcf7-form .submit-btn {
  max-width: 166px;
  margin-right: auto;
  height: 42px;
}
.contact-wrapper .contact-block .wpcf7-form p {margin: 0;}
.contact-wrapper .contact-block .wpcf7-form span { width: 100%; display: block;}
.contact-wrapper .contact-block .wpcf7-form .wpcf7-spinner { display: none !important;}
.service-list-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.service-list-wrapper .service-list-block {
  padding: 32px 0 60px;
  flex: 1;
  display: flex;
  align-items: center;
}
.service-list-wrapper .service-list-block .heading-box {
  max-width: 365px;
  margin: 0 auto 32px;
}
.service-list-wrapper .service-list-block .service-list-main {
  display: grid;
  grid-gap: 100px;
  grid-template-columns: 1fr 1fr;
}
.service-list-wrapper .service-list-block .service-list-main .category .category-heading {
  margin-bottom: 32px;
  line-height: 1.25;
}
.service-list-wrapper .service-list-block .service-list-main .category .category-heading .title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 36px;
}
.service-list-wrapper .service-list-block .service-list-main .category .category-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-list-wrapper .service-list-block .service-list-main .category .category-main .item {
  border-bottom: 1px solid #03144c;
  padding: 20px 20px 20px 0;
  font-size: 16px;
  font-weight: 700;
}
.service-list-wrapper .service-list-block .service-list-main .category .category-main .item a {
    white-space: nowrap;
  transition: all 0.25s;
}
.service-list-wrapper .service-list-block .service-list-main .category .category-main .item a:hover {
  color: #f5b51b;
}
.why-us-item .icon img {
    width: auto;
}
.category-heading .desc {min-height: 50px;}
@media screen and (max-width: 1439px) {
  .homepage-wrapper .homepage-swiper-pagination {
    left: 20px;
  }
  .homepage-wrapper .hero-block {
    gap: 0;
  }
  .homepage-wrapper .hero-block .hero-img {
    margin: 0;
  }
  .homepage-wrapper .why-us-block .why-us-main {
    margin-top: 0;
  }
  .homepage-wrapper .why-us-block .why-us-item .icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
  }
  .homepage-wrapper .why-us-block .why-us-item .icon svg {
    max-width: 50%;
  }
  .homepage-wrapper .why-us-block .why-us-item:nth-child(2), .homepage-wrapper .why-us-block .why-us-item:nth-child(3) {
    padding-top: 90px;
  }
  .homepage-wrapper .why-us-block .curve {
    transform: translate(-50%, -60%);
  }

  .heading-box .title {
    font-size: 64px;
  }
  .heading-box .title span.small {
    font-size: 32px;
  }
  .why-us-item .icon img {
    max-width: 50%;
  }
}
@media screen and (max-width: 1399px) {
  .homepage-wrapper .hero-block .heading-box {
    margin-bottom: 30px;
  }
  .homepage-wrapper .hero-block .discover-btn {
    margin-top: 36px;
  }
  .homepage-wrapper .portfolio-block .portfolio-item .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1359px) {
  .homepage-wrapper .portfolio-block .portfolio-swiper {
    margin-right: -60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1279px) {
  .heading-box .title {
    font-size: 60px;
  }
  .heading-box .title span.small {
    font-size: 30px;
  }

  .header-block .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    bottom: 0;
    display: block;
    z-index: 999;
    background-color: #f3f3f3;
    width: 100%;
    max-width: 320px;
    padding-top: 94px;
    transition: all 0.25s;
  }
  .header-block .header-menu.active {
    transform: translateX(0);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.198);
  }
  .header-block .menu-list {
    display: block;
    padding: 0 24px;
  }
  .header-block .menu-item:not(:last-child) {
    margin-bottom: 12px;
  }
  .header-block .menu-link {
    padding: 12px 20px;
    width: 100%;
  }
  .header-block .contact-btn {
    margin: 24px auto 0;
  }
  .header-block .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .homepage-wrapper .hero-block {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .homepage-wrapper .hero-block .hero-main {
    max-width: 100%;
  }
  .homepage-wrapper .hero-block .discover-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .homepage-wrapper .hero-block .hero-img {
    margin: 0;
    max-width: 480px;
  }
  .homepage-wrapper .why-us-block .curve {
    transform: translate(-50%, -65%);
  }
  .homepage-wrapper .portfolio-block {
    display: block;
  }
  .homepage-wrapper .portfolio-block .heading-box {
    transform: unset;
    margin: 0 auto 60px;
  }
  .homepage-wrapper .portfolio-block .portfolio-main {
    max-width: 100%;
  }
  .homepage-wrapper .portfolio-block .swiper-nav {
    display: none;
  }
  .homepage-wrapper .client-block .heading-box {
    max-width: 500px;
  }
  .homepage-wrapper .client-block .client-swiper-button-next {
    right: -100px;
  }
  .homepage-wrapper .client-block .client-swiper-button-prev {
    left: -100px;
  }

  .about-wrapper .about-block .heading-box {
    margin-bottom: 40px;
  }
  .about-wrapper .about-block .about-main {
    max-width: 100%;
    flex-direction: column;
    margin: 0;
  }
  .about-wrapper .about-block .about-img {
    max-width: 25%;
  }
  .about-wrapper .about-block .about-content {
    max-width: 100%;
  }
  .about-wrapper .about-block .contact-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .service-list-wrapper .service-list-block .heading-box {
    max-width: 300px;
  }
  .service-list-wrapper .service-list-block .service-list-main {
    grid-template-columns: 1fr;
  }
  .category-heading .desc {min-height: auto;}
}
@media screen and (max-width: 1023px) {
  .heading-box .title {
    font-size: 56px;
  }
  .heading-box .title span.small {
    font-size: 28px;
  }
  .heading-box.has-number {
    padding-left: 80px;
  }
  .heading-box.has-number .number {
    font-size: 200px;
  }

  .homepage-wrapper .hero-block .hero-img {
    max-width: 400px;
  }
  .homepage-wrapper .hero-block .discover-btn {
    margin-top: 30px;
  }
  .homepage-wrapper .why-us-block .heading-box {
    max-width: 520px;
    margin-bottom: 40px;
  }
  .homepage-wrapper .why-us-block .why-us-main {
    grid-template-columns: 1fr 1fr;
  }
  .homepage-wrapper .why-us-block .why-us-item:not(:nth-child(999)) {
    padding-top: 0;
  }
  .homepage-wrapper .why-us-block .curve {
    display: none;
  }
  .homepage-wrapper .portfolio-block .portfolio-item {
    padding-top: 160px;
    padding-left: 160px;
    max-width: 540px;
  }
  .homepage-wrapper .client-block .heading-box {
    max-width: 430px;
  }
  .homepage-wrapper .client-block .swiper-nav {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .homepage-wrapper .client-block .client-swiper-button-next,
.homepage-wrapper .client-block .client-swiper-button-prev {
    position: unset;
  }

  .about-wrapper .about-block .heading-box {
    max-width: 440px;
  }
  .about-wrapper .about-block .about-img {
    max-width: 40%;
  }

  .portfolio-list-wrapper .portfolio-list-block .portfolio-item {
    padding-top: 120px;
    padding-left: 120px;
  }
  .portfolio-list-wrapper .portfolio-list-block .portfolio-item .portfolio-img {
    right: 60px;
  }

  .portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-info .logo {
    margin-bottom: 36px;
  }
  .portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-info .info-detail {
    flex-direction: column;
    gap: 24px;
  }
  .portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview {
    flex-direction: column;
    gap: 40px;
  }
  .portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .content{
    max-width: 100%;
  }
.portfolio-detail-wrapper .portfolio-detail-block .portfolio-detail-overview .img {
    max-width: 100%;
    padding-top: 40%;
  }

  .news-list-wrapper .news-list-block .news-item:nth-child(2) {
    margin-top: 40px;
  }
  .news-list-wrapper .news-list-block .news-item:nth-child(2n-1) {
    margin-top: -40px;
  }

  .contact-wrapper .contact-block .contact-main {
    display: block;
  }
  .contact-wrapper .contact-block .contact-col {
    max-width: 100%;
  }
  .contact-wrapper .contact-block .contact-col:first-child {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
  }

  .wrapper {
    padding-bottom: 60px;
  }

  .header-block {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-block .logo svg {
    max-width: 120px;
  }
  .header-block .header-menu {
    padding-top: 70px;
  }

  .heading-box .title {
    font-size: 32px;
  }
  .heading-box .title span.small {
    font-size: 20px;
  }
  .heading-box.has-number {
    padding-left: 50px;
  }
  .heading-box.has-number .number {
    font-size: 120px;
    bottom: -12px;
  }

  .sub-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .homepage-wrapper .container {
    padding: 0 20px;
  }
  .homepage-wrapper .homepage-swiper-pagination {
    transform: unset;
    top: 70px;
  }
  .homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet {
    font-size: 14px;
  }
  .homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child) {
    margin-bottom: 18px;
  }
  .homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child)::after {
    height: 18px;
  }
  .homepage-wrapper .navigation {
    position: unset;
    transform: unset;
  }
  .homepage-wrapper .navigation .navigation-btn {
    position: fixed;
    top: 260px;
  }
  .homepage-wrapper .navigation .navigation-prev {
    left: 2px;
  }
  .homepage-wrapper .navigation .navigation-next {
    right: 2px;
  }
  .homepage-wrapper .scroll-label {
    display: none;
    font-size: 12px;
    bottom: 10px;
  }
  .homepage-wrapper .scroll-label .scroll-icon {
    margin-bottom: 4px;
  }
  .homepage-wrapper .scroll-label .scroll-icon svg {
    width: 12px;
  }
  .homepage-wrapper .hero-block {
    gap: 12px;
  }
  .homepage-wrapper .hero-block .heading-box {
    margin-bottom: 18px;
  }
  .homepage-wrapper .hero-block .hero-content {
    font-size: 16px;
  }
  .homepage-wrapper .hero-block .hero-content p:not(:last-child) {
    margin-bottom: 12px;
  }
  .homepage-wrapper .hero-block .discover-btn {
    margin-top: 16px;
    height: 36px;
    max-width: 160px;
    font-size: 14px;
  }
  .homepage-wrapper .hero-block .hero-img {
    max-width: 220px;
  }
  .homepage-wrapper .why-us-block .heading-box {
    max-width: 280px;
  }
  .homepage-wrapper .why-us-block .why-us-main {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: 90%;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
  }
  .homepage-wrapper .why-us-block .why-us-main::-webkit-scrollbar {
    display: none;
  }
  .homepage-wrapper .why-us-block .why-us-item {
    scroll-snap-align: center;
  }
  .homepage-wrapper .why-us-block .why-us-item .icon {
    width: 80px;
    height: 80px;
  }
  .homepage-wrapper .portfolio-block .heading-box {
    max-width: 240px;
  }
  .homepage-wrapper .portfolio-block .portfolio-swiper {
    padding-left: 20px;
    margin-left: -20px;
  }
  .homepage-wrapper .portfolio-block .portfolio-item {
    max-width: 90%;
    padding-left: 60px;
    padding-top: 60px;
    margin-left: 0;
  }
  .homepage-wrapper .portfolio-block .portfolio-item .portfolio-img {
    right: 40px;
  }
  .homepage-wrapper .portfolio-block .portfolio-item .portfolio-detail {
    padding: 30px 20px;
  }
  .homepage-wrapper .portfolio-block .portfolio-item .title {
    font-size: 18px;
  }
  .homepage-wrapper .portfolio-block .portfolio-item .desc {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .homepage-wrapper .portfolio-block .portfolio-item .detail-btn {
    font-size: 12px;
    height: 28px;
    max-width: 100px;
  }
  .homepage-wrapper .client-block .heading-box {
    max-width: 250px;
    margin-bottom: 40px;
  }
  .homepage-wrapper .client-block .client-item .quote-icon {
    margin-bottom: 18px;
  }
  .homepage-wrapper .client-block .client-item .content {
    font-size: 16px;
  }
  .homepage-wrapper .client-block .client-item .author {
    margin-top: 20px;
    font-size: 16px;
  }

  .about-wrapper .about-block .heading-box {
    margin-bottom: 18px;
    max-width: 260px;
  }
  .about-wrapper .about-block .about-main {
    gap: 0;
  }
  .about-wrapper .about-block .about-content {
    font-size: 16px;
  }
  .about-wrapper .about-block .about-content p:not(:last-child) {
    margin-bottom: 16px;
  }
  .about-wrapper .about-block .contact-btn {
    margin: 16px auto 0;
    height: 36px;
    font-size: 14px;
    max-width: 160px;
  }

  .portfolio-list-wrapper .portfolio-list-block .portfolio-item {
    padding: 0;
    background-color: #fff;
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  .portfolio-list-wrapper .portfolio-list-block .portfolio-item .portfolio-img {
    border-radius: 0;
    box-shadow: none;
    position: relative;
    padding-top: 75%;
  }
  .portfolio-list-wrapper .portfolio-list-block .portfolio-item .portfolio-content {
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
    max-width: 100%;
  }
  .portfolio-list-wrapper .portfolio-list-block .portfolio-item .title {
    font-size: 28px;
  }
  .portfolio-list-wrapper .portfolio-list-block .portfolio-item .detail-btn {
    margin-top: 24px;
    font-size: 14px;
    height: 36px;
    max-width: 160px;
  }

  .news-list-wrapper .news-list-block {
    padding-bottom: 40px;
  }
  .news-list-wrapper .news-list-block .news-list-main {
    display: block;
  }
  .news-list-wrapper .news-list-block .news-item {
    width: 100%;
  }
  .news-list-wrapper .news-list-block .news-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .news-list-wrapper .news-list-block .news-item:nth-child(2) {
    margin-top: 0px;
  }
  .news-list-wrapper .news-list-block .news-item:nth-child(2n-1) {
    margin-top: 0;
  }
  .news-list-wrapper .news-list-block .news-item .news-content {
    padding: 20px;
  }
  .news-list-wrapper .news-list-block .news-item .title {
    font-size: 16px;
  }
  .news-list-wrapper .news-list-block .news-item .tag {
    font-size: 16px;
  }

  .news-detail-wrapper .news-detail-block {
    padding-bottom: 30px;
  }
  .news-detail-wrapper .news-detail-block .heading-box .title {
    font-size: 24px;
  }

  .contact-wrapper .contact-block .heading-box {
    max-width: 160px;
  }

  .service-list-wrapper .service-list-block .heading-box {
    max-width: 160px;
  }
  .service-list-wrapper .service-list-block .service-list-main .category .category-heading .title {
    font-size: 24px;
  }
  .service-list-wrapper .service-list-block .service-list-main .category .category-main {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .header-block .logo svg {
    width: 80px;
    height: 30px;
  }
  .header-block .header-menu {
    max-width: 280px;
    padding-top: 56px;
  }
  .header-block .menu-link {
    font-size: 14px;
  }

  .heading-box .title {
    font-size: 24px;
  }
  .heading-box .title span.small {
    font-size: 12px;
  }
  .heading-box.has-number .number {
    font-size: 100px;
  }

  .homepage-wrapper .homepage-swiper-pagination {
    top: 60px;
  }
  .homepage-wrapper .homepage-swiper-pagination .swiper-pagination-bullet {
    font-size: 12px;
    padding: 6px 0;
  }
  .homepage-wrapper .scroll-label {
    font-size: 10px;
  }
  .homepage-wrapper .scroll-label .scroll-icon {
    margin-bottom: 4px;
  }
  .homepage-wrapper .scroll-label .scroll-icon svg {
    height: 12px;
  }
  .homepage-wrapper .hero-block .heading-box {
    margin-bottom: 16px;
  }
  .homepage-wrapper .hero-block .hero-content {
    font-size: 12px;
  }
  .homepage-wrapper .hero-block .discover-btn {
    margin-top: 16px;
    height: 32px;
    font-size: 12px;
    max-width: 160px;
  }
  .homepage-wrapper .hero-block .hero-img {
    max-width: 180px;
  }
  .homepage-wrapper .why-us-block .heading-box {
    max-width: 240px;
  }
  .homepage-wrapper .portfolio-block .heading-box {
    max-width: 200px;
  }
  .homepage-wrapper .client-block .heading-box {
    max-width: 220px;
    margin-bottom: 30px;
  }
  .homepage-wrapper .client-block .client-item .quote-icon {
    margin-bottom: 16px;
  }
  .homepage-wrapper .client-block .client-item .content {
    font-size: 14px;
  }
  .homepage-wrapper .client-block .client-item .author {
    margin-top: 16px;
  }
  .homepage-wrapper .client-block .swiper-nav {
    bottom: -80px;
  }
  .homepage-wrapper .client-block .client-swiper-button-next,
.homepage-wrapper .client-block .client-swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .homepage-wrapper .client-block .client-swiper-button-next svg,
.homepage-wrapper .client-block .client-swiper-button-prev svg {
    width: 20px;
    height: 20px;
  }

  .about-wrapper .about-block .heading-box {
    max-width: 210px;
    margin-bottom: 10px;
  }
  .about-wrapper .about-block .about-main {
    gap: 0;
  }
  .about-wrapper .about-block .about-content {
    font-size: 12px;
  }
  .about-wrapper .about-block .about-content p:not(:last-child) {
    margin-bottom: 12px;
  }
  .about-wrapper .about-block .contact-btn {
    margin-top: 16px;
    height: 32px;
    font-size: 12px;
    max-width: 160px;
  }
}

/*# sourceMappingURL=style.css.map */
