/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #33B6B8;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
/* roboto-100 - latin */
@font-face {
    font-family:'Roboto';
    font-style:normal;
    font-weight:100;
    src:url('../font/roboto-v20-latin-100.eot'); /* IE9 Compat Modes */
    src:local('Roboto Thin'), local('Roboto-Thin'),
        url('../font/roboto-v20-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../font/roboto-v20-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
        url('../font/roboto-v20-latin-100.woff') format('woff'), /* Modern Browsers */
        url('../font/roboto-v20-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../font/roboto-v20-latin-100.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
    font-family:'Roboto';
    font-style:normal;
    font-weight:400;
    src:url('../font/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
    src:local('Roboto'), local('Roboto-Regular'),
        url('../font/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../font/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
        url('../font/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
        url('../font/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../font/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
    font-family:'Roboto';
    font-style:normal;
    font-weight:700;
    src:url('../font/roboto-v20-latin-700.eot'); /* IE9 Compat Modes */
    src:local('Roboto Bold'), local('Roboto-Bold'),
        url('../font/roboto-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../font/roboto-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
        url('../font/roboto-v20-latin-700.woff') format('woff'), /* Modern Browsers */
        url('../font/roboto-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../font/roboto-v20-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1E252D;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1E252D;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #33B6B8;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #01D5AA;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 45px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: rgb(133, 128, 128);
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 90px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #1E252D;
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #33B6B8;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #33B6B8;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #33B6B8;
  font-weight: 600;
}

.get-started-btn:hover {
  background: #31a9e1;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #1E252D;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 50px;
  bottom: 0;
  left: 0;
  z-index: 9999;
  overflow-y: auto;
  background: #01D5AA;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  padding: 10px 0;
  transform: translateX(-330px);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #1E252D;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1.25rem;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #33B6B8;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# topmain Section
--------------------------------------------------------------*/
#topmain {
  width: 100%;
  height: 120vh;
  background: #fff;
}

#topmain .container {
  padding-top: 72px;
}

#topmain h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #1E252D;
}

#topmain h2 {
  color: #1E252D;
  margin-bottom: 50px;
  font-size: 20px;
}

#topmain .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #33B6B8;
}

#topmain .btn-get-started:hover {
  background: #01D5AA;
}

#topmain .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  position: relative;
}

#topmain .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#topmain .btn-watch-video:hover i {
  color: #33B6B8;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.animated.type2 {animation: up-down .5s ease-in-out infinite alternate-reverse both;}

@media (max-width: 991px) {
  #topmain {
    height: auto;
    text-align: center;
  }
  #topmain .animated {
    /* -webkit-animation: none;
    animation: none; */
  }
  #topmain .topmain-img {
    text-align: center;
  }
  #topmain .topmain-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #topmain h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #topmain h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #topmain .topmain-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #topmain .topmain-img img {
    width: 80%;
  }
  #topmain .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #topmain .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #topmain .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 20px;
  position: relative;
  color: #1E252D;
}

.section-title p {
  margin-bottom: 0;
  color: #1E252D;
  font-size: 20px;
}
.section-title p.subtit {color: #1E252D; font-size: 24px; font-weight: bold}
/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.cliens img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #33B6B8;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #33B6B8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #33B6B8;
}

.about .content .btn-learn-more:hover {
  background: #33B6B8;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #1E252D;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.why-us .accordion-list span {
  color: #33B6B8;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #33B6B8;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #1E252D;
  font-family: "Roboto", sans-serif;
}

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

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

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #33B6B8;
}

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

.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #1E252D;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #33B6B8;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #1E252D;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #33B6B8;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #33B6B8;
  border: 2px solid #33B6B8;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

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

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #33B6B8;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #33B6B8;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #1E252D;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #1E252D;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #33B6B8;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #1E252D;
}

.pricing h4 {
  font-size: 48px;
  color: #1E252D;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #33B6B8;
  font-size: 18px;
  display: block;
}

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

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #33B6B8;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  transition: 0.3s;
  border: 1px solid #33B6B8;
}

.pricing .buy-btn:hover {
  background: #33B6B8;
  color: #fff;
}

.pricing .featured {
  border-top-color: #33B6B8;
}

.pricing .featured .buy-btn {
  background: #33B6B8;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #33B6B8;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

.faq .faq-list a.collapsed {
  color: #1E252D;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #33B6B8;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #33B6B8;
  border-bottom: 3px solid #33B6B8;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #33B6B8;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1E252D;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #33B6B8;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #33B6B8;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #33B6B8;
  border-bottom: 3px solid #33B6B8;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.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;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #33B6B8;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #33B6B8;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #01D5AA;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1E252D;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #33B6B8 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #1E252D;
  color:#fff
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #1E252D;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #33B6B8;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #01D5AA;
}

#footer .footer-top {
  padding: 40px 0 30px 0;
  background: #1E252D;
}

#footer .footer-top .footer-contact {
  /* margin-bottom: 30px; */
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #33B6B8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  /* padding-top: 0; */
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  opacity: .5;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #33B6B8;
}

#footer .footer-top .social-links a {
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;
  opacity: .5;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  border-top: 1px solid #707070;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Font Size + 간격
--------------------------------------------------------------*/
.font8 {font-size:0.5000rem !important}	/* 8px */
.font9 {font-size:0.5625rem !important}	/* 9px  */
.font10 {font-size:0.6250rem !important}	/* 10px  */
.font11 {font-size:0.6875rem !important}	/* 11px  */
.font12 {font-size:0.7500rem !important}	/* 12px  */
.font13 {font-size:0.8125rem !important}	/* 13px  */
.font14 {font-size:0.8750rem !important}	/* 14px  */
.font15 {font-size:0.9375rem !important}	/* 15px  */
.font16 {font-size:1.0000rem !important}	/* 16px  */
.font17 {font-size:1.0625rem !important}	/* 17px  */
.font18 {font-size:1.1250rem !important}	/* 18px  */
.font19 {font-size:1.1875rem !important}	/* 19px  */
.font20 {font-size:1.2500rem !important}	/* 20px  */
.font21 {font-size:1.3125rem !important}	/* 21px  */
.font22 {font-size:1.3750rem !important}	/* 22px  */
.font23 {font-size:1.4375rem !important}	/* 23px  */
.font24 {font-size:1.5000rem !important}	/* 24px  */
.font26 {font-size:1.6250rem !important}	/* 26px  */
.font28 {font-size:1.7500rem !important}	/* 28px */

/* 간격 */
.mgt0  {margin-top:0 !important}
.mgt5  {margin-top:5px !important}
.mgt10 {margin-top:10px !important}
.mgt15 {margin-top:15px !important}
.mgt20 {margin-top:20px !important}
.mgt25 {margin-top:25px !important}
.mgt30 {margin-top:30px !important}
.mgt35 {margin-top:35px !important}
.mgt40 {margin-top:40px !important}
.mgt45 {margin-top:45px !important}
.mgt50 {margin-top:50px !important}

.mgl5  {margin-left:5px !important}
.mgl10 {margin-left:10px !important}
.mgl20 {margin-left:20px !important}
.mgl30 {margin-left:30px !important}

.mgr5  {margin-right:5px !important}
.mgr10 {margin-right:10px !important}
.mgr20 {margin-right:20px !important}
.mgr30 {margin-right:30px !important}

.mgb0  {margin-bottom:0 !important;}
.mgb5  {margin-bottom:5px !important;}
.mgb10 {margin-bottom:10px !important;}
.mgb15 {margin-bottom:15px !important;}
.mgb20 {margin-bottom:20px !important;}
.mgb25 {margin-bottom:25px !important;}
.mgb30 {margin-bottom:30px !important;}
.mgb35 {margin-bottom:35px !important;}
.mgb40 {margin-bottom:40px !important;}

.pt0 {padding-top:0 !important;}
.pt5 {padding-top:5px !important;}
.pt10 {padding-top:10px !important;}
.pt15 {padding-top:15px !important;}
.pt20 {padding-top:20px !important;}
.pt25 {padding-top:25px !important;}
.pt30 {padding-top:30px !important;}
.pt35 {padding-top:35px !important;}
.pt40 {padding-top:40px !important;}
.pt45 {padding-top:45px !important;}
.pt50 {padding-top:50px !important;}

.pb0 {padding-bottom:0 !important;}
.pb5 {padding-bottom:5px !important;}
.pb10 {padding-bottom:10px !important;}
.pb15 {padding-bottom:15px !important;}
.pb20 {padding-bottom:20px !important;}
.pb25 {padding-bottom:25px !important;}
.pb30 {padding-bottom:30px !important;}
.pb35 {padding-bottom:35px !important;}
.pb40 {padding-bottom:40px !important;}
.pb45 {padding-bottom:45px !important;}
.pb50 {padding-bottom:50px !important;}

.pl0 {padding-left:0 !important;}
.pl5 {padding-left:5px !important;}
.pl10 {padding-left:10px !important;}
.pl15 {padding-left:15px !important;}
.pl20 {padding-left:20px !important;}
.pl25 {padding-left:25px !important;}
.pl30 {padding-left:30px !important;}
.pl35 {padding-left:35px !important;}
.pl40 {padding-left:40px !important;}
.pl45 {padding-left:45px !important;}
.pl50 {padding-left:50px !important;}

.pr0 {padding-right:0 !important;}
.pr5 {padding-right:5px !important;}
.pr10 {padding-right:10px !important;}
.pr15 {padding-right:15px !important;}
.pr20 {padding-right:20px !important;}
.pr25 {padding-right:25px !important;}
.pr30 {padding-right:30px !important;}
.pr35 {padding-right:35px !important;}
.pr40 {padding-right:40px !important;}
.pr45 {padding-right:45px !important;}
.pr50 {padding-right:50px !important;}
.pr80 {padding-right:80px !important;}

.mt0 {margin-top:0 !important;}
.mt5 {margin-top:5px !important;}
.mt10 {margin-top:10px !important;}
.mt15 {margin-top:15px !important;}
.mt20 {margin-top:20px !important;}
.mt25 {margin-top:25px !important;}
.mt30 {margin-top:30px !important;}
.mt35 {margin-top:35px !important;}
.mt40 {margin-top:40px !important;}
.mt45 {margin-top:45px !important;}
.mt50 {margin-top:50px !important;}
.mt60 {margin-top:60px !important;}

.mb0 {margin-bottom:0px !important;}
.mb5 {margin-bottom:5px !important;}
.mb10 {margin-bottom:10px !important;}
.mb15 {margin-bottom:15px !important;}
.mb20 {margin-bottom:20px !important;}
.mb25 {margin-bottom:25px !important;}
.mb30 {margin-bottom:30px !important;}
.mb35 {margin-bottom:35px !important;}
.mb40 {margin-bottom:40px !important;}
.mb45 {margin-bottom:45px !important;}
.mb50 {margin-bottom:50px !important;}

.ml0 {margin-left:0 !important;}
.ml5 {margin-left:5px !important;}
.ml10 {margin-left:10px !important;}
.ml15 {margin-left:15px !important;}
.ml20 {margin-left:20px !important;}
.ml25 {margin-left:25px !important;}
.ml30 {margin-left:30px !important;}
.ml35 {margin-left:35px !important;}
.ml40 {margin-left:40px !important;}
.ml45 {margin-left:45px !important;}
.ml50 {margin-left:50px !important;}

.mr0 {margin-right:0 !important;}
.mr5 {margin-right:5px !important;}
.mr10 {margin-right:10px !important;}
.mr15 {margin-right:15px !important;}
.mr20 {margin-right:20px !important;}
.mr25 {margin-right:25px !important;}
.mr30 {margin-right:30px !important;}
.mr35 {margin-right:35px !important;}
.mr40 {margin-right:40px !important;}
.mr45 {margin-right:45px !important;}
.mr50 {margin-right:50px !important;}

/*--------------------------------------------------------------
# Modify + Add
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1600px;
  }
  .pos-mainimg {position: absolute; top:-420px; right:-110px}
  #Fanverse .webdisplay .img1-2 {left: 50%; margin-left: -523px;}  
}

.webdisplay {display: block}
.mobdisplay {display: none}
/* .back-to-top {display:none !important} */
.pos-mainimg {position: absolute; top:-700px; right:-110px}
h3, p {color:#1E252D}
.topmain {z-index: 2;}
#topmain .topmain-img {position: relative;}
#topmain .topmain-img .pos-mainimg::before {content: ''; position: absolute; top: 580px; left:-280px; width:100%; height:100%; background: url('../img/topmaincircle-img.png') 0 0 no-repeat}
#header.header-scrolled {padding: 10px 0;}
.btn {border-radius: .5rem;}
.btn-linkblack {width:120px; color: #fff;background-color: #1E252D;border-color: #1E252D; font-weight: 600;}
.btn-linkblack:hover {color: #fff;background-color: #022EA9;border-color: #022EA9;}
.icon-download{display:inline-block;width:16px;height:14px;background:url('../img/icon-download.png') 0 0 no-repeat;vertical-align:middle;font:0/0 auto;}
.icon-eng{display:inline-block;width:13px;height:13px;background:url('../img/icon-eng.svg') 0 0 no-repeat;vertical-align:middle;font:0/0 auto;}
.pr1 {padding-right: 1rem !important;}
.dnlink .p-2 {width: 150px;}
.dnlink.first {margin-bottom: 20px;}
.dnlink a + a {margin-left: 10px;}
#Fanverse .webdisplay .img1-1 {padding-top: 190px;}
#Fanverse .webdisplay .img1-2 {position: absolute; top: 100px; left: 50%; margin-left: -563px;}
section {padding: 120px 0}

.nav-menu a.mo-navlogo {display:none} 
.nav-menu li:last-child {}
.nav-menu li:last-child {font-size:14px; color:#1E252D;}
.nav-menu a.dropdown-item {font-size:14px; color:#1E252D; text-align: center;padding: 0.25rem 0.5rem; border-bottom: 1px solid #707070; border-top: 1px solid #707070;}
.nav-menu a.dropdown-item.active, .nav-menu a.dropdown-item:active,.nav-menu a.dropdown-item:hover {background-color: transparent;}
.nav-menu .dropdown-menu {min-width:100px; padding:0; margin:0; background-color: transparent; border:0}
.nav-menu .dropdown-menu a {font-weight:bold}
.nav-menu .dropdown-menu a:after {
  position: absolute;
  top: 12px;
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 1px solid #121212;
  width: 6px;
  height: 6px;
  border-right: 1px solid #121212;
  transform: rotate(315deg);
  border-bottom: 0;
  border-left: 0;
}
.nav-menu .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 1px solid #121212;
  width: 6px;
  height: 6px;
  border-right: 1px solid #121212;
  transform: rotate(135deg);
  border-bottom: 0;
  border-left: 0;
}
.nav-menu .dropdown:hover>.dropdown-menu {
  display: block;
}
.nav-menu .dropdown>.dropdown-toggle:active {
  pointer-events: none;
}
.btn-secondary,.btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
  color: #1E252D;
  background-color: transparent;
  border-color: transparent; font-size:13px; font-weight:600;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus {box-shadow: none;}
.mobile-nav .lang {display:flex;justify-content: center; margin-top: 20%;}
.mobile-nav .lang li {width:44%; text-align:center; border: 1px solid #1E252D}
.mobile-nav .lang li:last-child {margin-left: -1px;}
.mobile-nav .lang li a {padding: 5px; font-size:16px}
.mobile-nav .lang li a.active {color:#fff; background-color: #1E252D;}

.mobile-nav .mo-navlogo {display:block; position: absolute; top:0; left: -5px}
#footer .footer-top .footer-contact .address {padding:35px 0; font-size:1.1250rem}
/* #footer .footer-top .social-links a.first {margin-left: -20px;} */
#Platform .row {padding-top: 80px;}
#Platform .w80 {width:80%}
#Platform .img2-1 .left img {}
#Platform .img2-3 {}
#Platform .img2-3 .left {z-index: 1;}
#Platform .img2-3 .right {position: relative;}
#Platform .img2-3 .right::before {content:''; position: absolute; top:80px; left:-80px; width:2000px; height:380px; border-top-left-radius: 190px; border-bottom-left-radius: 190px; background-color: #ED604D; z-index: -1;}
#Platform .img2-3 .right::after {content:''; position: absolute; top:80px; left:-2080px; width:2000px; height:380px; border-top-right-radius: 190px; border-bottom-right-radius: 190px; background-color: #01D5AA; z-index: -1;}
#Platform .img2-5 {}
#Platform .img2-5 .left {position: relative;height:500px}
#Platform .img2-5 .left::before {content:''; position: absolute; top:0; left:-1330px; width:2000px; height:500px; border-top-right-radius: 250px; border-bottom-right-radius: 250px; background: url('../../assets/img/img2-5.png') 100% 0 no-repeat; z-index: -1;}
#Platform .img2-6 {}
#Platform .img2-6 .right {position: relative;height: 380px;}
#Platform .img2-6 .right::before {content:''; position: absolute; top:0; left:-800px; width:2000px; height:380px; border-top-left-radius: 190px; border-bottom-left-radius: 190px; background: url('../../assets/img/img2-6.png') 100% 0 no-repeat; z-index: -1;}
#Technology .img3list {margin: 80px 70px;}
#Technology .img3list .col-xl-3 {margin:5px 0}
#Technology .img3list2 {padding-top: 50px;}
#Technology .img3list2 h4 {padding: 20px 0; font-weight: 600; font-size: 24px;}

.roadmapslider {width:100%; padding:50px 0 80px}
.roadmapslider .item {padding: 0 20px;}
.roadmapslider .item .txtinfo {padding:35px 20px 0}
.roadmapslider .item .txtinfo h4 {margin-bottom: 20px; font-size: 30px; font-weight: 600}
.roadmapslider .item .txtinfo .desc {font-size: 20px; font-weight: 600}
.roadmapslider .slick-prev,
.roadmapslider .slick-next {top:100%; left:50%; width:58px; height:58px; margin-top: -40px;}
.roadmapslider .slick-prev {margin-left:0; background-color: #1E252D;} 
.roadmapslider .slick-next {margin-left:-58px; background-color: #B7BBD8;}
.slick-prev:before, .slick-next:before {content: ''; position: absolute; top:14px; width:30px; height:30px; border-top: 1px solid #fff; border-right: 1px solid #fff}
.slick-prev:before {left:10px; transform: rotate(45deg)}
.slick-next:before {left:20px; transform: rotate(225deg)}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{ opacity: 1; }
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{ opacity: .25; }

#Members .img5list {margin: 0 70px;}
#Members .img5list .col-xl-3 {margin:10px 0}
#Members .img5list .gaptype1 {margin-left: 12%;}
#Members .teammember {padding: 20px 0 120px;}
#Members .teammember .member {position: relative; min-height:180px; padding: 30px 50px 30px 120px;margin: 0 75px 20px;border-radius: 200px;background: #fff; border:1px solid #B7BBD8; transition: 0.5s;}
#Members .teammember .member .pic {position: absolute; top: 50%; left: -60px; margin-top: -60px;}
#Members .teammember .member.first {margin-bottom: 40px;}
#Members .teammember .member.first .pic {left: -75px; margin-top: -75px;}
#Members .teammember .member .tit {font-size:20px; font-weight: 600;}
#Members .teammember .member .role {padding-left: 18px;font-size:16px; font-weight: normal;}
#Members .teammember .member .desc {font-size:18px; font-weight: normal;}
.txthypen {position: relative; padding-left: 10px; word-break: break-all;}
.txthypen::before {content: '-'; position: absolute; top: 0;margin-left: -10px;}

#Members .mo-teammember {display: none;}
#Members .mo-teammember {padding: 20px 0 180px;}
#Members .mo-teammember .member .pic {display: inline-block;}
#Members .mo-teammember .member .tit {margin-bottom: -5px; font-size:20px; font-weight: 600;}
#Members .mo-teammember .member .role {font-size:12px; font-weight: normal;}
#Members .mo-teammember .member .desc {margin-top: 10px;font-size:14px; font-weight: normal;}
#Members .mo-teammember .member .desc .txthypen {padding-bottom: 10px;line-height: 1.2;}
.teammemberslider {width:100%; padding:40px 0}
.teammemberslider .item {padding: 0 20px;}
.teammemberslider .slick-prev,
.teammemberslider .slick-next {top:100%; left:50%; width:58px; height:58px; margin-top: 30px;}
.teammemberslider .slick-prev {margin-left:0; background-color: #1E252D;} 
.teammemberslider .slick-next {margin-left:-58px; background-color: #B7BBD8;}

#Technology .p-gap1 {padding: 0 30px}


@media (max-width: 1199px) {
  #Members .teammember {display: none}
  #Members .mo-teammember {display: block}

  .pos-mainimg {position: relative; top: -290px; right: -18%;}
  #topmain .topmain-img .pos-mainimg::before {display:none}

  #Platform .row {padding-top: 60px;}
  #Platform h3 {padding-top: 20px;}
  #Platform .img2-1 .left img {margin-left: -60px;}
  #Platform .img2-3 .left {position: relative;}
  #Platform .img2-3 .left::before {content:''; position: absolute; top:15%; left:0; width:100%; height:70%; background-color: #01D5AA; z-index: -1;}
  #Platform .img2-3 .right::before,
  #Platform .img2-3 .right::after 
  {display:none}
    #Platform .img2-5 .left::before {left: -1560px;}
  #Platform .img2-6 .right::before {}
  #Platform .img2-7 .left {padding-left: 50px;}

  .container, .container-sm {}
  #Members .img5list .gaptype1 {margin-left: 0;}
}

@media (max-width: 991px) {
  .webdisplay {display: none}
  .mobdisplay {display: block}
  .container {max-width: 100%; }
  #topmain .topmain-img {height: 70vh;}
  #topmain .topmain-img img {
      width: 80%;
  }
  #topmain .topmain-img .pos-mainimg::before {display:none;}
  .pos-mainimg {position: relative; top: -290px; right: -18%;}
  .dnlink .p-2 {width: auto;}
  .mobile-nav .mo-navlogo {position: relative; padding-bottom:100px;}
  #Platform .row {text-align:center}
  #Platform .img2-1 .left img {margin-left: 0;}
  #Technology .img3list {margin: 40px 0;}
  #Members .img5list {margin: 0 0;}
  #Members .teammember {display: none}
  #Members .mo-teammember {display: block}

  section {padding: 60px 0}
  #Platform .row {padding-top: 60px;}
  #Platform h3 {padding-top: 20px;}
  #Platform .img2-1 .left img {margin-left: -60px;}
  #Platform .img2-3 .left {position: relative;}
  #Platform .img2-3 .left::before {content:''; position: absolute; top:15%; left:0; width:100%; height:70%; background-color: #01D5AA; z-index: -1;}
  #Platform .img2-3 .right::before,
  #Platform .img2-3 .right::after 
  {display:none}
  #Platform .img2-5 .left {height: auto; padding: 0;}
  #Platform .img2-5 .left::before,
  #Platform .img2-6 .right::before {display: none}
  #Platform .img2-6 .right {height: auto; padding: 0 0 0 50px; text-align: right;}
  #Platform .img2-7 .left {padding-left: 50px;}
  #Members .img5list .gaptype1 {margin-left: 0;}
}
@media (max-width: 768px) {
  .webdisplay {display: none}
  .mobdisplay {display: block}
  #topmain .topmain-img {height: 60vh;}
  #topmain .topmain-img img {
      width: 100%;
  }
  #topmain .topmain-img .pos-mainimg::before {display:none;}
  .pos-mainimg {position: relative; top: -290px; right: -18%;}
  .dnlink .p-2 {width: auto;}
  #Platform .row {text-align:center}
  #Technology .img3list {margin: 40px 0;}
  #Members .img5list {margin: 0 0;}
  #Members .teammember {display: none}
  #Members .mo-teammember {display: block}

  section {padding: 60px 0}
  #Platform .row {padding-top: 60px;}
  #Platform h3 {padding-top: 20px;}
  #Platform .img2-1 .left img {margin-left: -60px;}
  #Platform .img2-3 .left {position: relative;}
  #Platform .img2-3 .left::before {content:''; position: absolute; top:15%; left:0; width:100%; height:70%; background-color: #01D5AA; z-index: -1;}
  #Platform .img2-3 .right::before,
  #Platform .img2-3 .right::after 
  {display:none}
  #Platform .img2-5 .left {height: auto; padding: 0;}
  #Platform .img2-5 .left::before,
  #Platform .img2-6 .right::before {display: none}
  #Platform .img2-6 .right {height: auto; padding: 0 0 0 50px;}
  #Platform .img2-7 .left {padding-left: 50px;}
  #Members .img5list .gaptype1 {margin-left: 0;}
}
@media (max-width: 575px) {
  .webdisplay {display: none}
  .mobdisplay {display: block}
  #topmain .topmain-img {height: 50vh;}
  #header {padding: 15px 0;}
  .mobile-nav {padding: 10px 0}
  .pos-mainimg {position: relative; top: -210px; right: -18%;}
  /* #topmain {height: 100vh} */
  #topmain .topmain-img .pos-mainimg::before {display: none;}
  .dnlink .p-2 {width: auto; font-size: 12px;}
  .dnlink.first {margin-bottom: 10px;}
  /* .dnlink a + a {margin-left: auto;} */
  #Fanverse {padding-bottom: 0 !important;}
  #Platform .row {text-align:center}
  #Technology .img3list {margin: 0;}
  #Members .img5list {margin: 0 0;}
  #Members .teammember {display: none}
  #Members .mo-teammember {display: block}
  .section-title h2 {font-size: 24px; padding-bottom: 15px;}

  section {padding: 60px 0}
  #Platform .row {padding-top: 30px;}
  #Platform h3 {padding-top: 20px; font-size: 20px;}
  #Platform .img2-1 .left img {margin-left: -60px;}
  #Platform .img2-3 .left {position: relative;}
  #Platform .img2-3 .left::before {content:''; position: absolute; top:15%; left:0; width:100%; height:70%; background-color: #01D5AA; z-index: -1;}
  #Platform .img2-3 .right::before,
  #Platform .img2-3 .right::after 
  {display:none}
  #Platform .img2-5 .left {height: auto; padding: 0;}
  #Platform .img2-5 .left::before,
  #Platform .img2-6 .right::before {display: none}
  #Platform .img2-6 .right {height: auto; padding: 0 0 0 50px;}
  #Platform .img2-7 .left {padding-left: 50px;}
  #Members .img5list .gaptype1 {margin-left: 0;}
  .teammemberslider {padding: 0 0 40px 0;}
  .roadmapslider .item {padding: 0 10px;}
  .roadmapslider .item .txtinfo {padding:25px 10px 0}
  .roadmapslider {padding: 10px 0 120px;}
  .section-title p {font-size: 14px;}
  .roadmapslider .item .txtinfo h4 {font-size: 18px; margin-bottom: 15px;}
  .roadmapslider .item .txtinfo .desc {font-size: 14px; margin-bottom: 10px;}
  .roadmapslider .slick-prev,
  .roadmapslider .slick-next {top:100%; left:50%; width:40px; height:40px; margin-top: -40px;}
  .roadmapslider .slick-prev {margin-left:0} 
  .roadmapslider .slick-next {margin-left:-40px}
  .slick-prev:before, .slick-next:before {content: ''; position: absolute; top:10px; width:20px; height:20px;}
  .slick-prev:before {left:5px;}
  .slick-next:before {left:15px;}
  .teammemberslider .slick-prev,
  .teammemberslider .slick-next {top:100%; left:50%; width:40px; height:40px; margin-top: 20px;}
  .teammemberslider .slick-prev {margin-left:0;} 
  .teammemberslider .slick-next {margin-left:-40px;}
  #Members .mo-teammember .member .tit {margin-bottom: 0;}
  #Members .mo-teammember {padding: 20px 0 120px;}
  #Members .section-title h2 {padding-bottom: 0;}
  #Technology .img3list2 h4 {font-size: 20px; padding: 20px 0; margin: 0;}
  #Technology .img3list .col-xl-3,
  #Members .img5list .col-xl-3 {margin:5px 0; padding: 0 6px}
  .section-title p.subtit {font-size: 16px;padding-bottom: 15px;}
  p {font-size: 14px;}
  #footer .footer-top .footer-contact p .tit {font-size:20px}
  #footer .footer-top .footer-contact .address {font-size:14px}
  #footer .footer-top .footer-links ul a {font-size:18px}
  #footer .copyright, #footer .credits {font-size:11px}
  #footer .footer-top h4 {padding-bottom: 0;}
  #footer .footer-top {margin: 0 20px;}
  #footer .marketgap-b48 {margin-bottom: 48px;}
  #footer .footer-top .webdisplay2 {display: none;}
}