.e-con-inner {
  max-width: 100% !important;
  position: relative;
}
.elementor-element {
  padding: 0px !important;
}
:root {
  /* Color */
  --primary-color: #1570ef;
  --secondary-color: #194185;

  /* text-size */
  --text-size-1: 14px;
  --text-size-2: 18px;
  --text-size-3: 20px;
  --text-size-4: 24px;
  --text-size-5: 32px;
	
  /*icon emoj*/
  --icon-circle: 60deg;
  --icon-circle-sm: 50deg;
	
}
/* Font Faces */
@font-face {
  font-family: "FS-Regular";
  src: url("../font/FS_PFBeauSansPro-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}
html {
  scroll-behavior: smooth;
}
ul {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  margin-bottom: 0 !important;
}

.font-Regular {
  font-family: "FS-Regular", sans-serif !important;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.base-layout {
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1440px;
}
.title {
  font-size: var(--text-size-5);
}

.title-sm {
  font-size: var(--text-size-3);
}
.text-desc {
  font-size: var(--text-size-3);
}

.base-title-box {
  margin: 0 auto;
  display: inline-flex;
  gap: 10px;
  border-radius: 60px;
  padding: 12px 24px;
  border: 1px solid #1570ef;
  width: max-content;
  justify-content: center;
  align-items: center;
}
.base_text,
.base_icon i {
  font-size: var(--text-size-2);
  color: #1570ef;
}
.base_text {
  font-family: "Roboto";
  font-size: var(--text-size-2);
  line-height: 108%;
  letter-spacing: -2%;
}
.base-title {
  display: flex;
  gap: 24px;
  flex-direction: column;
  text-align: center;
}

.base-title_text {
  color: #194185;
  font-family: "Roboto";
  font-weight: 500 !important;
  font-size: var(--text-size-5);
}
.base-btn {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  padding: 16px 24px;
  background-color: #1570ef;
  z-index: 0;
  overflow: hidden;
  transition: box-shadow 0.6s ease;
}

.base-btn:hover {
  box-shadow: 6px 12px 60px 0px #1570ef66;
}

.base-btn a {
  gap: 10px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 3;
}

.base-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(93.34deg, #5de4ff 0%, #1570ef 100%);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Border gradient */
.base-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(93.34deg, #5de4ff 0%, #1570ef 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
  z-index: 2;
}

.base-btn:hover::after {
  left: 0;
}

.base-btn:hover::before {
  opacity: 1;
}

.btn-top {
  display: inline-block;
}

.btn-bottom {
  display: none;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px !important;
    padding: 0;
  }
}

@media (max-width: 1300px) and (min-width: 1025px) {
  .base-layout {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .base-layout {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .btn-top {
    display: none;
  }
  .btn-bottom {
    display: inline-block;
  }

  .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .base-layout {
    padding: 0 16px;
    margin: 0 auto;
    max-width: 100%;
  }
  .title {
    font-size: var(--text-size-4);
  }
  .title-sm {
    font-size: var(--text-size-2);
  }
  .text-desc {
    font-size: var(--text-size-1);
  }
  .base_icon img {
    height: 18px;
    width: 18px;
  }
  .base_text {
    font-size: var(--text-size-1);
  }

  .base-title-box {
    padding: 8px 16px;
  }

  .base-title_text {
    font-size: var(--text-size-4);
    padding: 0 32.5px;
    margin-bottom: 0;
  }
  .base-title {
    gap: 18px;
  }
  .base-btn {
    padding: 12px;
  }
  .base-btn > a span {
    font-size: var(--text-size-1);
  }
}
