/* Default CSS Variables */

:root {
  --main-color: #21aac1;
  --section3-bg: #f0f0f0;
  --text-gray: #737577;
}

/* Main Section1 */

.section1 .loader {
    position: relative;
    left: 535px;
    top: 22px;
}

/* Main Section2 */

.section2 {
  background: url('../images/section2bg.jpg') no-repeat center center;
  background-size: auto;
  position: relative;
  height: 100vh;
}


.section2 .overlay {
    position: relative;
    text-align: right;
    display: inline-block;
    width: auto;
    transform: translateX(-50%);
    left: 65%;
    top: 15%;
}

.section2 .loader {
    position: relative;
    left: 65px;
    top: 5px;
    opacity: 0;
    transform: translateY(-100px);
    transition-duration: .5s;
}

.section2.active .loader {
  transition-delay: 0.7s;
  transform: translateY(0px);
  opacity: 1;
}


.section2 .quality {
  font-size: 65px;
  color: var(--main-color);
  font-weight: 700;
  opacity: 0;
  transform: translateY(-100px);
  transition-duration: .5s;
}
.section2.active .quality {
  transition-delay: 0.5s;
  transform: translateY(0px);
  opacity: 1;
}

.section2 .subtitle {
  font-size: 17px;
  margin-top: 40px;
  font-weight: 300;
  color: white;
  opacity: 0;
  transform: translateY(-500px);
  transition-duration: .5s;
}
.section2.active .subtitle {
  transition-delay: 0.3s;
  transform: translateY(0px);
  opacity: 1;
}

.section2 .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 500px;
    top: 60%;
}

.section2 .content svg {
    position: absolute;
    left: 50%;
    top: 50%;
}

.section2 .content svg text {
    opacity: 0;
}

.section2 .content svg circle {
    opacity: 0;
}

.section2 .content svg.svg01 {
    transform: translate(-731px, -272px);
}
.section2 .content svg.svg02 {
    transform: translate(-731px, -100px);
}
.section2 .content svg.svg03 {
    transform: translate(-110px, -260px);
}
.section2 .content svg.svg04 {
    transform: translate(310px, -20px);
}

.section2 .content svg.svg01 polyline {
    /*animation-delay: .5s!important;*/
}
@keyframes draw {
    to {
      stroke-dashoffset: 0;
    }
  }

/* Main Section3 */

.section3 {
  background: var(--section3-bg);
  padding-top: 120px;
  text-align: center;
}

.section3 .textWrapper {
    display: inline-block;
    padding-top: 40px;
}


.section3 .loader {
    position: relative;
    left: -50px;
    top: 5px;
    opacity: 0;
    transform: translateY(-100px);
    transition-duration: .5s;
}

.section3.active .loader {
  transition-delay: 0.7s;
  transform: translateY(0px);
  opacity: 1;
}

.section3 .products {
  font-size: 65px;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(-100px);
  transition-duration: .5s;
}
.section3.active .products {
  transition-delay: 0.5s;
  transform: translateY(0px);
  opacity: 1;
}


.section3 .products-sub {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 48px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-500px);
  transition-duration: .5s;
}
.section3.active .products-sub {
  transition-delay: 0.3s;
  transform: translateY(0px);
  opacity: 1;
}

.section3 .alignWrap {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

.section3 .thumbnails {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 1139px;
}

.section3 .card {
  display: flex;
  background: #fff;
  width: 373px;
  height: 230px;
  box-shadow: 0 4px 3px 0px rgba(0,0,0,0.13);
  text-align: left;
  opacity: 0;
  transition-duration: .9s;
  transform: translateY(40px);
}
.section3.active a:nth-child(1) .card {
    opacity: 1;
    transition-delay: 1.1s;
    transform: translateY(0px);
}
.section3.active a:nth-child(2) .card {
    opacity: 1;
    transition-delay: .9s;
    transform: translateY(0px);
}
.section3.active a:nth-child(3) .card {
    opacity: 1;
    transition-delay: 1.1s;
    transform: translateY(0px);
}
.section3.active a:nth-child(4) .card {
    opacity: 1;
    transition-delay: 1.3s;
    transform: translateY(0px);
}
.section3.active a:nth-child(5) .card {
    opacity: 1;
    transition-delay: 1.1s;
    transform: translateY(0px);
}
.section3.active a:nth-child(6) .card {
    opacity: 1;
    transition-delay: 1.3s;
    transform: translateY(0px);
}

.section3 .card .imgWrapper {
    width: 200px;
    overflow: hidden;
}
.section3 .card .textWrap {
  width: 173px;
}

.section3 .card img {
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.section3 .card:hover img {
  transform: scale(1.05) translateY(-47.6%);
  top: 50%;
  transition: transform 0.3s ease;
}

.section3 .card .textWrap::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 230px;
    left: 372px;
    width: 1px;
    opacity: 0;
    height: 0px;
    background-color: var(--main-color);
    transition: .3s linear;
}

.section3 .card:hover .textWrap::after {
    height: 230px;
    bottom: 0px;
    opacity: 1;
}

.section3 .card:not(:hover) img {
  transition: transform 0.3s ease;
}

.section3 .card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  padding-right: 70px;
  margin: 14px 0 4px 14px;
  line-height: 23px;
}

.section3 .card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.4;
  margin: 0 0 25px 14px;
}

.section3 .card button {
  background-color: #ffffff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  padding: 0px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 0px;
  margin-left: 14px;
  font-weight: 400;
  opacity: 0;
  height: 0px;
  overflow: hidden;
  white-space: nowrap;
  transition: all .3s ease;
  position: absolute;
  bottom: 20px;
}

.section3 .card:hover button {
    opacity: 1;
    height: 24px;
    line-height: 22px;
}

/* Main Section4 */

.section4 {
  background: url('../images/section4bg.jpg') no-repeat center center;
  background-size: auto;
  position: relative;
  height: 100vh;
}

.section4 .bbg {
  position: relative;
  width: 57%;
  height: 100%;
  background-color: #000000;
  opacity : .9;
}

.section4 .Wrapper {
  position: relative;
  width: auto;
  height: auto;
  top: 54%;
  transform: translateY(-50%);
  padding-right: 67px;
}

.section4 .Wrapper::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 0%;
  background-color: var(--main-color);
  left: 99.85%;
  top: 0%;
  transform: translate(-50%, 20px);
  transition-duration: .5s;
}

.section4.active .Wrapper::after {
  height: 85%;
}

.section4 .Wrapper.transDelay0::after {
  transition-delay: 0s;
}.section4 .Wrapper.transDelay1::after {
  transition-delay: .3s;
}
.section4 .Wrapper.hovered01::after {
  transition-delay: 0s;
  height: 18%;
  top: 0%;
}
.section4 .Wrapper.hovered02::after {
  transition-delay: 0s;
  height: 18%;
  top: 33.5%;
}
.section4 .Wrapper.hovered03::after {
  transition-delay: 0s;
  height: 18%;
  top: 67%;
}

.section4 .loader {
  position: relative;
  left: 93%;
  transform: translateX(-530px);
  margin-bottom: 25px;
  opacity: 0;
  transition-delay: .7s;
}
.section4.active .loader {
  transition-duration: .5s;
  transform: translateX(-490px);
  opacity: 1;
}

.section4 .card {
  position: relative;
  padding-bottom: 45px;
  width: fit-content;
  height: fit-content;
  left: 100%;
  transform: translateX(-120%);
  opacity: 0;
}
.section4 .card:nth-of-type(2) {
  transition-delay: .3s;
}
.section4 .card:nth-of-type(3) {
  transition-delay: .4s;
}
.section4 .card:nth-of-type(4) {
  transition-delay: .5s;
}
.section4.active .card {
  transition-duration: .5s;
  transform: translateX(-100%);
  opacity: 1;
}

.section4 .textWrapper {
  padding-right: 30px;
  text-align: right;
  height: 150px;
  width: fit-content;
  display: inline-block;
  vertical-align: top;
}

.section4 .textWrapper h1 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 14px 0;
}

.section4 .card:hover .textWrapper h1 {
  color: var(--main-color);
  transition: color .3s ease;
}

.section4 .textWrapper p {
  font-size: 15px;
  color: #cdcdcd;
  font-weight: 200;
  line-height: 21px;
  margin-bottom: 15px;
}

.section4 .card button {
  background-color: rgba(0,0,0,0);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  padding: 0px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 0px;
  margin-left: 13px;
  font-weight: 400;
  opacity: 0;
  height: 0px;
  overflow: hidden;
  white-space: nowrap;
  transition: all .3s ease;
}
.section4 .card button a {
  color: var(--main-color);
}

.section4 .card:hover button {
    opacity: 1;
    height: 24px;
    line-height: 22px;
}

.section4 img {
  width: 106px;
  height: 106px;
  display: inline-block;
}

/* Main Section4 */

.section5 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section5 .contentWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  height: calc(100% - 400px);
}

.section5 iframe {
  width: 50%;
  height: 100%;
  opacity: 0;
  transition-duration: .5s;
}
.section5 iframe:nth-of-type(1) {
  transform: translateX(-10%);
}
.section5 iframe:nth-of-type(2) {
  transform: translateX(10%);
}
.section5.active iframe {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .6s;
}

.section5 .inquiry {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0%);
  background-color: #272727;
  width: 378px;
  height: 48px;
  text-align: center;
  opacity: 0;
  transition-duration: .5s;
}
.section5.active .inquiry {
  transition-delay: .9s;
  opacity: 1;
  transform: translate(-50%, -100%);
}
.section5 .inquiry.transDelay0 {
  transition-delay: 0s;
}
.section5 .inquiry:hover {
  transition-delay: 0s;
  border-radius: 30px 30px 0 0;
  background-color: var(--main-color);
}
.section5 .inquiry p {
  font-size: 19px;
  line-height: 48px;
  color: #ffffff;
  width: fit-content;
  padding: 0 12px;
}
.section5 .inquiry svg:nth-child(1) {
  position: relative;
  top: 2px;
}