@font-face {
  font-display: swap;
  font-family: "marcellus";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Marcellus-Regular.woff2") format("woff2");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow: auto;
}

body {
  font-family: "marcellus";
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 11px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  body {
    font-size: 16px;
  }
}

.container {
  width: 100%;
  max-width: 1350px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .container {
    width: calc(100% - 168px);
  }
}

.section-title {
  text-align: center;
}
.section-title h3 {
  font-size: 20px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .section-title h3 {
    font-size: 23px;
  }
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
  background-color: transparent;
  transition: all 0.5s ease;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
.header .open-animation {
  width: 100%;
  height: 100vh;
  background-color: #EBEAE5;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.header .open-animation .animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding-top: 36px;
}
@media only screen and (max-width: 1024px) {
  .header .open-animation .animation-container {
    padding-top: 0;
  }
}
.header .open-animation .animation-container .ipk-logo {
  position: relative;
  width: 215px;
  height: 41px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .header .open-animation .animation-container .ipk-logo {
    width: 145px;
  }
}
.header .open-animation .animation-container .ipk-logo .ipk-logo-img {
  width: 205px;
  height: 41px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .header .open-animation .animation-container .ipk-logo .ipk-logo-img {
    width: 135px;
  }
}
.header .open-animation .animation-container .group-logo {
  position: relative;
  width: 307px;
  height: 41px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .header .open-animation .animation-container .group-logo {
    width: 217px;
  }
}
.header .open-animation .animation-container .group-logo .group-logo-img {
  width: 297px;
  height: 41px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  visibility: visible;
}
@media only screen and (max-width: 1024px) {
  .header .open-animation .animation-container .group-logo .group-logo-img {
    width: 207px;
  }
}
.header .mobile-navigation {
  position: absolute;
  z-index: 100;
  left: -200%;
  top: 77px;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  padding-left: 60px;
  overflow-y: scroll;
  transition: all 0.5s ease;
  border-top: 0.25px solid #000;
}
.header .mobile-navigation .nav-close {
  position: absolute;
  top: 16px;
  right: 26px;
}
.header .mobile-navigation .mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 35px;
}
.header .mobile-navigation .mobile-nav-list li a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
}
.header .mobile-navigation .sub-list {
  padding-left: 20px;
  list-style: none;
  margin-top: 20px;
  display: none;
  flex-direction: column;
  gap: 30px;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.header .mobile-navigation .sub-list .sub-item {
  font-size: 13px;
}
.header .mobile-navigation .sub-main:hover .sub-list {
  visibility: visible;
  opacity: 1;
  display: flex;
}
.header .mobile-navigation .contact-us {
  font-size: 13px;
  margin-top: 43px;
}
.header .mobile-navigation .contact-us a {
  color: #000;
  text-decoration: none;
}
.header #main-navigation {
  top: 78px;
}
.header .fixed-logo {
  padding-top: 35px;
}
.header .navigation {
  margin-top: 26px;
  z-index: 1;
}
.header .navigation .navigation-list {
  display: flex;
  gap: 55px;
  list-style: none;
}
.header .navigation .navigation-list .nav-lnk {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  display: block;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 10px;
  position: relative;
}
.header .navigation .navigation-list .nav-lnk::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
.header .navigation .navigation-list .nav-lnk:hover::after {
  width: 50%;
}
.header .navigation .navigation-list .dropdown .dropdown-wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  left: 0;
  padding-top: 20px;
  padding-bottom: 96px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s ease;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0);
}
.header .navigation .navigation-list .dropdown .dropdown-wrapper .dropdown-list {
  display: inline-block;
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
.header .navigation .navigation-list .dropdown .dropdown-wrapper .dropdown-list ul {
  display: flex;
  gap: 50px;
  list-style: none;
}
.header .navigation .navigation-list .dropdown .dropdown-wrapper .dropdown-list ul .dropdown-lnk {
  text-decoration: none;
  padding-bottom: 10px;
  color: #000;
  font-size: 14px;
  position: relative;
}
.header .navigation .navigation-list .dropdown .dropdown-wrapper .dropdown-list ul .dropdown-lnk::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
.header .navigation .navigation-list .dropdown .dropdown-wrapper .dropdown-list ul .dropdown-lnk:hover:after {
  width: 50%;
}
.header .navigation .navigation-list .dropdown .dropdown-nav-lnk {
  position: relative;
}
.header .navigation .navigation-list .dropdown:hover .dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  background-color: rgb(255, 255, 255);
}
@media only screen and (max-width: 1024px) {
  .header .navigation {
    display: none;
  }
}
.header .mobile-nav {
  position: absolute;
  left: 20px;
  z-index: 0;
  top: 29px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header .mobile-nav {
    display: block;
    top: 35px;
  }
}
.header .mobile-nav img {
  width: 20px;
  height: auto;
}
.header .lang {
  position: absolute;
  top: 30px;
  right: 55px;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .header .lang {
    right: 20px;
    top: 35px;
  }
}
.header .lang .lang-lnk {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.header .lang .lang-dropdown {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  padding: 5px;
  background-color: #FCFCFC;
}
.header .lang .active-lang {
  position: relative;
  padding: 5px;
}
.header .lang .active-lang::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 8px;
  padding-left: 5px;
  display: inline-block;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s ease;
}
.header .lang:hover .lang-dropdown {
  visibility: visible;
  opacity: 1;
}
.header .lang:hover .active-lang::after {
  transform: rotate(-180deg);
}

@media only screen and (max-width: 1024px) {
  #main-page-header {
    padding-bottom: 0;
  }
}

#detail-brand-header {
  position: fixed;
  width: 100%;
  z-index: 1;
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0);
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  #detail-brand-header {
    position: sticky;
    top: 0;
    left: 0;
  }
}
#detail-brand-header:hover {
  background-color: rgb(255, 255, 255) !important;
}

#news-header {
  background-color: #EBEAE5;
  z-index: 2;
  transition: all 0.5s ease;
}
#news-header:hover {
  background-color: rgb(255, 255, 255) !important;
}

.main-media-area {
  width: 100%;
  max-width: 1552px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .main-media-area {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .main-media-area {
    padding-right: 100px;
    padding-left: 100px;
  }
}
.main-media-area .banner-img {
  width: 100%;
  display: block;
}
.main-media-area .banner-img img {
  width: 100%;
  height: auto;
}
.main-media-area .banner-video {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .main-media-area .banner-video {
    position: relative;
    height: 0;
    padding-top: 56.25%;
  }
}
.main-media-area .banner-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1440px) {
  .main-media-area .banner-video video {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.main-media-area .banner-video .video-volume {
  position: absolute;
  right: 23px;
  bottom: 23px;
  cursor: pointer;
}
.main-media-area .banner-video .video-volume .open-volume {
  display: block;
}
.main-media-area .banner-video .video-volume .close-volume {
  display: none;
}
.main-media-area .active-banner {
  display: block;
}
.main-media-area .passive-banner {
  display: none;
}

.vission-mission-area {
  background-color: #EBEAE5;
  padding-top: 150px;
  padding-bottom: 50px;
  margin-top: 105px;
}
@media only screen and (max-width: 1024px) {
  .vission-mission-area {
    padding-top: 50px;
    margin-top: 43px;
  }
}
.vission-mission-area .vm-title {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.vission-mission-area .vm-title span {
  font-size: 20px;
  line-height: 25px;
}
@media only screen and (max-width: 1024px) {
  .vission-mission-area .vm-title span {
    font-size: 23px;
    line-height: 28px;
  }
}
.vission-mission-area .vm-item-title {
  padding-bottom: 15px;
}
.vission-mission-area .description p {
  text-align: center;
}
.vission-mission-area .description p:first-child {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1024px) {
  .vission-mission-area .description p:first-child {
    margin-bottom: 20px;
  }
}
.vission-mission-area .vm-desc {
  text-align: center;
  padding-bottom: 50px;
  padding-right: 100px;
  padding-left: 100px;
}
@media only screen and (max-width: 1024px) {
  .vission-mission-area .vm-desc {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.vission-mission-area .lg-title {
  text-align: center;
  max-width: 1595px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 32px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .vission-mission-area .lg-title {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .vission-mission-area .lg-title {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.vission-mission-area .lg-title h2 {
  font-size: 60px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .vission-mission-area .lg-title h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1380px) {
  .vission-mission-area .lg-title h2 br {
    display: none;
  }
}

.history {
  background-color: #EBEAE5;
  padding-top: 150px;
}
@media only screen and (max-width: 1024px) {
  .history {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
.history .section-title {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .history .section-title {
    margin-bottom: 25px;
  }
}
.history .history-desc {
  text-align: center;
}
.history .history-item-wrapper {
  width: 100%;
  max-width: 1920px;
  padding-right: 85px;
  padding-left: 85px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .history .history-item-wrapper {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1800px) {
  .history .history-item-wrapper {
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
  }
}
.history .history-item-wrapper .history-list {
  z-index: 2;
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0;
  }
}
.history .history-item-wrapper .history-list .history-year {
  font-size: 300px;
  line-height: 320px;
  font-family: "Marcellus", serif;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .history-year {
    font-size: 75px;
    text-align: center;
    line-height: 130px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1680px) {
  .history .history-item-wrapper .history-list .history-year {
    font-size: 170px;
    line-height: 225px;
  }
}
.history .history-item-wrapper .history-list .right-history,
.history .history-item-wrapper .history-list .left-history {
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .right-history,
  .history .history-item-wrapper .history-list .left-history {
    width: 100%;
    margin-bottom: 35px;
  }
}
.history .history-item-wrapper .history-list .right-history .history-detail,
.history .history-item-wrapper .history-list .left-history .history-detail {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .right-history .history-detail,
  .history .history-item-wrapper .history-list .left-history .history-detail {
    flex-direction: column;
    margin-top: -10px;
  }
}
.history .history-item-wrapper .history-list .right-history .history-detail .detail-line,
.history .history-item-wrapper .history-list .left-history .history-detail .detail-line {
  width: 1px;
  background-color: #000;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .right-history .history-detail .detail-line,
  .history .history-item-wrapper .history-list .left-history .history-detail .detail-line {
    width: 100%;
    height: 1px;
  }
}
.history .history-item-wrapper .history-list .right-history .history-detail .detail-desc,
.history .history-item-wrapper .history-list .left-history .history-detail .detail-desc {
  overflow-x: hidden;
  max-width: 1054px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .right-history .history-detail .detail-desc,
  .history .history-item-wrapper .history-list .left-history .history-detail .detail-desc {
    text-align: center;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .history .history-item-wrapper .history-list .right-history .history-detail .detail-desc,
  .history .history-item-wrapper .history-list .left-history .history-detail .detail-desc {
    max-width: 550px !important;
  }
}
@media only screen and (max-width: 1440px) {
  .history .history-item-wrapper .history-list .right-history .history-detail .detail-desc br,
  .history .history-item-wrapper .history-list .left-history .history-detail .detail-desc br {
    display: none;
  }
}
.history .history-item-wrapper .history-list .right-history .history-detail .history-lnk,
.history .history-item-wrapper .history-list .left-history .history-detail .history-lnk {
  color: #000;
}
.history .history-item-wrapper .history-list .left-history .detail-desc {
  padding-left: 38px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .left-history .detail-desc {
    padding-left: 0;
  }
}
.history .history-item-wrapper .history-list .right-history {
  margin-left: auto;
  text-align: right;
}
.history .history-item-wrapper .history-list .right-history .history-detail {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .right-history .history-detail {
    flex-direction: column;
  }
}
.history .history-item-wrapper .history-list .right-history .history-detail .detail-desc {
  padding-right: 38px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .right-history .history-detail .detail-desc {
    padding-right: 0;
  }
}
.history .history-item-wrapper .history-list .center-bg {
  display: flex;
  flex-direction: column-reverse;
}
.history .history-item-wrapper .history-list .center-bg .history-img {
  display: inline-flex;
  justify-content: center;
}
.history .history-item-wrapper .history-list #item1986 .content-wrapper {
  margin-top: -297px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1986 .content-wrapper {
    margin-top: -80px;
  }
}
.history .history-item-wrapper .history-list #item1989 {
  text-align: inherit;
  position: relative;
  margin-top: 45px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1989 {
    display: flex;
    flex-direction: column;
  }
}
.history .history-item-wrapper .history-list #item1989 .content-wrapper {
  text-align: right;
  position: absolute;
  top: 90px;
  right: 0;
  width: 57%;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1989 .content-wrapper {
    top: inherit;
    right: inherit;
    width: inherit;
    position: relative;
    margin-top: -120px;
  }
}
.history .history-item-wrapper .history-list #item1989 .history-img {
  margin-left: 18%;
  width: 43%;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1989 .history-img {
    margin-left: 0;
    width: 100%;
  }
}
.history .history-item-wrapper .history-list #item1989 .history-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.history .history-item-wrapper .history-list #item1997 {
  flex-direction: column;
  margin-top: -12%;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1997 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .history .history-item-wrapper .history-list #item1997 {
    margin-top: 3%;
  }
}
.history .history-item-wrapper .history-list #item1997 .history-img {
  margin-top: -7%;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1997 .history-img {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .history .history-item-wrapper .history-list #item1997 .history-img {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item1997 .history-img img {
    width: inherit;
  }
}
.history .history-item-wrapper .history-list #item2002 {
  position: relative;
  text-align: inherit;
  margin-top: 124px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2002 {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.history .history-item-wrapper .history-list #item2002 .content-wrapper {
  position: absolute;
  top: 112px;
  right: 0;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2002 .content-wrapper {
    position: relative;
    top: inherit;
    right: inherit;
  }
}
.history .history-item-wrapper .history-list #item2002 .history-img {
  width: 58%;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2002 .history-img {
    width: 100%;
    margin-top: -30px;
  }
}
.history .history-item-wrapper .history-list #item2002 .history-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.history .history-item-wrapper .history-list #item2006 {
  text-align: inherit;
  margin-top: 115px;
}
.history .history-item-wrapper .history-list #item2006 .content-wrapper {
  text-align: right;
}
.history .history-item-wrapper .history-list #item2006 .history-img {
  margin-top: -4%;
  width: 95%;
}
.history .history-item-wrapper .history-list #item2006 .history-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2006 {
    margin-top: 0;
  }
}
.history .history-item-wrapper .history-list #item2008 .history-img {
  margin-top: 80px;
  margin-left: 28%;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2008 .history-img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
}
.history .history-item-wrapper .history-list #item2022 {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2022 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.history .history-item-wrapper .history-list #item2022 .history-img {
  position: absolute;
  left: 28%;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2022 .history-img {
    position: relative;
    left: inherit;
    top: inherit;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 430px) {
  .history .history-item-wrapper .history-list #item2022 .history-img {
    width: 238px;
    margin-right: auto;
    margin-left: auto;
  }
}
.history .history-item-wrapper .history-list #item2022 .content-wrapper {
  padding-top: 180px;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list #item2022 .content-wrapper {
    padding-top: 0;
  }
}
.history .history-item-wrapper .history-list .history-img {
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .history-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .rs-item .history-img {
    width: 60% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  .history .history-item-wrapper .history-list .history-detail {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.home-desc-img {
  background-color: #EBEAE5;
  padding-top: 200px;
  padding-bottom: 350px;
}
@media only screen and (max-width: 1024px) {
  .home-desc-img {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.home-desc-img .home-desc-title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .home-desc-img .home-desc-title {
    margin-bottom: 17px;
  }
}
.home-desc-img .home-desc-title h2 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .home-desc-img .home-desc-title h2 {
    font-size: 20px;
  }
}
.home-desc-img .home-desc {
  text-align: center;
}
.home-desc-img .home-img {
  width: 100%;
  display: flex;
  gap: 5px;
  margin-top: 234px;
}
@media only screen and (max-width: 768px) {
  .home-desc-img .home-img {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .home-desc-img .home-img {
    margin-top: 134px;
  }
}
.home-desc-img .home-img .img-item {
  width: 20%;
}
.home-desc-img .home-img .img-item img {
  width: 100%;
  height: auto;
}
.home-desc-img .marquee-wrapper {
  display: none;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .home-desc-img .marquee-wrapper {
    display: block;
  }
}
.home-desc-img .marquee-wrapper .marquee-container {
  overflow: hidden;
}
.home-desc-img .marquee-wrapper .marquee-block {
  --total-marquee-items: 5;
  height: 234px;
  width: calc(160px * (var(--total-marquee-items)));
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.home-desc-img .marquee-inner {
  display: block;
  width: 200%;
  position: absolute;
}
.home-desc-img .marquee-inner span {
  float: left;
}
.home-desc-img .marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}
.home-desc-img .marquee-item {
  width: 140px;
  height: 234px;
  display: inline-block;
  margin: 0 10px;
  float: left;
  transition: all 0.2s ease-out;
}
.home-desc-img .marquee-item img {
  width: 100%;
  height: 100%;
}
@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.location {
  background-color: #EBEAE5;
  padding-bottom: 210px;
}
@media only screen and (max-width: 1024px) {
  .location {
    padding-bottom: 0;
  }
}
.location .location-title,
.location .location-desc {
  text-align: center;
}
.location .location-title h2 {
  font-size: 60px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .location .location-title h2 {
    font-size: 20px;
  }
}
.location .location-desc {
  margin-top: 33px;
  margin-bottom: 123px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
  .location .location-desc {
    margin-top: 20px;
    margin-bottom: 37px;
  }
}
.location .location-desc-animate-mb {
  margin-bottom: 200px;
}
.location .location-map-wrapper {
  padding-top: 200px;
}
.location .location-map {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .location .location-map {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.location .location-map .map-img {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .location .location-map .map-img {
    height: auto;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.location .location-map .map-img .pin {
  position: absolute;
  opacity: 0;
}
.location .location-map .map-img .pin img {
  max-width: 73px !important;
}
@media only screen and (max-width: 1024px) {
  .location .location-map .map-img .pin img {
    width: 42px;
  }
}
.location .location-map .map-img .pin-text {
  color: #fff;
  font-size: 7px;
  bottom: 30px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .location .location-map .map-img .pin-text {
    bottom: 19px;
    font-size: 4px;
  }
}
.location .location-map .map-img .active-animate {
  animation: pin-animate 1s ease-in-out 0s 1 forwards;
}
.location .location-map .map-img .completed-animate {
  opacity: 1;
}
.location .location-map .map-img #pin1 {
  top: 33%;
  left: 48%;
}
@media only screen and (max-width: 430px) {
  .location .location-map .map-img #pin1 {
    top: 23%;
    left: 43%;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  .location .location-map .map-img #pin1 {
    top: 23%;
    left: 47%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1640px) {
  .location .location-map .map-img #pin1 {
    top: 26%;
    left: 47%;
  }
}
.location .location-map .map-img #pin2 {
  top: 40%;
  left: 51%;
}
@media only screen and (max-width: 430px) {
  .location .location-map .map-img #pin2 {
    top: 30%;
    left: 53%;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  .location .location-map .map-img #pin2 {
    top: 31%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1640px) {
  .location .location-map .map-img #pin2 {
    top: 36%;
    left: 52%;
  }
}
@keyframes pin-animate {
  0% {
    transform: translate3d(0, -50px, 0) scaleY(1);
    opacity: 0;
  }
  25% {
    transform: translate3d(0, 0, 0) scaleY(0.7);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(0, -50px, 0) scaleY(1);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}
.location .location-map .map-en .pin img {
  max-width: 75px !important;
  width: 75px;
}
@media only screen and (max-width: 1024px) {
  .location .location-map .map-en .pin img {
    width: 44px;
  }
}
.location .location-map .map-en .pin-text {
  font-size: 6px;
  bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .location .location-map .map-en .pin-text {
    bottom: 21px;
    font-size: 4px;
  }
}

.management {
  background-color: #EBEAE5;
}
.management .section-title {
  margin-bottom: 88px;
}
@media only screen and (max-width: 1024px) {
  .management .section-title {
    margin-bottom: 40px;
  }
}
.management .mobile-title-name {
  margin-top: 43px;
  margin-bottom: 30px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .management .mobile-title-name {
    text-align: center;
    display: block;
    margin-top: 11px;
    margin-bottom: 0;
  }
}
.management .read-more-btn {
  color: #A3A3A3;
  font-weight: 700;
  padding-left: 5px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .management .read-more-btn {
    display: inline-block;
  }
}
@media only screen and (max-width: 1024px) {
  .management .more {
    display: none;
  }
}
.management .management-wrapper {
  width: 100%;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1023px) and (max-width: 1660px) {
  .management .management-wrapper {
    width: calc(100% - 234px);
  }
}
.management .management-wrapper .single-item {
  margin-bottom: 100px;
}
.management .management-wrapper .management-featured {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 188px;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured {
    flex-direction: column;
    gap: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .management .management-wrapper .management-featured {
    gap: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .left-fea .management-img .img {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .left-fea .management-img .img img {
    width: 100%;
    height: auto;
  }
}
.management .management-wrapper .management-featured .left-fea .desc {
  width: 561px;
  margin-top: 32px;
}
.management .management-wrapper .management-featured .left-fea .mobile-name,
.management .management-wrapper .management-featured .left-fea .mobile-title {
  font-size: 25px;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .left-fea .mobile-name,
  .management .management-wrapper .management-featured .left-fea .mobile-title {
    font-size: 15px;
  }
}
.management .management-wrapper .management-featured .left-fea .mobile-title {
  margin-bottom: 10px;
}
.management .management-wrapper .management-featured .right-fea {
  max-width: 695px;
  display: flex;
}
.management .management-wrapper .management-featured .right-fea .desc {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .right-fea .desc {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.management .management-wrapper .management-featured .right-fea .desc p {
  font-size: 50px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .right-fea .desc p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .management .management-wrapper .management-featured .right-fea .desc p {
    font-size: 30px;
  }
}
.management .management-wrapper .management-featured .right-fea .desc p::before {
  content: '"';
  font-size: 50px;
  font-family: marcellus;
  font-style: italic;
  position: absolute;
  left: -20px;
  top: -30px;
}
.management .management-wrapper .management-featured .right-fea .desc p::after {
  content: '"';
  font-size: 50px;
  font-family: marcellus;
  font-style: italic;
  position: absolute;
  bottom: -45px;
  padding-left: 20px;
}
.management .management-wrapper .management-featured .right-fea .top-icon {
  padding-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .right-fea .top-icon {
    padding-right: 0;
  }
}
.management .management-wrapper .management-featured .right-fea .bottom-icon {
  display: flex;
  align-items: flex-end;
  padding-left: 10px;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-featured .right-fea .bottom-icon {
    padding-left: 0;
  }
}
.management .management-wrapper .management-featured .right-fea .start-icon,
.management .management-wrapper .management-featured .right-fea .end-icon {
  font-size: 100px;
  font-style: italic;
}
.management .management-wrapper .right-single-item {
  margin-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .right-single-item {
    margin-bottom: 42px;
  }
}
.management .management-wrapper .right-single-item .management-featured {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .right-single-item .management-featured {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .right-single-item .management-featured .left-fea .img {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .right-single-item .management-featured .left-fea .img img {
    width: 100%;
    height: auto;
  }
}
.management .management-wrapper .right-single-item .title-name {
  text-align: right;
}
.management .management-wrapper .right-single-item .desc {
  text-align: right;
}
.management .management-wrapper .management-items {
  max-width: 1469px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 116px;
  flex-wrap: wrap;
}
.management .management-wrapper .management-items .single-management-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-items .single-management-wrapper {
    margin-bottom: 65px;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-items .single-management-wrapper .single-management-item {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.management .management-wrapper .management-items .single-management-wrapper .single-management-item .item-name {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-items .single-management-wrapper .single-management-item .item-name {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.management .management-wrapper .management-items .single-management-wrapper .single-management-item .item-desc {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-items .single-management-wrapper .single-management-item .item-desc {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-items .item {
    display: none;
  }
}
.management .management-wrapper .management-items .item .item-name {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .management-items .item .item-name {
    font-size: 20px;
  }
}
.management .management-wrapper .management-items .item .item-desc {
  text-align: center;
}
.management .management-wrapper .item-img {
  width: 100%;
}
.management .management-wrapper .item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .bottom-desc {
    margin-top: 70px;
    text-align: center;
  }
}
.management .management-wrapper .bottom-desc .name,
.management .management-wrapper .bottom-desc .title {
  font-size: 25px;
}
.management .management-wrapper .bottom-desc .title {
  margin-bottom: 10px;
}
.management .management-wrapper .bottom-desc .title-name {
  margin-top: 43px;
  margin-bottom: 30px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .bottom-desc .title-name {
    text-align: center;
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .management .management-wrapper .top-icon img,
  .management .management-wrapper .bottom-icon img {
    width: 30px;
  }
}
.management .mobile-management-items {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .management .mobile-management-items {
    display: block;
  }
}
.management .mobile-management-items .swiper-slide {
  width: 55.5555555556%;
}
.management .mobile-management-items .swiper-slide {
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.management .mobile-management-items .swiper-slide .item-name,
.management .mobile-management-items .swiper-slide .item-desc {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.management .mobile-management-items .swiper-slide .item-name {
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.management .mobile-management-items .swiper-slide .item-desc {
  padding-right: 5px;
  padding-left: 5px;
}
.management .mobile-management-items .swiper-slide-active {
  transform: scale(1);
}
.management .mobile-management-items .swiper-slide-active .item-name,
.management .mobile-management-items .swiper-slide-active .item-desc {
  opacity: 1;
  visibility: visible;
}

.brands-container {
  width: 100%;
  max-width: 1585px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 430px) {
  .brands-container {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1680px) {
  .brands-container {
    width: 90%;
  }
}

.brands-text-area {
  padding-top: 60px;
  padding-bottom: 438px;
  padding-left: 153px;
  background-color: #EBEAE5;
}
@media only screen and (max-width: 1024px) {
  .brands-text-area {
    padding-bottom: 66px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brands-text-area {
    padding-bottom: 230px;
  }
}
.brands-text-area .brands-text-item {
  max-width: 1117px;
}
@media only screen and (max-width: 1024px) {
  .brands-text-area .brands-text-item {
    max-width: inherit;
  }
}
.brands-text-area .brands-text-item .brands-title {
  margin-bottom: 15px;
}
.brands-text-area .brands-text-item .brands-title h2 {
  font-size: 60px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .brands-text-area .brands-text-item .brands-title h2 {
    font-size: 17.5px;
  }
}
.brands-text-area .brands-text-item .brands-title h2 br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .brands-text-area .brands-text-item .brands-title h2 br {
    display: block;
  }
}

.brands-list {
  margin-top: -365px;
  padding-bottom: 125px;
}
@media only screen and (max-width: 1024px) {
  .brands-list {
    margin-top: -35px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brands-list {
    margin-top: -100px;
  }
}
.brands-list .text-route {
  max-width: 681px;
}
@media only screen and (max-width: 430px) {
  .brands-list .text-route {
    max-width: 234px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  .brands-list .text-route {
    max-width: 400px;
  }
}
.brands-list .text-route .route {
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .brands-list .text-route .route {
    margin-top: 15px;
  }
}
.brands-list .text-route .route a {
  color: #000;
}
@media only screen and (max-width: 430px) {
  .brands-list .brand-logo img {
    width: 200px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 768px) {
  .brands-list .brand-logo img {
    width: 300px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .brands-list .brand-logo img {
    width: 350px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brands-list .brand-logo img {
    width: 450px;
  }
}
.brands-list .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.ipk {
  position: relative;
}
.ipk .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ipk .brand-logo {
  position: absolute;
  bottom: 210px;
}
@media only screen and (max-width: 1024px) {
  .ipk .brand-logo {
    bottom: 130px;
  }
}
.ipk .text-route {
  margin-top: 20px;
}
@media only screen and (min-width: 431px) and (max-width: 1440px) {
  .ipk .image-txt {
    width: 80%;
  }
}
.ipk .image {
  max-width: 1236px;
}
.ipk .image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .ipk .image {
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 768px) {
  .ipk .image {
    max-width: 248px;
  }
}

.twist {
  position: relative;
  margin-top: 148px;
  margin-bottom: 148px;
}
@media only screen and (max-width: 1024px) {
  .twist {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.twist .content {
  display: flex;
  justify-content: space-between;
}
.twist .image {
  max-width: 752px;
}
.twist .image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .twist .image {
    width: 48%;
  }
}
.twist .text-route {
  max-width: 700px;
  padding-top: 180px;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .twist .text-route {
    padding-top: 25px;
    max-width: 234px;
    width: 48%;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1650px) {
  .twist .text-route {
    max-width: 350px;
  }
}
.twist .brand-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .twist .brand-logo {
    top: initial;
    transform: initial;
  }
}
@media only screen and (max-width: 430px) {
  .twist .brand-logo {
    bottom: 35px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 768px) {
  .twist .brand-logo {
    bottom: 20%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .twist .brand-logo {
    bottom: 45%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1680px) {
  .twist .brand-logo {
    top: 60%;
    transform: translateY(-60%);
  }
}
@media only screen and (min-width: 431px) and (max-width: 1440px) {
  .twist .image {
    width: 65%;
  }
}

.machka {
  position: relative;
}
.machka .content .image {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}
.machka .text-route {
  margin-top: 20px;
  max-width: 1081px;
}
@media only screen and (max-width: 430px) {
  .machka .text-route {
    max-width: 307px;
    margin-left: auto;
    padding-right: 80px;
  }
}
.machka .brand-logo {
  position: absolute;
  bottom: 169px;
}
@media only screen and (max-width: 1024px) {
  .machka .brand-logo {
    bottom: 232px;
  }
}
.machka .image {
  max-width: 1236px;
}
.machka .image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 431px) and (max-width: 1440px) {
  .machka .image {
    width: 80%;
  }
}
@media only screen and (max-width: 430px) {
  .machka .image {
    width: 307px;
  }
}

.brand-detail-banner {
  width: 100%;
  height: auto;
}
.brand-detail-banner .banner-img {
  width: 100%;
}
.brand-detail-banner .banner-img img {
  width: 100%;
  height: auto;
}
.brand-detail-banner .banner-video {
  width: 100%;
  height: 100vh;
  z-index: 0;
}
@media only screen and (max-width: 1440px) {
  .brand-detail-banner .banner-video {
    position: relative;
    height: 0;
    padding-top: 56.25%;
  }
}
.brand-detail-banner .banner-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1440px) {
  .brand-detail-banner .banner-video video {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.brand-detail-banner .banner-video .video-volume {
  position: absolute;
  right: 23px;
  bottom: 23px;
  cursor: pointer;
}
.brand-detail-banner .banner-video .video-volume .open-volume {
  display: block;
}
.brand-detail-banner .banner-video .video-volume .close-volume {
  display: none;
}
.brand-detail-banner .active-banner {
  display: block;
}
.brand-detail-banner .passive-banner {
  display: none;
}

.brand-detail-text-img {
  text-align: center;
  margin-top: 170px;
}
@media only screen and (max-width: 1024px) {
  .brand-detail-text-img {
    margin-top: 70px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brand-detail-text-img {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.brand-detail-text-img .text {
  max-width: 1480px;
  margin-top: 112px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .brand-detail-text-img .text {
    margin-top: 60px;
  }
}
.brand-detail-text-img .text p:first-child {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1380px) {
  .brand-detail-text-img .text br {
    display: none;
  }
}
.brand-detail-text-img .image {
  max-width: 1236px;
  margin: auto;
}
.brand-detail-text-img .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.brand-number-info {
  text-align: center;
  margin-top: 125px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}
.brand-number-info .title {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .title {
    padding-right: 100px;
    padding-left: 100px;
  }
}
.brand-number-info .title h2 {
  font-size: 60px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .title h2 {
    font-size: 20px;
  }
}
.brand-number-info .machka-title {
  max-width: 880px;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .machka-title {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.brand-number-info .ipekyol-title {
  max-width: 981px;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .ipekyol-title {
    padding-right: 23px;
    padding-left: 23px;
  }
}
.brand-number-info .twist-title {
  max-width: 690px;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .twist-title {
    padding-right: 75px;
    padding-left: 75px;
  }
}
.brand-number-info .twist-title br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .twist-title br {
    display: block;
  }
}
.brand-number-info .img-area {
  width: calc(100% - 304px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .img-area {
    gap: 10px;
    margin-bottom: 50px;
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brand-number-info .img-area {
    gap: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .brand-number-info .img-area .img-left,
  .brand-number-info .img-area .img-center,
  .brand-number-info .img-area .img-right {
    flex: 1;
  }
}
@media only screen and (max-width: 1680px) {
  .brand-number-info .img-area .img-left img,
  .brand-number-info .img-area .img-center img,
  .brand-number-info .img-area .img-right img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.brand-number-info .mobile-img-area {
  display: none;
  margin-top: 22px;
  margin-bottom: 52px;
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .mobile-img-area {
    display: block;
  }
}
.brand-number-info .mobile-img-area .swiper-slide .slide-img {
  transition: all 0.5s ease;
  transform: scale(0.8);
}
.brand-number-info .mobile-img-area .swiper-slide .slide-img img {
  width: 100%;
  height: auto;
}
.brand-number-info .mobile-img-area .swiper-slide-active .slide-img {
  transform: scale(1);
}
.brand-number-info .counter-area {
  display: flex;
  justify-content: center;
  gap: 180px;
}
@media only screen and (max-width: 430px) {
  .brand-number-info .counter-area {
    gap: 35px;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  .brand-number-info .counter-area {
    gap: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brand-number-info .counter-area {
    gap: 130px;
  }
}
.brand-number-info .counter-area .counter-item .number-count {
  font-size: 150px;
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .counter-area .counter-item .number-count {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .brand-number-info .counter-area .counter-item .number-count {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .brand-number-info .counter-area .counter-item .desc-count {
    max-width: 100px;
    text-align: center;
  }
}

.brand-slider-area {
  background-color: #EBEAE5;
  padding-top: 142px;
  padding-bottom: 124px;
  margin-bottom: 12px;
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  .brand-slider-area {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 2.5px;
  }
}
.brand-slider-area .slide-img {
  display: inline-block;
}
.brand-slider-area .text {
  text-align: center;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.brand-slider-area .text .lg-title h2 {
  font-size: 60px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .brand-slider-area .text .lg-title h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1380px) {
  .brand-slider-area .text .lg-title h2 br {
    display: none;
  }
}
.brand-slider-area .text .md-title h3 {
  font-size: 40px;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .brand-slider-area .text .md-title h3 {
    font-size: 30px;
  }
}
.brand-slider-area .text .desc {
  margin-top: 96px;
  margin-bottom: 132px;
}
@media only screen and (max-width: 1024px) {
  .brand-slider-area .text .desc {
    margin-top: 45px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1380px) {
  .brand-slider-area .text .desc br {
    display: none;
  }
}
.brand-slider-area .brand-slick-wrapper .brand-slide {
  display: inline-block;
}
.brand-slider-area .brand-slick-wrapper .slick-slide {
  margin: 0 20px;
  text-align: center;
}
.brand-slider-area .brand-slick-wrapper .slide-route {
  margin-top: 35px;
  text-align: center;
}
.brand-slider-area .brand-slick-wrapper .slide-route a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}
.brand-slider-area .brand-slick-wrapper .slide-route a .name {
  font-size: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .brand-slider-area .brand-slick-wrapper .slide-route a .name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .brand-slider-area .brand-slick-wrapper .slide-route a .machka-name {
    font-size: 16px;
  }
}
.brand-slider-area .brand-slick-wrapper .slide-route a .desc {
  margin-top: 10px;
}
.brand-slider-area .brand-slick-wrapper .slick-dots {
  bottom: -100px;
}
.brand-slider-area .brand-slick-wrapper .slick-dots li {
  width: 53px;
  height: 3px;
}
.brand-slider-area .brand-slick-wrapper .slick-dots button {
  width: 53px;
  height: 3px;
  padding: 0;
  background: #FFF;
}
.brand-slider-area .brand-slick-wrapper .slick-dots button::before {
  content: "";
}
.brand-slider-area .brand-slick-wrapper .slick-dots .slick-active button {
  background: #000;
}
.brand-slider-area .brand-slick-wrapper .slick-track {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .multi-items .brand-slide img {
    width: 100%;
  }
}

@media only screen and (max-width: 430px) {
  .two-item .slick-list {
    padding: 0 !important;
  }
}
.two-item .brand-slide {
  width: auto !important;
}
@media only screen and (max-width: 430px) {
  .two-item .brand-slide {
    width: 50% !important;
    margin: 0 10px !important;
  }
}
.two-item .brand-slide img {
  width: 100%;
}
.two-item .slick-track {
  display: flex;
  justify-content: center;
}

.one-item .slick-slide {
  width: initial !important;
}
.one-item .slick-slide img {
  width: 100%;
}
.one-item .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-slider-area {
  background-color: #EBEAE5;
  padding-top: 100px;
}
@media only screen and (max-width: 1024px) {
  .news-slider-area {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 15px;
  }
}
.news-slider-area .slide-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-slider-area .news-swiper {
  padding-bottom: 112px;
}
.news-slider-area .swiper-slide {
  text-align: center;
}
.news-slider-area .swiper-slide a {
  text-decoration: none;
  color: #000;
}
.news-slider-area .swiper-slide .slide-img {
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.news-slider-area .news-title {
  max-width: 724px;
  text-align: center;
  font-size: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
  .news-slider-area .news-title {
    font-size: 23px;
  }
}
.news-slider-area .news-desc {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.news-slider-area .swiper-slide-active .news-title {
  opacity: 1;
  visibility: visible;
}
.news-slider-area .swiper-slide-active .news-desc {
  opacity: 1;
  visibility: visible;
}
.news-slider-area .swiper-slide-active .slide-img {
  transform: scale(1);
}
.news-slider-area .swiper-pagination {
  bottom: 40px;
}
.news-slider-area .swiper-pagination-bullet {
  width: 53px;
  height: 3px;
  border-radius: 15px;
  background-color: #FFF;
  opacity: 1;
}
.news-slider-area .swiper-pagination-bullet-active {
  background-color: #000;
}

.news-list {
  padding-top: 165px;
  padding-bottom: 130px;
}
@media only screen and (max-width: 1024px) {
  .news-list {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.news-list .list-wrapper {
  width: 100%;
  max-width: 1460px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .news-list .list-wrapper {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
    gap: 45px;
    align-items: center;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1670px) {
  .news-list .list-wrapper {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    gap: 30px;
  }
}
.news-list .list-wrapper .news {
  width: 30%;
  max-width: 447px;
}
@media only screen and (max-width: 1024px) {
  .news-list .list-wrapper .news {
    width: 100%;
  }
}
.news-list .list-wrapper .news img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list .list-wrapper .news .news-title {
  font-size: 40px;
  margin-top: 55px;
  margin-bottom: 30px;
  padding-right: 25px;
}
@media only screen and (max-width: 1024px) {
  .news-list .list-wrapper .news .news-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    max-width: 225px;
  }
}
.news-list .list-wrapper .news .news-desc {
  padding-right: 25px;
  transition: all 0.5s ease;
}
.news-list .list-wrapper .news .news-desc.hide {
  max-height: 200px;
  overflow: hidden;
}
.news-list .list-wrapper .news .news-desc.show {
  overflow: initial;
  max-height: initial;
}
.news-list .list-wrapper .news:nth-child(3n-1) {
  padding-top: 165px;
}
@media only screen and (max-width: 1024px) {
  .news-list .list-wrapper .news:nth-child(3n-1) {
    padding-top: 0;
  }
}
.news-list .list-wrapper .news .news-lnk {
  display: inline-block;
  color: #000;
  text-decoration: none;
  margin-top: 10px;
  position: relative;
}
.news-list .list-wrapper .news .news-lnk::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.5s ease;
}
.news-list .list-wrapper .news .news-lnk:hover::after {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .news-list .list-wrapper #musteri-deneyimi .news-lnk {
    display: none;
  }
}

.career-container {
  width: 100%;
  max-width: 1552px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .career-container {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .career-container {
    width: 90%;
  }
}

.career {
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .career {
    padding-top: 23px;
  }
}
.career .career-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.career .career-content {
  display: flex;
  justify-content: space-between;
  padding-top: 137px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content {
    flex-direction: column;
    padding-top: 50px;
  }
}
.career .career-content .left-content {
  width: 70%;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.career .career-content .left-content .top .title-career {
  margin-bottom: 150px;
  font-family: marcellus;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .title-career {
    margin-bottom: 50px;
  }
}
.career .career-content .left-content .top .title-career .lg {
  font-size: 96px;
  line-height: 46px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .title-career .lg {
    font-size: 48px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .career .career-content .left-content .top .title-career .lg {
    font-size: 76px;
    line-height: 26px;
  }
}
.career .career-content .left-content .top .title-career .md {
  font-size: 66px;
  padding-left: 206px;
  line-height: 86px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .title-career .md {
    font-size: 32px;
    line-height: 50px;
    letter-spacing: inherit;
    padding-left: 100px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .career .career-content .left-content .top .title-career .md {
    line-height: 125px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .career .career-content .left-content .top .title-career .md {
    padding-left: 150px;
  }
}
.career .career-content .left-content .top .values {
  display: flex;
  flex-direction: column;
  gap: 140px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .values {
    gap: 50px;
  }
}
.career .career-content .left-content .top .values .item .title {
  font-size: 64px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .values .item .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .career .career-content .left-content .top .values .item .title {
    font-size: 40px;
  }
}
.career .career-content .left-content .top .values .item .team {
  padding-left: 15%;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .values .item .team {
    padding-left: 7%;
  }
}
.career .career-content .left-content .top .values .item .innovation {
  padding-left: 210px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .values .item .innovation {
    padding-left: 36px;
  }
}
.career .career-content .left-content .top .values .item .passion {
  padding-left: 133px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .values .item .passion {
    padding-left: 65px;
  }
}
.career .career-content .left-content .top .values .item .customer {
  padding-left: 405px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .left-content .top .values .item .customer {
    padding-left: 170px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .career .career-content .left-content .top .values .item .customer {
    padding-left: 150px;
  }
}
.career .career-content .right-content {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 100px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .right-content {
    display: none;
  }
}
.career .career-content .right-content .career-number {
  font-size: 150px;
  line-height: 160px;
  text-align: right;
}
.career .career-content .right-content .career-count-desc {
  text-align: right;
  padding-right: 10px;
}
.career .career-content .mobile-count-content {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .mobile-count-content {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 35px;
         column-gap: 35px;
    row-gap: 30px;
  }
}
.career .career-content .mobile-count-content .career-count {
  text-align: center;
  width: 40%;
}
.career .career-content .mobile-count-content .career-number {
  font-size: 150px;
  line-height: 120px;
}
@media only screen and (max-width: 1024px) {
  .career .career-content .mobile-count-content .career-number {
    font-size: 45px;
    line-height: 25px;
  }
}
.career .career-content .mobile-count-content .career-count-desc {
  text-align: center;
  margin-top: 7px;
}
.career .career-period {
  margin-top: 125px;
  margin-bottom: 125px;
}
@media only screen and (max-width: 1024px) {
  .career .career-period {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 55px;
    margin-bottom: 70px;
  }
}
.career .career-period .title {
  font-size: 60px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .career .career-period .title {
    font-size: 20px;
  }
}
.career .career-period .period-img {
  max-width: 1367px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 125px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .career .career-period .period-img {
    margin-top: 60px;
  }
}
.career .career-period .period-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .career .career-period .period-img img {
    width: 100%;
    max-width: 258px;
  }
}

.career-consectetur .title-area {
  background-color: #EBEAE5;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 136px;
}
@media only screen and (max-width: 1024px) {
  .career-consectetur .title-area {
    margin-bottom: 60px;
  }
}
.career-consectetur .title-area .career-container {
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .career-consectetur .title-area .career-container {
    padding-left: 30px;
    gap: 15px;
  }
}
.career-consectetur .title-area .career-container .title {
  font-size: 60px;
}
@media only screen and (max-width: 1024px) {
  .career-consectetur .title-area .career-container .title {
    font-size: 23px;
  }
}
.career-consectetur .title-area .career-container .title-icon {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 1024px) {
  .career-consectetur .title-area .career-container .title-icon {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .career-consectetur .title-area .career-container .title-icon img {
    width: 100%;
    height: auto;
  }
}
.career-consectetur .top-content {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
.career-consectetur .top-content .desc {
  padding-left: 30px;
}
.career-consectetur .top-content .desc ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media only screen and (max-width: 1024px) {
  .career-consectetur .top-content .desc ul {
    gap: 20px;
  }
}

.consectetur-content .title {
  font-size: 60px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  .consectetur-content .title {
    font-size: 20px;
  }
}
.consectetur-content .three-desc {
  margin-top: 90px;
  max-width: 755px;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .consectetur-content .three-desc {
    margin-top: 20px;
    padding-left: 30px;
    gap: 30px;
  }
}
.consectetur-content .consectetur-img {
  margin-top: 115px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .consectetur-content .consectetur-img {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.consectetur-content .consectetur-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.consectetur-content .bottom-content {
  display: flex;
  flex-direction: column;
  gap: 85px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .consectetur-content .bottom-content {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    gap: 55px;
  }
}
.consectetur-content .bottom-content .second-item .desc {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sust-banner-content {
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .sust-banner-content {
    padding-top: 23px;
  }
}
.sust-banner-content .sust-banner {
  width: calc(100% - 884px);
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .sust-banner-content .sust-banner {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-banner-content .sust-banner {
    width: calc(100% - 444px);
  }
}
.sust-banner-content .sust-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sust-banner-content .desc .title {
  font-size: 60px;
  width: 100%;
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .sust-banner-content .desc .title {
    font-size: 23px;
    margin-top: 50px;
    margin-bottom: 45px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-banner-content .desc .title {
    font-size: 35px;
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1680px) {
  .sust-banner-content .desc .title {
    font-size: 45px;
    padding-right: 150px;
    padding-left: 150px;
  }
}
@media only screen and (max-width: 1380px) {
  .sust-banner-content .desc .title br {
    display: none;
  }
}
.sust-banner-content .desc #sust-en-title {
  font-size: 55px;
}
.sust-banner-content .desc .text {
  text-align: center;
  width: 100%;
  max-width: 1492px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1380px) {
  .sust-banner-content .desc .text br {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .sust-banner-content .desc .text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-banner-content .desc .text {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1680px) {
  .sust-banner-content .desc .text {
    padding-right: 100px;
    padding-left: 100px;
  }
}
.sust-banner-content .icon-info {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 88px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .sust-banner-content .icon-info {
    -moz-column-gap: 35px;
         column-gap: 35px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-top: 51px;
    margin-bottom: 51px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1480px) {
  .sust-banner-content .icon-info {
    justify-content: space-around;
    gap: initial;
  }
}
.sust-banner-content .icon-info .item {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .sust-banner-content .icon-info .icon img {
    width: 65px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1480px) {
  .sust-banner-content .icon-info .icon img {
    width: 130px;
  }
}

.sust-img-text {
  background-color: #EBEAE5;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
.sust-img-text .left-img-text,
.sust-img-text .right-img-text {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .left-img-text,
  .sust-img-text .right-img-text {
    flex-direction: column;
  }
}
.sust-img-text .left-img-text .text,
.sust-img-text .right-img-text .text {
  padding-left: 104px;
  padding-right: 129px;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .left-img-text .text,
  .sust-img-text .right-img-text .text {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1780px) {
  .sust-img-text .left-img-text .text,
  .sust-img-text .right-img-text .text {
    width: 50%;
    padding-right: 35px;
    padding-left: 35px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1780px) {
  .sust-img-text .left-img-text .text,
  .sust-img-text .right-img-text .text {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.sust-img-text .left-img-text .text .title,
.sust-img-text .right-img-text .text .title {
  font-size: 60px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .left-img-text .text .title,
  .sust-img-text .right-img-text .text .title {
    font-size: 20px;
    margin-top: 45px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-img-text .left-img-text .text .title,
  .sust-img-text .right-img-text .text .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1780px) {
  .sust-img-text .left-img-text .text .title,
  .sust-img-text .right-img-text .text .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .left-img-text .text .title br,
  .sust-img-text .right-img-text .text .title br {
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1780px) {
  .sust-img-text .left-img-text .img,
  .sust-img-text .right-img-text .img {
    width: 50%;
  }
}
.sust-img-text .left-img-text .img img,
.sust-img-text .right-img-text .img img {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .left-img-text .img img,
  .sust-img-text .right-img-text .img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1780px) {
  .sust-img-text .left-img-text .img img,
  .sust-img-text .right-img-text .img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .left-img-text {
    order: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .right-img-text {
    flex-direction: column-reverse;
    order: 2;
  }
}
.sust-img-text .sust-middle-banner {
  position: relative;
  order: 3;
}
.sust-img-text .sust-middle-banner .sust-middle-text {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #EBEAE5;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .sust-middle-banner .sust-middle-text {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
    text-align: left;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 55px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1360px) {
  .sust-img-text .sust-middle-banner .sust-middle-text {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.sust-img-text .sust-middle-banner .sust-middle-text .title {
  font-size: 56px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .sust-middle-banner .sust-middle-text .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-img-text .sust-middle-banner .sust-middle-text .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1780px) {
  .sust-img-text .sust-middle-banner .sust-middle-text .title {
    font-size: 40px;
  }
}
.sust-img-text .sust-middle-banner .sust-middle-text .desc {
  max-width: 1265px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1025px) and (max-width: 1780px) {
  .sust-img-text .sust-middle-banner .sust-middle-text .desc {
    font-size: 14px;
  }
}
.sust-img-text .sust-middle-banner img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sust-img-text .bottom-left-img-text {
  order: 4;
}
@media only screen and (max-width: 1024px) {
  .sust-img-text .bottom-left-img-text {
    margin-bottom: 45px;
  }
}

.sust-bottom-text {
  text-align: center;
  margin-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .sust-bottom-text {
    margin-bottom: 57px;
  }
}
.sust-bottom-text .title {
  max-width: 1480px;
  font-size: 60px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 150px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .sust-bottom-text .title {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-bottom-text .title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1680px) {
  .sust-bottom-text .title {
    font-size: 45px;
  }
}
.sust-bottom-text .desc {
  padding-right: 50px;
  padding-left: 50px;
}
@media only screen and (max-width: 1024px) {
  .sust-bottom-text .desc {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.sust-quality-top .title {
  text-align: center;
}
.sust-quality-top .title h3 {
  font-size: 56px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-top .title h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-quality-top .title h3 {
    font-size: 35px;
  }
}
.sust-quality-top .title h2 {
  font-size: 76px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-top .title h2 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-quality-top .title h2 {
    font-size: 45px;
  }
}
.sust-quality-top .img {
  margin-top: 86px;
  margin-bottom: 84px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-top .img {
    padding-right: 7px;
    padding-left: 7px;
    margin-top: 33px;
    margin-bottom: 33px;
  }
}
@media only screen and (max-width: 1024px) {
  .sust-quality-top .img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sust-quality-top .desc {
  text-align: center;
  width: 100%;
  max-width: 1034px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-top .desc {
    margin-top: 20px;
    margin-bottom: 43px;
    padding-right: 28px;
    padding-left: 28px;
  }
}

.sust-quality-bottom .band {
  background-color: #EBE9E5;
  font-size: 45px;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 52px;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .band {
    font-size: 14px;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    gap: 6px;
    margin-bottom: 17px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-quality-bottom .band {
    font-size: 35px;
  }
}
.sust-quality-bottom .band .icon img {
  display: block;
}
.sust-quality-bottom .right-band {
  padding-left: 271px;
  margin-bottom: 127px;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .right-band {
    padding-left: 27px;
    margin-bottom: 47px;
  }
}
.sust-quality-bottom .right-band .band {
  border-radius: 81.5px 0 0 81.5px;
  padding-left: 30px;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .right-band .band {
    padding-left: 17px;
  }
}
.sust-quality-bottom .right-band .desc {
  margin-left: 155px;
  width: 100%;
  max-width: 1017px;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .right-band .desc {
    margin-left: 61px;
    max-width: 270px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-quality-bottom .right-band .desc {
    max-width: 500px;
  }
}
.sust-quality-bottom .left-band {
  padding-right: 294px;
  margin-bottom: 127px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .left-band {
    padding-right: 27px;
    margin-bottom: 47px;
  }
}
.sust-quality-bottom .left-band .band {
  border-radius: 0 81.5px 81.5px 0;
  padding-right: 36px;
  justify-content: flex-end;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .left-band .band {
    padding-right: 17px;
  }
}
.sust-quality-bottom .left-band .desc {
  text-align: right;
  margin-right: 167px;
  max-width: 1031px;
}
@media only screen and (max-width: 1024px) {
  .sust-quality-bottom .left-band .desc {
    margin-right: 61px;
    max-width: 270px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .sust-quality-bottom .left-band .desc {
    max-width: 530px;
  }
}

.frnch-text {
  text-align: center;
  padding-top: 66px;
}
@media only screen and (max-width: 1024px) {
  .frnch-text {
    padding-top: 38px;
  }
}
.frnch-text .title h2 {
  font-size: 60px;
  margin-bottom: 25px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .frnch-text .title h2 {
    font-size: 23px;
  }
}
.frnch-text .desc {
  max-width: 796px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .frnch-text .desc {
    width: 100%;
    max-width: 283px;
    margin-right: auto;
    margin-left: auto;
  }
}

.frnch-form {
  margin-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .frnch-form {
    margin-top: 50px;
    margin-bottom: 60px;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.frnch-form .title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .frnch-form .title {
    font-size: 23px;
    margin-bottom: 35px;
  }
}
.frnch-form .form-item {
  display: flex;
  align-items: center;
  width: 515px;
  height: 50px;
  border: 1px solid #000;
  margin-bottom: 30px;
  padding-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .frnch-form .form-item {
    width: 100%;
  }
}
.frnch-form .form-item input,
.frnch-form .form-item select,
.frnch-form .form-item textarea {
  flex: 1;
  border: none;
  outline: none;
  padding-left: 5px;
  font-size: 18px;
  font-family: "marcellus";
}
@media only screen and (max-width: 1024px) {
  .frnch-form .form-item input,
  .frnch-form .form-item select,
  .frnch-form .form-item textarea {
    font-size: 11px;
  }
}
.frnch-form .form-item select {
  background-image: url("../images/dropdown-arrow.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
@media only screen and (max-width: 1024px) {
  .frnch-form .form-item select {
    padding-right: 40px;
  }
}
.frnch-form .form-item textarea {
  height: 144px;
  resize: none;
}
.frnch-form .form-item label {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .frnch-form .form-item label {
    font-size: 11px;
  }
}
.frnch-form .form-textarea-item {
  align-items: flex-start;
  height: auto;
  padding-top: 15px;
}
.frnch-form fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  border: none;
  margin-top: 55px;
  margin-bottom: 70px;
}
.frnch-form fieldset .radio-area {
  display: flex;
  gap: 35px;
  margin-top: 20px;
}
.frnch-form fieldset .radio-area input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #000;
}
.frnch-form fieldset .radio-area input:focus {
  background-color: #000;
}
@media only screen and (max-width: 1024px) {
  .frnch-form fieldset .radio-area input {
    width: 10px;
    height: 10px;
  }
}
.frnch-form input::file-selector-button {
  background-color: #EBE9E5;
  height: 48px;
  border: none;
  outline: none;
  font-size: 15px;
}
.frnch-form .file-input-item .file-upload {
  position: relative;
  flex: 1;
}
.frnch-form .file-input-item .upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.frnch-form .file-input-item .browse-btn {
  max-width: 134px;
  padding: 14px 20px;
  height: 48px;
  font-size: 15px;
  background-color: #EBE9E5;
  float: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1024px) {
  .frnch-form .file-input-item .browse-btn {
    font-size: 11px;
    line-height: 20px;
  }
}
.frnch-form .file-input-item .browse-btn .btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.frnch-form .btn-sbmt {
  width: 515px;
  height: 50px;
  background-color: #EBE9E5;
  outline: 0;
  border: 0;
  font-size: 18px;
  font-family: marcellus;
  margin-top: 75px;
  cursor: pointer;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .frnch-form .btn-sbmt {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    font-size: 15px;
  }
}
.frnch-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 157px;
}
@media only screen and (max-width: 1024px) {
  .frnch-form form {
    margin-bottom: 60px;
  }
}

.site-text {
  width: 100%;
  max-width: 924px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .site-text {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.site-text .title {
  margin-bottom: 23px;
}
.site-text .title h1 {
  font-size: 17px;
}
@media only screen and (max-width: 1024px) {
  .site-text .title h1 {
    font-size: 15px;
  }
}
.site-text .desc span {
  font-size: 18px;
  margin-bottom: 30px;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .site-text .desc span {
    font-size: 13px;
  }
}
.site-text .desc p {
  font-size: 16px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .site-text .desc p {
    font-size: 11px;
  }
}
.site-text .desc p a {
  color: #000;
}
.site-text .desc #kurumsalMail {
  font-size: 16px;
  color: #000;
  display: inline-block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .site-text .desc #kurumsalMail {
    font-size: 11px;
  }
}

.contact {
  text-align: center;
  padding-bottom: 103px;
  padding-top: 77px;
}
@media only screen and (max-width: 1024px) {
  .contact {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 50px;
    padding-top: 52px;
  }
}
.contact .title {
  font-size: 40px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .contact .title {
    font-size: 23px;
  }
}
.contact .txt,
.contact .phone {
  font-size: 15px;
}
.contact .phone a {
  text-decoration: none;
}
.contact .customer-phone {
  margin-top: 20px;
}
.contact .location-map {
  margin-top: 73px;
  transform: scale(1);
  filter: grayscale(1);
}
@media only screen and (max-width: 1024px) {
  .contact .location-map {
    position: relative;
    padding-top: 56.25%;
  }
}
.contact .location-map iframe {
  width: 722px;
  height: 404px;
}
@media only screen and (max-width: 1024px) {
  .contact .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
.contact .contact-info {
  margin-top: 102px;
  display: flex;
  flex-direction: column;
  gap: 102px;
}
@media only screen and (max-width: 1024px) {
  .contact .contact-info {
    gap: 40px;
    margin-top: 50px;
  }
}
.contact a {
  color: #000;
}

@media only screen and (max-width: 430px) {
  .footer-social-container {
    padding-right: 0;
    padding-left: 0;
  }
}

.social-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media only screen and (max-width: 430px) {
  .social-wrapper {
    width: 100%;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1280px) {
  .social-wrapper {
    flex-direction: column;
    display: inline-flex;
  }
}
.social-wrapper .social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-left: 1px solid #000;
}
@media only screen and (max-width: 430px) {
  .social-wrapper .social-item {
    border-left: none;
    border-bottom: 1px solid #000;
    padding: 15px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1280px) {
  .social-wrapper .social-item {
    border-left: none;
  }
}
@media only screen and (max-width: 430px) {
  .social-wrapper .social-item:last-child {
    border-bottom: none;
  }
}
.social-wrapper .social-lnk {
  display: flex;
  gap: 25px;
}
.social-wrapper .social-lnk a {
  text-decoration: none;
  font-size: 13px;
}
@media only screen and (max-width: 430px) {
  .social-wrapper .social-lnk a {
    font-size: 10px;
  }
}
@media only screen and (max-width: 430px) {
  .social-wrapper .social-lnk {
    gap: 10px;
  }
}
.social-wrapper .social-logo {
  display: flex;
  align-items: center;
}

.footer {
  background-color: #EBEAE5;
  padding-top: 124px;
}
@media only screen and (max-width: 1024px) {
  .footer {
    padding-top: 40px;
  }
}
.footer .newsletter {
  background-color: #EBEAE5;
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .footer .newsletter {
    text-align: center;
    margin-bottom: 35px;
  }
}
.footer .newsletter form {
  width: 437px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .footer .newsletter form {
    width: 100%;
  }
}
.footer .newsletter form .input-item {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .footer .newsletter form .input-item {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.footer .newsletter form .input-item label {
  padding-bottom: 20px;
  font-family: marcellus;
}
.footer .newsletter form .input-item input {
  color: #7B7B7B;
  font-family: marcellus;
  padding-left: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  outline: 0;
  font-style: italic;
}
.footer .newsletter form .checkbox-item {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}
@media only screen and (max-width: 1024px) {
  .footer .newsletter form .checkbox-item {
    gap: 0;
    padding-left: 35px;
    padding-right: 35px;
  }
}
.footer .newsletter form .checkbox-item .checkbox input {
  width: 13px;
  height: 13px;
}
.footer .newsletter form .checkbox-item .checkbox-desc {
  font-size: 10px;
  padding-top: 3px;
  font-family: marcellus;
}
.footer .newsletter form .checkbox-item .checkbox-desc a {
  color: #000;
}
.footer .footer-menu ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.footer .footer-menu ul a {
  text-decoration: none;
  color: #000;
  font-family: marcellus;
  padding-bottom: 5px;
  position: relative;
}
.footer .footer-menu ul a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: all 0.5s ease;
}
.footer .footer-menu ul a:hover::after {
  width: 100%;
}
@media only screen and (min-width: 1025px) and (max-width: 1360px) {
  .footer .footer-menu ul a {
    font-size: 13px;
  }
}
.footer .footer-container {
  width: calc(100% - 310px);
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-container {
    width: 100%;
  }
}
.footer .footer-container .footer-line {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-top: 48px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-container .footer-line {
    width: calc(100% - 60px);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 46px;
  }
}
.footer .footer-container .footer-social {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-container .footer-social {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
    margin-bottom: 46px;
  }
}
.footer .footer-container .footer-social .social-item {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer .footer-container .footer-social .social-item .social-logo {
  max-height: 17px;
}
.footer .footer-container .footer-social .social-item .social-brand-list {
  display: flex;
  gap: 13px;
}
.footer .footer-container .footer-social .social-item .social-brand-list a {
  display: inline-block;
  color: #000;
  font-size: 11px;
  text-decoration: none;
}
.footer .footer-container .footer-routes {
  width: 100%;
  background-color: #fff;
  padding-top: 7px;
  padding-bottom: 7px;
}
.footer .footer-container .footer-routes ul {
  display: flex;
  justify-content: center;
  gap: 100px;
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-container .footer-routes ul {
    padding-right: 10px;
    padding-left: 10px;
    gap: 0;
    justify-content: space-around;
  }
}
.footer .footer-container .footer-routes ul a {
  text-decoration: none;
  color: #000;
  font-family: marcellus;
}/*# sourceMappingURL=stylev2.1.css.map */