/* Fonts */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard-dynamic-subset.css");

@font-face {
  font-family: "basic_font";
  src: url("/assets/font/pretendard/Pretendard-Regular.woff2") format("woff2");
  unicode-range: U+AC00-D7AF; 
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/pretendard/Pretendard-Medium.woff2") format("woff2");
  unicode-range: U+AC00-D7AF; 
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/pretendard/Pretendard-SemiBold.woff2") format("woff2");
  unicode-range: U+AC00-D7AF; 
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/pretendard/Pretendard-Bold.woff2") format("woff2");
  unicode-range: U+AC00-D7AF; 
  font-style: normal;
  font-weight: 700; 
}

@font-face {
  font-family: "basic_font";
  src: url("/assets/font/montserrat/Montserrat-Regular.woff") format("woff");
  unicode-range:  U+0030-0039, U+0041-005A, U+0061-007A;
  font-style: normal;
  font-weight: 300; 
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/montserrat/Montserrat-Regular.woff") format("woff");
  unicode-range:  U+0030-0039, U+0041-005A, U+0061-007A;
  font-style: normal;
  font-weight: 400; 
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/montserrat/Montserrat-Regular.woff") format("woff");
  unicode-range:  U+0030-0039, U+0041-005A, U+0061-007A;
  font-style: normal;
  font-weight: 500; 
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/montserrat/Montserrat-Bold.woff") format("woff");
  unicode-range:  U+0030-0039, U+0041-005A, U+0061-007A;
  font-style: normal;
  font-weight: 600; 
}
@font-face {
  font-family: "basic_font";
  src: url("/assets/font/montserrat/Montserrat-Bold.woff") format("woff");
  unicode-range:  U+0030-0039, U+0041-005A, U+0061-007A;
  font-style: normal;
  font-weight: 700; 
}

:root {
  --default-font: "basic_font",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "basic_font",  sans-serif;
  --nav-font: "basic_font",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff ; /* Background color for the entire website, including individual sections */
  --default-color: #2e5ecf ; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2e5ecf ; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --filed-color: #f0f4f7;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #91cfff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f0f4f7 ; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff ;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2e5ecf;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.4s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
video {
    outline: none;
    border: 0;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.row>* {
  margin-top: 50px;
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--default-color);
  padding: 10px 0;
  transition: all 0.5s;
  position: fixed;
  top: 0; 
  left: 0;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  background-image: url(/assets/img/sion/logo-w.png);
  background-size: cover;
  width: 90px;
  height: 90px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--default-color);
  background: #ffffff;
  font-size: 18px;
  padding: 5px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.4s;
  font-weight: 600;
  margin-left: 50px
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: #000;
  color: #fff;
}

.index-page.scrolled .header .btn-getstarted {
  color: #ffffff;
  background: var(--default-color);
}
.index-page.scrolled .header .btn-getstarted:focus {
  background: #000;
  color: #fff;
}
.index-page.scrolled .header .btn-getstarted:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 768px) {
 .header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 15px;
}
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  background-color: var(--heading-color);
  z-index: 90000;
}

.index-page.scrolled .header .logo {
  background-image: url(/assets/img/sion/logo-b.png);
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1500px !important;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1700px;
}
.index-page.scrolled .navmenu a {
  color: #000;
}
.index-page.scrolled li:hover>a {
  color: var(--default-color);
}

.navmenu {
  padding: 0;
}

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

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 25px;
  font-size: 18px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}
.navmenu a > span {
  transition: 0.2s;
}
.navmenu a > span:first-child { 
  opacity: 0; position: absolute;     
  left: 19%; font-weight: 500;

}
.navmenu a > span:last-child {
    font-family: "Montserrat", sans-serif !important;
}
.navmenu a:hover > span:first-child { opacity: 1;  font-family: var(--default-font);
 }
.navmenu a:hover > span:last-child { opacity: 0; }

.navmenu li:last-child a {
  padding-right: 0;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}
.index-page.scrolled .navmenu li:hover>a, 
.index-page.scrolled .navmenu .active, 
.index-page.scrolled .navmenu .active:focus {
  color: var(--default-color);
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

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

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--nav-dropdown-color);
}

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

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--nav-dropdown-hover-color);
}

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

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

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

.navmenu .megamenu {
  position: static;
}

.navmenu .megamenu ul {
  margin: 0;
  padding: 10px;
  background: var(--nav-dropdown-background-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navmenu .megamenu ul li {
  flex: 1;
}

.navmenu .megamenu ul li a,
.navmenu .megamenu ul li:hover>a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--nav-dropdown-color);
}

.navmenu .megamenu ul li a:hover,
.navmenu .megamenu ul li .active,
.navmenu .megamenu ul li .active:hover {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .megamenu:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dd-box-shadow {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .outward::after{
  background: url(/assets/img/sion/arrow_outward_b.png) no-repeat 0px 0px;
  background-size: 16px;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  top: 16px;
  right: -26px;
  margin: 0 3px 0 8px;
  position: absolute;
  transition: 0.3s;
}
.navmenu .outward:hover::after,
  .navmenu .outward:focus::after{
    background: url(/assets/img/sion/arrow_outward_f.png) no-repeat 0px 0px;
    background-size: 16px;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  top: 16px;
  right: -26px;
  margin: 0 3px 0 8px;
  position: absolute;
}

.index-page.scrolled .navmenu .outward::after{
  background: url(/assets/img/sion/arrow_outward.png) no-repeat 0px 0px;
  background-size: 16px;
}
.img-fluid {
  width: 100%;
  height: 100%;
  max-width: 480px;
  border-radius: 11px;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu li :hover {
    color: var(--nav-color);
  }
    .navmenu a {
      border-bottom: 1px solid #e8e8e8;
    }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 25px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
.navmenu a:hover > span:first-child {
  left: 6%;
}
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #00114c;
  font-size: 14px;
  padding-bottom: 40px;
  position: relative;
  margin-top: 70px;
}
@media (max-width: 768px)  {
  .footer {
    padding-bottom: 0;
  }
}
.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  /* padding-top: 40px; */
}

.footer .social-links {
  justify-content: flex-end;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.4s;
}
/* .footer-top.row >div  {
  margin-top: 50px;
} */
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: #47b2e4;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}



.footer .footer-about img {
  width: 73px;
}
.footer ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
}
.footer p {
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
}
.footer p::after{
  content: "|";
  margin: 0px 10px;
}
.footer p:last-child::after{
  content: "";
}
.footer .footer-contact .policyitem {
  margin-top: 20px;
  font-weight: bold;
}
.footer .copyright {
  color: #aaadb9;
  margin-left: 50px;
}
.footer .copyright p {
  margin-bottom: 0;
}

.footer .contact {
  font-size: 13px;
  border-radius: 20px;
  background-color: #000d39;
  padding: 20px 30px;
}

.footer .contact h6{
  color:#fff;
  margin: 0;
}

.footer .contact a{
  color: #fff;
  font-size: 24pt;
  font-weight: bold;
  margin-bottom: 4px;
  display: inline-block;
}

.footer i {
  width: 100%;
  height: 100%;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.footer i.bi-insta {
  background-image: url(/assets/img/sion/sns-01.png);
}
.footer i.bi-blog {
  background-image: url(/assets/img/sion/sns-02.png);
}

@media (max-width: 768px) {
  .footer .contact {
    display: none;
  }
  .footer .social-links{
    position: absolute;
    top: 50px;
    right: 0;
  }
  .footer p {
    font-size: 9pt;
    margin-bottom: 2px;
  }
  .footer p::after{
    margin: 0px 4px;
  }
  .footer .footer-contact .policyitem {
    font-size: 8pt;
  }
  .footer .copyright {
    margin-left: 20px;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #f3f3f3;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.bi-chevron-up::before {
  color: #000;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #f3f3f3, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 140px;
}

.scroll-top.active.kakao{
  bottom: 80px;
  background-image: url(/assets/img/sion/btn01.png);
  width: 44px;
  height: 44px;
  background-color: #ffe400;
  visibility: visible;
  opacity: 1;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.scroll-top.active.phone{
  bottom: 20px;
  background-image: url(/assets/img/sion/btn02.png);
  width: 44px;
  height: 44px;
  background-color: var(--default-color);
  visibility: visible;
  opacity: 1;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .col-xs-6 {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000;
  background-color: var(--background-color);
  padding: 130px 0px 0px 0px;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}
@media (max-width: 768px) {

  section,
  .section {
     padding: 60px 0px 0px 0px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-bottom: 30px;
  position: relative;
  margin-top: 120px;
}

.section-title h2 {
  font-size: 53px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
  font-size: 41px;
  letter-spacing: -1.5px;
}

.section-title p span {
  color: var(--default-color);
}

.section-title h6{
  font-weight: bold;
  font-size: 25px;
  letter-spacing: -1px;
}
  .category-title {
  margin-top: 20px
}
  .category-title p{
    margin-bottom: 10px;
  }
.title-video {
  width: 50px; height: 50px; margin-right: 8px;
}

@media (max-width: 1199px) {
  .section-title {
    padding-bottom: 30px;
  }
   .section-title h6 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .section-title {
    margin-top: 12px;
  }
  .category-title{
  margin-top: 60px;
}
 .category-title p{
    margin-bottom: 0px;
  }
.section-title h6 {
  font-size: 14px;
}
.section-title p {
  font-size: 20px;
}
  .category-title  {
    font-size: 23px;
  }
.title-video {
      width: 20px;
    height: 30px;
}
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--background-color);
}

.hero .container {
  align-self: flex-start;
}
.intro-txt {
  align-items: center;
  margin-top: 60px;
}
.hero .container .order-1{
  margin-top: 60px;
  z-index: 1;
}

.hero h1 {
  font-size: 140px;
  font-weight: 700;
  line-height: 150px;
  letter-spacing: -1px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  margin: 19px 0 30px 0;
  font-size: 55px;
  line-height: 1.3;
  font-weight: 100;
}
.hero .hero-scroll {
  position: absolute;
  top: calc(100vh - 230px);
}
.hero .hero-company{
  width: 100%;
  height: 260px;
  position: absolute;
  top: calc(100vh - 230px);
  z-index: 999;
}
@media (max-width: 768px) {
 .hero .hero-company{
  height: 339px;
}
}
.hero .hero-company h1{
  color: #fff;
  opacity: 0.8;
  font-size: 488px;
  line-height: 560px;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: -26px;
  right: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--contrast-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 2400px) {
   .intro-txt {
    --bs-gutter-y: 10rem;
}
}
@media (max-width: 2300px) {
  .hero .hero-company h1{
    font-size: 560px;
    line-height: 560px;
  }
    .intro-txt {
    --bs-gutter-y: 4.5rem;
}
}
@media (max-width: 1960px) {
  .hero .hero-company h1{
    font-size: 340px;
    line-height: 400px;
    display: flex;
    align-items: flex-start;
    font-family: "Montserrat", sans-serif;
  }
   .intro-txt {
       margin-top: 85px;
  }
  .hero .container .order-1  {
    margin-top: -87px;
  }
  .order-2 {
    margin-top: -90px;
  }
}
@media (max-width: 1600px) {
  .hero h1 {
    font-size: 140px;
    line-height: 160px;
  }
  .hero p{
    font-size: 35px;
  }
  .hero .hero-company h1 {
    font-size: 320px;
  }
}
@media (max-width: 991px) {
     .intro-txt {
    --bs-gutter-y: 1rem;
    }
  .hero h1 {
    font-size: 82px;

    line-height: 82px;
  }
  .hero .container .order-2 {
    /* margin-top: -130px; */
  }
  .hero .hero-company h1 {
    font-size: 118px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .header .logo {
    width: 60px;
    height: 60px;
  }
  .hero-scroll {
    right: 8px;
    display: none;
  }
  .hero .container .order-2 {
    margin-top: -14px;
    text-align: center;
  }
  .hero .hero-company h1 {
      right: 13px;
      font-size: 116px;
      bottom: 0;
    }
  .order-2 video {
    min-width: 300px !important;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 0px;
  }
    .intro-txt {
    --bs-gutter-y: 1rem;
    }
  .hero .container {
    /* margin-top: 100px; */
  }
  .hero h1 {
   font-size: 76px;
   line-height: 88px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero .hero-company {
    right: 0px;
  }
  .hero .hero-company h1 {
    right: 0px;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
  .hero .container .order-1{
    margin-top: 20px;
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-box {
  background-color: #e2f0fd;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-inner {
  display: flex;
  justify-content: space-between;
}
.service-inner>div {
  width: 33%;
}
.services .service-item {
  background-color: #236bff;
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  padding: 55px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  width: 100%;
}

.services .service-item .video-container{
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .services .service-item .video-container{
  text-align:left;
  margin-left: 10px;
}
.service-inner>div {
  margin-top: 30px;
}
}
.services .service-item p {
  width: 100%;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
  line-height: 3rem;
}

.services .service-item button {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 15px 35px;
  color: #000;
  background-color: #fff;
  margin: 10px auto;
  transition: 0.4s;
  font-size: 20px;
  font-weight: 500;
}

.services .service-item button.moonly {
  display: none;
}
.services .service-item button:hover{
  padding: 15px 50px;
}
.services .video-container video {
  width:40%;
  margin:0 auto;
  pointer-events:none;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .service-inner {
    flex-direction: column;
  }
  .service-inner>div {
    width: 100%;
  }
  .services .service-item p {
    font-size: 30px;
    text-align: left;
    line-height: 2.3rem;
    display: flex;
    align-items: baseline;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
  }
  .services .service-item {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    padding: 20px;
  }
  .services .service-item button.pconly {
    display: none;
  }
  .services .service-item button.moonly {
    display: block;
    font-size: 13px;
   padding: 2px 20px;
   margin: 15px 0 0 0;
  }
  .services .video-container video {
    width: 80%;
    margin-bottom: 0;
  }
}
@media (max-width: 400px) {
  .services .service-item p {
        font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/

#partners .features-item {
  background-color: #f0f4f7;
  color: #000;
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 3px 10px;
  transition: 0.3s;
  position: relative;
  justify-content: center;
  height: 100%;
}
#partners .features-item img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
#partners .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
#partners .row .itembox {
  height: 85px;
  margin-top: 29px;
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}
#partners .row .itembox span{
  display: none;
}
#partners .row .itembox.bigsize {
  height: 270px;
  width: 20%;
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
  margin-bottom: 5px;
}
#partners .row .itembox.bigsize .features-item{
  padding: 20px 0;
  text-align: center;
  height: 100%;
  flex-direction: column;
}
#partners .row .itembox.bigsize .features-item img{
  width: 40%;
  max-height: initial;
  margin-bottom: 33px;
}
#partners .row .itembox.bigsize .features-item span{
  display: inline-block;
  position: absolute;
  bottom: 35px;
  font-weight: bold;
  font-size: 15pt;
  font-family: var(--default-font);
}
@media (max-width: 991px) {
  #partners .row .itembox.bigsize .features-item span {
    font-size: 13px;
  }
  #partners .row .itembox.bigsize .features-item span {
    bottom: 21px;
  }
  #partners .row .itembox.bigsizemo .features-item img {
    margin-bottom: 23px;
  }
}

#partners .overview {
  display: none;
  border: 1px solid var(--default-color);
  padding: 20px;
  text-align: center;
  font-weight: bold;
  color: var(--default-color);
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
}
#partners .row .itembox:nth-child(n+15){
  display: block;
}
@media (max-width: 991px) {
  #partners .features-item {
    border-radius: 10px;
  }
  #partners .row .itembox {
    margin: 10px 0px 0px 0px;
    padding: 0px 8px;
    height: 48px;
  }
  #partners .row .itembox.bigsize {
    width: 33.3%;
    height: 110px;
    padding: 0px 10px;
  }
  #partners .row .itembox.bigsize .features-item img{
    width: 30%;
  }
  #partners .row .itembox.bigsizemo {
    width: 33.3%;
    height: 110px;
    padding: 0px 10px;
  }
  #partners .row .itembox.bigsizemo .features-item{
    padding: 20px 0px 10px 0px;
    text-align: center;
    height: 100%;
    flex-direction: column;
  }
  #partners .row .itembox.bigsizemo .features-item img{
    /* width: 30%; */
    max-height: initial;
    margin-bottom: 48px;
  }
  #partners .row .itembox.bigsizemo .features-item span{
    display: inline-block;
    position: absolute;
    bottom: 23px;
    font-weight: bold;
    font-size: 10pt;
    font-family: var(--default-font);
  }
  #partners .row .itembox:nth-child(n+15){
    display: none;
  }
  #partners .overview {
    display: block;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 110px 0;
  position: relative;
  clip-path: inset(0% round 2500px);
  transition-duration: 4s;
  width: 70vw;
  max-width: 100vw !important;
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, #000, transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
  font-size: 43pt;
  font-weight: bold;
  margin-bottom :1.8rem;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  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 var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .perf1 span {
  color: #23b0ff;
}
.call-to-action .perf2 span {
  color: #91cfff;
}
.call-to-action .perf3 span {
  color: #23b0ff;
}
.call-to-action .perf1 span::after{
  content: "+";
}
.call-to-action .perf2 span::after{
  content: "+";
}
.call-to-action .perf3 span::after{
  content: "%";
}
@media (max-width: 768px) {
  .call-to-action {
    max-width: 90%;
    padding: 26px 0px 10px 0px;
  }
  .call-to-action p {
    font-size: 15pt;
    line-height: 15pt;
  }
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

.portfolio .btnbox {
  display: flex;
  justify-content: space-between;
}
.portfolio .btnbox a {
  font-size: 16px;
  font-weight: normal;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  color: #ffffff;
  background: var(--default-color);
  transition: 0.4s;
  display: flex;
  align-self: center;
}
.portfolio .btnbox a:hover{
  background-color: #000;
}
@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .portfolio .btnbox a {
    font-size: 12px;
    padding: 8px 19px;
    margin: 0 0 0 16px;
    border-radius: 18px;
    min-width: 86px;
    display: none;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-inner {
  display: grid;
  flex-wrap: wrap;
  gap: 19px;
 grid-template-columns: 1fr 1fr 1fr 1fr;
 margin-top: 3rem;
}
.teamImg {
    overflow: hidden;
    border-radius: 15px;
}
.teamImg img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1465px)  {
.team-inner {
  gap: 16px;
   grid-template-columns: 1fr 1fr 1fr;
}
}
@media (max-width: 1245px)  {
.teamImg {
}
}
@media (max-width: 846px)  {
.teamImg {
    border-radius: 10px;
}
}
@media (max-width: 991px)  {
.team-inner {
  margin-top: 0 !important;
  
}
.team-inner {
  gap: 10px;
}
}
@media (max-width: 400px)  {
.team-inner {
  gap: 7px;
}
}
/* .team .swiper-slide img{
  border-radius: 16px;
  width: 100%;
  max-width: 180px;
}
.team .swiper-slide p {
  font-size: 12pt;
  color: var(--default-color);
  text-align: center;
  font-weight: bold;
  margin: 12px 0px 0px 0px;
}
.team .swiper-slide span {
  font-size: 16pt;
  color: #000;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  width: 100%;
}
.team .leftblur {
  width: 160px;
  height: 100%;
  background-image: linear-gradient(270deg, transparent 0%, rgb(255, 255, 255) 100%);
  position: absolute;
  z-index: 999;
}
.team .rightblur {
  width: 160px;
  height: 100%;
  background-image: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 100%);
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
} */
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

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

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

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

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@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;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
.subscribe .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .subscribe .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .subscribe .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.subscribe .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subscribe .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.subscribe .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.subscribe .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.subscribe .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .subscribe .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .subscribe .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .subscribe .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Recent Blog Postst Section
--------------------------------------------------------------*/
.recent-blog-postst .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-postst .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-postst .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-postst .post-item .post-content {
  padding: 30px;
}

.recent-blog-postst .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-postst .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-postst .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-postst .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-postst .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-postst .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-postst .post-item:hover .post-title,
.recent-blog-postst .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-postst .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contanct-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px)  {
  .contanct-inner {
  margin-top: -3rem !important;
}
} 
.contact-info {
  width: 50%;
}
.contanct-img {
  width: 48%;
}
.contact .info-wrap {
  justify-content: space-between;
}

.contact .info-item {
  border-color: var(--default-color);
  border-width: 1px;
  border-style: solid;
  border-radius: 12px;
  height: 142px;
  flex: 1px;
  margin: 0px 30px 0px 0px;
  text-align: center;
  background-color: var(--default-color);
}
.contact .info-item:last-child{
  margin: 0px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--default-color);
  background: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 21px auto 8px auto;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4rem;
  word-break: keep-all;
}

.contact .info-item:hover{
  color: var(--default-color);
  background: #e2f0fd;
  border-color: #e2f0fd;
  cursor: pointer;
}
.contact .info-item:hover p{
  color: var(--default-color);
}

.contact .php-email-form {
  /* padding: 0px 30px; */
}
.contact-box>div {
  margin-top: 23px;
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 5px;
  }
}
@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 0px;
  }
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 10px;
  background-color: var(--filed-color);
  border-color: var(--filed-color);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #aeafaf;
  font-size: 12pt;
  font-weight: 300;
}

.contact .php-email-form button[type=submit] {
  color: #fff;
  background: #000;
  border: 0;
  padding: 16px 30px;
  font-size: 20px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 30px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #000, transparent 25%);
}

.contact .php-email-form label {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 1rem !important;
}

.contact .php-email-form span.require::after{
  content:"•";
  color: red;
  font-size: 12px;
  margin-left: 4px;
  vertical-align: top;
}

.contact .php-email-form .marketing-item {
  display: flex;
  flex-flow: wrap;
}
.contact .php-email-form .marketing-item span {
  background-color: var(--filed-color);
  border-radius: 25px;
  padding: 9px 26px;
  color: #000;
     margin-right: 15px;
    margin-bottom: 17px;
  font-size: 14pt;
  cursor: pointer;
  font-weight: 500;
}
.contact .php-email-form .marketing-item span.active {
  background-color: #000;
  color: #fff;
}
@media(max-width:768px) {
  .contact .php-email-form .marketing-item span {
        margin-right: 7px;
            padding: 5px 12px;
                font-size: 15px;
  }
}
.contact .infoview {
  background-image: url(/assets/img/sion/contact-01.png);
 height: calc(100% - 19.6%);
  background-position: bottom  right;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-top: 30px;
  padding: 60px;
}

.contact .infoview p {
  color: #000;
  font-weight: 700;
  font-size: 30pt;
  font-family: var(--default-font);
  margin: 0;
  line-height: 4.1rem;
  letter-spacing: -1px;
}
.contact .infoview p:nth-child(2){
  font-size: 43pt;
}
.contact .infoview span {
  color: #000;
  font-family: var(--default-font);
  font-size: 20pt;
  margin-top: 24px;
  letter-spacing: -1px;
  display: inline-block;
  font-weight: 300;
}

.contact .file-field {
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 10px;
  background-color: var(--filed-color);
  border-color: var(--filed-color);
  color: #aeafaf;
 font-size: 12pt;
  font-weight: 500;
  cursor: pointer;
}
@media(max-width:768px) {
  .contanct-inner {
    flex-direction: column;
}
.contact .infoview {
  padding: 22px;
  height: 360px;
}
.contanct-img,
.contact-info {
  width: 100%
} 
.contact .info-item {
  margin: 0px 11px 0px 0px;
}
.contact .infoview p {
font-size: 19px;
line-height: 2.2rem;
}
.contact .infoview p:nth-child(2) {
  font-size: 30px;
}
.contact .infoview span {
  font-size: 15px;
  margin-top: 15px;
}
.contact .infoview {
  padding: 30px;
  height: 280px;
  background-position: bottom -128px right;
}
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.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: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}
.video-inner {
  text-align: right;
}
@media (max-width: 900px) {
  .video-inner {
    text-align: center;
    margin-top: 40px;
}
}
@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 20px 0;
}

.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
  padding-top: 10px;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# award section
--------------------------------------------------------------*/
.award_list  {
  overflow: hidden;
}
.award_list .list.pconly {display: flex; justify-content: space-between;}
.award_list .list.moonly {display: none; overflow: hidden;}
.award_list .list .li{border-radius: 20px;}
.award_list .list .li.swiper-slide { width: unset; height: unset; }
.award_list .list .li a{display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; width: 150px; height: 29.4375vw; padding: 2.3vw 1.5vw; margin: 0 0.4vw; background: #f1f1f1; border-radius: 0.625vw; box-sizing: border-box; transition: width 0.3s;}
.award_list .list .li .top_logo{display: none;}
.award_list .list .li .top_logo div { display: flex; align-items: center; justify-content: flex-start; }
.award_list .list .li .top_logo div.bw { background-color: #fff; padding: 4px 10px; }
.award_list .list .li .top_logo div img { width: 3.1875vw; }
.award_list .list .li .top_logo div img + img { margin-left: 0.8vw; }
.award_list .list .li .top_logo div img.and { margin-bottom: var(--basic_txt); max-height: 2.3vw; }
.award_list .list .li .top_logo .logo { width: auto; max-width: 8vw; height: 3vw; }
.award_list .list .li .top_logo .logo svg { width: 100%; height: 100%; object-fit: contain; }
.award_list .list .li .top_logo .logo img { width: 100%; height: 100%; object-fit: contain; }
.award_list .list .li .txt_box { flex: 1; overflow: hidden; padding-top: 30px; }
.award_list .list .li .txt_box p {
   margin-top: 1.3em; transform: rotate(90deg); white-space: nowrap; font-size: 14pt; font-weight: 600; line-height: 1.4em; text-overflow: ellipsis; 
  }
.award_list .list .li .txt_box span { 
  display: none; 
  opacity: 0.6; 
  margin-top: 1.2em; 
  font-size: 0.9vw; 
  line-height: 1.5em; 
  word-wrap: break-word; 
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
   text-overflow: ellipsis; 
   overflow: hidden; 
   word-break: break-all;
  font-weight: 200;}
.award_list .list .li .txt_box .arr{display: none; width: 2vw; fill: #fff; }
.award_list .list .li .txt_box .arr svg { width: 100%; height: 100%; object-fit: contain; }
.award_list .list .li .btm_logo { max-height: 2.5390625vw; flex-shrink: 0; }
.award_list .list .li .btm_logo.and { max-height: 2vw; margin-bottom: 5px; }
.award_list .list .li .btm_logo img { width: 100%; height: 100%; object-fit: contain; }

.award_list .list .li.active {
  background-color: var(--default-color);
  color: var(--surface-color);
}

.award_list .list .li.active a{justify-content: space-between; width: calc(100vw - 60vw); background: var(--org); color: #fff;}
.award_list .list .li.active .top_logo{display: flex; align-items: flex-start; justify-content: space-between; flex: 1; opacity: 0; animation: txt_reveal 0.3s 0.3s forwards;}
.award_list .list .li.active .txt_box{flex: 1; opacity: 0; transform: translateX(-15%); overflow: visible; animation: txt_reveal 0.3s 0.4s forwards;}
.award_list .list .li.active .txt_box p{transform: rotate(0deg); font-size: 1.85vw; white-space:normal;letter-spacing :-1px; }
.award_list .list .li.active .txt_box span{ display: -webkit-box; margin-bottom: 10px;}
.award_list .list .li.active .txt_box .arr { display: block; position: relative; height: 60px; }
.award_list .list .li.active .txt_box .arr img { position: absolute; left: -10px; }
.award_list .list .li.active .btm_logo { display: none; }

.award_list .list .li.inactive .txt_box { opacity: 0; animation: txt_reveal_tit 0.8s 0.4s forwards; }
.award_list .list .li.inactive .txt_box p { color: #000; }
.award_list .list .li.inactive .btm_logo { opacity: 0; animation: txt_reveal_tit 0.8s 0.4s forwards; }

@keyframes txt_reveal {
  0% {opacity: 0; transform: translateX(-10%)}
  100% {opacity: 1; transform: translateX(0%)}
}
@keyframes txt_reveal_tit {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.award_list .list.moonly .li a{width: 100%; min-width: 300px; height: auto; padding: 20px; margin: 0 10px;}
.award_list .list.moonly .li.active .txt_box p{font-size: 25px; }
.award_list .list.moonly .li .txt_box span { font-size: 14px; }
.award_list .list.moonly .li .top_logo div img { width: 50px; }

@media (max-width: 991px) {
  .award_list .list.pconly {
    display: none;
  }
  .award_list .list.moonly {
    display: block;
  }
  .award_list br {
    display: none;
  }
}
@media (min-width: 1900px) {
  .award_list .list .li.active a{max-width: 700px;}
}

/*--------------------------------------------------------------
# award section
--------------------------------------------------------------*/



.partnerimg {
  background-color: #e2f0fd;
  color: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 30px 10px;
  transition: 0.3s;
  position: relative;
  justify-content: center;
}
.partnerimg img{
  max-width: 50%;
  height: 40px;
  object-fit: contain;
  filter: invert(25%) sepia(83%) saturate(1766%) hue-rotate(210deg) brightness(97%) contrast(90%);
}
.partnerimg img:hover{
  filter: none;
}

.swiper {
  overflow: initial;
}

.swiper-slide.imgup {
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}
.swiper-slide.imgup:hover {
  transform: translateY(-10px);
}

.teamImg {
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}
.teamImg:hover {
  transform: translateY(-10px);
}
@media (max-width: 768px) {
  .swiper-slide.imgup:hover {
    transform: none;
  }
  .teamImg:hover {
    transform: none;
  }
}

.popup {
  position:fixed;
  top: 280px;
  left: 41%;
  z-index: 10000; 
  width: 350px;
  height: 418px;
  display: none;
}
.popup_container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,.08), 0 6px 6px rgba(0,0,0,.08);
  -moz-box-shadow: 0 10px 20px rgba(0,0,0,.08), 0 6px 6px rgba(0,0,0,.08);
  -ms-box-shadow: 0 10px 20px rgba(0,0,0,.08), 0 6px 6px rgba(0,0,0,.08);
  -o-box-shadow: 0 10px 20px rgba(0,0,0,.08), 0 6px 6px rgba(0,0,0,.08);
  box-shadow: 0 10px 20px rgba(0,0,0,.08), 0 6px 6px rgba(0,0,0,.08);
}
.popup_body {
  width: 100%;
  height: 374px;
  position: relative;
}
.popup_body .swiper-container {
  height: calc(100% - 24px);
}
.popup_body .swiper-container p {
  padding: 10px;
}
.popup_bottom {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.popup_bottom ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 10px 0px;
  justify-content: space-around;
  color: #000;
}
.popup_bottom li {
  cursor: pointer;
}
@media (max-width: 1920px) {
   .popup {
    top: 145px;
  }
  
}
@media (max-width: 991px) {
  .popup {
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
}


.sub_head {
  background-color: var(--default-color);
  padding: 10px 0px;
}
.sub-head-text-inner {
      align-items: start;
    justify-content: center;
    margin-top: 35px;
}
.sub_head .order-2 {
  text-align: center;
}
.sub_head h1 {
  color: #fff;
  font-weight: bold;
}
.sub_head p {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
}

.solution .row div {
  margin: 10px 0px;
}
.sub-video {
margin-top: 30px;
}
.sub-video >video {
  width: 300px;
}
@media (max-width: 991px)  {
.sub-video {
margin-top: -28px;
text-align: right !important;
}
}
.row .solution-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  border-radius: 30px;
  text-align: center;
  padding: 50px 0px;
  transition: 0.4s;
  cursor: pointer;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.row .solution-item h4 {
  color: #fff;
  font-weight: bold;
}
.row .solution-item p {
  color: #fff;
  margin-bottom: 0;
}
.row .solution-item.img1 {
  background-image: url(/assets/img/sion/imc01.jpg);
}
.row .solution-item.img2 {
  background-image: url(/assets/img/sion/imc02.png);
}
.row .solution-item.img3 {
  background-image: url(/assets/img/sion/imc03.png);
}
.row .solution-item.img4 {
  background-image: url(/assets/img/sion/imc04.png);
}
.row .solution-item.img5 {
  background-image: url(/assets/img/sion/imc05.jpg);
}
.row .solution-item.img6 {
  background-image: url(/assets/img/sion/imc06.png);
}
.row .solution-item.img7 {
  background-image: url(/assets/img/sion/imc07.png);
}
.row .solution-item.img8 {
  background-image: url(/assets/img/sion/imc08.png);
}
.row .solution-item:hover {
  transform: translateY(-10px);
}

@media (max-width: 991px)  {
  .sub-head-text-inner {
    padding: 20px;
  }
  .sub_head {
    margin-bottom: 70px;
  }
  .row .solution-item {
    padding: 43px 9px ;
    justify-content: center;
  }
  .sub_head p {
  margin-top: 9px;
  font-size: 17px;
  letter-spacing: -1px;
}
.row .solution-item h4 {
    font-size: 17px;
}
.row .solution-item p {
  font-size: 11px;
  margin: 0;
}
.mo-w {
  width: 100% !important;
}
.solution .row div {
  margin: 5px 0;
}
} 
.container.onestop .row {
  margin-bottom: 40px;
}
.row .onestop-item {
  background-color: #f0f4f7;
  color: #000;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}
.row .onestop-item .icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50px;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.row .onestop-item .icon::after {
  content: "";
  width: 500px;
  display: block;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 30px;
  left: 60px;
}
.row .onestop-item .icon div.num {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--default-color);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-size: 10pt;
}
.row .onestop-item .icon.img1 {
  background-image: url(/assets/img/sion/cs.png);
}
.row .onestop-item .icon.img2 {
  background-image: url(/assets/img/sion/chart.png);
}
.row .onestop-item .icon.img3 {
  background-image: url(/assets/img/sion/planning.png);
}
.row .onestop-item .icon.img4 {
  background-image: url(/assets/img/sion/improvement.png);
}
.row .onestop-item .icon.img5 {
  background-image: url(/assets/img/sion/pie-chart.png);
}
.row .onestop-item .report {
  position: absolute;
  right: 0;
  background-color: #fff;
  width: 76%;
  margin-right: 30px;
  border-radius: 30px;
  padding: 10px 20px;
  height: 173px;
  overflow: hidden;
}

.report-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
#report-list .swiper-slide {
  padding: 15px;
  border-radius: 20px;
  padding-left: 12px;
  transition: all 0.4s;
  color: #c3c3c3;
}
#report-list .swiper-slide-next{
  font-weight: bold;
  font-size: 14pt;
  color: #fff;
}
.report .mask {
  width: 100%;
  background-color: var(--default-color);
  color: #fff;
  height: 50px;
  position: absolute;
  border-radius: 5px;
  top: 56px;
}
.row .onestop-item strong {
  margin-top: 20px;
  font-size: 26px;
}
.row .onestop-item p {
  text-align: left;
    font-size: 15pt;
    letter-spacing: -1px;
    line-height: 1.8rem;
    margin-top: 12px;
    font-weight: 200;
}
button.answer {
  color: #fff;
  background: #000;
  border: 0;
  padding: 16px 30px;
  transition: 0.4s;
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1201px) {
  .row .onestop-item .report {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .onestop>.row>div {
    width: 50%;
    min-width: 50%;
    margin-top: 30px;
  }
  .row .onestop-item {
    padding: 20px;
  }
  .row .onestop-item strong {
    font-size: 19px;
  }
  .row .onestop-item p {
    font-size: 15px;
    line-height: 1.3rem;
    margin: 5px 0;
  }
  #report-list div {
    font-size: 9pt;
  }
  #report-list .swiper-slide-next{
    font-size: 10pt;
    overflow: visible !important;
  }
  button.answer {
    width: 96% !important;
  }
  .row .onestop-item .report {
    /* display: none; */
  }
}
@media (max-width: 640px) {
  .row .onestop-item strong {
    font-size: 14px;
  }
  .row .onestop-item p {
    font-size: 12px;
    line-height: 14px;
    margin: 5px 0;
  }
  .row .onestop-item .report {
    height: 122px;
    padding: 5px;
    width: 50%;
    margin-right: 11px;
    font-size: 10px;
    border-radius: 10px;
  }
  .report .mask {
    top: 36px;
    border-radius: 5px;
    height: 45px;
  }
  .report-list >div {
    height: 100px;
  }
   #report-list {
    font-size: 9PX;
   }
  #report-list .swiper-slide{
    margin: 0px 0px;
    overflow: hidden;
    padding: 5px 6px;
    /* white-space: nowrap; */
   text-overflow: ellipsis;
   font-size: 10px;
  }
  #report-list .swiper-slide.swiper-slide-next span::after {
    content: '';
    display: block;
    width: 20rem;
  }
}
@media (max-width: 390px) {
  .row .onestop-item strong {
    font-size: 15px;
  }
  .row .onestop-item p {
    font-size: 11px;
  }
}
.solutionTop {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .solutionTop  {
    margin-bottom: 40px;
  }
}
.sub_head.media {
  background-color: #fef7cc;
}
.sub_head.media h1 {
  color: #000;
  font-weight: bold;
}
.sub_head.media p {
  color: #000;
}
.row.media .solution-item.img1 {
  background-image: url(/assets/img/sion/media01.jpg);
}
.row.media .solution-item.img2 {
  background-image: url(/assets/img/sion/media02.png);
}
.row.media .solution-item.img3 {
  background-image: url(/assets/img/sion/media03.png);
}
.row.media .solution-item.img4 {
  background-image: url(/assets/img/sion/media04.jpg);
}
.row.media .onestop-item .icon.img1 {
  background-image: url(/assets/img/sion/cs.png);
}
.row.media .onestop-item .icon.img2 {
  background-image: url(/assets/img/sion/planning.png);
}
.row.media .onestop-item .icon.img3 {
  background-image: url(/assets/img/sion/video.png);
}
.row.media .onestop-item .icon.img4 {
  background-image: url(/assets/img/sion/edit.png);
}
.media-video {
  border-radius: 20px;
  overflow: hidden;
  margin: 36px 0 0 0;
}
.media-video>video {
  margin-top: 0;
  padding: 0;
}
@media (max-width: 768px)  {
.media-subvideo {
  margin: 50px 0;
  padding: 0;
}
}
.sub_head.influencer {
  background-color: #00114b;
}
.row.influencer .solution-item.img1 {
  background-image: url(/assets/img/sion/influencer01.png);
}
.row.influencer .solution-item.img2 {
  background-image: url(/assets/img/sion/influencer02.png);
}
.row.influencer .solution-item.img3 {
  background-image: url(/assets/img/sion/influencer03.png);
}
.row.influencer .solution-item.img4 {
  background-image: url(/assets/img/sion/influencer04.jpg);
}
.row.influencer .onestop-item .icon.img1 {
  background-image: url(/assets/img/sion/goal.png);
}
.row.influencer .onestop-item .icon.img2 {
  background-image: url(/assets/img/sion/flie.png);
}
.row.influencer .onestop-item .icon.img3 {
  background-image: url(/assets/img/sion/Schedule.png);
}
.row.influencer .onestop-item .icon.img4 {
  background-image: url(/assets/img/sion/uploading.png);
}
.row.influencer .onestop-item .icon.img5 {
  background-image: url(/assets/img/sion/pie-chart.png);
}
.portfolio-tab {
  display: flex;
  flex-flow: wrap;
}
.portfolio-tab span{
  background-color: #f2f2f2;
  border-radius: 50px;
  padding: 9px 20px;
  color: #000;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14pt;
  cursor: pointer;
  font-weight: 200;
  transition: 0.4s;
}
@media (max-width: 768px)  {
  .portfolio-tab span {
    font-size: 14px;
    padding: 9px 25px;
  }
} 
.portfolio-tab span.active {
  background-color: var(--default-color);
  color: #fff;
}
.portfolio-tab span:hover{
  background-color: #e2f0fd;
  color: var(--default-color);
}

.portfolio-list {
  cursor: pointer;
  min-height: 47vh;
}
.portfolio-list .item {
  padding: 10px;
  display: none;
}
.portfolio-list .item.active {
  display: flex;
}
.portfolio-list .card {
  border-radius: 20px;
  overflow: hidden;
  background-color: #f0f4f7;
  border: none;
    max-height: 518px;
    width: 100%;
}
.portfolio-list span.badge {
  background-color: #fff;
  font-size: 11pt;
  padding: 8px 11px;
  border-radius: 33px;
  color: #000;
  font-weight: 500;
}
.portfolio-list .card-title{
  margin-top: 10px;
  height: 80px;
  overflow: hidden;
  font-size: 2.0rem;
}
.portfolio-list .tagbox i{
  float: right;
}
.portfolio-list span.hashtag {
  font-size: 11pt;
  color: #929394;
  font-weight: 200;
}
.portfolio-list .wating{
  display: none;
  font-weight: bold;
  font-size: 30px;
}
.portfolio-detail {
  display: none;
  background-color: #fff;
  width: 100%;
  height: 100%;
}

.portfolio-detail .portfolio-detail-title{
  margin:0px 0px 20px 0px;
  font-weight: 200;
  font-size: 20px;
}
.portfolio-detail .writer img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 90px;
}
.portfolio-detail .writer {
  color: #8b8b8b;
  font-size: 13pt;
  font-weight: 500;
}
.portfolio-detail a{
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.portfolio-detail .portfolio-detail-content {
  padding: 90px 0 20px 0px;
}
.portfolio-detail .portfolio-detail-content p {
  margin-bottom: -8px;
}

.portfolio-detail .portfolio-detail-content img {
  border-radius: 20px;
  margin: 10px 0px;
  width: 80%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  border-color: transparent;
  padding: 40px 30px;
}
.tagbox {
  margin-top: 18px;
}
.bi-arrow-right-circle-fill::before {
  font-size: 1.5rem;
}
.portfolio-title-inner {
padding-bottom: 0;
}
.portfolio-txt {
  font-size: 20px;
    display: flex;
  align-items: center;
}
.portfolio-txt a {
  font-family: "Montserrat", sans-serif !important;
}
.next-icon {
    width: 9px;
    margin: 10px;
}
@media (max-width: 768px)  {
  .portfolio-detail .portfolio-detail-content img  {
    width: 100%;
  }
  .portfolio-list .card {
    max-height: 330px;
    width: 100%;
  }
  .card-body  {
   padding: 18px; 
  }
  .portfolio-list .item {
    margin-top: 30px;
  }
  .portfolio-list span.badge {
    font-size: 9px;
    padding: 6px 11px;
  }
  .portfolio-list .card-title {
    font-size: 1.2rem;
    text-overflow: ellipsis;
    white-space: normal; 	
    word-break:break-all;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -.5px;
  }
  .portfolio-list .tagbox {
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2rem;
    letter-spacing: -.5px;
  }
  .portfolio-list .tagbox i {
    display: none;
  }
  .portfolio-list span.hashtag {
       font-size: 0.8rem;
  }
  .next-icon {
    width: 6px;
    margin: 4px;
}
.portfolio-detail .portfolio-detail-title {
  font-size: 13px;
  margin-top: 5px;
}
.portfolio-detail .writer img {
  width: 38px;
  height: 38px;
}
.portfolio-detail .writer {
  font-size: 10px;
}
}
.scroll {
  width: 50px;
  height: 50px;
  border: 1px solid #91cfff;
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
.scroll::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 17px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #91cfff;
  border-bottom: 1px solid #91cfff;
  transform: rotate(-45deg);
}

@keyframes down {
  20% {
    transform: translateY(0px);
        opacity: 0.0;
  }
  40% {
    transform: translateY(30px);
    opacity: 1;
  }
}

@-webkit-keyframes down {
  20% {
    transform: translateY(0px);
    opacity: 0.0;
  }
  40% {
    transform: translateY(30px);
    opacity: 1;
  }
}

.popup_modal {
  display: none; /*평소에는 보이지 않도록*/
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
}
.popup_modal .popup_alert{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  width: 350px;
  /* height: 260px; */
}
.popup_modal .popup_alert_close {
  text-align: right;
  color: #000;
  font-size: 18pt;
}
.popup_modal .popup_alert_close i {
  cursor: pointer;
}
.popup_modal .popup_alert_icon {
  text-align: center;
}
.popup_modal .popup_alert_icon img {
  width: 50px;
}
.popup_modal .popup_alert_content {
  text-align: center;
  margin: 20px 10px;
  color: #000;
  font-weight: bold;
}
.popup_modal .popup_alert_content p {
  margin-bottom: 5px;
  font-size: 18px;
}
.popup_modal .popup_alert_content span {
  font-size: 12pt;
  font-weight: 300;
}

.policyitem .policy {
  cursor: pointer;
}
.privacy_modal {
  display: none; /*평소에는 보이지 않도록*/
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  z-index: 100;
}
.privacy_modal .popup_alert{
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  width: 48vw;
  height: 60vh;
  overflow-y: scroll;
}
.privacy_modal .popup_alert_close {
  text-align: right;
  color: #000;
  font-size: 18pt;
}
.privacy_modal .popup_alert_close i {
  cursor: pointer;
}
.privacy_modal .popup_alert_icon {
  text-align: center;
}
.privacy_modal .popup_alert_icon img {
  width: 50px;
}
.privacy_modal .popup_alert_content {
  text-align: left;
  margin: 20px 10px;
}
.privacy_modal .popup_alert_content h4 {
  font-size: 20pt;
  color: #000;
  font-weight: bold;
}
.privacy_modal .popup_alert_content p {
  font-size: 12pt;
  color: #000;
  font-weight: bold;
}
.privacy_modal .popup_alert_content div {
  font-size: 10pt;
  color: #000;
  font-weight: normal;
}
.privacy_modal .popup_alert::-webkit-scrollbar {
  width: 10px;  
}

.privacy_modal .popup_alert::-webkit-scrollbar-thumb {
  background: #e2f0fd;
  border-radius: 10px;
}

.privacy_modal .popup_alert::-webkit-scrollbar-track {
  background: transparent;
}
@media (max-width: 991px) {
  .privacy_modal .popup_alert{
    top: 54%;
    padding: 10px;
    width: 90vw;
    height: 80vh;
  }
}


.portfolio-detail-content p{
  margin: 0 !important;
}
.portfolio-detail-content thead,
.portfolio-detail-content tbody,
.portfolio-detail-content tfoot,
.portfolio-detail-content tr,
.portfolio-detail-content td,
.portfolio-detail-content th {
  border-color: initial;
  border-style: solid;
  border-width: 1px;
}
.no-tel {
  pointer-events: none; /* 클릭 방지 */
  user-select: none; /* 선택 방지 (선택적으로) */
    color: #fff !important;
 font-size: 9pt !important;
}