@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;900&display=swap');

body {
  background: #fff;
  color: #090909;
  font-family: "Noto Sans KR";
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: black;
}



p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans KR";
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #1dc8cd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 60px;
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(45deg, #1de099, #1dc8cd);
}

#header.header-transparent {
  background: white;
}

.active_tab_header{
  color: #54D2D7 ;
}

#header.header-scrolled {
  background: #fff;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Noto Sans KR";
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: black;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  font-weight: 700;
  font-size: 19px;
  line-height: 28px;
  color: #000000;


}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

a:hover {
  color: black;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: black;
  font-size: 19px;
  font-weight: 700;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1dc8cd;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1dc8cd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1dc8cd;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(29, 224, 153, 0.8), rgba(29, 200, 205, 0.8)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }
}

#hero .hero-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#hero h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

.btn-get-started {
  font-family: "Noto Sans KR";
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 38px 15px 37px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color: #090909;
}



#hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#hero .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
}

#hero .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#hero .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#hero .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #hero .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }

  #hero .product-screens .product-screen-2,
  #hero .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  /* background: #1dc8cd;
  background: linear-gradient(0deg, #1dc8cd 0%, #55fabe 100%); */
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #1dc8cd;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

/* Product Featuress Section
--------------------------------*/
#features,
.features {
  background: #F8F8FA;
  padding: 60px 0 0 0;
  overflow: hidden;
  padding-bottom: 200px;
}

#features .features-img {
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
  overflow: hidden;
}

#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Noto Sans KR";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1dc8cd;
  border: 2px solid #1dc8cd;
}

/* More Features Section
--------------------------------*/
#more-features {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#more-features .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-features h4 a {
  color: #111;
}

#more-features p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }

  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #more-features h4,
  #more-features p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

/* Pricing Section
--------------------------------*/
#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

#pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 28px;
}

#pricing h4 {
  font-size: 46px;
  color: #1dc8cd;
  font-weight: 300;
}

#pricing h4 sup {
  font-size: 20px;
  top: -20px;
}

#pricing h4 span {
  color: #bababa;
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

#pricing ul li {
  padding-bottom: 12px;
}

#pricing ul i {
  color: #1dc8cd;
  font-size: 18px;
  padding-right: 4px;
}

#pricing .get-started-btn {
  background: #515e61;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans KR";
}

#pricing .featured {
  border: 2px solid #1dc8cd;
}

#pricing .featured .get-started-btn {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
  overflow: hidden;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border: 1px solid #f0f0f0;
  /* margin-bottom: 20px; */
  padding-top: 30px;
  padding-bottom: 30px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #1fc5c1;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 20px;
  position: absolute;
  top: 0px;
  right: 30px;
  color: #1FC5C1;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: #090909;
}

#faq .faq-list .collapsed:hover {
  color: #1dc8cd;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/* Our Team Section
--------------------------------*/
#team {
  padding: 60px 0;
  overflow: hidden;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #1dc8cd;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Noto Sans KR";
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1dc8cd;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Noto Sans KR";
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  background: #fff;
  color: #1dc8cd;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #1dc8cd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #1dc8cd;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #1dc8cd;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #1dc8cd;
}

#contact .php-email-form button[type=submit] {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .php-email-form button[type=submit]:hover {
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.text_tittle_question {
  font-weight: 700;
}

.btn_link_faq {
  font-size: 20px;
  font-weight: 400;
  color: #1fc5c1;
}

.f_50 {
  font-size: 50px !important;
  font-weight: 700 !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.pt290 {
  padding-top: 290px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}



.f_10 {
  font-size: 10px !important;
}


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


.f_16 {
  font-size: 16px !important;
}


.f_18 {
  font-size: 18px !important;
}

.f_24 {
  font-size: 24px !important;
}


.f_28 {
  font-size: 28px !important;
}

.f_26 {
  font-size: 26px !important;
}

.f_30 {
  font-size: 30px !important;
}

.f_36 {
  font-size: 36px !important;
}

.f_40 {
  font-size: 40px !important;
}

.f_70 {
  font-size: 70px !important;
}

.f_100 {
  font-size: 100px !important;
}

.f_20 {
  font-size: 20px !important;
}

.p_t_5 {
  padding-top: 5px;
}

.p_t_10 {
  padding-top: 10px;
}

.p_t_15 {
  padding-top: 15px !important;
}

.p_t_20 {
  padding-top: 20px !important;
}


.p_t_22 {
  padding-top: 22px;
}

.p_t_25 {
  padding-top: 25px;
}

.p_t_30 {
  padding-top: 30px;
}

.p_t_36 {
  padding-top: 36px;
}

.p_t_40 {
  padding-top: 40px;
}

.p_t_50 {
  padding-top: 50px;
}

.p_t_60 {
  padding-top: 60px;
}

.p_t_70 {
  padding-top: 70px;
}

.p_t_80 {
  padding-top: 80px;
}


.p_t_90 {
  padding-top: 90px;
}

.p_t_100 {
  padding-top: 100px;
}


.p_t_10 {
  padding-top: 10px;
}

.p_l_8 {
  padding-left: 8px;
}

.p_l_10 {
  padding-left: 10px;
}

.p_l_20 {
  padding-left: 20px;
}

.p_l_35 {
  padding-left: 35px;
}

.p_l_42 {
  padding-left: 42px;
}

.p_l_50 {
  padding-left: 50px;
}

.p_l_52 {
  padding-left: 50px;
}

.p_l_100 {
  padding-left: 100px;
}

.m_l_20 {
  margin-left: 20px;
}

.m_l_7 {
  margin-left: 7px;
}

.m_r_20 {
  margin-right: 20px;
}

.m_r_30 {
  margin-right: 30px;
}

.p_b_200 {
  padding-bottom: 200px;
}


.p_b_10 {
  padding-bottom: 10px;
}

.p_b_20 {
  padding-bottom: 20px;
}

.p_b_80 {
  padding-bottom: 80px;
}


.p_b_300 {
  padding-bottom: 300px;
}


.btn_register {
  width: 189px;
  height: 60px;
}

.btn_register:hover {
  color: #fff;
}

.color_2 {
  color: #A4A4A4;
}

.color_black {
  color: #090909;
}

.color_gray {
  color: #A4A4A4;
}


.div_rectangle_2 {
  padding-top: 80px;
}


.rectangle_1 {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.rectangle_2 {
  position: absolute;
  top: 100px;
  z-index: -1;
}


.div_line {
  border-bottom: 1.34765px solid #000000;
  width: 280px;
}

.text_bill {
  color: #A4A4A4;
}

.text_normal {
  font-size: 16px;
  color: #A4A4A4;
}

.text_normal_bold {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #090909;
}

.div_dot {
  border-bottom: 0.673823px dashed #A4A4A4;
  width: 280px;
}

.div_dot_white {
  border-bottom: 2px dashed #FFFFFF;
  width: 280px;
}

.div_image_rec_2 {
  margin-left: 20px;
}


.div_dot_milt {
  border-bottom: 2px dashed #1EC5C1;
  width: 280px;
}

.text_special {
  border-bottom: 12px solid #CCFCFA;
  display: inline-block;
  line-height: 0px;
}

.text_special_1 {
  border-bottom: 12px solid #CCFCFA;
  display: inline-block;
  line-height: 12px;
}

.text_special_0 {
  border-bottom: 10px solid #CCFCFA;
  display: inline-block;
  line-height: 0px;
}


.f_w_500 {
  font-weight: 500 !important;
}


.f_w_400 {
  font-weight: 400 !important;
}

.text_header_bold {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #090909;
}

.text_body_bold {
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #090909;
}

.main_color {
  color: #1EC5C1;
}

.text_addtion {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  text-align: right;

  color: #717575;
}


.text_body_footer {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.01em;
  color: #A4A4A4;
  padding-top: 12px;
}

.backgroupd_second {
  background-color: white;
}

.text_table_title_1 {
  font-weight: 700;
  line-height: 165%;
  color: #090909;
}

.text_table_title_2 {
  font-weight: 400;
  color: #090909;
}

.text_table_title_6 {
  height: 50px;
}

.link_href_table_1 {
  font-weight: 700;
  font-size: 33.6182px;
  line-height: 49px;
  color: #1FC5C1;
}

.link_href_table_1:hover {
  color: #1FC5C1;
}

.link_href_table_1 span {
  display: inline-block;
  border-bottom: 2px solid #1FC5C1;
}

.text_table_title_3 {
  color: #787878;

}

.text_table_title_5 {
  color: #A4A4A4;

}

.text_table_title_4 {
  font-weight: 700;
  font-size: 60px;
  line-height: 87px;
  color: #222222;


}

.container_vodaplay {
  width: 1200px;
  margin: 0px auto;

}


.footer_a {
  text-decoration: underline;
}

.image_footer {
  vertical-align: middle;
  padding-left: 28px;
}


.t15 {
  padding-top: 15px;
}

.move .sub8_img1 {
  animation: txtOpacity 0.5s 0.5s backwards;
}

.move .visibility {
  visibility: visible;
}


.sub8_text1 {
  padding-top: 190px;
}



.accept_12 {
  padding: 0px !important;
}

.sub8_img1 {
  position: absolute;
  left: 50%;
  margin-left: 80px;
  width: 538px;
  margin-top: 320px;
}


.form-check-input:checked {
  background-color: #1FC5C1;
  border-color: #1FC5C1;
}


.gnb1 {
  bottom: 38px !important;
}

.gnb1 {
  position: fixed;
  right: 50px;
  bottom: 80px;
}


.button1 {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  border: none;
  background: #1fc5c1;
  height: 35px;
  padding: 0 15px;
  border-radius: 50px;
}

.open_popup {
  width: 150px;
  background: #333333;
}

.btn_data_view_1,
.btn_data_view_2 {
  color: #1EC5C1;
}

.btn_data_view_1:hover,
.btn_data_view_2:hover {
  color: #1EC5C1;
}

.del span {
  display: inline-block;
  border-bottom: 2px solid #1FC5C1;
}

.cont_text1 {

  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: #090909;


}

.text_register_title {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-align: right;
  color: #090909;
}

.text_register_title_2 {
  margin-left: 50px;
}



.cont_text2 {
  color: #323232;
  /* border-bottom:1px solid #cacaca;  */
  display: inline-block;
}

.div_scroll {
  overflow-x: auto;
}

.text_register_header {
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  color: #090909;
}

.text_register_boby {
  font-weight: 400;
  font-size: 36px;
  line-height: 50px;
  color: #090909;
}

.div_white {
  background-color: #FFFFFF;
  margin-top: 9px;
}





.img_zoom_out {
  -webkit-transform: scale(1.2);
  /*Webkit: Scale up image to 1.2x original size*/
  -moz-transform: scale(1.1);
  /*Mozilla scale version*/
  -o-transform: scale(1.1);
  /*Opera scale version*/
  opacity: 1;
  transition: transform .25s, visibility .25s ease-in;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  transition: all 2s ease;
}

.image_home_banner {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  transition: all 2s ease;
}






.div_pig {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
}

.div_image_pig {
  text-align: center;
  margin-top: 125px;
}

.div_backgroud_white {
  background: white !important;
}

.div_backgroud_black {
  background: #090909 !important;
}

.div_backgroud_black span {
  color: #F8F8F8;
}

.backgroupd_gray {

  background: #F8F8FA !important;
}

.color_text_main {
  color: #323232;
}

.down_text {
  font-weight: 700;
  font-size: 60px;
  line-height: 82px;
  font-style: italic;
}

.image_down_number {
  margin-bottom: 63px;
}

.image_down_pig {
  width: 107px;
  height: 107px;
}

.fist_col_table {
  width: 300px;
}

.header_last_1 {
  background-color: #090909 !important;
  color: #F8F8F8;
  border-top: 2px solid #090909 !important;
  border-left: 2px solid #090909 !important;
  border-right: 2px solid #090909 !important;
}

.header_last_1_blue {
  border-top: 2px solid #CCFCFA !important;
  border-left: 2px solid #CCFCFA !important;
  border-right: 2px solid #CCFCFA !important;
}





.td_special_last {
  background-color: rgba(0, 238, 232, 0.2) !important;
}


.td_special_white {
  background-color: #FFFFFF !important;
  border-left: 2px solid #FFFFFF !important;
  border-right: 2px solid #FFFFFF !important;
}

.td_special_white_blue {
  border-left: 2px solid #CCFCFA !important;
  border-right: 2px solid #CCFCFA !important;
}


.td_transparent {
  border-color: transparent;
}


.td_gray {
  border-color: #E9E9E9;
}

.row_h_60 {
  height: 60px;
  vertical-align: middle;
}

.row_h_80 {
  height: 40px;
}


.delete_number {
  position: relative;
  top: -20px;
  margin-left: 12px;
}

.div_delete {
  height: 0px;
}

.div_step1_text {
  position: relative;
  top: -440px;
  height: 0px;
  left: 300px;
}

.div_step2_text {
  position: relative;
  top: -335px;
  left: 373px;
  height: 0px;
}

.div_step3_text {
  position: relative;
  top: -491px;
  left: 969px;
  height: 0px;

}

.div_step4_text {

  position: relative;
  top: -315px;
  left: 1337px;
  height: 0px;


}

.div_step5_text {
  position: relative;
  top: -182px;
  left: 1395px;
  height: 0px;
}

.no_bolder_top {
  border-top: none !important;
}

.button_go {
  color: #fff;
  background: #090909;
  border-radius: 100px;
  border-top-right-radius: 100px !important;
  border-bottom-right-radius: 100px !important;
  text-align: center;
  height: 48px !important;
  width: 163px !important;
  padding: 10px 20px 6px 20px;
}

.button_go img {
  padding-left: 12px;
}

.button_go_2 {
  color: #090909;
  background: #FFFFFF;
  border-radius: 100px;
  border-top-left-radius: 100px !important;
  border-bottom-left-radius: 100px !important;
  text-align: center;
  height: 48px !important;
  width: 163px !important;
  padding: 10px 20px 6px 20px;
  margin-left: 50px !important;
  border: 1px solid #090909 !important;
}


.button_go_2 img {
  padding-left: 10px;
}



#lottie-controls {
  display: none;
}

.image_pig_money {
  margin-left: 90px;
}

.image_wallet_money {}

.table_col_1 {
  width: 14.28%;
  margin: auto;
}

.table_col_2 {
  width: 14.28%;
  margin: auto;
}

.table_col_3 {
  width: 14.28%;
  margin: auto;
}

.table_col_4 {
  width: 14.28%;
  margin: auto;
}

.table_col_5 {
  width: 14.28%;
  margin: auto;
}

.table_col_6 {
  width: 14.28%;
  margin: auto;
}

.table_col_7 {
  width: 14.28%;
  margin: auto;
}

.table_col_8 {
  width: 28%;
  margin: auto;
}

.table_col_9 {
  width: 28%;
  margin: auto;
}

.table_col_10 {
  width: 28%;
  margin: auto;
}

.div_white_table {
  background: #FFFFFF;
  height: 50px;
  margin-bottom: 10px;

}

.text_table_1 {
  color: #1FC5C1;
}


.text_table_2 {
  color: #1FC5C1;
}


.f_w_400 {
  font-weight: 400 !important;
}


.f_w_800 {
  font-weight: 800 !important;
}


.div_header_table {
  margin-bottom: 20px;
}


.div_block_1 {
  background-color: #FFFFFF;
  width: 350px;
  height: 154px;
  padding-top: 40px;
  padding-left: 13px;
  border-radius: 20px;
  position: relative;
}

.absolute {
  position: absolute;
}

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}

.line1 {
  top: 178px;
  left: 487px;
}

.div_message_block {
  padding-top: 77px;
  padding-left: 154px;
}


.div_message_block_2 {
  padding-top: 40px;
  padding-left: 149px;
}

.div_message_block_3 {
  padding-top: 295px;
  padding-right: 64px;
  margin-left: -70px;
}



.line2 {
  left: 473px;
  top: 547px;
}

.line3 {

  top: 360px;
  left: 847px;
}

.small_text {
  position: absolute;
  margin-top: 28px;
}

.video {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 100%;
}

.video video {
  min-width: 100%;
  min-height: 100%;
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}

.video source {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.image_home {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 200px;
}

#section_3 {
  padding-top: 700px !important;
}

.line5 {
  left: -169px;
  top: 402px;
}

.line6 {
  top: 468px;
  left: -116px;
}


.line7 {
  top: 184px;
  left: 329px;
}

.service-box-item {
  background: #fff;
  border: 1px solid transparent;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 0 85px 0 #e9eefc;
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out;
  height: 319px;
}

.service-box-item figure img {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out;
  border-radius: 100%;
  width: 56px;
}

.div_main_web {
  margin-top: -536px;
  position: relative;
  top: 527px;
  left: 781px;
}

.kakatall {

  color: #fff;
  background: #FDEB60;
  border-radius: 100px;
  border-top-right-radius: 100px !important;
  border-bottom-right-radius: 100px !important;
  text-align: center;
  height: 48px !important;
  width: 163px !important;
  padding: 10px 20px 6px 20px;

}

.btn_done_register:hover {
  background-color: #333333
}

.video_2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.delete_text {
  color: #9D9D9D;
}

.delete_image {
  position: absolute;
  right: 216px;
  top: 115px;
}

.line3 img{
  z-index: 10;
  position: absolute;
}

.font_noto_san {
  font-family: "Noto Sans";
}

.div_register_information_1 input {
  font-size: 16px;
}

.div_register_2 {
  width: 536px;
}



@media screen and (max-width: 768px) {

  .container_vodaplay,
  .tcontainer_fluid {
    width: 600px;
    padding: 0 20px;
    margin: 0px auto;

  }




}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

  /* Styles */
  .sub8_img1 {
    display: none;
  }

  .rectangle_1 {
    height: 700px;
    width: 100%;
  }

  .div_line {
    width: 100%;
  }

  .div_dot {
    width: 100%;
  }


}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
  /* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
  /* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

  /* Styles */
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 0px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 588px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

  /* Styles */
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 0px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 588px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

  /* Styles */
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 0px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 588px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }
}

/**********
      iPad 3
      **********/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
  /* Styles */
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
  /* Styles */
}

/* Desktops and laptops ----------- */
@media only screen and (max-width : 1024px) {

  /* Styles */
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 0px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 588px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }

}

/* ----------- Non-Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1679px) {
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 0px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 588px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }


}


/* Desktops and laptops ----------- */
@media only screen and (min-width : 1660px)and (max-width : 1900px) {

  /* Styles */
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 74px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 713px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }

}

/* Desktops and laptops ----------- */
@media only screen and (max-width : 1448px) {

  /* Styles */
  .div_image_full {
    margin-top: 50px;
  }

  .div_image_detail img {
    width: 300px;
  }

  .div_image_detail .m_r_30 {
    margin-right: 29px;
  }

  .div_image_detail .p_l_100 {
    margin-left: 0px !important;
  }

  .div_main_web {
    margin-top: -536px;
    position: relative;
    top: 443px;
    left: 588px;
    width: 520px;
  }

  .div_main_web img {
    width: 300px;
  }

  .div_step1_text {
    position: relative;
    top: -356px;
    height: 0px;
    left: 216px;
  }

  .div_step2_text {
    position: relative;
    top: -278px;
    left: 256px;
    height: 0px;
  }

  .div_step3_text {
    position: relative;
    top: -354px;
    left: 53%;
    height: 0px;
  }

  .div_step4_text {
    position: relative;
    top: -273px;
    left: 72%;
    height: 0px;
  }

  .div_step5_text {
    position: relative;
    top: -162px;
    left: 76%;
    height: 0px;
  }

}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
  /* Styles */
}

/* iPhone 4 ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
  /* Styles */
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
  /* Styles */
}

/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

/* iPhone 6, 7, 8 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

/* iPhone 6+, 7+, 8+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

/* iPhone X ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

/* iPhone XS Max, XR ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}

/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

.nav_link_header{
  font-size: 16px !important;
  font-weight: 500 !important;
}