@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700&family=Raleway:wght@300;400;500;600;700&display=swap');
:root{
  --ball-hl-scroll: 0;
  --ball-hl-scroll-percentage: 0;
  --sub-title-fs: clamp(20px, 1.4vw, 28px);
  --desc-fs: clamp(16px, 1.35vw, 24px);
  --sec-title-fs: clamp(36px, 4vw, 76px);
  --sec-title-s-fs: clamp(30px, 3.5vw, 64px);
  --sec-title-xs-fs: clamp(24px, 3vw, 56px);
  --app-height: 100vh;
}

/* Reset CSS
* --------------------------------------- */
html{
  font-family: 'Montserrat', sans-serif;
  background-color:#292828;
  color:white;
  font-size:16px;
  scroll-behavior: smooth;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
    text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
    font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#f2f2f2;
}
q:before,q:after {
    content:'';
}
abbr,acronym {
  border: 0;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
}

.modal.modal-fullscreen .modal-dialog {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  max-width: none;
}

.modal.modal-fullscreen .modal-content {
  height: auto;
  height: 100vh;
  border-radius: 0;
  border: none;
}

.modal.modal-fullscreen .modal-body {
  overflow-y: auto;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: 0;
  box-shadow: 0;
  outline: 0 none;
}

img{
  width:100%;
}

/* Scroll Bar */
::-webkit-scrollbar {width: 10px;}
::-webkit-scrollbar-track {background: #f1f1f1;}
::-webkit-scrollbar-thumb {background: #888;}
::-webkit-scrollbar-thumb:hover {background: #555;}

/* Common */
html {
    scroll-behavior: smooth;
    background-color:#fff;
    color:#484141;
}
main{
  padding-top:61px;
}
body.dialog-open{
  overflow:hidden;
}
.radius-container{
  height:60px;
  display:flex;
}
.radius-all{
  border-radius: 4vw;
}
.radius-top{
  border-radius: 4vw 4vw 0 0;
  height:100%;
  width:100%;
}
.radius-bottom{
  border-radius: 0 0 4vw 4vw;
  height:100%;
  width:100%;
}
.center{
  text-align:center;
}
.section-title{
  font-size:4vw;
  font-size:var(--sec-title-fs);
  font-weight:bold;
  margin-bottom:.75em;
}
.section-title.small{
  font-size:3.5vw;
  font-size:var(--sec-title-s-fs);
}
.section-title .small{
  font-size:.9em;
}
.section-title.red{
  background: var(--gradient-01, linear-gradient(180deg, #DF6363 0%, #FFB88C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.orange{
  background: var(--gradient-03, linear-gradient(180deg, #FFE25A 0%, #FFA852 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.purple{
  background: var(--gradient-02, linear-gradient(180deg, #E0C4FD 0%, #8FC6FD 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.green{
  background: var(--gradient-04, linear-gradient(180deg, #2DC1E4 0%, #E8ECC7 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.black{
  color:#000;
  background:transparent;
}
.section-desc{
  font-size:clamp(18px,1.5vw,24px);
  line-height:1.5em;
  margin-bottom:1.5em;
  font-weight:bold;
}
.m-wrapper{
  margin:100px auto;
}
.p-wrapper{
  padding:100px 0;
}
.full_width{
  width:100%;
}
.text-center{
  text-align: center;
}
button, .link-btn{
  position: relative;
  font-family: 'Raleway', sans-serif;
  border-radius:30px;
  background:rgba(0, 182, 189, 1);
  border:none;
  z-index:1;
  color:white;
  padding:10px 24px;
  font-size:1.1rem;
  line-height:1.5em;
  cursor:pointer;
}
.section-wrapper{
  width:95%;
  max-width:1440px;
  margin:0 auto;
}

.section-left-wrapper{
  padding-left:clamp(2.5%, calc((100% - 1440px) / 2), 100%);
}

.black-bg{
  background-color:#2F2F2F;
}
.white-bg{
  background-color:#FBFBFB;
}
.gray-bg{
  background-color:#F3F3F3;
}
.green-bg,
button.green, .link-btn.green{
  background: var(--gradient-04, linear-gradient(180deg, #2DC1E4 0%, #E8ECC7 100%));
}
.purple-bg,
button.purple, .link-btn.purple{
  background: var(--gradient-02, linear-gradient(180deg, #E0C4FD 0%, #8FC6FD 100%));
}
.red-bg,
button.red, .link-btn.red{
  background: var(--gradient-01, linear-gradient(180deg, #DF6363 0%, #FFB88C 100%));
}
.orange-bg,
button.orange, .link-btn.orange{
  background: var(--gradient-03, linear-gradient(180deg, #FFE25A 0%, #FFA852 100%));
}
@media screen and (max-width:1440px){
  .m-wrapper{
    margin:70px auto;
  }
  .p-wrapper{
    padding:70px 0;
  }
}
@media screen and (max-width:1024px){
  button, .link-btn{
    font-size:.9em;
    padding:7.5px 16px;
  }
  .m-wrapper{
    margin:40px auto;
  }
  .p-wrapper{
    padding:40px 0;
  }
}

/* Header */
header{
  position: fixed;
  left: 0;
  top: 0;
  background-color:#F2F2F2;
  padding:13px 0;
  width:100%;
  z-index: 999;
}
header .header-container{
  width:90%;
  margin:0 auto;
  display:flex;
}
header .logo{
  width:40px;
  height:35px;
}
header .menu{
  display:flex;
  width:calc(100% - 40px);
  align-items: center;
  justify-content: flex-end;
}
header .menu .menu-item{
  margin-left:30px;
  position:relative;
}
header .menu .menu-item a{
  color:#2F2F2F;
}
header .menu .menu-item.active a{
  color:#00B6BD;
}
header .menu .menu-item ul{
  opacity:0;
  visibility: hidden;
  transition:all .5s;
  position:absolute;
  left:-10px;
  top:100%;
  margin-top:20px;
  background-color:#000;
  color:#fff;
  padding:12.5px 15px;
  width:150px;
  font-size:.8em;
}
header .menu .menu-item ul a{
  color:#fff;
}
header .menu .menu-item:hover ul{
  opacity:1;
  visibility: visible;
}
header .menu .menu-item ul li{
  margin-bottom:2em;
}
header .menu .menu-item ul li:last-child{
  margin-bottom:0;
}

header .menu-btn {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
  position:absolute;
  right:5vw;
  top:50%;
  transform:translateY(-50%);
  display:none;
}
header .menu-btn span {
  background: #000;
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
header .menu-btn span:nth-of-type(1) {width: 50%;}
header .menu-btn span:nth-of-type(2) {width: 100%;}
header .menu-btn span:nth-of-type(3) {width: 75%;}

header .menu-btn.active span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(4px, 0px)
}
header .menu-btn.active span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg)
}
header .menu-btn.active span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(14px, -4px) rotatez(45deg);
}
header .menu .menu-item.has_sub > p{
  cursor:default;
}
header .menu .menu-item.lang{
  font-size:.9em;
}
header .menu .menu-item.lang a{
  transition:color .5s;
  color:#8C8585;
  cursor:pointer;
  padding:0 5px;
}
header .menu .menu-item.lang a:first-child{
  border-right:1px solid #8C8585;
  padding-left:0;
}
header .menu .menu-item.lang a:last-child{
  padding-right:0;
}

header .menu .menu-item.lang a:hover{
  color:#000;
}

@media screen and (max-width:1024px){
  header .menu{
    height: 0;
    position: fixed;
    width: 100%;
    left: 0;
    background-color: #f9f9f9;
    top: 61px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow:hidden;
    visibility: hidden;
    transition:all .5s;
  }
  header .menu.active{
    height: calc(100vh - 61px);
    visibility: visible;
  }
  header .menu-btn{
    display:flex;
  }
  header .menu .menu-item{
    margin-bottom:1em;
    font-size:1.2em;
    width:100%;
  }
  header .menu .menu-item.has_sub{
    margin-bottom:0;
  }
  header .menu .menu-item.has_sub > p{
    display:none;
  }
  header .menu .menu-item:first-child{
    margin-top:30px;
  }

  header .menu .menu-item ul a{
    color:#000;
  }
  header .menu .menu-item ul{
    position: relative;
    opacity:1;
    visibility: visible;
    background-color:transparent;
    top:auto;
    left:auto;
    padding:0;
    margin:0;
    width:100%;
  }
  header .menu .menu-item ul li{
    padding:0;
    margin-bottom:1em;
  }
  
}
/* Cover Section */
@keyframes loopText{
	0% {transform:translate(0)}
	100% {transform:translate(-50%)}
}
@keyframes loopTextRTL{
	0% {transform:translate(0)}
	100% {transform:translate(50%)}
}


.cover-section{
    position: relative;
    transition:height .5s;
    height:calc(100vh - 61px);
    overflow: hidden;
    max-width: 100%;
}
.cover-section .hl-logo{
  position: absolute;
  left:50%;
  transition:top .5s;
  top:calc((var(--app-height) - 61px) / 2);
  transform:translate(-50%,-50%);
  width:80%;
  max-width:730px;
}
.cover-section .background{
    color:#f2f2f2;
    font-weight:bold;
    font-size: 19.3vh;
    line-height: 1.2em;
    max-width: 100%;
    overflow: hidden;
}
.cover-section .background p{
  position:absolute;
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;

}
.cover-section .background p span{
  position: relative;
  user-select: none;
}
.cover-section .background p span .hover_text{
  position: absolute;
  color:#f2f2f2;
  top:-1px;
  left:0;
  height:100%;
  width:100%;
  background: linear-gradient(180deg, #DF6363 0%, #FFB88C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all .3s;
  opacity:0;
  line-height: initial;
}
.cover-section .background p span .hover_text:hover{
  opacity:1;
}
.cover-section .background p span:hover{
  
}
.cover-section .background p:nth-child(1){
  left:-5%;
  top: 0%;
  animation-name: loopText;
  animation-duration: 60s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.cover-section .background p:nth-child(2){
  right:0;
  top:25%;
  animation-name: loopTextRTL;
  animation-duration: 55s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.cover-section .background p:nth-child(3){
  left:-50%;
  top:50%;
  animation-name: loopText;
  animation-duration: 40s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.cover-section .background p:nth-child(4){
  right:-30%;
  top:75%;
  animation-name: loopTextRTL;
  animation-duration: 80s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
/* About us */
.about .section-wrapper{
  display:flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap:wrap;
}
.about .left{
  font-size: var(--sec-title-fs);
  background: var(--gradient-01, linear-gradient(180deg, #DF6363 0%, #FFB88C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width:46%;
  margin-right:5%;
  font-weight:700;
}
.about .left .bt{
  font-size:1.35em;
  font-weight:bold;
}
.about .right{
  width:49%;
  padding:20px 0;
  font-size: var(--desc-fs);
  font-weight:600;
  line-height:1.5em
}
.about .right p{
  margin-bottom:1.5em;
  line-height: 1.5em;
  font-weight:600;
}
.about .right p:last-child{
  margin-bottom:0;
}

.about.center{
  max-width:1000px;
}
.about.center p:not(.section-title){
  line-height:1.75em;
  text-align: center;
}

@media screen and (max-width:1024px){
  .about .left,
  .about .right{
    margin-right:0;
    width:100%;
  }
}
/* background with center text section */
.bgct-section{
  padding:200px 0;
  color:#F2F2F2;
  position:relative;
  background-size:cover;
}
.bgct-section .section-wrapper{
  width:80%;
  text-align: center;
  max-width:1150px;
}
.bgct-section::before{
  content:'';
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,.4);
  z-index:0;
}
.bgct-section p{
  position: relative;
  font-size:var(--desc-fs);
  line-height:1.5em;
  z-index:1;
}
.bgct-section .title{
  font-size:var(--sec-title-s-fs);
  font-weight:700;
  margin-bottom:.5em;
}
.bgct-section button{
  margin-top: 80px;
}
@media screen and (max-width:1024px) {
  .bgct-section{
    padding:14vw 0;
  }
  .bgct-section .section-wrapper{
    width:95%;
  }
  .bgct-section button{
    margin-top:2em;
  }
}
/* Why us animation */
.why-us-animation{
    height:2000px;
    background-color:#2f2f2f;
}
.why-us-animation .ball-container{
    height:100vh;
    width:100%;
    position: sticky;
    left:0;
    top:0;
    overflow:hidden;
}
.why-us-animation .ball{
    position: absolute;
    width:calc(70vw - (50vw * var(--ball-hl-scroll-percentage)));
    height:calc(70vw - (50vw * var(--ball-hl-scroll-percentage)));
    border-radius: 50%;
    min-height:200px;
    min-width:200px;
}
.why-us-animation .ball span{
    position: absolute;
    left:0;
    top:0;
    height:100%;
    width:100%;
    border-radius:100%;
}
.why-us-animation .ball .text-area{
    width: 10vw;
}
.why-us-animation .ball .text-area img{
    width:100%;
}
.why-us-animation .blue-ball{
    right:calc(20% + (30% * var(--ball-hl-scroll-percentage)));
    top:calc(20% + (35% * var(--ball-hl-scroll-percentage)));
    transform:translate(75%,-65%);
}
.why-us-animation .blue-ball span.default{
    background: var(--gradient-04, linear-gradient(180deg, #2DC1E4 0%, #E8ECC7 100%));
}
.why-us-animation .blue-ball span.target{
    background: var(--gradient-02, linear-gradient(180deg, #E0C4FD 0%, #8FC6FD 100%));
    opacity:var(--ball-hl-scroll-percentage)
}
.why-us-animation .blue-ball .text-area{
    position:absolute;
    width:15vw;
    left:100%;
    bottom:100%;
    transform: translate(35%,-35%);
    max-width:192px;
}
.why-us-animation .blue-ball .text-area .arrow{
    position: absolute;
    right:105%;
    top:100%;
    width:40%
}
.why-us-animation .red-ball{
    left:calc(20% + (30% * var(--ball-hl-scroll-percentage)));
    bottom:calc(20% + (25% * var(--ball-hl-scroll-percentage)));
    transform:translate(-75%,65%);
}
.why-us-animation .red-ball span.default{
    background: var(--gradient-01, linear-gradient(180deg, #DF6363 0%, #FFB88C 100%));
}
.why-us-animation .red-ball span.target{
    background: var(--gradient-05, linear-gradient(180deg, #FF0A45 0%, #FFAF98 100%));
    opacity:var(--ball-hl-scroll-percentage)
}
.why-us-animation .red-ball .text-area{
    position:absolute;
    right:100%;
    top:100%;
    transform: translate(-30%,30%);
    max-width:192px;
    width:15vw;
}
.why-us-animation .red-ball .text-area .arrow{
    position: absolute;
    left:105%;
    bottom:100%;
    width:28%;
}
@media screen and (max-width:1024px){
  .why-us-animation{
    height:1500px;
  }
  .why-us-animation .ball{
    transition:all .05s;
  }
}
@media screen and (max-width:800px){
    .why-us-animation .ball{
        width: calc(100vw - (60vw * var(--ball-hl-scroll-percentage)));
        height: calc(100vw - (60vw * var(--ball-hl-scroll-percentage)));
        min-width:180px;
        min-height:180px;
    }
    .why-us-animation .blue-ball .text-area{
        left:50%;
        bottom:123%;
        width:90px;
    }
    .why-us-animation .blue-ball .text-area .arrow{
        transform: rotate(-25deg);
        top: 148%;
        right: 100%;
    }
    .why-us-animation .red-ball .text-area{
        width: 95px;
        right: 41%;
        top: 123%;
    }
    .why-us-animation .red-ball .text-area .arrow{
        transform: rotate(-59deg);
        left: 98%;
        bottom: 161%;
    }
}

/* why us list */
.point-list{
  display:flex;
  flex-wrap:wrap;
}
.point-list .list-item{
  width:calc(50% - 10px);
  display:flex;
  align-items: center;
  margin-bottom:40px;
  margin-right:20px;
}
.point-list .list-item:nth-child(even){
  margin-right:0;
}
.point-list .list-item .left{
  display:flex;
  align-items: center;
  justify-content: center;
  width:150px;
  margin-right:5%;
  border-radius: 20px;
  padding:25px 0;
  border: 1px solid #565656;
  background: linear-gradient(141deg, #353535 0%, #232323 100%);
}
.point-list .list-item .left img{
  width:80%;
  max-width:90px;
}
.point-list .list-item .right{
  width:calc(95% - 150px);
}
.point-list .list-item .right .title{
  color: var(--grey-03, #FBFBFB);
  font-size:var(--sub-title-fs);
  margin-bottom:.5em;
}
.point-list .list-item .right .desc{
  color: var(--grey-03, #D0D0D0);
  line-height: 1.5em;
}

@media screen and (max-width:1024px){
  .point-list .list-item{
    margin-right:0;
    width:100%;
  }
  .point-list .list-item .left{
    width:100px;
    padding:15px 0;
  }
  .point-list .list-item .left img{
    width:60px;
  }
  .point-list .list-item .right{
    width:calc(95% - 100px);
  }
}

/* Expand list */
.expand-list{
  display:flex;
  width: 100%;
}
.expand-list .list-item{
  width:10%;
  color:#FBFBFB;
  position:relative;
  transition:width .5s;
  overflow:hidden;
  cursor:pointer;
  padding:0 30px;
  padding-top:calc(50px + 1em + 50px);
  padding-bottom:30px;
  height:625px;
}
.expand-list .list-item.active{
  width:70%;
}
.expand-list .list-item:nth-child(1){
  border-radius: 20px 0px 0px 20px;
  background:#fff;
  color:#484141
}
.expand-list .list-item:nth-child(2){
  background: var(--gradient-01, linear-gradient(180deg, #DF6363 0%, #FFB88C 100%));
}
.expand-list .list-item:nth-child(3){
  background: var(--gradient-02, linear-gradient(180deg, #E0C4FD 0%, #8FC6FD 100%));
}
.expand-list .list-item:nth-child(4){
  background: var(--gradient-03, linear-gradient(180deg, #FFE25A 0%, #FFA852 100%));
}
.expand-list .list-item:last-child{
  border-radius: 0px 20px 20px 0px;
}
.expand-list .list-item p{
  line-height: 1.5em;
}
.expand-list .list-item .title{
  transition: all .5s;
  font-size: var(--sec-title-xs-fs);
  transform: translateX(-100%) rotate(-90deg);
  position:absolute;
  left: 10px;
  bottom: 20px;
  transform-origin: left bottom;
  transform: rotate(-90deg) translateY(100%);
  font-weight:bold;
}
@keyframes fadeOutExpandItem{
  from {opacity:0;visibility: hidden;}
  to {opacity:1;visibility: visible;}
}
.expand-list .list-item.active .title{
  transform: none;
  left: 2.5%;
  bottom: calc(100% - 50px - 1em);
}
.expand-list .list-item .item-content{
  opacity:0;
  visibility: hidden;
}
.expand-list .list-item.active .item-content{
  animation-name: fadeOutExpandItem;
  animation-duration: .25s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
  animation-delay:.5s;
}
.expand-list .list-item .image-list{
  display:flex;
  max-width:600px;
  margin-bottom:1em;
}

.expand-list .list-item .image-list img:nth-child(1){
  width:60%;
  margin-right:2.5%;
}
.expand-list .list-item .image-list img:nth-child(2){
  width:37.5%;
}
.expand-list .list-item button{
  margin-top:1em;
}

@media screen and (max-width:1024px){
  .expand-list{
    flex-wrap:wrap;
  }
  .expand-list .list-item{
    height:auto;
    padding:30px;
    
  }
  .expand-list .list-item:nth-child(1){
    border-radius: 20px 20px 0px 0px;
  }
  .expand-list .list-item:last-child{
    border-radius: 0px 0px 20px 20px;
  }
  .expand-list .list-item .title,
  .expand-list .list-item.active .title{
    transform:none;
    position:relative;
    left:auto;
    bottom:auto;
  }
  .expand-list .list-item,
  .expand-list .list-item.active{
    width:100%;
  }
  .expand-list .list-item .item-content{
    max-height:0;
    opacity:0;
    visibility: hidden;
    transition: all .5s;
  }
  .expand-list .list-item.active .item-content{
    animation: none;
    padding-top:1em;
    max-height:500px;
    opacity:1;
    visibility: visible;
  }
}

/* Client Slider */
.client-slider{
  margin:0 60px;
  position: relative;
  margin-bottom:80px;
}
.client-slider .swiper-wrapper{
  margin:0 auto;
  height:auto;
}
.client-slider .swiper-button-prev,
.client-slider .swiper-button-next{
  top:50%;
  width:auto;
  margin-top:0;
  width:35px;
  height:35px;
}
.client-slider .swiper-button-prev{
  left:auto;
  right:calc(100% + 30px);
  transform:translate(50%,-50%);
}
.client-slider .swiper-button-next{
  right:auto;
  left:calc(100% + 30px);
  transform:translate(-50%,-50%);
}
.client-slider .swiper-slide{
  display:flex;
  align-items: center;
  justify-content: center;
  padding:0 5px;
  box-sizing: border-box;
}
.client-slider .swiper-slide img{
  width:100%;
  max-width:90px
}

@media screen and (max-width:1024px){
  .client-slider .swiper-button-prev, .client-slider .swiper-button-next{
    width: 25px;
    height: 25px;
  }
}

/* Quote section */
.quote-section{
  position: relative;
  padding-bottom:100px;
  display:flex;
  align-items: flex-start;
}
.quote-section .left{
  width:30%;
}
.quote-section .left p{
  margin-top:.5em;
  background: var(--gradient-01, linear-gradient(180deg, #DF6363 0%, #FFB88C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size:var(--sec-title-s-fs);
  font-weight:700;
}
.quote-section .left img,
.quote-section .quote-right{
  width:90px;
}
.quote-section .quote-right{
  position:absolute;
  right: clamp(2.5vw, calc((100vw - 1440px) / 2), 100vw);
  bottom:0;
}
.quote-section .right{
  width:70%;
  position: relative;
}

@media screen and (max-width:1024px){
  .quote-section{
    flex-wrap:wrap;
  }
  .quote-section .left{
    width:100%;
  }
  .quote-section .right{
    width:100%;
  }
  .comment-slider{
    padding-left:5px;
  }
}

/* Comment Slider */
.comment-slider{
  box-sizing: border-box;
  padding:30px 20px;
  padding-right:20vw;
}
.comment-slider .rating{
  color:rgba(252, 215, 119, 1)
}
.comment-slider .swiper-slide{

}
.comment-slider .swiper-slide .comment-item{
  border-radius: 20px;
  background: #FFF;
  box-shadow: 4px 4px 8px 5px rgba(0, 0, 0, 0.10);
  padding:50px 30px;
  box-sizing: border-box;
  margin-right:35px;
  display:flex;
}

.comment-slider .swiper-slide .comment-item .left{
  width:90px;
  margin-right:5%;
}
.comment-slider .swiper-slide .comment-item .right{
  width:calc(95% - 90px);
}
.comment-slider .swiper-slide .comment-item .right .name{
  font-weight:bold;
  margin-bottom:5px;
}
.comment-slider .swiper-slide .comment-item .right .pos{
  color:#D0D0D0;
  font-size:.8em;
}
.comment-slider .swiper-slide .comment-item .right .rating{
  font-size:1.2em;
  margin-bottom:10px;
}
.comment-slider .swiper-slide .comment-item .right .rating span{
  margin-right:5px;
}
.comment-slider .swiper-slide .comment-item .right .desc{
  line-height:1.5em;
  border-top:1px solid #666;
  padding-top:10px;
}
.swiper-button-prev.comment,
.swiper-button-next.comment{
  top:calc(100% + 10px);
  width:auto;
  margin-top:0;
  width:35px;
  height:35px;
  left:25px;
}
.swiper-button-next.comment{
  left:75px;
}
@media screen and (max-width:1024px){
  .comment-slider{
    padding-left:5px;
  }
  .swiper-button-prev.comment{
    left:0px;
  }
  .swiper-button-next.comment{
    left:45px;
  }
  .quote-section .left img, .quote-section .quote-right{
    width:60px;
  }
  .comment-slider .swiper-slide .comment-item .left{
    width:60px;
  }
  .comment-slider .swiper-slide .comment-item{
    padding:30px 20px;
    margin-right:15px;
  }
}
@media screen and (max-width:650px){
  .comment-slider{
    padding-right:5vw;
  }
}

/* Common slider */
.common-slider{
  padding-left: 2.5vw;
  padding-right: 20vw;
  margin:20px 0;
}
.common-slider .swiper-wrapper{
  height: auto;
}
.common-slider .swiper-slide{
  margin-right:20px;
}

/* toggle-list */
.toggle-list{

}
.toggle-list .list-item{
}
.toggle-list .list-item:nth-child(n+2){
  border-top: 1px solid var(--grey-03, #D0D0D0);
}
.toggle-list .list-item > p{
  font-size:var(--sub-title-fs);
  padding:25px 0;
  padding-right: calc(1em + 20px);
  position:relative;
  cursor:pointer;
}
.toggle-list .list-item > p .toggle{
  color:#D0D0D0;
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
}
.toggle-list .list-item > p .toggle{
}
.toggle-list .list-item > p .toggle.close{
  display:none;
}
.toggle-list .list-item.active > p .toggle.open{display:none;}
.toggle-list .list-item.active > p .toggle.close{display:block;}
.toggle-list .list-item .expand-wrapper{
  width:100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in;
}

.toggle-list .list-item .expand-content{
  transition:all .25s;
  overflow:hidden;
  line-height: 1.5em;
  text-align: justify;
}
.toggle-list .list-item .expand-content p:last-child{
  margin-bottom:1em;
}
.toggle-list .list-item.active .expand-content{
  /*max-height: 250px;*/
}
@media screen and (max-width:1024px){
  .toggle-list .list-item > p{
    padding:15px 0;
    padding-right:2em;
  }
  .toggle-list .list-item.active .expand-content{
    max-height:600px;
  }
}

/* message highlight */
.msg-hl{
  background-image:url("../images/msghl_bg.png");
  background-size:cover;
}
.msg-hl .section-wrapper{
  display:flex;
  align-items: center;
  justify-content: space-between;
  height:300px;
}
.msg-hl p{
  color:white;
  font-size:clamp(20px, 3vw, 46px);
  font-weight:bold;
} 
.msg-hl button{

}

@media screen and (max-width:1440px){
  .msg-hl .section-wrapper{
    padding:6.5vw 0;
    height:auto;
  }
}



/* Contact us */

.contact-us{}
.contact-us .icon-list{width:100%;display:flex;}
.contact-us .icon-list .list-item{
  width:calc(100% / 3);
}
.contact-us .icon-list .list-item .item-container{
  display:flex;
  align-items: center;
  flex-direction: column;
}
.contact-us .icon-list .list-item .img-container{
  width:100px;
  height:130px;
  position: relative;
}
.contact-us .icon-list .list-item .img-container img{
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
}
.contact-us .icon-list .list-item .img-container.phone img{
  width:60px;
}
.contact-us .icon-list .list-item .img-container.location img{
  width:50px;
}
.contact-us .icon-list .list-item .img-container.mail img{
  width:80px;
}
.contact-us .icon-list .list-item p{
  text-align: center;
  margin-top:1em;
}
.contact-us .icon-list .list-item:nth-child(2){
  border-left: 1px solid #00B6BD;
  border-right: 1px solid #00B6BD;
}

/* Contact form */
.contact-us form{
  max-width:1000px;
  display:flex;
  flex-wrap:wrap;
  margin:0px auto;
}
.contact-us form textarea,
.contact-us form input{
  border-radius: 6px;
  border: 1px solid var(--blue-01, #00B6BD);
  padding:15px 15px;
  width:calc(100% / 2 - 10px);
  margin-bottom:30px;
}
.contact-us form textarea{
  width:100%;
}
.contact-us form input:nth-child(2n){
  margin-left:20px;
}
.contact-us form .checkBox-field{
  display:flex;
}
.contact-us form .checkBox-field input{
  border:1px solid #000;
  border-radius:0;
  width:15px;
  height:15px;
  padding:0;
  margin-top:5px;
  margin-right:15px;
}
.contact-us form .checkBox-field p{

}
.contact-us form button{
  margin-top:40px;
}

@media screen and (max-width:1024px){
  .contact-us .icon-list{
    flex-wrap:wrap;
  }
  .contact-us .icon-list .list-item{
    width:100%;
  }
  .contact-us .icon-list .list-item:nth-child(2){
    border-left:0;
    border-right:0;
    margin:1.75em 0;
  }
  .contact-us .icon-list .list-item .img-container{
    height:90px;
  }
  .contact-us .icon-list .list-item .img-container.phone img{
    width:50px;
  }
  .contact-us .icon-list .list-item .img-container.mail img{
    width:60px;
  }
  .contact-us .icon-list .list-item .img-container.location img{
    width:35px;
  }
  .contact-us form textarea, .contact-us form input{
    width:100%;
  }
  .contact-us form input:nth-child(2n){
    margin-left:0;
  }
}
/* Map Container */
.map-container{
  position: relative;
  padding-top: 33%;
}
.map-container iframe{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

@media screen and (max-width:1024px){
  .map-container{
    padding-top:60%;
  }
}
/* Footer */
footer{
  position:relative;
  background-color:#2F2F2F;
  overflow:hidden;
  padding-top:30px;
}
footer .background-pattern{
  position: absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
}
footer .background-pattern span{
  position: absolute;
  transform: rotate(45deg);
}
footer .background-pattern .line-1{
  left:2%;
  top:-6%;
  width:3.8px;
  height:39%;
  border-radius: 70.5px;
  opacity: 0.25;
  background: var(--gradient-green, linear-gradient(132deg, #E4F8BA 0%, #AAFBCD 100%));
}
footer .background-pattern .line-2{
  left:10%;
  top:8%;
  width:3.8px;
  height:30%;
  border-radius: 70.5px;
  opacity: 0.25;
  background: var(--gradient-green, linear-gradient(132deg, #E4F8BA 0%, #AAFBCD 100%));
}
footer .background-pattern .line-3{
  left:30%;
  top:-18%;
  width:3.8px;
  height:39%;
  border-radius: 70.5px;
  opacity: 0.25;
  background: var(--gradient-green, linear-gradient(132deg, #E4F8BA 0%, #AAFBCD 100%));
}
footer .background-pattern .line-4{
  left:3%;
  top:50%;
  width:45px;
  height:50%;
  border-radius: 70.5px;
  opacity: 0.25;
  background: var(--gradient-02, linear-gradient(132deg, #FFCB6B 0%, #3D8BFF 100%));
}
footer .background-pattern .line-5{
  right: 5%;
  top: -28%;
  width: 34.446px;
  height: 50%;
  border-radius: 70.5px;
  opacity: 0.15000000596046448;
  background: var(--gradient-02, linear-gradient(132deg, #FFCB6B 0%, #3D8BFF 100%));
}
footer .background-pattern .line-6{
  right: 3%;
  top: 13%;
  width:54px;
  height:44%;
  border-radius: 70.5px;
  opacity: 0.44999998807907104;
  background: var(--gradient-green, linear-gradient(132deg, #E4F8BA 0%, #AAFBCD 100%));
}
footer .top-line{
  width:2px;
  height:100px;
  border-radius: 10px;
  background: var(--green-01, #24BBAE);
  display:block;
  position: relative;
  margin:30px auto;
  margin-bottom:80px;
}
footer .social-media{
  display:block;
  position: relative;
  text-align: center;
}
footer .social-media p{
  color:white;
  font-size:var(--sec-title-xs-fs);
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom:1.75em;
}
footer .social-media .icon-list{
  display: flex;
  justify-content: center;
}
footer .social-media .icon-list a{
  width:60px;
}
footer .social-media .icon-list a:nth-child(2){
  margin:0 80px;
}
footer .footer-menu{
  margin-top:90px;
  margin-bottom:120px;
  z-index: 2;
  position: relative;
}
footer .footer-menu .section-wrapper{
  font-family: 'Raleway', sans-serif;
  display:flex;
}
footer .footer-menu .menu-row{
  display:flex;
  flex-wrap: wrap;
  width:50%;
}
footer .footer-menu .menu-row p{
  display:block;
  color:#00B6BD;
  margin-bottom:10px;
  width:100%;
}
footer .footer-menu .menu-row a{
  color:white;
  margin-right:4em;
  font-size:.9em;
}
footer .copyright{
  color:#EBF2F8;
  font-weight:300;
  width:95%;
  margin:0 auto;
  font-size:13px;
  margin-bottom:15px;
}
@media screen and (max-width:1024px) {
  footer .footer-menu .section-wrapper{
    flex-wrap:wrap;
  }
  footer .footer-menu .menu-row{
    width:100%;
    margin-bottom:2em;
  }
  footer .footer-menu .menu-row a{
    width:calc(50% - 2em);
    margin-bottom:1em;
  }
  footer .footer-menu .menu-row a:nth-child(odd){
    margin-right: 0;
  }
  footer .top-line{
    height:70px;
    margin-bottom:50px;
  }
  footer .social-media p{
    margin-bottom:1.25em;
  }
}
@media screen and (max-width:800px) {
  footer .background-pattern .line-2 {
    left: 2%;
    top: 17%;
  }
  footer .background-pattern .line-3 {
    left: 47%;
    top: -25%;
  }
  footer .background-pattern .line-4 {
    left: -14%;
    top: 72%;
  }
  footer .background-pattern .line-5 {
    right: 5%;
    top: -28%;
  }
  footer .background-pattern .line-6 {
    right: -4%;
    top: 26%;
  }
}
/* Service */
.service-ti .section-wrapper{
  display:flex;
  align-items: center;
}
.service-ti .section-wrapper > img{
  width:50%;
}
.service-ti .content-area{
  width:50%;
}
.service-ti .content-area .section-title{
  margin-bottom:.5em;
}
.service-ti .content-area .desc{
  margin-bottom:1.5em;
  line-height:1.5em;
}
@media screen and (max-width:1024px){
  .service-ti .section-wrapper{
    flex-wrap:wrap;
  }
  .service-ti .content-area{
    width:100%;
    order:1;
  }
  .service-ti .section-wrapper > img{
    width:100%;
    order:0;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom:1em;
  }
}

/* Include block*/
.include-block{
  border-radius: 10px;
  background: var(--bw-white, #FBFBFB);
  /* About_us */
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
  width:49.25%;
  display:flex;
  padding:30px;
  box-sizing: border-box;
  align-items: flex-start;
  margin-bottom:1.5em;
}
.include-block:nth-child(even){
  margin-right:1.5%;
}
.include-block > img{
  width:90px;
  height:auto;
  margin-right:30px;
}
.include-block .content-area{
  width:calc(100% - 120px);
}
.include-block .content-area p{
  font-weight:bold;
  font-size:var(--sub-title-fs);
}
.include-block .content-area ul{
  font-size:var(--desc-fs);
}

.service{
  height:auto;
}
.service .section-wrapper{
  display:flex;
  flex-wrap:wrap;
}
.service .sub-title{
  width:100%;
  font-weight:bold;
  color:white;
  text-decoration: underline;
  line-height:1.5em;
  font-size:var(--sub-title-fs);
  text-align: center;
  text-underline-offset: 8px;
  margin-bottom:2em;
}
.service .sub-title:not(:first-child){
  margin-top:3em;
}
.service ul{
  padding-top:20px;
  padding-left: 20px;
  list-style-type: disc;
}
.service ul li{
  margin-bottom:.5em;
}

@media screen and (max-width:1024px){
  .include-block{
    width:100%;
    padding:20px;
  }
  .include-block > img{
    width:50px;
    margin-right:20px;
  }
  .include-block .content-area{
    width:calc(100% - 70px);
  }
  .include-block:nth-child(even){
    margin-right:0;
  }
  .service .sub-title{
    margin-bottom:1.5em;
  }
}

/* gallery */
.gallery,
.gallery .gallery-detail{
  display:flex;
  flex-wrap:wrap;
}
.gallery .gallery-item{
  margin-right:1.5%;
  width:calc(97% / 3);
  margin-bottom:1.25em;
  cursor:pointer;
}
.gallery .gallery-item.hide{
  display:none;
}
.gallery .gallery-item:nth-child(3n){
  margin-right:0;
}
.gallery .more-btn{
  border:1px solid white;
  color:white;
  background-color:transparent;
  margin:0 auto;
  margin-top:30px;
}
.gallery .gallery-nav{
  margin:3em auto;
  width:100%;
  text-align:center;
}
.gallery .gallery-nav button{
  background-color:transparent;
  color:rgba(0, 182, 189, 1);
  border:1px solid rgba(0, 182, 189, 1);
  margin-right:10px;
  margin-bottom:10px;
}
.gallery .gallery-nav button.active{
  background: var(--gradient-04, linear-gradient(180deg, #2DC1E4 0%, #E8ECC7 100%));
  color:white;
  border:none;
}
.gallery .more-content{
  display:none;
  width:100%;
}
.gallery .more-content.active{
  display:flex;
}
.gallery .more-btn.hide{
  display:none;
}
@media screen and (max-width:1024px) {
  .gallery .gallery-item{
    width:calc(100% / 2 - .75em);
    margin-right:0;
  }
  .gallery .gallery-item:nth-child(odd){
    margin-right:1.5em;
  }
}
@media screen and (max-width:600px) {
  .gallery .gallery-item{
    width:100%;
    margin-right:0;
  }
  .gallery .gallery-item:nth-child(odd){
    margin-right:0;
  }
}

/* Case Modal */
.case-modal{
  position:fixed;
  left:0;
  top:0;
  height:100%;
  width:100%;
  z-index:999;
  display:flex;
  align-items: center;
  justify-content: center;
  opacity:0;
  visibility: hidden;
  transition:all .5s;
}
.case-modal.active{
  opacity:1;
  visibility: visible;
}
.case-modal .backdrop{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,.6)
}
.case-modal .modal-content{
  display:flex;
  align-items: center;
  justify-content: center;
  width:90%;
  max-width:600px;
  margin:0 auto;
  position:relative;
}
.case-modal .swiper-button-prev{
  width:80px;
  height:80px;
  right:calc(100% + 10px);
  left:auto;
}
.case-modal .swiper-button-next{
  width:80px;
  height:80px;
  left:calc(100% + 10px);
  right:auto;
}
.case-modal .swiper .swiper-slide{
  padding:0 20px;
  box-sizing: border-box;
}