/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --main-font: "Roboto", sans-serif;
  --main-color: #734ae8;
}

body {
  font-family: "Roboto", sans-serif;
  color: #404040;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
}

a {
  color: #070E36;
  text-decoration: none;
}

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

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kanit", sans-serif !important;
} */




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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #045de9;
  text-transform: uppercase;
}
.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #5371fe;
}
@media (max-width: 768px) {
  .section-header {
    padding-bottom: 0px;
  }
  .section-header p {
    font-size: 1rem;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #045de9;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}
.breadcrumbs ol a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5371fe;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #045de9;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  font-weight: 700;
  line-height: 50px;
  color: #070E36 !important;
  font-family: "Poppins", sans-serif;

}
.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
  line-height: 0;
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #045de9;
  font-family: var(--main-font);
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar .social-link a {
  margin-right: 0px;
  padding:0px;

}
.navbar .social-section {
  padding-left: 30px;

}
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 10px;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s;
  color: #5371fe;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #045de9;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  background: #5371fe;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #045de9;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #045de9;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.social-mobile-section h3{
  display:none;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
  .navbar .social-section {
    overflow:auto;
    max-height: none;
    padding-left: 0px;
    padding-right: 30px;
  }
}



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

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


  .navbar ul {
    display: none;
  }
  .navbar .social-section{
    overflow: visible;
    max-height: none;
    scroll-behavior:unset;
  }
  .navbar .social-section .social-link {
    display:inline-block;
    width:auto;
  }
  .navbar .social-section .social-link a {
    padding: 00px;
  }
  .navbar .social-section .social-link a img {
    width: 2rem;
    height: 2rem !important;
    max-height: 100%;
  }
  .social-mobile-section h3{
    display:block;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    text-align:center;
    padding-top:10px;
  }
  .social-mobile-section {
    display:flex;
    justify-content: center;
    list-style: none;
    text-align: center;
    padding:0;
    margin:10px 0;
    width:100%;
  }
  .social-link {
    margin:0 0px;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #070E36e6;
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 75px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  /* font-size: 2rem; */
  color: #045de9;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #070E36;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #045de9;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero.resizing {
  background-image: none !important;
  background-color: #f6f7ff !important;
}
@media (max-width: 767px) {
  .hero {
    background-image: url('/assets/img/ai-ems-brain-mobile.png') !important;
    background-size: 100% !important;
    background-position: bottom !important;
    background-repeat: no-repeat !important;
    background-color: #f6f7ff !important;
  }
}
@media (max-width: 1025px) {
  .hero {
    background-image: url('/assets/img/ai-ems-brain-mobile.png') !important;
    background-size: 100% !important;
    background-position: bottom !important;
    background-repeat: no-repeat !important;
    background-color: #f6f7ff !important;
  }
}
.hero {
  width: 100%;
  height: 100vh;
  background-color: #f6f7ff !important;
  background-image:
    linear-gradient(to bottom, #f6f7ff 0%, rgba(246, 247, 255, 0) 12%), /* Blend at top */
    linear-gradient(to top, #f6f7ff 0%, rgba(246, 247, 255, 0) 12%), /* Blend at bottom */
    url('/assets/img/ai-ems-brain.png');
  background-size: auto 80%;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 500;
  color: #fff;
}
.hero h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #070E36;
  text-align: left;
  font-family: 'Kanit', sans-serif;
}
.hero h2 .title-marked {
  color: #5371fe;
}
.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 20px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #045de9;
  box-shadow: 35px 5px 30px rgba(4, 92, 233, 0.4);
}
.hero .btn-get-started span {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.hero .btn-get-started:hover i {
  transform: translateX(5px);
}
.hero .hero-img {
  text-align: right;
}

@media (min-width: 505px) and (max-width: 1023px) {
  .hero {
    background-size: 100% 160% !important;
  }
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) { /** adjust font sizes **/
  .content h3 {
    /* font-size: 2rem !important; */
  }
  /* .content div, .content p, .content ul {
    font-size: 2rem;
  } */
  .container {
    max-width: 95% !important;
  }
  .section-header h3 {
    font-size: 1rem !important;
  }
  .hero {
    /* height: auto; */
    padding: 60px 0 60px 0;
  }
  .hero h2 {
    font-size: 40px;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
  .contact-options {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .contact-options div {
    width: 100%;
  }
  /* .info-box p, .info-box h3 {
    font-size: 2rem !important;
  } */
  .footer {
    font-size: 1rem !important;
  }
  .back-to-top, .back-to-top i {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
  }
  .header .logo img {
    max-height: 100%;
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.about_us .content, .consulting .content {
  background-image: linear-gradient(to bottom, rgba(45, 176, 232, 0.2), #ffffff);
  padding: 40px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* 3D effect */
  margin:20px;
}

.products .content, #planslist .content {
  background-image: linear-gradient(to bottom, rgba(45, 176, 232, 0.2), #ffffff);
  padding: 40px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* 3D effect */
  margin:20px;
}
.products .img {
  max-width: 75%;
  height: auto;
  display: block;
  margin-left: auto;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.products h3 {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
}
.products h2 {
  font-size: 24px !important;
  font-weight: 700;
  color: #5371fe;
  font-family: 'Poppins', sans-serif;
}
.products p {
  margin: 15px 0 30px 0;
  /* line-height: 24px; */
}
.products .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #012970;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}
.products .btn-read-more span {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.products .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.products .btn-read-more:hover i {
  transform: translateX(5px);
}
@media (max-width:991px){
  .products .img {
    display:none;
  }
  .products h2 {
    font-size: 14px !important;
  }
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/

.values {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(45, 176, 232, 0.2), #ffffff);
  padding: 70px;
}
.values .box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns items from the top */
  align-items: center; /* Centers items horizontally */
  text-align: center;
  width: 80%;
  min-width: 400px;
  padding: 10px;
  height: auto;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions for transform and box-shadow */
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Adds shadow for 3D effect */
  border-radius: 10px; /* Optional: adds rounded corners */
  background: white; /* Ensures the box has a solid white background */
  transform: perspective(1px) translateZ(0); /* Prepares the 3D perspective */
}


.values .box:hover {
  transform: scale(1.05) translateY(-10px); /* Grows and lifts the box on hover */
  box-shadow: 0 20px 40px rgba(0,0,0,0.4); /* Increases shadow to enhance 3D effect */
}

.values .box > * {
  width: 100%; /* Ensures full width for child elements */
}

.values, .values .box {
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}

/* General Text Styles for Headings and Paragraphs */
.values .box h1, .values .box h2, .values .box h3 {
  color: #000000;
  text-align: center; /* Centering text */
  text-transform:none;
}

.values .box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-decoration: underline; /* Underlined heading */
}

.values .box h2 {
  font-size: 20px;
  font-weight: 500;
}
.values .box .title2 h2{
  font-size: 24px;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 20px;
  text-decoration: underline;
}

.values .box h1 {
  font-size: 20px;
  font-weight: 500;
  text-decoration: line-through; /* Strike-through for specific headings */
}
.values .box .content2 p {
  font-size: 20px;
  font-weight: 200;
  color: #000;
  text-transform: none;
  text-align: left;
  padding: 0px;
  margin-left:0px;
}
/* Specific text alignment for .content2 within p tags */
.values .box .content2 {
  text-align: left; /* Left-aligns text for .content2 */
  font-size: 28px;
  font-weight: 400;
  color: #000000;
}

/* Image and Logo Styles */
.values .box img {
  transition: transform 0.5s;
}



.values .box .logo {
  width: 75px;
  height: auto; /* Maintain aspect ratio of logo */
  align-self: center; /* Ensures logo is centered within its flex context */
}

/* Link Styling */
.service-link, .service-link:hover {
  text-decoration: none; /* Removes underline from links */
  color: inherit; /* Inherits color from parent */
}

/* Additional Styles for Specific Elements */
.values .box .finePrint p {
  font-size: 14px;
  font-weight: 300;
  text-align: center; /* Center-align text for fine print */
}

.values .box .line-space {
  margin-top: 40px; /* Additional spacing for layout */
}

.values .box > * {
  width: 100%; /* Ensures full width for child elements */
}

.values .box .fa-check {
  color: #045de9; /* Blue color for check marks */
  margin-right: 10px; /* Space between check mark and text */
}

/* Smaller headings under .values but not inside .box */
.values h3{
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}
.values h2{
  font-size: 24px;
  font-weight: 700;
  color: #045de9;
}

@media (max-width: 991px) {
  .values {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers horizontally */
    justify-content: center; /* Centers vertically if there's extra space */
    text-align: center; /* Centers the text inside the boxes */
  }

  .values .box {
    width: 80%; /* Reduced width from 80% to 70% */
    max-width: 400px; /* Optionally reduce max-width from 300px to 250px */
    min-width: 250px;
    margin: 5px auto; /* Reduces vertical spacing */
    padding: 10px; /* Reduced padding to decrease overall size */
    height: auto; /* Ensures box height adjusts to content */
    box-sizing: border-box; /* Ensures padding and border are included in the width and height */
  }

  .values .box h3, .values .box h1, .values .box h2, .values .box .title2 h2, .values .box .finePrint p {
    font-size: 100%; /* Adjusted font size for readability */
    margin-bottom: 5px; /* Reduces space between text lines */
  }
  .values .box .content2 p .fa-check {
    color: #045de9; /* Blue color for check marks */
    margin-right: 10px; /* Space between check mark and text */
    font-size: 75%; /* Sets icon size relative to the text size */
  }
  .values .box .content2 p{
    font-size: 55%; /* Ensure text resizing is effective */
  }
}


/*------------------------------------------------------
# Cookies Consent
------------------------------------------------------------*/
.cookie-consent-container {
  position: fixed;
  left: 0;
  bottom: -100%; /* Start off screen */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  text-align: center;
  z-index: 10000;
  transition: bottom 0.5s ease; /* Smooth transition for the bottom property */
}

.cookie-consent-container.active {
  bottom: 0; /* Move into view */
}

.cookie-text a {
  color: #ffd700;
}

.btn-cookie {
  color: #fff;
  background-color: #007bff;
  border: none;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-cookie.btn-cookie-alt {
  background-color: #f44336;
}

/*---------------------------------------------------------------
# Coverage/Deployed
----------------------------------------------------------------*/
.deployed .content {
  background-image: linear-gradient(to bottom, rgba(45, 176, 232, 0.2), #ffffff);
  padding: 40px; /* Adjust spacing for text content */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* 3D effect */
  margin:20px;
}

.deployed ul {
  font-size: 12px;
}
.deployed img {
  max-width: 100%;
  height: auto;
  padding:70px;
}
.deployed h2{
  font-size: 24px;
  font-weight: 700;
  color: #045de9;
}
.deployed h3{
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Progress Bar
--------------------------------------------------------------*/
.progress {



  border-radius: 20px; /* Rounded corners for the outer progress bar */
  padding: 3px; /* Optional: Adds padding around the inner bar */
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); /* Adds an inner shadow for depth */
  height: 30px; /* Sets a fixed height for the progress bar */
}

.progress-bar {
  background-image: linear-gradient(to right, #021b79, #0575e6, #021b79); /* Enhanced gradient effect */
  box-shadow: 0 3px 5px rgba(0,0,0,0.2), inset 0 1px 4px rgba(255,255,255,0.3); /* Outer and inner shadow for 3D effect */
  border-radius: 18px;
  transition: width 0.5s ease-in-out;
  position: relative; /* Needed for pseudo-elements */
  overflow: hidden; /* Keeps pseudo-elements within the bar */
}

.progress-bar {
  width: 0; /* Start width */
  animation: grow 0.8s ease-out forwards; /* Animation to final width */
}

.deployed-progress .progress-bar {
  font-size: 12px;
  font-weight: 700;
  color: white;
}
@media (max-width: 991px) {
  .progress {
    height: 20px; /* Smaller height for mobile devices */
  }
  .progress-bar {
    border-radius: 10px; /* Smaller border-radius for a consistent look */
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #045de9;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #000;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: var(--main-font);
  font-size: 14px;
}

.section-titles h3 {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}
.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #5371fe;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #045de9;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #045de9;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}
.contact h3 {
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: #045de9;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #045de9;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #045de9;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #5969f3;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #045de9;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #0d64fd;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #045de9;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #045de9;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}
.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}
.blog .blog-comments {
  margin-bottom: 30px;
}
.blog .blog-comments .comments-count {
  font-weight: bold;
}
.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog .blog-comments .comment .comment-img img {
  width: 60px;
}
.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}
.blog .blog-comments .comment h5 a:hover {
  color: #045de9;
}
.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #045de9;
}
.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #013ca3;
  margin-bottom: 5px;
}
.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .blog-comments .reply-form p {
  font-size: 14px;
}
.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}
.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #045de9;
}
.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #013289;
}
.blog .blog-pagination {
  color: #024ed5;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #045de9;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #045de9;
}
.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #045de9;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #045de9;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: #5465f2;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: #045de9;
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: #045de9;
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #045de9;
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: #045de9;
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: #0257ee;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #d7e6ff;
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #045de9;
  background: #045de9;
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #a5c5fe;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Policy
--------------------------------------------------------------*/
.policy {
  margin-top: 52px;
}
.policy article h1,
.policy article h2,
.policy article h3,
.policy article h4,
.policy article h6 {
  display: flex;
  font-weight: 600;
  border-bottom: rgba(0, 0, 0, 0.3) solid 1px;
  padding: 3px 0rem;
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.policy ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy p {
  display: inline-block;
  margin-bottom: 1rem;
}
.policy table {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.policy td,
.policy th {
  border: 1px solid #ddd;
  padding: 8px;
}

.policy tr:nth-child(even) {
  background-color: #f2f2f2;
}

.policy tr:hover {
  background-color: #ddd;
}

.policy th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #646464;
  color: white;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}
.footer .footer-newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e1ecff;
}
.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #045de9;
}
.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}
.footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}
.footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #045de9;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}
.footer .footer-newsletter form input[type="submit"]:hover {
  background: #5969f3;
}
.footer .footer-top {
  background: white url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}
@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}
.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #045de9;
  font-family: var(--main-font);
  margin-top: 3px;
}
.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--main-font);
}
.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .footer-top .social-links a:hover {
  color: #045de9;
}
.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #045de9;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-top .footer-links {
  margin-bottom: 30px;
}
.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-top .footer-links ul a:hover {
  color: #045de9;
}
.footer .footer-top .footer-contact p {
  line-height: 26px;
}
.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #045de9;
}
.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #045de9;
}

.footer-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.container-for-logo {
  width: 100%;
}


/*** HOME - Hero ***/
.content_hero {
  text-align: left;
}
@media (max-width: 1025px) {
  .content_hero {
    text-align: center !important;
  }
  .text-hero {
    margin: 10px 0px !important;
    max-width: 100% !important;
  }
  .hero h2 {
    line-height: 50px !important;
    text-align: center !important;
  }
  .overlay {
    margin-top: -50dvh;
  }
  #buttons-hero {
    justify-content: center;
  }
}
@media (min-width: 525px) and (max-width: 766px) {
  .overlay {
    margin-top: -50dvh !important;
  }
}
@media (max-width: 767px) {
  .overlay {
    margin-top: -25dvh;
  }
  .hero h2 {
    line-height: 30px !important;
    text-align: center !important;
  }
}
.content_hero {
  text-align: left;
}
.text-hero {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  color: #404040;
  margin: 30px 0px;
  max-width: 50%;
}
#buttons-hero {
  display: flex;
  gap: 10px;
  font-family: 'Kanit', sans-serif;
  margin-top: 15px;
}
#button-1 {
  background-color: #5371fe;
  color: #fff;
  padding: 10px 35px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 100ms linear;
}
#button-1:hover {
  background-color: #045de9;
  transition: all 100ms linear;
}

#button-2 {
  color: #5371fe;
  border: 1px solid #5371fe;
  padding: 10px 35px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 100ms linear;
}
#button-2:hover {
  background-color: #5371fe;
  color: #fff;
  transition: all 100ms linear;
}
/* .overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.title_home {
  padding:10px 0px;
  color: #ffffff;
  text-shadow: 2px 6px 6px rgba(0, 0, 0, 0.882);
}
.subtitle_home {
  background: #007bffc2;
  padding:10px 20px;
  width: max-content;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
} */

@media (max-width: 991px) {
  .title_home {
    width: auto;
  }
  .subtitle_home {
    width: auto;
  }
}

.images-product {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: auto;
  gap: 10px;
  width: calc(50% - 5px);
}

.image-product {
  max-width: 100%;
  height: auto;
  flex-shrink: 1;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.image-product-nova {
  width: 100% !important;
  margin: 0 auto;
}

.image-product-mobile {
  display: none;
}

.image-product-desktop {
  width: 100%;
}

@media (max-width: 991px) {
  .image-product-desktop {
    display: none;
  }
  .image-product-mobile {
    display: flex;
  }
}


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

/* .unavailableLinkTab {
  text-overflow: clip;
  text-wrap: wrap;
  text-align: center;
  white-space: wrap !important;
} */

.plan-name {
  font-weight: 700;
  color: #5371fe;
  font-family: 'Poppins', sans-serif;
}

.features-list {
  padding: 0.5rem;
}

.feature-item {
  margin: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
  font-size: 16px;
}

.feature-item:before {
  content: "•";
  position: absolute;
  left: 0;
}

.btn-purchase,
.btn-purchase:focus {
  background: #5371fe;
  border-radius: 4px;
  color: #fff;
}
.btn-purchase:hover,
.btn-purchase:focus:hover {
  color: #fff;
  background: #045de9;
}

.mobile-width {
  width: auto;
}

@media (min-width: 768px) {
  .mobile-width {
    width: 100px;
  }
}
@media (min-width: 768px) {
  .custom-padding {
    padding-right: 30px !important;
  }
}

.consulting_list {
  margin-left: 55px;
}


.swiper-customers {
  padding: 20px 5px;
}
@media (min-width: 768px) {
  .swiper-customers {
    display: none;
  }
}

.swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.customer_img {
  max-height: 140px;
  height: auto;
  width: auto;
  max-width: 140px !important;
  object-fit: contain;
  display: block;
}

.documentation pre {
  padding: 15px 20px !important;
}